From 5dc7aa87cde9614119c674742d7366ade3a7f8af Mon Sep 17 00:00:00 2001 From: Brandon Shipley Date: Tue, 18 Nov 2025 00:43:34 -0800 Subject: [PATCH] first standalone plugin commit --- .gitignore | 10 + README.md | 11 + composer.json | 30 + .../20240117020203_InitialAddresses.php | 605 + config/app.example.php | 9 + config/routes.php | 14 + phpunit.xml.dist | 31 + src/CakeAddressesPlugin.php | 93 + src/Controller/AddressesController.php | 110 + src/Controller/AppController.php | 10 + src/Controller/CitiesController.php | 28 + src/Controller/CountriesController.php | 41 + src/Controller/RegionsController.php | 40 + src/Controller/StatesController.php | 55 + src/Controller/SubregionsController.php | 41 + src/Model/Entity/Address.php | 55 + src/Model/Entity/City.php | 55 + src/Model/Entity/Country.php | 85 + src/Model/Entity/Region.php | 43 + src/Model/Entity/State.php | 57 + src/Model/Entity/Subregion.php | 45 + src/Model/Table/AddressesTable.php | 185 + src/Model/Table/CitiesTable.php | 142 + src/Model/Table/CountriesTable.php | 221 + src/Model/Table/RegionsTable.php | 94 + src/Model/Table/StatesTable.php | 143 + src/Model/Table/SubregionsTable.php | 113 + templates/Addresses/add.php | 28 + templates/Addresses/edit.php | 47 + templates/Addresses/index.php | 89 + templates/Addresses/view.php | 86 + templates/Cities/add.php | 39 + templates/Cities/edit.php | 44 + templates/Cities/index.php | 61 + templates/Cities/select.php | 10 + templates/Cities/view.php | 120 + templates/Countries/add.php | 54 + templates/Countries/edit.php | 59 + templates/Countries/index.php | 90 + templates/Countries/view.php | 229 + templates/Regions/add.php | 32 + templates/Regions/edit.php | 37 + templates/Regions/index.php | 49 + templates/Regions/view.php | 155 + templates/States/add.php | 39 + templates/States/edit.php | 44 + templates/States/index.php | 63 + templates/States/select.php | 13 + templates/States/view.php | 167 + templates/Subregions/add.php | 34 + templates/Subregions/edit.php | 39 + templates/Subregions/index.php | 54 + templates/Subregions/view.php | 133 + templates/element/Addresses/form.php | 59 + templates/element/Layout/submenu.php | 0 tests/Fixture/AddressesFixture.php | 41 + tests/Fixture/CitiesFixture.php | 76025 ++++++++++++++++ tests/Fixture/CountriesFixture.php | 344 + tests/Fixture/RegionsFixture.php | 84 + tests/Fixture/StatesFixture.php | 3807 + tests/Fixture/SubregionsFixture.php | 244 + .../Controller/AddressesControllerTest.php | 481 + .../Controller/BaseControllerTest.php | 25 + .../Controller/CitiesControllerTest.php | 103 + .../Controller/CountriesControllerTest.php | 151 + .../Controller/RegionsControllerTest.php | 154 + .../Controller/StatesControllerTest.php | 150 + .../Controller/SubregionsControllerTest.php | 154 + .../Model/Table/AddressesTableTest.php | 111 + .../TestCase/Model/Table/CitiesTableTest.php | 111 + .../Model/Table/CountriesTableTest.php | 80 + .../TestCase/Model/Table/RegionsTableTest.php | 97 + .../TestCase/Model/Table/StatesTableTest.php | 78 + .../Model/Table/SubregionsTableTest.php | 77 + tests/bootstrap.php | 119 + tests/config/bootstrap.php | 1 + tests/config/routes.php | 1 + tests/schema.php | 43 + tests/schema.sql | 1 + tests/test_app/src/Application.php | 39 + .../test_app/src/Controller/AppController.php | 16 + tests/test_app/src/View/AppView.php | 11 + tests/test_app/templates/Error/error500.php | 44 + tests/test_app/templates/layout/ajax.php | 6 + tests/test_app/templates/layout/default.php | 6 + tests/test_app/webroot/images/cake_icon.png | Bin 0 -> 943 bytes 86 files changed, 86844 insertions(+) create mode 100644 .gitignore create mode 100644 README.md create mode 100644 composer.json create mode 100644 config/Migrations/20240117020203_InitialAddresses.php create mode 100644 config/app.example.php create mode 100644 config/routes.php create mode 100644 phpunit.xml.dist create mode 100644 src/CakeAddressesPlugin.php create mode 100644 src/Controller/AddressesController.php create mode 100644 src/Controller/AppController.php create mode 100644 src/Controller/CitiesController.php create mode 100644 src/Controller/CountriesController.php create mode 100644 src/Controller/RegionsController.php create mode 100644 src/Controller/StatesController.php create mode 100644 src/Controller/SubregionsController.php create mode 100644 src/Model/Entity/Address.php create mode 100644 src/Model/Entity/City.php create mode 100644 src/Model/Entity/Country.php create mode 100644 src/Model/Entity/Region.php create mode 100644 src/Model/Entity/State.php create mode 100644 src/Model/Entity/Subregion.php create mode 100644 src/Model/Table/AddressesTable.php create mode 100644 src/Model/Table/CitiesTable.php create mode 100644 src/Model/Table/CountriesTable.php create mode 100644 src/Model/Table/RegionsTable.php create mode 100644 src/Model/Table/StatesTable.php create mode 100644 src/Model/Table/SubregionsTable.php create mode 100644 templates/Addresses/add.php create mode 100644 templates/Addresses/edit.php create mode 100644 templates/Addresses/index.php create mode 100644 templates/Addresses/view.php create mode 100644 templates/Cities/add.php create mode 100644 templates/Cities/edit.php create mode 100644 templates/Cities/index.php create mode 100644 templates/Cities/select.php create mode 100644 templates/Cities/view.php create mode 100644 templates/Countries/add.php create mode 100644 templates/Countries/edit.php create mode 100644 templates/Countries/index.php create mode 100644 templates/Countries/view.php create mode 100644 templates/Regions/add.php create mode 100644 templates/Regions/edit.php create mode 100644 templates/Regions/index.php create mode 100644 templates/Regions/view.php create mode 100644 templates/States/add.php create mode 100644 templates/States/edit.php create mode 100644 templates/States/index.php create mode 100644 templates/States/select.php create mode 100644 templates/States/view.php create mode 100644 templates/Subregions/add.php create mode 100644 templates/Subregions/edit.php create mode 100644 templates/Subregions/index.php create mode 100644 templates/Subregions/view.php create mode 100644 templates/element/Addresses/form.php create mode 100644 templates/element/Layout/submenu.php create mode 100644 tests/Fixture/AddressesFixture.php create mode 100644 tests/Fixture/CitiesFixture.php create mode 100644 tests/Fixture/CountriesFixture.php create mode 100644 tests/Fixture/RegionsFixture.php create mode 100644 tests/Fixture/StatesFixture.php create mode 100644 tests/Fixture/SubregionsFixture.php create mode 100644 tests/TestCase/Controller/AddressesControllerTest.php create mode 100644 tests/TestCase/Controller/BaseControllerTest.php create mode 100644 tests/TestCase/Controller/CitiesControllerTest.php create mode 100644 tests/TestCase/Controller/CountriesControllerTest.php create mode 100644 tests/TestCase/Controller/RegionsControllerTest.php create mode 100644 tests/TestCase/Controller/StatesControllerTest.php create mode 100644 tests/TestCase/Controller/SubregionsControllerTest.php create mode 100644 tests/TestCase/Model/Table/AddressesTableTest.php create mode 100644 tests/TestCase/Model/Table/CitiesTableTest.php create mode 100644 tests/TestCase/Model/Table/CountriesTableTest.php create mode 100644 tests/TestCase/Model/Table/RegionsTableTest.php create mode 100644 tests/TestCase/Model/Table/StatesTableTest.php create mode 100644 tests/TestCase/Model/Table/SubregionsTableTest.php create mode 100644 tests/bootstrap.php create mode 100644 tests/config/bootstrap.php create mode 100644 tests/config/routes.php create mode 100644 tests/schema.php create mode 100644 tests/schema.sql create mode 100644 tests/test_app/src/Application.php create mode 100644 tests/test_app/src/Controller/AppController.php create mode 100644 tests/test_app/src/View/AppView.php create mode 100644 tests/test_app/templates/Error/error500.php create mode 100644 tests/test_app/templates/layout/ajax.php create mode 100644 tests/test_app/templates/layout/default.php create mode 100644 tests/test_app/webroot/images/cake_icon.png diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f3cd921 --- /dev/null +++ b/.gitignore @@ -0,0 +1,10 @@ +/composer.lock +/composer.phar +/phpunit.xml +/.phpunit.result.cache +/phpunit.phar +/config/Migrations/schema-dump-default.lock +/vendor/ +/.idea/ + +/tmp \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..b42362b --- /dev/null +++ b/README.md @@ -0,0 +1,11 @@ +# CakeAddresses plugin for CakePHP + +## Installation + +You can install this plugin into your CakePHP application using [composer](https://getcomposer.org). + +The recommended way to install composer packages is: + +``` +composer require hi-powered-dev/cake-addresses +``` diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..19012c6 --- /dev/null +++ b/composer.json @@ -0,0 +1,30 @@ +{ + "name": "hi-powered-dev/cake-addresses", + "description": "CakeAddresses plugin for CakePHP", + "type": "cakephp-plugin", + "license": "MIT", + "require": { + "php": ">=8.1", + "cakephp/cakephp": "^5.0.1" + }, + "require-dev": { + "phpunit/phpunit": "^10.1", + "php-collective/decimal-object": "^1.3", + "cakephp/migrations": "^4.0.0" + }, + "suggest": { + "dereuromark/cakephp-geo": "^3.2" + }, + "autoload": { + "psr-4": { + "CakeAddresses\\": "src/" + } + }, + "autoload-dev": { + "psr-4": { + "CakeAddresses\\Test\\": "tests/", + "Cake\\Test\\": "vendor/cakephp/cakephp/tests/", + "TestApp\\": "tests/test_app/src/" + } + } +} diff --git a/config/Migrations/20240117020203_InitialAddresses.php b/config/Migrations/20240117020203_InitialAddresses.php new file mode 100644 index 0000000..9170d4d --- /dev/null +++ b/config/Migrations/20240117020203_InitialAddresses.php @@ -0,0 +1,605 @@ +table('addresses') + ->addColumn('address_name', 'string', [ + 'default' => null, + 'limit' => 255, + 'null' => true, + ]) + ->addColumn('contact_name', 'string', [ + 'default' => null, + 'limit' => 255, + 'null' => true, + ]) + ->addColumn('address_line1', 'string', [ + 'default' => null, + 'limit' => 255, + 'null' => false, + ]) + ->addColumn('address_line2', 'string', [ + 'default' => null, + 'limit' => 255, + 'null' => true, + ]) + ->addColumn('city', 'string', [ + 'default' => null, + 'limit' => 255, + 'null' => false, + ]) + ->addColumn('city_id', 'integer', [ + 'default' => null, + 'limit' => null, + 'null' => true, + 'signed' => true, + ]) + ->addColumn('state', 'string', [ + 'default' => null, + 'limit' => 255, + 'null' => false, + ]) + ->addColumn('state_id', 'integer', [ + 'default' => null, + 'limit' => null, + 'null' => true, + 'signed' => true, + ]) + ->addColumn('postal_code', 'string', [ + 'default' => null, + 'limit' => 25, + 'null' => false, + ]) + ->addColumn('country', 'string', [ + 'default' => null, + 'limit' => 255, + 'null' => false, + ]) + ->addColumn('country_id', 'integer', [ + 'default' => null, + 'limit' => null, + 'null' => true, + 'signed' => true, + ]) + ->addColumn('phone_number', 'string', [ + 'default' => null, + 'limit' => 25, + 'null' => true, + ]) + ->addColumn('email', 'string', [ + 'default' => null, + 'limit' => 255, + 'null' => true, + ]) + ->addColumn('notes', 'text', [ + 'default' => null, + 'limit' => null, + 'null' => true, + ]) + ->create(); + + $this->table('cities') + ->addColumn('name', 'string', [ + 'default' => null, + 'limit' => 255, + 'null' => false, + ]) + ->addColumn('state_id', 'integer', [ + 'default' => null, + 'limit' => null, + 'null' => false, + 'signed' => false, + ]) + ->addColumn('state_code', 'string', [ + 'default' => null, + 'limit' => 255, + 'null' => false, + ]) + ->addColumn('country_id', 'integer', [ + 'default' => null, + 'limit' => null, + 'null' => false, + 'signed' => false, + ]) + ->addColumn('country_code', 'char', [ + 'default' => null, + 'limit' => 2, + 'null' => false, + ]) + ->addColumn('latitude', 'decimal', [ + 'default' => null, + 'null' => false, + 'precision' => 10, + 'scale' => 8, + 'signed' => true, + ]) + ->addColumn('longitude', 'decimal', [ + 'default' => null, + 'null' => false, + 'precision' => 11, + 'scale' => 8, + 'signed' => true, + ]) + ->addColumn('created_at', 'timestamp', [ + 'default' => '2014-01-01 14:31:01', + 'limit' => null, + 'null' => false, + ]) + ->addColumn('updated_at', 'timestamp', [ + 'default' => '2014-01-01 14:31:01', + 'limit' => null, + 'null' => false, + ]) + ->addColumn('flag', 'boolean', [ + 'default' => true, + 'limit' => null, + 'null' => false, + ]) + ->addColumn('wikiDataId', 'string', [ + 'comment' => 'Rapid API GeoDB Cities', + 'default' => null, + 'limit' => 255, + 'null' => true, + ]) +// ->addIndex( +// [ +// 'state_id', +// ], +// [ +// 'name' => 'cities_test_ibfk_1', +// ] +// ) +// ->addIndex( +// [ +// 'country_id', +// ], +// [ +// 'name' => 'cities_test_ibfk_2', +// ] +// ) + ->create(); + + $this->table('countries') + ->addColumn('name', 'string', [ + 'default' => null, + 'limit' => 100, + 'null' => false, + ]) + ->addColumn('iso3', 'char', [ + 'default' => null, + 'limit' => 3, + 'null' => true, + ]) + ->addColumn('numeric_code', 'char', [ + 'default' => null, + 'limit' => 3, + 'null' => true, + ]) + ->addColumn('iso2', 'char', [ + 'default' => null, + 'limit' => 2, + 'null' => true, + ]) + ->addColumn('phonecode', 'string', [ + 'default' => null, + 'limit' => 255, + 'null' => true, + ]) + ->addColumn('capital', 'string', [ + 'default' => null, + 'limit' => 255, + 'null' => true, + ]) + ->addColumn('currency', 'string', [ + 'default' => null, + 'limit' => 255, + 'null' => true, + ]) + ->addColumn('currency_name', 'string', [ + 'default' => null, + 'limit' => 255, + 'null' => true, + ]) + ->addColumn('currency_symbol', 'string', [ + 'default' => null, + 'limit' => 255, + 'null' => true, + ]) + ->addColumn('tld', 'string', [ + 'default' => null, + 'limit' => 255, + 'null' => true, + ]) + ->addColumn('native', 'string', [ + 'default' => null, + 'limit' => 255, + 'null' => true, + ]) + ->addColumn('region', 'string', [ + 'default' => null, + 'limit' => 255, + 'null' => true, + ]) + ->addColumn('region_id', 'integer', [ + 'default' => null, + 'limit' => null, + 'null' => true, + 'signed' => false, + ]) + ->addColumn('subregion', 'string', [ + 'default' => null, + 'limit' => 255, + 'null' => true, + ]) + ->addColumn('subregion_id', 'integer', [ + 'default' => null, + 'limit' => null, + 'null' => true, + 'signed' => false, + ]) + ->addColumn('nationality', 'string', [ + 'default' => null, + 'limit' => 255, + 'null' => true, + ]) + ->addColumn('timezones', 'text', [ + 'default' => null, + 'limit' => null, + 'null' => true, + ]) + ->addColumn('translations', 'text', [ + 'default' => null, + 'limit' => null, + 'null' => true, + ]) + ->addColumn('latitude', 'decimal', [ + 'default' => null, + 'null' => true, + 'precision' => 10, + 'scale' => 8, + 'signed' => true, + ]) + ->addColumn('longitude', 'decimal', [ + 'default' => null, + 'null' => true, + 'precision' => 11, + 'scale' => 8, + 'signed' => true, + ]) + ->addColumn('emoji', 'string', [ + 'default' => null, + 'limit' => 191, + 'null' => true, + ]) + ->addColumn('emojiU', 'string', [ + 'default' => null, + 'limit' => 191, + 'null' => true, + ]) + ->addColumn('created_at', 'timestamp', [ + 'default' => null, + 'limit' => null, + 'null' => true, + ]) + ->addColumn('updated_at', 'timestamp', [ + 'default' => '2014-01-01 14:31:01', + 'limit' => null, + 'null' => false, + ]) + ->addColumn('flag', 'boolean', [ + 'default' => true, + 'limit' => null, + 'null' => false, + ]) + ->addColumn('wikiDataId', 'string', [ + 'comment' => 'Rapid API GeoDB Cities', + 'default' => null, + 'limit' => 255, + 'null' => true, + ]) + ->addIndex( + [ + 'region_id', + ], + [ + 'name' => 'country_continent', + ] + ) + ->addIndex( + [ + 'subregion_id', + ], + [ + 'name' => 'country_subregion', + ] + ) + ->create(); + + $this->table('regions') + ->addColumn('name', 'string', [ + 'default' => null, + 'limit' => 100, + 'null' => false, + ]) + ->addColumn('translations', 'text', [ + 'default' => null, + 'limit' => null, + 'null' => true, + ]) + ->addColumn('created_at', 'timestamp', [ + 'default' => null, + 'limit' => null, + 'null' => true, + ]) + ->addColumn('updated_at', 'timestamp', [ + 'default' => '2014-01-01 14:31:01', + 'limit' => null, + 'null' => false, + ]) + ->addColumn('flag', 'boolean', [ + 'default' => true, + 'limit' => null, + 'null' => false, + ]) + ->addColumn('wikiDataId', 'string', [ + 'comment' => 'Rapid API GeoDB Cities', + 'default' => null, + 'limit' => 255, + 'null' => true, + ]) + ->create(); + + $this->table('states') + ->addColumn('name', 'string', [ + 'default' => null, + 'limit' => 255, + 'null' => false, + ]) + ->addColumn('country_id', 'integer', [ + 'default' => null, + 'limit' => null, + 'null' => false, + 'signed' => false, + ]) + ->addColumn('country_code', 'char', [ + 'default' => null, + 'limit' => 2, + 'null' => false, + ]) + ->addColumn('fips_code', 'string', [ + 'default' => null, + 'limit' => 255, + 'null' => true, + ]) + ->addColumn('iso2', 'string', [ + 'default' => null, + 'limit' => 255, + 'null' => true, + ]) + ->addColumn('type', 'string', [ + 'default' => null, + 'limit' => 191, + 'null' => true, + ]) + ->addColumn('latitude', 'decimal', [ + 'default' => null, + 'null' => true, + 'precision' => 10, + 'scale' => 8, + 'signed' => true, + ]) + ->addColumn('longitude', 'decimal', [ + 'default' => null, + 'null' => true, + 'precision' => 11, + 'scale' => 8, + 'signed' => true, + ]) + ->addColumn('created_at', 'timestamp', [ + 'default' => null, + 'limit' => null, + 'null' => true, + ]) + ->addColumn('updated_at', 'timestamp', [ + 'default' => '2014-01-01 14:31:01', + 'limit' => null, + 'null' => false, + ]) + ->addColumn('flag', 'boolean', [ + 'default' => true, + 'limit' => null, + 'null' => false, + ]) + ->addColumn('wikiDataId', 'string', [ + 'comment' => 'Rapid API GeoDB Cities', + 'default' => null, + 'limit' => 255, + 'null' => true, + ]) + ->addIndex( + [ + 'country_id', + ], + [ + 'name' => 'country_region', + ] + ) + ->create(); + + $this->table('subregions') + ->addColumn('name', 'string', [ + 'default' => null, + 'limit' => 100, + 'null' => false, + ]) + ->addColumn('translations', 'text', [ + 'default' => null, + 'limit' => null, + 'null' => true, + ]) + ->addColumn('region_id', 'integer', [ + 'default' => null, + 'limit' => null, + 'null' => false, + 'signed' => false, + ]) + ->addColumn('created_at', 'timestamp', [ + 'default' => null, + 'limit' => null, + 'null' => true, + ]) + ->addColumn('updated_at', 'timestamp', [ + 'default' => '2014-01-01 14:31:01', + 'limit' => null, + 'null' => false, + ]) + ->addColumn('flag', 'boolean', [ + 'default' => true, + 'limit' => null, + 'null' => false, + ]) + ->addColumn('wikiDataId', 'string', [ + 'comment' => 'Rapid API GeoDB Cities', + 'default' => null, + 'limit' => 255, + 'null' => true, + ]) + ->addIndex( + [ + 'region_id', + ], + [ + 'name' => 'subregion_continent', + ] + ) + ->create(); + +// $this->table('cities') +// ->addForeignKey( +// 'country_id', +// 'countries', +// 'id', +// [ +// 'update' => 'RESTRICT', +// 'delete' => 'RESTRICT', +// 'constraint' => 'cities_ibfk_2' +// ] +// ) +// ->addForeignKey( +// 'state_id', +// 'states', +// 'id', +// [ +// 'update' => 'RESTRICT', +// 'delete' => 'RESTRICT', +// 'constraint' => 'cities_ibfk_1' +// ] +// ) +// ->update(); + +// $this->table('countries') +// ->addForeignKey( +// 'subregion_id', +// 'subregions', +// 'id', +// [ +// 'update' => 'RESTRICT', +// 'delete' => 'RESTRICT', +// 'constraint' => 'country_subregion_final' +// ] +// ) +// ->addForeignKey( +// 'region_id', +// 'regions', +// 'id', +// [ +// 'update' => 'RESTRICT', +// 'delete' => 'RESTRICT', +// 'constraint' => 'country_continent_final' +// ] +// ) +// ->update(); + +// $this->table('states') +// ->addForeignKey( +// 'country_id', +// 'countries', +// 'id', +// [ +// 'update' => 'RESTRICT', +// 'delete' => 'RESTRICT', +// 'constraint' => 'country_region_final' +// ] +// ) +// ->update(); +// +// $this->table('subregions') +// ->addForeignKey( +// 'region_id', +// 'regions', +// 'id', +// [ +// 'update' => 'RESTRICT', +// 'delete' => 'RESTRICT', +// 'constraint' => 'subregion_continent_final' +// ] +// ) +// ->update(); + } + + /** + * Down Method. + * + * More information on this method is available here: + * https://book.cakephp.org/phinx/0/en/migrations.html#the-down-method + * @return void + */ + public function down(): void + { + $this->table('cities') + ->dropForeignKey( + 'country_id' + ) + ->dropForeignKey( + 'state_id' + )->save(); + + $this->table('countries') + ->dropForeignKey( + 'subregion_id' + ) + ->dropForeignKey( + 'region_id' + ) + ->save(); + + $this->table('states') + ->dropForeignKey( + 'country_id' + )->save(); + + $this->table('subregions') + ->dropForeignKey( + 'region_id' + )->save(); + + $this->table('addresses')->drop()->save(); + $this->table('cities')->drop()->save(); + $this->table('countries')->drop()->save(); + $this->table('regions')->drop()->save(); + $this->table('states')->drop()->save(); + $this->table('subregions')->drop()->save(); + } +} diff --git a/config/app.example.php b/config/app.example.php new file mode 100644 index 0000000..72877d0 --- /dev/null +++ b/config/app.example.php @@ -0,0 +1,9 @@ + [ + + ], +]; diff --git a/config/routes.php b/config/routes.php new file mode 100644 index 0000000..72a6ae0 --- /dev/null +++ b/config/routes.php @@ -0,0 +1,14 @@ +plugin( + 'CakeAddresses', + ['path' => '/address-manager'], + function ($routes) { + $routes->setRouteClass(DashedRoute::class); + $routes->connect('/addresses', ['controller' => 'Addresses', 'action' => 'index']); + $routes->connect('/addresses/view/{id}', ['controller' => 'Addresses', 'action' => 'view', ], ['id' => '\d+', 'pass' => ['id']]); + $routes->connect('/addresses/edit/{id}', ['controller' => 'Addresses', 'action' => 'update'], ['id' => '\d+', 'pass' => ['id']]); + $routes->connect('/addresses/add', ['controller' => 'Addresses', 'action' => 'add']); + } +); diff --git a/phpunit.xml.dist b/phpunit.xml.dist new file mode 100644 index 0000000..d4010e7 --- /dev/null +++ b/phpunit.xml.dist @@ -0,0 +1,31 @@ + + + + + + + + + + + + tests/TestCase/ + + + + + + + + + + + src/ + + + diff --git a/src/CakeAddressesPlugin.php b/src/CakeAddressesPlugin.php new file mode 100644 index 0000000..7a43451 --- /dev/null +++ b/src/CakeAddressesPlugin.php @@ -0,0 +1,93 @@ +plugin( + 'CakeAddresses', + ['path' => '/cake-addresses'], + function (RouteBuilder $builder) { + // Add custom routes here + + $builder->fallbacks(); + } + ); + parent::routes($routes); + } + + /** + * Add middleware for the plugin. + * + * @param \Cake\Http\MiddlewareQueue $middlewareQueue The middleware queue to update. + * @return \Cake\Http\MiddlewareQueue + */ + public function middleware(MiddlewareQueue $middlewareQueue): MiddlewareQueue + { + // Add your middlewares here + + return $middlewareQueue; + } + + /** + * Add commands for the plugin. + * + * @param \Cake\Console\CommandCollection $commands The command collection to update. + * @return \Cake\Console\CommandCollection + */ + public function console(CommandCollection $commands): CommandCollection + { + // Add your commands here + + $commands = parent::console($commands); + + return $commands; + } + + /** + * Register application container services. + * + * @param \Cake\Core\ContainerInterface $container The Container to update. + * @return void + * @link https://book.cakephp.org/4/en/development/dependency-injection.html#dependency-injection + */ + public function services(ContainerInterface $container): void + { + // Add your services here + } +} diff --git a/src/Controller/AddressesController.php b/src/Controller/AddressesController.php new file mode 100644 index 0000000..35d9eb0 --- /dev/null +++ b/src/Controller/AddressesController.php @@ -0,0 +1,110 @@ +Addresses->find() + ->contain(['Cities', 'States', 'Countries']); + $addresses = $this->paginate($query); + + $this->set(compact('addresses')); + } + + /** + * View method + * + * @param string|null $id Address id. + * @return \Cake\Http\Response|null|void Renders view + * @throws \Cake\Datasource\Exception\RecordNotFoundException When record not found. + */ + public function view($id = null) + { + $address = $this->Addresses->get($id, contain: ['Cities', 'States', 'Countries']); + $this->set(compact('address')); + } + + /** + * Add method + * + * @return \Cake\Http\Response|null|void Redirects on successful add, renders view otherwise. + */ + public function add() + { + $address = $this->Addresses->newEmptyEntity(); + if ($this->request->is('post')) { + $data = $this->request->getData(); + $address = $this->Addresses->patchEntity($address, $data); + if ($this->Addresses->save($address)) { + $this->Flash->success(__('The address has been saved.')); + + return $this->redirect(['action' => 'index']); + } + Log::alert(print_r('$address->getErrors() from addresses add', true)); + Log::alert(print_r($address->getErrors(), true)); + $this->Flash->error(__('The address could not be saved. Please, try again.')); + } + $countries = $this->Addresses->Countries->find('list')->all(); + $this->set(compact('address', 'countries')); + } + + /** + * Edit method + * + * @param string|null $id Address id. + * @return \Cake\Http\Response|null|void Redirects on successful edit, renders view otherwise. + * @throws \Cake\Datasource\Exception\RecordNotFoundException When record not found. + */ + public function edit($id = null) + { + $address = $this->Addresses->get($id, contain: []); + if ($this->request->is(['patch', 'post', 'put'])) { + $address = $this->Addresses->patchEntity($address, $this->request->getData()); + if ($this->Addresses->save($address)) { + $this->Flash->success(__('The address has been saved.')); + + return $this->redirect(['action' => 'index']); + } + $this->Flash->error(__('The address could not be saved. Please, try again.')); + } + $countries = $this->Addresses->Countries->find('list')->all(); + $states = $this->Addresses->States->find('list')->where(['country_id' => $address->country_id])->all(); + $this->set(compact('address', 'countries', 'states')); + } + + /** + * Delete method + * + * @param string|null $id Address id. + * @return \Cake\Http\Response|null Redirects to index. + * @throws \Cake\Datasource\Exception\RecordNotFoundException When record not found. + */ + public function delete($id = null) + { + $this->request->allowMethod(['post', 'delete']); + $address = $this->Addresses->get($id); + if ($this->Addresses->delete($address)) { + $this->Flash->success(__('The address has been deleted.')); + } else { + $this->Flash->error(__('The address could not be deleted. Please, try again.')); + } + + return $this->redirect(['action' => 'index']); + } +} diff --git a/src/Controller/AppController.php b/src/Controller/AppController.php new file mode 100644 index 0000000..7ca4af8 --- /dev/null +++ b/src/Controller/AppController.php @@ -0,0 +1,10 @@ +Cities +// ->find('search', $this->request->getQueryParams()) + ->find('list') + ->orderBy(['name']); + $cities = $this->paginate($query); + + $this->set(compact('cities')); + } +} diff --git a/src/Controller/CountriesController.php b/src/Controller/CountriesController.php new file mode 100644 index 0000000..cf9a0f0 --- /dev/null +++ b/src/Controller/CountriesController.php @@ -0,0 +1,41 @@ +Countries->find() + ->contain(['Regions', 'Subregions']); + $countries = $this->paginate($query); + + $this->set(compact('countries')); + } + + /** + * View method + * + * @param string|null $id Country id. + * @return \Cake\Http\Response|null|void Renders view + * @throws \Cake\Datasource\Exception\RecordNotFoundException When record not found. + */ + public function view($id = null) + { + $country = $this->Countries->get($id, contain: ['Regions', 'Subregions', 'States']); + $this->set(compact('country')); + } +} diff --git a/src/Controller/RegionsController.php b/src/Controller/RegionsController.php new file mode 100644 index 0000000..5f2e7e7 --- /dev/null +++ b/src/Controller/RegionsController.php @@ -0,0 +1,40 @@ +Regions->find(); + $regions = $this->paginate($query); + + $this->set(compact('regions')); + } + + /** + * View method + * + * @param string|null $id Region id. + * @return \Cake\Http\Response|null|void Renders view + * @throws \Cake\Datasource\Exception\RecordNotFoundException When record not found. + */ + public function view($id = null) + { + $region = $this->Regions->get($id, contain: ['Countries', 'Subregions']); + $this->set(compact('region')); + } +} diff --git a/src/Controller/StatesController.php b/src/Controller/StatesController.php new file mode 100644 index 0000000..ed51ae4 --- /dev/null +++ b/src/Controller/StatesController.php @@ -0,0 +1,55 @@ +States->find() + ->contain(['Countries']); + $states = $this->paginate($query); + + $this->set(compact('states')); + } + + /** + * View method + * + * @param string|null $id State id. + * @return \Cake\Http\Response|null|void Renders view + * @throws \Cake\Datasource\Exception\RecordNotFoundException When record not found. + */ + public function view($id = null) + { + $state = $this->States->get($id, contain: ['Countries', 'Addresses', 'Cities']); + $this->set(compact('state')); + } + + /** + * @return \Cake\Http\Response|null|void Renders view + */ + public function select() + { + $states = $this->States + ->find('list') + ->where(['country_id' => $this->request->getQuery('country_id', -1)]) + ->orderBy(['States.name']) + ->toArray(); + + $this->set(compact('states')); + } +} diff --git a/src/Controller/SubregionsController.php b/src/Controller/SubregionsController.php new file mode 100644 index 0000000..9ed84f8 --- /dev/null +++ b/src/Controller/SubregionsController.php @@ -0,0 +1,41 @@ +Subregions->find() + ->contain(['Regions']); + $subregions = $this->paginate($query); + + $this->set(compact('subregions')); + } + + /** + * View method + * + * @param string|null $id Subregion id. + * @return \Cake\Http\Response|null|void Renders view + * @throws \Cake\Datasource\Exception\RecordNotFoundException When record not found. + */ + public function view($id = null) + { + $subregion = $this->Subregions->get($id, contain: ['Regions', 'Countries']); + $this->set(compact('subregion')); + } +} diff --git a/src/Model/Entity/Address.php b/src/Model/Entity/Address.php new file mode 100644 index 0000000..5a2933c --- /dev/null +++ b/src/Model/Entity/Address.php @@ -0,0 +1,55 @@ + + */ + protected array $_accessible = [ + 'address_name' => true, + 'contact_name' => true, + 'address_line1' => true, + 'address_line2' => true, + 'city' => true, + 'city_id' => true, + 'state' => true, + 'state_id' => true, + 'postal_code' => true, + 'country' => true, + 'country_id' => true, + 'phone_number' => true, + 'email' => true, + 'notes' => true, + ]; +} diff --git a/src/Model/Entity/City.php b/src/Model/Entity/City.php new file mode 100644 index 0000000..ee26be4 --- /dev/null +++ b/src/Model/Entity/City.php @@ -0,0 +1,55 @@ + + */ + protected array $_accessible = [ + 'name' => true, + 'state_id' => true, + 'state_code' => true, + 'country_id' => true, + 'country_code' => true, + 'latitude' => true, + 'longitude' => true, + 'created_at' => true, + 'updated_at' => true, + 'flag' => true, + 'wikiDataId' => true, + 'state' => true, + 'country' => true, + 'addresses' => true, + ]; +} diff --git a/src/Model/Entity/Country.php b/src/Model/Entity/Country.php new file mode 100644 index 0000000..1ead18e --- /dev/null +++ b/src/Model/Entity/Country.php @@ -0,0 +1,85 @@ + + */ + protected array $_accessible = [ + 'name' => true, + 'iso3' => true, + 'numeric_code' => true, + 'iso2' => true, + 'phonecode' => true, + 'capital' => true, + 'currency' => true, + 'currency_name' => true, + 'currency_symbol' => true, + 'tld' => true, + 'native' => true, + 'region' => true, + 'region_id' => true, + 'subregion' => true, + 'subregion_id' => true, + 'nationality' => true, + 'timezones' => true, + 'translations' => true, + 'latitude' => true, + 'longitude' => true, + 'emoji' => true, + 'emojiU' => true, + 'created_at' => true, + 'updated_at' => true, + 'flag' => true, + 'wikiDataId' => true, + 'addresses' => true, + 'cities' => true, + 'states' => true, + ]; +} diff --git a/src/Model/Entity/Region.php b/src/Model/Entity/Region.php new file mode 100644 index 0000000..121646a --- /dev/null +++ b/src/Model/Entity/Region.php @@ -0,0 +1,43 @@ + + */ + protected array $_accessible = [ + 'name' => true, + 'translations' => true, + 'created_at' => true, + 'updated_at' => true, + 'flag' => true, + 'wikiDataId' => true, + 'countries' => true, + 'subregions' => true, + ]; +} diff --git a/src/Model/Entity/State.php b/src/Model/Entity/State.php new file mode 100644 index 0000000..72a0b79 --- /dev/null +++ b/src/Model/Entity/State.php @@ -0,0 +1,57 @@ + + */ + protected array $_accessible = [ + 'name' => true, + 'country_id' => true, + 'country_code' => true, + 'fips_code' => true, + 'iso2' => true, + 'type' => true, + 'latitude' => true, + 'longitude' => true, + 'created_at' => true, + 'updated_at' => true, + 'flag' => true, + 'wikiDataId' => true, + 'country' => true, + 'addresses' => true, + 'cities' => true, + ]; +} diff --git a/src/Model/Entity/Subregion.php b/src/Model/Entity/Subregion.php new file mode 100644 index 0000000..6f01ff0 --- /dev/null +++ b/src/Model/Entity/Subregion.php @@ -0,0 +1,45 @@ + + */ + protected array $_accessible = [ + 'name' => true, + 'translations' => true, + 'region_id' => true, + 'created_at' => true, + 'updated_at' => true, + 'flag' => true, + 'wikiDataId' => true, + 'region' => true, + 'countries' => true, + ]; +} diff --git a/src/Model/Table/AddressesTable.php b/src/Model/Table/AddressesTable.php new file mode 100644 index 0000000..a0f7cf4 --- /dev/null +++ b/src/Model/Table/AddressesTable.php @@ -0,0 +1,185 @@ + newEntities(array $data, array $options = []) + * @method \CakeAddresses\Model\Entity\Address get(mixed $primaryKey, array|string $finder = 'all', \Psr\SimpleCache\CacheInterface|string|null $cache = null, \Closure|string|null $cacheKey = null, mixed ...$args) + * @method \CakeAddresses\Model\Entity\Address findOrCreate($search, ?callable $callback = null, array $options = []) + * @method \CakeAddresses\Model\Entity\Address patchEntity(\Cake\Datasource\EntityInterface $entity, array $data, array $options = []) + * @method array<\CakeAddresses\Model\Entity\Address> patchEntities(iterable $entities, array $data, array $options = []) + * @method \CakeAddresses\Model\Entity\Address|false save(\Cake\Datasource\EntityInterface $entity, array $options = []) + * @method \CakeAddresses\Model\Entity\Address saveOrFail(\Cake\Datasource\EntityInterface $entity, array $options = []) + * @method iterable<\CakeAddresses\Model\Entity\Address>|\Cake\Datasource\ResultSetInterface<\CakeAddresses\Model\Entity\Address>|false saveMany(iterable $entities, array $options = []) + * @method iterable<\CakeAddresses\Model\Entity\Address>|\Cake\Datasource\ResultSetInterface<\CakeAddresses\Model\Entity\Address> saveManyOrFail(iterable $entities, array $options = []) + * @method iterable<\CakeAddresses\Model\Entity\Address>|\Cake\Datasource\ResultSetInterface<\CakeAddresses\Model\Entity\Address>|false deleteMany(iterable $entities, array $options = []) + * @method iterable<\CakeAddresses\Model\Entity\Address>|\Cake\Datasource\ResultSetInterface<\CakeAddresses\Model\Entity\Address> deleteManyOrFail(iterable $entities, array $options = []) + */ +class AddressesTable extends Table +{ + /** + * Initialize method + * + * @param array $config The configuration for the Table. + * @return void + */ + public function initialize(array $config): void + { + parent::initialize($config); + + $this->setTable('addresses'); + $this->setDisplayField('address_line1'); + $this->setPrimaryKey('id'); + + $this->belongsTo('Cities', [ + 'foreignKey' => 'city_id', + 'className' => 'CakeAddresses.Cities', + 'propertyName' => 'city_entity', + ]); + $this->belongsTo('States', [ + 'foreignKey' => 'state_id', + 'className' => 'CakeAddresses.States', + 'propertyName' => 'state_entity', + ]); + $this->belongsTo('Countries', [ + 'foreignKey' => 'country_id', + 'className' => 'CakeAddresses.Countries', + 'propertyName' => 'country_entity', + ]); + } + + /** + * Default validation rules. + * + * @param \Cake\Validation\Validator $validator Validator instance. + * @return \Cake\Validation\Validator + */ + public function validationDefault(Validator $validator): Validator + { + $validator + ->scalar('address_name') + ->maxLength('address_name', 255) + ->allowEmptyString('address_name'); + + $validator + ->scalar('contact_name') + ->maxLength('contact_name', 255) + ->allowEmptyString('contact_name'); + + $validator + ->scalar('address_line1') + ->maxLength('address_line1', 255) + ->requirePresence('address_line1', 'create') + ->notEmptyString('address_line1'); + + $validator + ->scalar('address_line2') + ->maxLength('address_line2', 255) + ->allowEmptyString('address_line2'); + + $validator + ->scalar('city') + ->maxLength('city', 255) + ->requirePresence('city', 'create') + ->notEmptyString('city'); + + $validator + ->integer('city_id') + ->allowEmptyString('city_id'); + + $validator + ->scalar('state') + ->maxLength('state', 255) + ->requirePresence('state', 'create') + ->notEmptyString('state'); + + $validator + ->integer('state_id') + ->allowEmptyString('state_id'); + + $validator + ->scalar('postal_code') + ->maxLength('postal_code', 25) + ->requirePresence('postal_code', 'create') + ->notEmptyString('postal_code'); + + $validator + ->scalar('country') + ->maxLength('country', 255) + ->requirePresence('country', 'create') + ->notEmptyString('country'); + + $validator + ->integer('country_id') + ->allowEmptyString('country_id'); + + $validator + ->scalar('phone_number') + ->maxLength('phone_number', 25) + ->allowEmptyString('phone_number'); + + $validator + ->email('email') + ->allowEmptyString('email'); + + $validator + ->scalar('notes') + ->allowEmptyString('notes'); + + return $validator; + } + + /** + * Returns a rules checker object that will be used for validating + * application integrity. + * + * @param \Cake\ORM\RulesChecker $rules The rules object to be modified. + * @return \Cake\ORM\RulesChecker + */ + public function buildRules(RulesChecker $rules): RulesChecker + { + $rules->add($rules->existsIn('city_id', 'Cities'), ['errorField' => 'city_id']); + $rules->add($rules->existsIn('state_id', 'States'), ['errorField' => 'state_id']); + $rules->add($rules->existsIn('country_id', 'Countries'), ['errorField' => 'country_id']); + + return $rules; + } + + /** + * @param EventInterface $event + * @param ArrayObject $data + * @param ArrayObject $options + * + * @return void + */ + public function beforeMarshal(EventInterface $event, ArrayObject $data, ArrayObject $options): void + { + if ($data['state_id'] && !isset($data['state'])) { + $state = $this->States->find()->where(['id' => $data['state_id']])->first(); + $data['state'] = $state ? $state->name : null; + } + if ($data['country_id'] && !isset($data['country'])) { + $country = $this->Countries->find()->where(['id' => $data['country_id']])->first(); + $data['country'] = $country ? $country->name : null; + } + } +} diff --git a/src/Model/Table/CitiesTable.php b/src/Model/Table/CitiesTable.php new file mode 100644 index 0000000..d98cde8 --- /dev/null +++ b/src/Model/Table/CitiesTable.php @@ -0,0 +1,142 @@ + newEntities(array $data, array $options = []) + * @method \CakeAddresses\Model\Entity\City get(mixed $primaryKey, array|string $finder = 'all', \Psr\SimpleCache\CacheInterface|string|null $cache = null, \Closure|string|null $cacheKey = null, mixed ...$args) + * @method \CakeAddresses\Model\Entity\City findOrCreate($search, ?callable $callback = null, array $options = []) + * @method \CakeAddresses\Model\Entity\City patchEntity(\Cake\Datasource\EntityInterface $entity, array $data, array $options = []) + * @method array<\CakeAddresses\Model\Entity\City> patchEntities(iterable $entities, array $data, array $options = []) + * @method \CakeAddresses\Model\Entity\City|false save(\Cake\Datasource\EntityInterface $entity, array $options = []) + * @method \CakeAddresses\Model\Entity\City saveOrFail(\Cake\Datasource\EntityInterface $entity, array $options = []) + * @method iterable<\CakeAddresses\Model\Entity\City>|\Cake\Datasource\ResultSetInterface<\CakeAddresses\Model\Entity\City>|false saveMany(iterable $entities, array $options = []) + * @method iterable<\CakeAddresses\Model\Entity\City>|\Cake\Datasource\ResultSetInterface<\CakeAddresses\Model\Entity\City> saveManyOrFail(iterable $entities, array $options = []) + * @method iterable<\CakeAddresses\Model\Entity\City>|\Cake\Datasource\ResultSetInterface<\CakeAddresses\Model\Entity\City>|false deleteMany(iterable $entities, array $options = []) + * @method iterable<\CakeAddresses\Model\Entity\City>|\Cake\Datasource\ResultSetInterface<\CakeAddresses\Model\Entity\City> deleteManyOrFail(iterable $entities, array $options = []) + */ +class CitiesTable extends Table +{ + /** + * Initialize method + * + * @param array $config The configuration for the Table. + * @return void + */ + public function initialize(array $config): void + { + parent::initialize($config); + + $this->setTable('cities'); + $this->setDisplayField('name'); + $this->setPrimaryKey('id'); + + $this->belongsTo('States', [ + 'foreignKey' => 'state_id', + 'joinType' => 'INNER', + 'className' => 'CakeAddresses.States', + ]); + $this->belongsTo('Countries', [ + 'foreignKey' => 'country_id', + 'joinType' => 'INNER', + 'className' => 'CakeAddresses.Countries', + ]); + $this->hasMany('Addresses', [ + 'foreignKey' => 'city_id', + 'className' => 'CakeAddresses.Addresses', + ]); + } + + /** + * Default validation rules. + * + * @param \Cake\Validation\Validator $validator Validator instance. + * @return \Cake\Validation\Validator + */ + public function validationDefault(Validator $validator): Validator + { + $validator + ->scalar('name') + ->maxLength('name', 255) + ->requirePresence('name', 'create') + ->notEmptyString('name'); + + $validator + ->nonNegativeInteger('state_id') + ->notEmptyString('state_id'); + + $validator + ->scalar('state_code') + ->maxLength('state_code', 255) + ->requirePresence('state_code', 'create') + ->notEmptyString('state_code'); + + $validator + ->nonNegativeInteger('country_id') + ->notEmptyString('country_id'); + + $validator + ->scalar('country_code') + ->maxLength('country_code', 2) + ->requirePresence('country_code', 'create') + ->notEmptyString('country_code'); + + $validator + ->decimal('latitude') + ->requirePresence('latitude', 'create') + ->notEmptyString('latitude'); + + $validator + ->decimal('longitude') + ->requirePresence('longitude', 'create') + ->notEmptyString('longitude'); + + $validator + ->dateTime('created_at') + ->notEmptyDateTime('created_at'); + + $validator + ->dateTime('updated_at') + ->notEmptyDateTime('updated_at'); + + $validator + ->boolean('flag') + ->notEmptyString('flag'); + + $validator + ->scalar('wikiDataId') + ->maxLength('wikiDataId', 255) + ->allowEmptyString('wikiDataId'); + + return $validator; + } + + /** + * Returns a rules checker object that will be used for validating + * application integrity. + * + * @param \Cake\ORM\RulesChecker $rules The rules object to be modified. + * @return \Cake\ORM\RulesChecker + */ + public function buildRules(RulesChecker $rules): RulesChecker + { + $rules->add($rules->existsIn('state_id', 'States'), ['errorField' => 'state_id']); + $rules->add($rules->existsIn('country_id', 'Countries'), ['errorField' => 'country_id']); + + return $rules; + } +} diff --git a/src/Model/Table/CountriesTable.php b/src/Model/Table/CountriesTable.php new file mode 100644 index 0000000..6d01e1d --- /dev/null +++ b/src/Model/Table/CountriesTable.php @@ -0,0 +1,221 @@ + newEntities(array $data, array $options = []) + * @method \CakeAddresses\Model\Entity\Country get(mixed $primaryKey, array|string $finder = 'all', \Psr\SimpleCache\CacheInterface|string|null $cache = null, \Closure|string|null $cacheKey = null, mixed ...$args) + * @method \CakeAddresses\Model\Entity\Country findOrCreate($search, ?callable $callback = null, array $options = []) + * @method \CakeAddresses\Model\Entity\Country patchEntity(\Cake\Datasource\EntityInterface $entity, array $data, array $options = []) + * @method array<\CakeAddresses\Model\Entity\Country> patchEntities(iterable $entities, array $data, array $options = []) + * @method \CakeAddresses\Model\Entity\Country|false save(\Cake\Datasource\EntityInterface $entity, array $options = []) + * @method \CakeAddresses\Model\Entity\Country saveOrFail(\Cake\Datasource\EntityInterface $entity, array $options = []) + * @method iterable<\CakeAddresses\Model\Entity\Country>|\Cake\Datasource\ResultSetInterface<\CakeAddresses\Model\Entity\Country>|false saveMany(iterable $entities, array $options = []) + * @method iterable<\CakeAddresses\Model\Entity\Country>|\Cake\Datasource\ResultSetInterface<\CakeAddresses\Model\Entity\Country> saveManyOrFail(iterable $entities, array $options = []) + * @method iterable<\CakeAddresses\Model\Entity\Country>|\Cake\Datasource\ResultSetInterface<\CakeAddresses\Model\Entity\Country>|false deleteMany(iterable $entities, array $options = []) + * @method iterable<\CakeAddresses\Model\Entity\Country>|\Cake\Datasource\ResultSetInterface<\CakeAddresses\Model\Entity\Country> deleteManyOrFail(iterable $entities, array $options = []) + */ +class CountriesTable extends Table +{ + /** + * Initialize method + * + * @param array $config The configuration for the Table. + * @return void + */ + public function initialize(array $config): void + { + parent::initialize($config); + + $this->setTable('countries'); + $this->setDisplayField('name'); + $this->setPrimaryKey('id'); + + $this->belongsTo('Regions', [ + 'foreignKey' => 'region_id', + 'className' => 'CakeAddresses.Regions', + 'propertyName' => 'region_entity', + ]); + $this->belongsTo('Subregions', [ + 'foreignKey' => 'subregion_id', + 'className' => 'CakeAddresses.Subregions', + 'propertyName' => 'subregion_entity', + ]); + $this->hasMany('Addresses', [ + 'foreignKey' => 'country_id', + 'className' => 'CakeAddresses.Addresses', + ]); + $this->hasMany('Cities', [ + 'foreignKey' => 'country_id', + 'className' => 'CakeAddresses.Cities', + ]); + $this->hasMany('States', [ + 'foreignKey' => 'country_id', + 'className' => 'CakeAddresses.States', + ]); + } + + /** + * Default validation rules. + * + * @param \Cake\Validation\Validator $validator Validator instance. + * @return \Cake\Validation\Validator + */ + public function validationDefault(Validator $validator): Validator + { + $validator + ->scalar('name') + ->maxLength('name', 100) + ->requirePresence('name', 'create') + ->notEmptyString('name'); + + $validator + ->scalar('iso3') + ->maxLength('iso3', 3) + ->allowEmptyString('iso3'); + + $validator + ->scalar('numeric_code') + ->maxLength('numeric_code', 3) + ->allowEmptyString('numeric_code'); + + $validator + ->scalar('iso2') + ->maxLength('iso2', 2) + ->allowEmptyString('iso2'); + + $validator + ->scalar('phonecode') + ->maxLength('phonecode', 255) + ->allowEmptyString('phonecode'); + + $validator + ->scalar('capital') + ->maxLength('capital', 255) + ->allowEmptyString('capital'); + + $validator + ->scalar('currency') + ->maxLength('currency', 255) + ->allowEmptyString('currency'); + + $validator + ->scalar('currency_name') + ->maxLength('currency_name', 255) + ->allowEmptyString('currency_name'); + + $validator + ->scalar('currency_symbol') + ->maxLength('currency_symbol', 255) + ->allowEmptyString('currency_symbol'); + + $validator + ->scalar('tld') + ->maxLength('tld', 255) + ->allowEmptyString('tld'); + + $validator + ->scalar('native') + ->maxLength('native', 255) + ->allowEmptyString('native'); + + $validator + ->scalar('region') + ->maxLength('region', 255) + ->allowEmptyString('region'); + + $validator + ->nonNegativeInteger('region_id') + ->allowEmptyString('region_id'); + + $validator + ->scalar('subregion') + ->maxLength('subregion', 255) + ->allowEmptyString('subregion'); + + $validator + ->nonNegativeInteger('subregion_id') + ->allowEmptyString('subregion_id'); + + $validator + ->scalar('nationality') + ->maxLength('nationality', 255) + ->allowEmptyString('nationality'); + + $validator + ->scalar('timezones') + ->allowEmptyString('timezones'); + + $validator + ->scalar('translations') + ->allowEmptyString('translations'); + + $validator + ->decimal('latitude') + ->allowEmptyString('latitude'); + + $validator + ->decimal('longitude') + ->allowEmptyString('longitude'); + + $validator + ->scalar('emoji') + ->maxLength('emoji', 191) + ->allowEmptyString('emoji'); + + $validator + ->scalar('emojiU') + ->maxLength('emojiU', 191) + ->allowEmptyString('emojiU'); + + $validator + ->dateTime('created_at') + ->allowEmptyDateTime('created_at'); + + $validator + ->dateTime('updated_at') + ->notEmptyDateTime('updated_at'); + + $validator + ->boolean('flag') + ->notEmptyString('flag'); + + $validator + ->scalar('wikiDataId') + ->maxLength('wikiDataId', 255) + ->allowEmptyString('wikiDataId'); + + return $validator; + } + + /** + * Returns a rules checker object that will be used for validating + * application integrity. + * + * @param \Cake\ORM\RulesChecker $rules The rules object to be modified. + * @return \Cake\ORM\RulesChecker + */ + public function buildRules(RulesChecker $rules): RulesChecker + { + $rules->add($rules->existsIn('region_id', 'Regions'), ['errorField' => 'region_id']); + $rules->add($rules->existsIn('subregion_id', 'Subregions'), ['errorField' => 'subregion_id']); + + return $rules; + } +} diff --git a/src/Model/Table/RegionsTable.php b/src/Model/Table/RegionsTable.php new file mode 100644 index 0000000..23c4c81 --- /dev/null +++ b/src/Model/Table/RegionsTable.php @@ -0,0 +1,94 @@ + newEntities(array $data, array $options = []) + * @method \CakeAddresses\Model\Entity\Region get(mixed $primaryKey, array|string $finder = 'all', \Psr\SimpleCache\CacheInterface|string|null $cache = null, \Closure|string|null $cacheKey = null, mixed ...$args) + * @method \CakeAddresses\Model\Entity\Region findOrCreate($search, ?callable $callback = null, array $options = []) + * @method \CakeAddresses\Model\Entity\Region patchEntity(\Cake\Datasource\EntityInterface $entity, array $data, array $options = []) + * @method array<\CakeAddresses\Model\Entity\Region> patchEntities(iterable $entities, array $data, array $options = []) + * @method \CakeAddresses\Model\Entity\Region|false save(\Cake\Datasource\EntityInterface $entity, array $options = []) + * @method \CakeAddresses\Model\Entity\Region saveOrFail(\Cake\Datasource\EntityInterface $entity, array $options = []) + * @method iterable<\CakeAddresses\Model\Entity\Region>|\Cake\Datasource\ResultSetInterface<\CakeAddresses\Model\Entity\Region>|false saveMany(iterable $entities, array $options = []) + * @method iterable<\CakeAddresses\Model\Entity\Region>|\Cake\Datasource\ResultSetInterface<\CakeAddresses\Model\Entity\Region> saveManyOrFail(iterable $entities, array $options = []) + * @method iterable<\CakeAddresses\Model\Entity\Region>|\Cake\Datasource\ResultSetInterface<\CakeAddresses\Model\Entity\Region>|false deleteMany(iterable $entities, array $options = []) + * @method iterable<\CakeAddresses\Model\Entity\Region>|\Cake\Datasource\ResultSetInterface<\CakeAddresses\Model\Entity\Region> deleteManyOrFail(iterable $entities, array $options = []) + */ +class RegionsTable extends Table +{ + /** + * Initialize method + * + * @param array $config The configuration for the Table. + * @return void + */ + public function initialize(array $config): void + { + parent::initialize($config); + + $this->setTable('regions'); + $this->setDisplayField('name'); + $this->setPrimaryKey('id'); + + $this->hasMany('Countries', [ + 'foreignKey' => 'region_id', + 'className' => 'CakeAddresses.Countries', + ]); + $this->hasMany('Subregions', [ + 'foreignKey' => 'region_id', + 'className' => 'CakeAddresses.Subregions', + ]); + } + + /** + * Default validation rules. + * + * @param \Cake\Validation\Validator $validator Validator instance. + * @return \Cake\Validation\Validator + */ + public function validationDefault(Validator $validator): Validator + { + $validator + ->scalar('name') + ->maxLength('name', 100) + ->requirePresence('name', 'create') + ->notEmptyString('name'); + + $validator + ->scalar('translations') + ->allowEmptyString('translations'); + + $validator + ->dateTime('created_at') + ->allowEmptyDateTime('created_at'); + + $validator + ->dateTime('updated_at') + ->notEmptyDateTime('updated_at'); + + $validator + ->boolean('flag') + ->notEmptyString('flag'); + + $validator + ->scalar('wikiDataId') + ->maxLength('wikiDataId', 255) + ->allowEmptyString('wikiDataId'); + + return $validator; + } +} diff --git a/src/Model/Table/StatesTable.php b/src/Model/Table/StatesTable.php new file mode 100644 index 0000000..856f1d6 --- /dev/null +++ b/src/Model/Table/StatesTable.php @@ -0,0 +1,143 @@ + newEntities(array $data, array $options = []) + * @method \CakeAddresses\Model\Entity\State get(mixed $primaryKey, array|string $finder = 'all', \Psr\SimpleCache\CacheInterface|string|null $cache = null, \Closure|string|null $cacheKey = null, mixed ...$args) + * @method \CakeAddresses\Model\Entity\State findOrCreate($search, ?callable $callback = null, array $options = []) + * @method \CakeAddresses\Model\Entity\State patchEntity(\Cake\Datasource\EntityInterface $entity, array $data, array $options = []) + * @method array<\CakeAddresses\Model\Entity\State> patchEntities(iterable $entities, array $data, array $options = []) + * @method \CakeAddresses\Model\Entity\State|false save(\Cake\Datasource\EntityInterface $entity, array $options = []) + * @method \CakeAddresses\Model\Entity\State saveOrFail(\Cake\Datasource\EntityInterface $entity, array $options = []) + * @method iterable<\CakeAddresses\Model\Entity\State>|\Cake\Datasource\ResultSetInterface<\CakeAddresses\Model\Entity\State>|false saveMany(iterable $entities, array $options = []) + * @method iterable<\CakeAddresses\Model\Entity\State>|\Cake\Datasource\ResultSetInterface<\CakeAddresses\Model\Entity\State> saveManyOrFail(iterable $entities, array $options = []) + * @method iterable<\CakeAddresses\Model\Entity\State>|\Cake\Datasource\ResultSetInterface<\CakeAddresses\Model\Entity\State>|false deleteMany(iterable $entities, array $options = []) + * @method iterable<\CakeAddresses\Model\Entity\State>|\Cake\Datasource\ResultSetInterface<\CakeAddresses\Model\Entity\State> deleteManyOrFail(iterable $entities, array $options = []) + */ +class StatesTable extends Table +{ + /** + * Initialize method + * + * @param array $config The configuration for the Table. + * @return void + */ + public function initialize(array $config): void + { + parent::initialize($config); + + $this->setTable('states'); + $this->setDisplayField('name'); + $this->setPrimaryKey('id'); + + $this->belongsTo('Countries', [ + 'foreignKey' => 'country_id', + 'joinType' => 'INNER', + 'className' => 'CakeAddresses.Countries', + ]); + $this->hasMany('Addresses', [ + 'foreignKey' => 'state_id', + 'className' => 'CakeAddresses.Addresses', + ]); + $this->hasMany('Cities', [ + 'foreignKey' => 'state_id', + 'className' => 'CakeAddresses.Cities', + ]); + } + + /** + * Default validation rules. + * + * @param \Cake\Validation\Validator $validator Validator instance. + * @return \Cake\Validation\Validator + */ + public function validationDefault(Validator $validator): Validator + { + $validator + ->scalar('name') + ->maxLength('name', 255) + ->requirePresence('name', 'create') + ->notEmptyString('name'); + + $validator + ->nonNegativeInteger('country_id') + ->notEmptyString('country_id'); + + $validator + ->scalar('country_code') + ->maxLength('country_code', 2) + ->requirePresence('country_code', 'create') + ->notEmptyString('country_code'); + + $validator + ->scalar('fips_code') + ->maxLength('fips_code', 255) + ->allowEmptyString('fips_code'); + + $validator + ->scalar('iso2') + ->maxLength('iso2', 255) + ->allowEmptyString('iso2'); + + $validator + ->scalar('type') + ->maxLength('type', 191) + ->allowEmptyString('type'); + + $validator + ->decimal('latitude') + ->allowEmptyString('latitude'); + + $validator + ->decimal('longitude') + ->allowEmptyString('longitude'); + + $validator + ->dateTime('created_at') + ->allowEmptyDateTime('created_at'); + + $validator + ->dateTime('updated_at') + ->notEmptyDateTime('updated_at'); + + $validator + ->boolean('flag') + ->notEmptyString('flag'); + + $validator + ->scalar('wikiDataId') + ->maxLength('wikiDataId', 255) + ->allowEmptyString('wikiDataId'); + + return $validator; + } + + /** + * Returns a rules checker object that will be used for validating + * application integrity. + * + * @param \Cake\ORM\RulesChecker $rules The rules object to be modified. + * @return \Cake\ORM\RulesChecker + */ + public function buildRules(RulesChecker $rules): RulesChecker + { + $rules->add($rules->existsIn('country_id', 'Countries'), ['errorField' => 'country_id']); + + return $rules; + } +} diff --git a/src/Model/Table/SubregionsTable.php b/src/Model/Table/SubregionsTable.php new file mode 100644 index 0000000..5f9701b --- /dev/null +++ b/src/Model/Table/SubregionsTable.php @@ -0,0 +1,113 @@ + newEntities(array $data, array $options = []) + * @method \CakeAddresses\Model\Entity\Subregion get(mixed $primaryKey, array|string $finder = 'all', \Psr\SimpleCache\CacheInterface|string|null $cache = null, \Closure|string|null $cacheKey = null, mixed ...$args) + * @method \CakeAddresses\Model\Entity\Subregion findOrCreate($search, ?callable $callback = null, array $options = []) + * @method \CakeAddresses\Model\Entity\Subregion patchEntity(\Cake\Datasource\EntityInterface $entity, array $data, array $options = []) + * @method array<\CakeAddresses\Model\Entity\Subregion> patchEntities(iterable $entities, array $data, array $options = []) + * @method \CakeAddresses\Model\Entity\Subregion|false save(\Cake\Datasource\EntityInterface $entity, array $options = []) + * @method \CakeAddresses\Model\Entity\Subregion saveOrFail(\Cake\Datasource\EntityInterface $entity, array $options = []) + * @method iterable<\CakeAddresses\Model\Entity\Subregion>|\Cake\Datasource\ResultSetInterface<\CakeAddresses\Model\Entity\Subregion>|false saveMany(iterable $entities, array $options = []) + * @method iterable<\CakeAddresses\Model\Entity\Subregion>|\Cake\Datasource\ResultSetInterface<\CakeAddresses\Model\Entity\Subregion> saveManyOrFail(iterable $entities, array $options = []) + * @method iterable<\CakeAddresses\Model\Entity\Subregion>|\Cake\Datasource\ResultSetInterface<\CakeAddresses\Model\Entity\Subregion>|false deleteMany(iterable $entities, array $options = []) + * @method iterable<\CakeAddresses\Model\Entity\Subregion>|\Cake\Datasource\ResultSetInterface<\CakeAddresses\Model\Entity\Subregion> deleteManyOrFail(iterable $entities, array $options = []) + */ +class SubregionsTable extends Table +{ + /** + * Initialize method + * + * @param array $config The configuration for the Table. + * @return void + */ + public function initialize(array $config): void + { + parent::initialize($config); + + $this->setTable('subregions'); + $this->setDisplayField('name'); + $this->setPrimaryKey('id'); + + $this->belongsTo('Regions', [ + 'foreignKey' => 'region_id', + 'joinType' => 'INNER', + 'className' => 'CakeAddresses.Regions', + ]); + $this->hasMany('Countries', [ + 'foreignKey' => 'subregion_id', + 'className' => 'CakeAddresses.Countries', + ]); + } + + /** + * Default validation rules. + * + * @param \Cake\Validation\Validator $validator Validator instance. + * @return \Cake\Validation\Validator + */ + public function validationDefault(Validator $validator): Validator + { + $validator + ->scalar('name') + ->maxLength('name', 100) + ->requirePresence('name', 'create') + ->notEmptyString('name'); + + $validator + ->scalar('translations') + ->allowEmptyString('translations'); + + $validator + ->nonNegativeInteger('region_id') + ->notEmptyString('region_id'); + + $validator + ->dateTime('created_at') + ->allowEmptyDateTime('created_at'); + + $validator + ->dateTime('updated_at') + ->notEmptyDateTime('updated_at'); + + $validator + ->boolean('flag') + ->notEmptyString('flag'); + + $validator + ->scalar('wikiDataId') + ->maxLength('wikiDataId', 255) + ->allowEmptyString('wikiDataId'); + + return $validator; + } + + /** + * Returns a rules checker object that will be used for validating + * application integrity. + * + * @param \Cake\ORM\RulesChecker $rules The rules object to be modified. + * @return \Cake\ORM\RulesChecker + */ + public function buildRules(RulesChecker $rules): RulesChecker + { + $rules->add($rules->existsIn('region_id', 'Regions'), ['errorField' => 'region_id']); + + return $rules; + } +} diff --git a/templates/Addresses/add.php b/templates/Addresses/add.php new file mode 100644 index 0000000..852d881 --- /dev/null +++ b/templates/Addresses/add.php @@ -0,0 +1,28 @@ + +
+ +
+
+ Form->create($address) ?> +
+ + element('Addresses/form'); ?> +
+ Form->button(__('Submit')) ?> + Form->end() ?> +
+
+
diff --git a/templates/Addresses/edit.php b/templates/Addresses/edit.php new file mode 100644 index 0000000..fdf1b61 --- /dev/null +++ b/templates/Addresses/edit.php @@ -0,0 +1,47 @@ + +
+ +
+
+ Form->create($address) ?> +
+ + element('Addresses/form'); ?> +
+ Form->button(__('Submit')) ?> + Form->end() ?> +
+
+
diff --git a/templates/Addresses/index.php b/templates/Addresses/index.php new file mode 100644 index 0000000..044b748 --- /dev/null +++ b/templates/Addresses/index.php @@ -0,0 +1,89 @@ + $addresses + */ +?> +
+ Html->link(__('New Address'), [ + 'plugin' => 'CakeAddresses', + 'controller' => 'Addresses', + 'action' => 'add' + ], [ + 'class' => 'button float-right' + ]) ?> +

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Paginator->sort('id') ?>Paginator->sort('address_name') ?>Paginator->sort('contact_name') ?>Paginator->sort('address_line1') ?>Paginator->sort('address_line2') ?>Paginator->sort('city') ?>Paginator->sort('city_id') ?>Paginator->sort('state') ?>Paginator->sort('state_id') ?>Paginator->sort('postal_code') ?>Paginator->sort('country') ?>Paginator->sort('country_id') ?>Paginator->sort('phone_number') ?>Paginator->sort('email') ?>
Number->format($address->id) ?>address_name) ?>contact_name) ?>address_line1) ?>address_line2) ?>city) ?>hasValue('city_entity') ? $this->Html->link($address->city_entity->name, ['controller' => 'Cities', 'action' => 'view', $address->city_entity->id]) : '' ?>state) ?>hasValue('state_entity') ? $this->Html->link($address->state_entity->name, ['controller' => 'States', 'action' => 'view', $address->state_entity->id]) : '' ?>postal_code) ?>country) ?>hasValue('country_entity') ? $this->Html->link($address->country_entity->name, ['controller' => 'Countries', 'action' => 'view', $address->country_entity->id]) : '' ?>phone_number) ?>email) ?> + Html->link(__('View'), [ + 'plugin' => 'CakeAddresses', + 'controller' => 'Addresses', + 'action' => 'view', + $address->id, + ]); ?> + Html->link(__('Edit'), [ + 'plugin' => 'CakeAddresses', + 'controller' => 'Addresses', + 'action' => 'edit', + $address->id, + ]) ?> + Form->postLink(__('Delete'), [ + 'plugin' => 'CakeAddresses', + 'controller' => 'Addresses', + 'action' => 'delete', + $address->id, + ], ['confirm' => __('Are you sure you want to delete # {0}?', $address->id)]) ?> +
+
+
+
    + Paginator->first('<< ' . __('first')) ?> + Paginator->prev('< ' . __('previous')) ?> + Paginator->numbers() ?> + Paginator->next(__('next') . ' >') ?> + Paginator->last(__('last') . ' >>') ?> +
+

Paginator->counter(__('Page {{page}} of {{pages}}, showing {{current}} record(s) out of {{count}} total')) ?>

+
+
diff --git a/templates/Addresses/view.php b/templates/Addresses/view.php new file mode 100644 index 0000000..c8c0c9b --- /dev/null +++ b/templates/Addresses/view.php @@ -0,0 +1,86 @@ + +
+ +
+
+

address_line1) ?>

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
address_name) ?>
contact_name) ?>
address_line1) ?>
address_line2) ?>
city) ?>
hasValue('city_entity') ? $this->Html->link($address->city_entity->name, ['controller' => 'Cities', 'action' => 'view', $address->city_entity->id]) : '' ?>
state) ?>
hasValue('state_entity') ? $this->Html->link($address->state_entity->name, ['controller' => 'States', 'action' => 'view', $address->state_entity->id]) : '' ?>
postal_code) ?>
country) ?>
hasValue('country_entity') ? $this->Html->link($address->country_entity->name, ['controller' => 'Countries', 'action' => 'view', $address->country_entity->id]) : '' ?>
phone_number) ?>
email) ?>
Number->format($address->id) ?>
+
+ +
+ Text->autoParagraph(h($address->notes)); ?> +
+
+
+
+
diff --git a/templates/Cities/add.php b/templates/Cities/add.php new file mode 100644 index 0000000..717089a --- /dev/null +++ b/templates/Cities/add.php @@ -0,0 +1,39 @@ + +
+ +
+
+ Form->create($city) ?> +
+ + Form->control('name'); + echo $this->Form->control('state_id', ['options' => $states]); + echo $this->Form->control('state_code'); + echo $this->Form->control('country_id', ['options' => $countries]); + echo $this->Form->control('country_code'); + echo $this->Form->control('latitude'); + echo $this->Form->control('longitude'); + echo $this->Form->control('created_at'); + echo $this->Form->control('updated_at'); + echo $this->Form->control('flag'); + echo $this->Form->control('wikiDataId'); + ?> +
+ Form->button(__('Submit')) ?> + Form->end() ?> +
+
+
diff --git a/templates/Cities/edit.php b/templates/Cities/edit.php new file mode 100644 index 0000000..33a6ca6 --- /dev/null +++ b/templates/Cities/edit.php @@ -0,0 +1,44 @@ + +
+ +
+
+ Form->create($city) ?> +
+ + Form->control('name'); + echo $this->Form->control('state_id', ['options' => $states]); + echo $this->Form->control('state_code'); + echo $this->Form->control('country_id', ['options' => $countries]); + echo $this->Form->control('country_code'); + echo $this->Form->control('latitude'); + echo $this->Form->control('longitude'); + echo $this->Form->control('created_at'); + echo $this->Form->control('updated_at'); + echo $this->Form->control('flag'); + echo $this->Form->control('wikiDataId'); + ?> +
+ Form->button(__('Submit')) ?> + Form->end() ?> +
+
+
diff --git a/templates/Cities/index.php b/templates/Cities/index.php new file mode 100644 index 0000000..989768e --- /dev/null +++ b/templates/Cities/index.php @@ -0,0 +1,61 @@ + $cities + */ +?> +
+

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Paginator->sort('id') ?>Paginator->sort('name') ?>Paginator->sort('state_id') ?>Paginator->sort('state_code') ?>Paginator->sort('country_id') ?>Paginator->sort('country_code') ?>Paginator->sort('latitude') ?>Paginator->sort('longitude') ?>Paginator->sort('created_at') ?>Paginator->sort('updated_at') ?>Paginator->sort('flag') ?>Paginator->sort('wikiDataId') ?>
Number->format($city->id) ?>name) ?>hasValue('state') ? $this->Html->link($city->state->name, ['controller' => 'States', 'action' => 'view', $city->state->id]) : '' ?>state_code) ?>hasValue('country') ? $this->Html->link($city->country->name, ['controller' => 'Countries', 'action' => 'view', $city->country->id]) : '' ?>country_code) ?>Number->format($city->latitude) ?>Number->format($city->longitude) ?>created_at) ?>updated_at) ?>flag) ?>wikiDataId) ?> + Html->link(__('View'), ['action' => 'view', $city->id]) ?> +
+
+
+
    + Paginator->first('<< ' . __('first')) ?> + Paginator->prev('< ' . __('previous')) ?> + Paginator->numbers() ?> + Paginator->next(__('next') . ' >') ?> + Paginator->last(__('last') . ' >>') ?> +
+

Paginator->counter(__('Page {{page}} of {{pages}}, showing {{current}} record(s) out of {{count}} total')) ?>

+
+
diff --git a/templates/Cities/select.php b/templates/Cities/select.php new file mode 100644 index 0000000..31fc340 --- /dev/null +++ b/templates/Cities/select.php @@ -0,0 +1,10 @@ + $cities + */ +$this->setLayout('ajax'); +?> + $city): ?> + + diff --git a/templates/Cities/view.php b/templates/Cities/view.php new file mode 100644 index 0000000..dcc897c --- /dev/null +++ b/templates/Cities/view.php @@ -0,0 +1,120 @@ + +
+ +
+
+

name) ?>

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
name) ?>
hasValue('state') ? $this->Html->link($city->state->name, ['controller' => 'States', 'action' => 'view', $city->state->id]) : '' ?>
state_code) ?>
hasValue('country') ? $this->Html->link($city->country->name, ['controller' => 'Countries', 'action' => 'view', $city->country->id]) : '' ?>
country_code) ?>
wikiDataId) ?>
Number->format($city->id) ?>
Number->format($city->latitude) ?>
Number->format($city->longitude) ?>
created_at) ?>
updated_at) ?>
flag ? __('Yes') : __('No'); ?>
+ +
+
+
diff --git a/templates/Countries/add.php b/templates/Countries/add.php new file mode 100644 index 0000000..4097994 --- /dev/null +++ b/templates/Countries/add.php @@ -0,0 +1,54 @@ + +
+ +
+
+ Form->create($country) ?> +
+ + Form->control('name'); + echo $this->Form->control('iso3'); + echo $this->Form->control('numeric_code'); + echo $this->Form->control('iso2'); + echo $this->Form->control('phonecode'); + echo $this->Form->control('capital'); + echo $this->Form->control('currency'); + echo $this->Form->control('currency_name'); + echo $this->Form->control('currency_symbol'); + echo $this->Form->control('tld'); + echo $this->Form->control('native'); + echo $this->Form->control('region'); + echo $this->Form->control('region_id', ['options' => $regions, 'empty' => true]); + echo $this->Form->control('subregion'); + echo $this->Form->control('subregion_id', ['options' => $subregions, 'empty' => true]); + echo $this->Form->control('nationality'); + echo $this->Form->control('timezones'); + echo $this->Form->control('translations'); + echo $this->Form->control('latitude'); + echo $this->Form->control('longitude'); + echo $this->Form->control('emoji'); + echo $this->Form->control('emojiU'); + echo $this->Form->control('created_at'); + echo $this->Form->control('updated_at'); + echo $this->Form->control('flag'); + echo $this->Form->control('wikiDataId'); + ?> +
+ Form->button(__('Submit')) ?> + Form->end() ?> +
+
+
diff --git a/templates/Countries/edit.php b/templates/Countries/edit.php new file mode 100644 index 0000000..48961cd --- /dev/null +++ b/templates/Countries/edit.php @@ -0,0 +1,59 @@ + +
+ +
+
+ Form->create($country) ?> +
+ + Form->control('name'); + echo $this->Form->control('iso3'); + echo $this->Form->control('numeric_code'); + echo $this->Form->control('iso2'); + echo $this->Form->control('phonecode'); + echo $this->Form->control('capital'); + echo $this->Form->control('currency'); + echo $this->Form->control('currency_name'); + echo $this->Form->control('currency_symbol'); + echo $this->Form->control('tld'); + echo $this->Form->control('native'); + echo $this->Form->control('region'); + echo $this->Form->control('region_id', ['options' => $regions, 'empty' => true]); + echo $this->Form->control('subregion'); + echo $this->Form->control('subregion_id', ['options' => $subregions, 'empty' => true]); + echo $this->Form->control('nationality'); + echo $this->Form->control('timezones'); + echo $this->Form->control('translations'); + echo $this->Form->control('latitude'); + echo $this->Form->control('longitude'); + echo $this->Form->control('emoji'); + echo $this->Form->control('emojiU'); + echo $this->Form->control('created_at'); + echo $this->Form->control('updated_at'); + echo $this->Form->control('flag'); + echo $this->Form->control('wikiDataId'); + ?> +
+ Form->button(__('Submit')) ?> + Form->end() ?> +
+
+
diff --git a/templates/Countries/index.php b/templates/Countries/index.php new file mode 100644 index 0000000..6995de6 --- /dev/null +++ b/templates/Countries/index.php @@ -0,0 +1,90 @@ + $countries + */ +?> +
+ Html->link(__('New Country'), ['action' => 'add'], ['class' => 'button float-right']) ?> +

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Paginator->sort('id') ?>Paginator->sort('name') ?>Paginator->sort('iso3') ?>Paginator->sort('numeric_code') ?>Paginator->sort('iso2') ?>Paginator->sort('phonecode') ?>Paginator->sort('capital') ?>Paginator->sort('currency') ?>Paginator->sort('currency_name') ?>Paginator->sort('currency_symbol') ?>Paginator->sort('tld') ?>Paginator->sort('native') ?>Paginator->sort('region') ?>Paginator->sort('region_id') ?>Paginator->sort('subregion') ?>Paginator->sort('subregion_id') ?>Paginator->sort('nationality') ?>Paginator->sort('latitude') ?>Paginator->sort('longitude') ?>Paginator->sort('emoji') ?>Paginator->sort('emojiU') ?>Paginator->sort('created_at') ?>Paginator->sort('updated_at') ?>Paginator->sort('flag') ?>Paginator->sort('wikiDataId') ?>
Number->format($country->id) ?>name) ?>iso3) ?>numeric_code) ?>iso2) ?>phonecode) ?>capital) ?>currency) ?>currency_name) ?>currency_symbol) ?>tld) ?>native) ?>region) ?>hasValue('region_entity') ? $this->Html->link($country->region_entity->name, ['controller' => 'Regions', 'action' => 'view', $country->region_entity->id]) : '' ?>subregion) ?>hasValue('subregion_entity') ? $this->Html->link($country->subregion_entity->name, ['controller' => 'Subregions', 'action' => 'view', $country->subregion_entity->id]) : '' ?>nationality) ?>latitude === null ? '' : $this->Number->format($country->latitude) ?>longitude === null ? '' : $this->Number->format($country->longitude) ?>emoji) ?>emojiU) ?>created_at) ?>updated_at) ?>flag) ?>wikiDataId) ?> + Html->link(__('View'), ['action' => 'view', $country->id]) ?> + Html->link(__('Edit'), ['action' => 'edit', $country->id]) ?> + Form->postLink(__('Delete'), ['action' => 'delete', $country->id], ['confirm' => __('Are you sure you want to delete # {0}?', $country->id)]) ?> +
+
+
+
    + Paginator->first('<< ' . __('first')) ?> + Paginator->prev('< ' . __('previous')) ?> + Paginator->numbers() ?> + Paginator->next(__('next') . ' >') ?> + Paginator->last(__('last') . ' >>') ?> +
+

Paginator->counter(__('Page {{page}} of {{pages}}, showing {{current}} record(s) out of {{count}} total')) ?>

+
+
diff --git a/templates/Countries/view.php b/templates/Countries/view.php new file mode 100644 index 0000000..d1aa8ca --- /dev/null +++ b/templates/Countries/view.php @@ -0,0 +1,229 @@ + +
+ +
+
+

name) ?>

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
name) ?>
iso3) ?>
numeric_code) ?>
iso2) ?>
phonecode) ?>
capital) ?>
currency) ?>
currency_name) ?>
currency_symbol) ?>
tld) ?>
native) ?>
region) ?>
hasValue('region_entity') ? $this->Html->link($country->region_entity->name, ['controller' => 'Regions', 'action' => 'view', $country->region_entity->id]) : '' ?>
subregion) ?>
hasValue('subregion_entity') ? $this->Html->link($country->subregion_entity->name, ['controller' => 'Subregions', 'action' => 'view', $country->subregion_entity->id]) : '' ?>
nationality) ?>
emoji) ?>
emojiU) ?>
wikiDataId) ?>
Number->format($country->id) ?>
latitude === null ? '' : $this->Number->format($country->latitude) ?>
longitude === null ? '' : $this->Number->format($country->longitude) ?>
created_at) ?>
updated_at) ?>
flag ? __('Yes') : __('No'); ?>
+
+ +
+ Text->autoParagraph(h($country->timezones)); ?> +
+
+
+ +
+ Text->autoParagraph(h($country->translations)); ?> +
+
+ + +
+
+
diff --git a/templates/Regions/add.php b/templates/Regions/add.php new file mode 100644 index 0000000..e62e8c8 --- /dev/null +++ b/templates/Regions/add.php @@ -0,0 +1,32 @@ + +
+ +
+
+ Form->create($region) ?> +
+ + Form->control('name'); + echo $this->Form->control('translations'); + echo $this->Form->control('created_at'); + echo $this->Form->control('updated_at'); + echo $this->Form->control('flag'); + echo $this->Form->control('wikiDataId'); + ?> +
+ Form->button(__('Submit')) ?> + Form->end() ?> +
+
+
diff --git a/templates/Regions/edit.php b/templates/Regions/edit.php new file mode 100644 index 0000000..6a82a54 --- /dev/null +++ b/templates/Regions/edit.php @@ -0,0 +1,37 @@ + +
+ +
+
+ Form->create($region) ?> +
+ + Form->control('name'); + echo $this->Form->control('translations'); + echo $this->Form->control('created_at'); + echo $this->Form->control('updated_at'); + echo $this->Form->control('flag'); + echo $this->Form->control('wikiDataId'); + ?> +
+ Form->button(__('Submit')) ?> + Form->end() ?> +
+
+
diff --git a/templates/Regions/index.php b/templates/Regions/index.php new file mode 100644 index 0000000..5b5eb6b --- /dev/null +++ b/templates/Regions/index.php @@ -0,0 +1,49 @@ + $regions + */ +?> +
+

+
+ + + + + + + + + + + + + + + + + + + + + + + + + +
Paginator->sort('id') ?>Paginator->sort('name') ?>Paginator->sort('created_at') ?>Paginator->sort('updated_at') ?>Paginator->sort('flag') ?>Paginator->sort('wikiDataId') ?>
Number->format($region->id) ?>name) ?>created_at) ?>updated_at) ?>flag) ?>wikiDataId) ?> + Html->link(__('View'), ['action' => 'view', $region->id]) ?> +
+
+
+
    + Paginator->first('<< ' . __('first')) ?> + Paginator->prev('< ' . __('previous')) ?> + Paginator->numbers() ?> + Paginator->next(__('next') . ' >') ?> + Paginator->last(__('last') . ' >>') ?> +
+

Paginator->counter(__('Page {{page}} of {{pages}}, showing {{current}} record(s) out of {{count}} total')) ?>

+
+
diff --git a/templates/Regions/view.php b/templates/Regions/view.php new file mode 100644 index 0000000..1577780 --- /dev/null +++ b/templates/Regions/view.php @@ -0,0 +1,155 @@ + +
+ +
+
+

name) ?>

+ + + + + + + + + + + + + + + + + + + + + + + + + +
name) ?>
wikiDataId) ?>
Number->format($region->id) ?>
created_at) ?>
updated_at) ?>
flag ? __('Yes') : __('No'); ?>
+
+ +
+ Text->autoParagraph(h($region->translations)); ?> +
+
+ + +
+
+
diff --git a/templates/States/add.php b/templates/States/add.php new file mode 100644 index 0000000..a69e6db --- /dev/null +++ b/templates/States/add.php @@ -0,0 +1,39 @@ + +
+ +
+
+ Form->create($state) ?> +
+ + Form->control('name'); + echo $this->Form->control('country_id', ['options' => $countries]); + echo $this->Form->control('country_code'); + echo $this->Form->control('fips_code'); + echo $this->Form->control('iso2'); + echo $this->Form->control('type'); + echo $this->Form->control('latitude'); + echo $this->Form->control('longitude'); + echo $this->Form->control('created_at'); + echo $this->Form->control('updated_at'); + echo $this->Form->control('flag'); + echo $this->Form->control('wikiDataId'); + ?> +
+ Form->button(__('Submit')) ?> + Form->end() ?> +
+
+
diff --git a/templates/States/edit.php b/templates/States/edit.php new file mode 100644 index 0000000..30841c9 --- /dev/null +++ b/templates/States/edit.php @@ -0,0 +1,44 @@ + +
+ +
+
+ Form->create($state) ?> +
+ + Form->control('name'); + echo $this->Form->control('country_id', ['options' => $countries]); + echo $this->Form->control('country_code'); + echo $this->Form->control('fips_code'); + echo $this->Form->control('iso2'); + echo $this->Form->control('type'); + echo $this->Form->control('latitude'); + echo $this->Form->control('longitude'); + echo $this->Form->control('created_at'); + echo $this->Form->control('updated_at'); + echo $this->Form->control('flag'); + echo $this->Form->control('wikiDataId'); + ?> +
+ Form->button(__('Submit')) ?> + Form->end() ?> +
+
+
diff --git a/templates/States/index.php b/templates/States/index.php new file mode 100644 index 0000000..5de2815 --- /dev/null +++ b/templates/States/index.php @@ -0,0 +1,63 @@ + $states + */ +?> +
+

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Paginator->sort('id') ?>Paginator->sort('name') ?>Paginator->sort('country_id') ?>Paginator->sort('country_code') ?>Paginator->sort('fips_code') ?>Paginator->sort('iso2') ?>Paginator->sort('type') ?>Paginator->sort('latitude') ?>Paginator->sort('longitude') ?>Paginator->sort('created_at') ?>Paginator->sort('updated_at') ?>Paginator->sort('flag') ?>Paginator->sort('wikiDataId') ?>
Number->format($state->id) ?>name) ?>hasValue('country') ? $this->Html->link($state->country->name, ['controller' => 'Countries', 'action' => 'view', $state->country->id]) : '' ?>country_code) ?>fips_code) ?>iso2) ?>type) ?>latitude === null ? '' : $this->Number->format($state->latitude) ?>longitude === null ? '' : $this->Number->format($state->longitude) ?>created_at) ?>updated_at) ?>flag) ?>wikiDataId) ?> + Html->link(__('View'), ['action' => 'view', $state->id]) ?> +
+
+
+
    + Paginator->first('<< ' . __('first')) ?> + Paginator->prev('< ' . __('previous')) ?> + Paginator->numbers() ?> + Paginator->next(__('next') . ' >') ?> + Paginator->last(__('last') . ' >>') ?> +
+

Paginator->counter(__('Page {{page}} of {{pages}}, showing {{current}} record(s) out of {{count}} total')) ?>

+
+
diff --git a/templates/States/select.php b/templates/States/select.php new file mode 100644 index 0000000..edcdc06 --- /dev/null +++ b/templates/States/select.php @@ -0,0 +1,13 @@ + $states + */ + +$this->setLayout('ajax'); + +?> + + $stateName): ?> + + diff --git a/templates/States/view.php b/templates/States/view.php new file mode 100644 index 0000000..99b70d1 --- /dev/null +++ b/templates/States/view.php @@ -0,0 +1,167 @@ + +
+ +
+
+

name) ?>

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
name) ?>
hasValue('country') ? $this->Html->link($state->country->name, ['controller' => 'Countries', 'action' => 'view', $state->country->id]) : '' ?>
country_code) ?>
fips_code) ?>
iso2) ?>
type) ?>
wikiDataId) ?>
Number->format($state->id) ?>
latitude === null ? '' : $this->Number->format($state->latitude) ?>
longitude === null ? '' : $this->Number->format($state->longitude) ?>
created_at) ?>
updated_at) ?>
flag ? __('Yes') : __('No'); ?>
+ + +
+
+
diff --git a/templates/Subregions/add.php b/templates/Subregions/add.php new file mode 100644 index 0000000..09c47db --- /dev/null +++ b/templates/Subregions/add.php @@ -0,0 +1,34 @@ + +
+ +
+
+ Form->create($subregion) ?> +
+ + Form->control('name'); + echo $this->Form->control('translations'); + echo $this->Form->control('region_id', ['options' => $regions]); + echo $this->Form->control('created_at'); + echo $this->Form->control('updated_at'); + echo $this->Form->control('flag'); + echo $this->Form->control('wikiDataId'); + ?> +
+ Form->button(__('Submit')) ?> + Form->end() ?> +
+
+
diff --git a/templates/Subregions/edit.php b/templates/Subregions/edit.php new file mode 100644 index 0000000..5655b24 --- /dev/null +++ b/templates/Subregions/edit.php @@ -0,0 +1,39 @@ + +
+ +
+
+ Form->create($subregion) ?> +
+ + Form->control('name'); + echo $this->Form->control('translations'); + echo $this->Form->control('region_id', ['options' => $regions]); + echo $this->Form->control('created_at'); + echo $this->Form->control('updated_at'); + echo $this->Form->control('flag'); + echo $this->Form->control('wikiDataId'); + ?> +
+ Form->button(__('Submit')) ?> + Form->end() ?> +
+
+
diff --git a/templates/Subregions/index.php b/templates/Subregions/index.php new file mode 100644 index 0000000..1d9844e --- /dev/null +++ b/templates/Subregions/index.php @@ -0,0 +1,54 @@ + $subregions + */ +?> +
+ Html->link(__('New Subregion'), ['action' => 'add'], ['class' => 'button float-right']) ?> +

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
Paginator->sort('id') ?>Paginator->sort('name') ?>Paginator->sort('region_id') ?>Paginator->sort('created_at') ?>Paginator->sort('updated_at') ?>Paginator->sort('flag') ?>Paginator->sort('wikiDataId') ?>
Number->format($subregion->id) ?>name) ?>hasValue('region') ? $this->Html->link($subregion->region->name, ['controller' => 'Regions', 'action' => 'view', $subregion->region->id]) : '' ?>created_at) ?>updated_at) ?>flag) ?>wikiDataId) ?> + Html->link(__('View'), ['action' => 'view', $subregion->id]) ?> + Html->link(__('Edit'), ['action' => 'edit', $subregion->id]) ?> + Form->postLink(__('Delete'), ['action' => 'delete', $subregion->id], ['confirm' => __('Are you sure you want to delete # {0}?', $subregion->id)]) ?> +
+
+
+
    + Paginator->first('<< ' . __('first')) ?> + Paginator->prev('< ' . __('previous')) ?> + Paginator->numbers() ?> + Paginator->next(__('next') . ' >') ?> + Paginator->last(__('last') . ' >>') ?> +
+

Paginator->counter(__('Page {{page}} of {{pages}}, showing {{current}} record(s) out of {{count}} total')) ?>

+
+
diff --git a/templates/Subregions/view.php b/templates/Subregions/view.php new file mode 100644 index 0000000..7274422 --- /dev/null +++ b/templates/Subregions/view.php @@ -0,0 +1,133 @@ + +
+ +
+
+

name) ?>

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
name) ?>
hasValue('region') ? $this->Html->link($subregion->region->name, ['controller' => 'Regions', 'action' => 'view', $subregion->region->id]) : '' ?>
wikiDataId) ?>
Number->format($subregion->id) ?>
created_at) ?>
updated_at) ?>
flag ? __('Yes') : __('No'); ?>
+
+ +
+ Text->autoParagraph(h($subregion->translations)); ?> +
+
+ +
+
+
diff --git a/templates/element/Addresses/form.php b/templates/element/Addresses/form.php new file mode 100644 index 0000000..0788ca9 --- /dev/null +++ b/templates/element/Addresses/form.php @@ -0,0 +1,59 @@ + [], + $prefix ? $prefix . 'contact_name' : 'contact_name' => [], + $prefix ? $prefix . 'address_line1' : 'address_line1' => [], + $prefix ? $prefix . 'address_line2' : 'address_line2' => [], + $prefix ? $prefix . 'city' : 'city' => [], + $prefix ? $prefix . 'city_id' : 'city_id' => [ + 'hidden' => true, + 'options' => $cities ?? [], + 'empty' => true + ], + $prefix ? $prefix . 'state_id' : 'state_id' => [ + 'options' => $states ?? [], + 'id' => $stateIdId, + 'empty' => 'Select a state', + 'default' => $address->state_id ?? '', + 'value' => $address->state_id ?? '', + ], + $prefix ? $prefix . 'postal_code' : 'postal_code' => [], + $prefix ? $prefix . 'country_id' : 'country_id' => [ + 'options' => $countries, + 'empty' => 'Select a country', + 'default' => 233, + 'hx-trigger' => isset($address->id) ? 'change' : 'change, load delay:1s', + 'hx-get' => $this->Url->build([ + 'plugin' => 'CakeAddresses', + 'controller' => 'States', + 'action' => 'select', + '?' => [ + 'state_id' => $address->state_id ?? '', + ], + ]), + 'hx-target' => '#' . $stateIdId, +// 'hx-indicator' => '.htmx-indicator', + ], + $prefix ? $prefix . 'phone_number' : 'phone_number' => [], + $prefix ? $prefix . 'email' : 'email' => [], + $prefix ? $prefix . 'notes' : 'notes' => [], +]; +foreach ($inputs as $inputName => $inputOptions) { + if (array_key_exists('hidden', $inputOptions) && $inputOptions['hidden']) { + echo $this->Form->hidden($inputName, $inputOptions); + } + if (!array_key_exists('hidden', $inputOptions) || !$inputOptions['hidden']) { + echo $this->Form->control($inputName, $inputOptions); + } +} +?> diff --git a/templates/element/Layout/submenu.php b/templates/element/Layout/submenu.php new file mode 100644 index 0000000..e69de29 diff --git a/tests/Fixture/AddressesFixture.php b/tests/Fixture/AddressesFixture.php new file mode 100644 index 0000000..68c82d2 --- /dev/null +++ b/tests/Fixture/AddressesFixture.php @@ -0,0 +1,41 @@ +records = [ + [ + 'id' => 1, + 'address_name' => 'Apple Headquarters', + 'contact_name' => 'Steve Jobs', + 'address_line1' => '1 Apple Park Way', + 'address_line2' => null, + 'city' => 'San Francisco', + 'city_id' => 125809, + 'state' => 'California', + 'state_id' => 1416, + 'postal_code' => '95014', + 'country' => 'United States', + 'country_id' => 233, + 'phone_number' => 'Lorem ipsum dolor sit a', + 'email' => 'test@test.com', + 'notes' => 'Lorem ipsum dolor sit amet, aliquet feugiat. Convallis morbi fringilla gravida, phasellus feugiat dapibus velit nunc, pulvinar eget sollicitudin venenatis cum nullam, vivamus ut a sed, mollitia lectus. Nulla vestibulum massa neque ut et, id hendrerit sit, feugiat in taciti enim proin nibh, tempor dignissim, rhoncus duis vestibulum nunc mattis convallis.', + ], + ]; + parent::init(); + } +} diff --git a/tests/Fixture/CitiesFixture.php b/tests/Fixture/CitiesFixture.php new file mode 100644 index 0000000..27cb71d --- /dev/null +++ b/tests/Fixture/CitiesFixture.php @@ -0,0 +1,76025 @@ +records = [ + [ + 'id' => 16199, + 'name' => 'Bay Roberts', + 'state_id' => 877, + 'state_code' => 'NL', + 'country_id' => 39, + 'country_code' => 'CA', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '59989000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '53'; + $this->fractionalPart = '26478000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 07:05:44', + 'updated_at' => '2019-10-06 07:05:44', + 'flag' => true, + 'wikiDataId' => 'Q2892168', + ], + [ + 'id' => 16200, + 'name' => 'Bay St. George South', + 'state_id' => 877, + 'state_code' => 'NL', + 'country_id' => 39, + 'country_code' => 'CA', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '48'; + $this->fractionalPart = '22781000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '58'; + $this->fractionalPart = '84162000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 07:05:44', + 'updated_at' => '2019-10-06 07:05:44', + 'flag' => true, + 'wikiDataId' => 'Q2892168', + ], + [ + 'id' => 16228, + 'name' => 'Bonavista', + 'state_id' => 877, + 'state_code' => 'NL', + 'country_id' => 39, + 'country_code' => 'CA', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '48'; + $this->fractionalPart = '64989000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '53'; + $this->fractionalPart = '11474000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 07:05:44', + 'updated_at' => '2019-10-06 07:05:44', + 'flag' => true, + 'wikiDataId' => 'Q2909951', + ], + [ + 'id' => 16230, + 'name' => 'Botwood', + 'state_id' => 877, + 'state_code' => 'NL', + 'country_id' => 39, + 'country_code' => 'CA', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '49'; + $this->fractionalPart = '14994000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '55'; + $this->fractionalPart = '34819000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 07:05:44', + 'updated_at' => '2019-10-06 07:05:44', + 'flag' => true, + 'wikiDataId' => 'Q2911880', + ], + [ + 'id' => 16251, + 'name' => 'Burgeo', + 'state_id' => 877, + 'state_code' => 'NL', + 'country_id' => 39, + 'country_code' => 'CA', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '61668000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '57'; + $this->fractionalPart = '61516000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 07:05:44', + 'updated_at' => '2019-10-06 07:05:44', + 'flag' => true, + 'wikiDataId' => 'Q2928455', + ], + [ + 'id' => 16276, + 'name' => 'Carbonear', + 'state_id' => 877, + 'state_code' => 'NL', + 'country_id' => 39, + 'country_code' => 'CA', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '73319000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '53'; + $this->fractionalPart = '21478000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 07:05:45', + 'updated_at' => '2019-10-06 07:05:45', + 'flag' => true, + 'wikiDataId' => 'Q2937956', + ], + [ + 'id' => 16287, + 'name' => 'Catalina', + 'state_id' => 877, + 'state_code' => 'NL', + 'country_id' => 39, + 'country_code' => 'CA', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '48'; + $this->fractionalPart = '51659000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '53'; + $this->fractionalPart = '08135000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 07:05:45', + 'updated_at' => '2019-10-06 07:05:45', + 'flag' => true, + 'wikiDataId' => 'Q5051247', + ], + [ + 'id' => 16294, + 'name' => 'Channel-Port aux Basques', + 'state_id' => 877, + 'state_code' => 'NL', + 'country_id' => 39, + 'country_code' => 'CA', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '57286000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '59'; + $this->fractionalPart = '13808000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 07:05:45', + 'updated_at' => '2019-10-06 07:05:45', + 'flag' => true, + 'wikiDataId' => 'Q1013617', + ], + [ + 'id' => 16313, + 'name' => 'Clarenville-Shoal Harbour', + 'state_id' => 877, + 'state_code' => 'NL', + 'country_id' => 39, + 'country_code' => 'CA', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '48'; + $this->fractionalPart = '18050000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '53'; + $this->fractionalPart = '96982000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 07:05:45', + 'updated_at' => '2019-10-06 07:05:45', + 'flag' => true, + 'wikiDataId' => 'Q2364972', + ], + [ + 'id' => 16327, + 'name' => 'Conception Bay South', + 'state_id' => 877, + 'state_code' => 'NL', + 'country_id' => 39, + 'country_code' => 'CA', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '49989000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '52'; + $this->fractionalPart = '99806000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 07:05:45', + 'updated_at' => '2019-10-06 07:05:45', + 'flag' => true, + 'wikiDataId' => 'Q1123842', + ], + [ + 'id' => 16336, + 'name' => 'Corner Brook', + 'state_id' => 877, + 'state_code' => 'NL', + 'country_id' => 39, + 'country_code' => 'CA', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '48'; + $this->fractionalPart = '95001000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '57'; + $this->fractionalPart = '95202000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 07:05:45', + 'updated_at' => '2019-10-06 07:05:45', + 'flag' => true, + 'wikiDataId' => 'Q991363', + ], + [ + 'id' => 16362, + 'name' => 'Deer Lake', + 'state_id' => 877, + 'state_code' => 'NL', + 'country_id' => 39, + 'country_code' => 'CA', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '49'; + $this->fractionalPart = '16671000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '57'; + $this->fractionalPart = '43163000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 07:05:45', + 'updated_at' => '2019-10-06 07:05:45', + 'flag' => true, + 'wikiDataId' => 'Q2674298', + ], + [ + 'id' => 16425, + 'name' => 'Fogo Island', + 'state_id' => 877, + 'state_code' => 'NL', + 'country_id' => 39, + 'country_code' => 'CA', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '49'; + $this->fractionalPart = '71649000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '54'; + $this->fractionalPart = '16981000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 07:05:45', + 'updated_at' => '2019-10-06 07:05:45', + 'flag' => true, + 'wikiDataId' => 'Q551124', + ], + [ + 'id' => 16445, + 'name' => 'Gambo', + 'state_id' => 877, + 'state_code' => 'NL', + 'country_id' => 39, + 'country_code' => 'CA', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '48'; + $this->fractionalPart = '78320000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '54'; + $this->fractionalPart = '21482000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 07:05:46', + 'updated_at' => '2019-10-06 07:05:46', + 'flag' => true, + 'wikiDataId' => 'Q3094948', + ], + [ + 'id' => 16460, + 'name' => 'Goulds', + 'state_id' => 877, + 'state_code' => 'NL', + 'country_id' => 39, + 'country_code' => 'CA', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '45532000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '52'; + $this->fractionalPart = '77552000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 07:05:46', + 'updated_at' => '2019-10-06 07:05:46', + 'flag' => true, + 'wikiDataId' => 'Q1020179', + ], + [ + 'id' => 16462, + 'name' => 'Grand Bank', + 'state_id' => 877, + 'state_code' => 'NL', + 'country_id' => 39, + 'country_code' => 'CA', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '09995000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '55'; + $this->fractionalPart = '76504000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 07:05:46', + 'updated_at' => '2019-10-06 07:05:46', + 'flag' => true, + 'wikiDataId' => 'Q3113519', + ], + [ + 'id' => 16464, + 'name' => 'Grand Falls-Windsor', + 'state_id' => 877, + 'state_code' => 'NL', + 'country_id' => 39, + 'country_code' => 'CA', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '48'; + $this->fractionalPart = '93324000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '55'; + $this->fractionalPart = '66492000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 07:05:46', + 'updated_at' => '2019-10-06 07:05:46', + 'flag' => true, + 'wikiDataId' => 'Q1542592', + ], + [ + 'id' => 16491, + 'name' => 'Happy Valley-Goose Bay', + 'state_id' => 877, + 'state_code' => 'NL', + 'country_id' => 39, + 'country_code' => 'CA', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '53'; + $this->fractionalPart = '30380000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '60'; + $this->fractionalPart = '32576000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 07:05:46', + 'updated_at' => '2019-10-06 07:05:46', + 'flag' => true, + 'wikiDataId' => 'Q1266964', + ], + [ + 'id' => 16492, + 'name' => 'Harbour Breton', + 'state_id' => 877, + 'state_code' => 'NL', + 'country_id' => 39, + 'country_code' => 'CA', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '48325000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '55'; + $this->fractionalPart = '79833000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 07:05:46', + 'updated_at' => '2019-10-06 07:05:46', + 'flag' => true, + 'wikiDataId' => 'Q3127311', + ], + [ + 'id' => 16574, + 'name' => 'Labrador City', + 'state_id' => 877, + 'state_code' => 'NL', + 'country_id' => 39, + 'country_code' => 'CA', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '52'; + $this->fractionalPart = '94626000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '66'; + $this->fractionalPart = '91137000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 07:05:47', + 'updated_at' => '2019-10-06 07:05:47', + 'flag' => true, + 'wikiDataId' => 'Q767147', + ], + [ + 'id' => 16615, + 'name' => 'Lewisporte', + 'state_id' => 877, + 'state_code' => 'NL', + 'country_id' => 39, + 'country_code' => 'CA', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '49'; + $this->fractionalPart = '24993000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '55'; + $this->fractionalPart = '04816000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 07:05:47', + 'updated_at' => '2019-10-06 07:05:47', + 'flag' => true, + 'wikiDataId' => 'Q6537373', + ], + [ + 'id' => 16664, + 'name' => 'Marystown', + 'state_id' => 877, + 'state_code' => 'NL', + 'country_id' => 39, + 'country_code' => 'CA', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '16663000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '55'; + $this->fractionalPart = '14829000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 07:05:47', + 'updated_at' => '2019-10-06 07:05:47', + 'flag' => true, + 'wikiDataId' => 'Q3296356', + ], + [ + 'id' => 16724, + 'name' => 'Mount Pearl', + 'state_id' => 877, + 'state_code' => 'NL', + 'country_id' => 39, + 'country_code' => 'CA', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '51659000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '52'; + $this->fractionalPart = '78135000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 07:05:47', + 'updated_at' => '2019-10-06 07:05:47', + 'flag' => true, + 'wikiDataId' => 'Q1950648', + ], + [ + 'id' => 16802, + 'name' => 'Pasadena', + 'state_id' => 877, + 'state_code' => 'NL', + 'country_id' => 39, + 'country_code' => 'CA', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '49'; + $this->fractionalPart = '01671000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '57'; + $this->fractionalPart = '59837000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 07:05:48', + 'updated_at' => '2019-10-06 07:05:48', + 'flag' => true, + 'wikiDataId' => 'Q3367223', + ], + [ + 'id' => 17063, + 'name' => 'Springdale', + 'state_id' => 877, + 'state_code' => 'NL', + 'country_id' => 39, + 'country_code' => 'CA', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '49'; + $this->fractionalPart = '49995000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '56'; + $this->fractionalPart = '06492000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 07:05:49', + 'updated_at' => '2019-10-06 07:05:49', + 'flag' => true, + 'wikiDataId' => 'Q7580835', + ], + [ + 'id' => 17069, + 'name' => 'St. Anthony', + 'state_id' => 877, + 'state_code' => 'NL', + 'country_id' => 39, + 'country_code' => 'CA', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '51'; + $this->fractionalPart = '37039000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '55'; + $this->fractionalPart = '59743000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 07:05:49', + 'updated_at' => '2019-10-06 07:05:49', + 'flag' => true, + 'wikiDataId' => 'Q2317218', + ], + [ + 'id' => 17072, + 'name' => 'St. John\'s', + 'state_id' => 877, + 'state_code' => 'NL', + 'country_id' => 39, + 'country_code' => 'CA', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '56494000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '52'; + $this->fractionalPart = '70931000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 07:05:49', + 'updated_at' => '2019-10-06 07:05:49', + 'flag' => true, + 'wikiDataId' => 'Q2082', + ], + [ + 'id' => 17076, + 'name' => 'Stephenville', + 'state_id' => 877, + 'state_code' => 'NL', + 'country_id' => 39, + 'country_code' => 'CA', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '48'; + $this->fractionalPart = '55001000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '58'; + $this->fractionalPart = '58180000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 07:05:49', + 'updated_at' => '2019-10-06 07:05:49', + 'flag' => true, + 'wikiDataId' => 'Q626279', + ], + [ + 'id' => 17077, + 'name' => 'Stephenville Crossing', + 'state_id' => 877, + 'state_code' => 'NL', + 'country_id' => 39, + 'country_code' => 'CA', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '48'; + $this->fractionalPart = '50001000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '58'; + $this->fractionalPart = '43180000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 07:05:49', + 'updated_at' => '2019-10-06 07:05:49', + 'flag' => true, + 'wikiDataId' => 'Q7611009', + ], + [ + 'id' => 17120, + 'name' => 'Torbay', + 'state_id' => 877, + 'state_code' => 'NL', + 'country_id' => 39, + 'country_code' => 'CA', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '66659000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '52'; + $this->fractionalPart = '73135000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 07:05:50', + 'updated_at' => '2019-10-06 07:05:50', + 'flag' => true, + 'wikiDataId' => 'Q7825435', + ], + [ + 'id' => 17135, + 'name' => 'Upper Island Cove', + 'state_id' => 877, + 'state_code' => 'NL', + 'country_id' => 39, + 'country_code' => 'CA', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '64989000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '53'; + $this->fractionalPart = '21478000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 07:05:50', + 'updated_at' => '2019-10-06 07:05:50', + 'flag' => true, + 'wikiDataId' => 'Q7898706', + ], + [ + 'id' => 17164, + 'name' => 'Wabana', + 'state_id' => 877, + 'state_code' => 'NL', + 'country_id' => 39, + 'country_code' => 'CA', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '63319000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '52'; + $this->fractionalPart = '94806000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 07:05:50', + 'updated_at' => '2019-10-06 07:05:50', + 'flag' => true, + 'wikiDataId' => 'Q3303444', + ], + [ + 'id' => 16209, + 'name' => 'Behchokǫ̀', + 'state_id' => 878, + 'state_code' => 'NT', + 'country_id' => 39, + 'country_code' => 'CA', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '62'; + $this->fractionalPart = '80250000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '116'; + $this->fractionalPart = '04639000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 07:05:44', + 'updated_at' => '2020-05-02 01:52:39', + 'flag' => true, + 'wikiDataId' => 'Q141987', + ], + [ + 'id' => 16431, + 'name' => 'Fort McPherson', + 'state_id' => 878, + 'state_code' => 'NT', + 'country_id' => 39, + 'country_code' => 'CA', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '67'; + $this->fractionalPart = '43863000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '134'; + $this->fractionalPart = '88543000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 07:05:46', + 'updated_at' => '2019-10-06 07:05:46', + 'flag' => true, + 'wikiDataId' => 'Q1014119', + ], + [ + 'id' => 16434, + 'name' => 'Fort Smith', + 'state_id' => 878, + 'state_code' => 'NT', + 'country_id' => 39, + 'country_code' => 'CA', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '60'; + $this->fractionalPart = '00439000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '111'; + $this->fractionalPart = '88871000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 07:05:46', + 'updated_at' => '2019-10-06 07:05:46', + 'flag' => true, + 'wikiDataId' => 'Q686415', + ], + [ + 'id' => 16498, + 'name' => 'Hay River', + 'state_id' => 878, + 'state_code' => 'NT', + 'country_id' => 39, + 'country_code' => 'CA', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '60'; + $this->fractionalPart = '81555000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '115'; + $this->fractionalPart = '79993000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 07:05:46', + 'updated_at' => '2019-10-06 07:05:46', + 'flag' => true, + 'wikiDataId' => 'Q1013062', + ], + [ + 'id' => 16522, + 'name' => 'Inuvik', + 'state_id' => 878, + 'state_code' => 'NT', + 'country_id' => 39, + 'country_code' => 'CA', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '68'; + $this->fractionalPart = '34986000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '133'; + $this->fractionalPart = '72181000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 07:05:46', + 'updated_at' => '2019-10-06 07:05:46', + 'flag' => true, + 'wikiDataId' => 'Q338686', + ], + [ + 'id' => 16753, + 'name' => 'Norman Wells', + 'state_id' => 878, + 'state_code' => 'NT', + 'country_id' => 39, + 'country_code' => 'CA', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '65'; + $this->fractionalPart = '28201000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '126'; + $this->fractionalPart = '83290000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 07:05:48', + 'updated_at' => '2019-10-06 07:05:48', + 'flag' => true, + 'wikiDataId' => 'Q3343828', + ], + [ + 'id' => 17221, + 'name' => 'Yellowknife', + 'state_id' => 878, + 'state_code' => 'NT', + 'country_id' => 39, + 'country_code' => 'CA', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '62'; + $this->fractionalPart = '45411000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '114'; + $this->fractionalPart = '37248000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 07:05:50', + 'updated_at' => '2019-10-06 07:05:50', + 'flag' => true, + 'wikiDataId' => 'Q2061', + ], + [ + 'id' => 110992, + 'name' => 'Acalanes Ridge', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '90472000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '07857000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:43', + 'updated_at' => '2019-10-06 08:01:43', + 'flag' => true, + 'wikiDataId' => 'Q4671652', + ], + [ + 'id' => 111001, + 'name' => 'Acton', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '46999000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '19674000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:43', + 'updated_at' => '2019-10-06 08:01:43', + 'flag' => true, + 'wikiDataId' => 'Q2308667', + ], + [ + 'id' => 111043, + 'name' => 'Adelanto', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '58277000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '40922000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:44', + 'updated_at' => '2019-10-06 08:01:44', + 'flag' => true, + 'wikiDataId' => 'Q354110', + ], + [ + 'id' => 111056, + 'name' => 'Agoura', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '14306000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '73787000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:44', + 'updated_at' => '2019-10-06 08:01:44', + 'flag' => true, + 'wikiDataId' => 'Q9588470', + ], + [ + 'id' => 111057, + 'name' => 'Agoura Hills', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '13639000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '77453000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:44', + 'updated_at' => '2019-10-06 08:01:44', + 'flag' => true, + 'wikiDataId' => 'Q395793', + ], + [ + 'id' => 111058, + 'name' => 'Agua Dulce', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '49638000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '32563000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:44', + 'updated_at' => '2019-10-06 08:01:44', + 'flag' => true, + 'wikiDataId' => 'Q2827313', + ], + [ + 'id' => 111061, + 'name' => 'Aguanga', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '44281000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '116'; + $this->fractionalPart = '86502000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:44', + 'updated_at' => '2019-10-06 08:01:44', + 'flag' => true, + 'wikiDataId' => 'Q3476194', + ], + [ + 'id' => 111064, + 'name' => 'Ahwahnee', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '36550000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '72627000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:44', + 'updated_at' => '2019-10-06 08:01:44', + 'flag' => true, + 'wikiDataId' => 'Q3458725', + ], + [ + 'id' => 111088, + 'name' => 'Alameda', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '76521000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '24164000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:44', + 'updated_at' => '2019-10-06 08:01:44', + 'flag' => true, + 'wikiDataId' => 'Q490744', + ], + [ + 'id' => 111089, + 'name' => 'Alameda County', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '65055000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '91789000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:44', + 'updated_at' => '2019-10-06 08:01:44', + 'flag' => true, + 'wikiDataId' => 'Q107146', + ], + [ + 'id' => 111093, + 'name' => 'Alamo', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '85020000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '03218000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:44', + 'updated_at' => '2019-10-06 08:01:44', + 'flag' => true, + 'wikiDataId' => 'Q241598', + ], + [ + 'id' => 111110, + 'name' => 'Albany', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '88687000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '29775000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:44', + 'updated_at' => '2019-10-06 08:01:44', + 'flag' => true, + 'wikiDataId' => 'Q671480', + ], + [ + 'id' => 111169, + 'name' => 'Alhambra', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '09529000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '12701000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:44', + 'updated_at' => '2019-10-06 08:01:44', + 'flag' => true, + 'wikiDataId' => 'Q752681', + ], + [ + 'id' => 111175, + 'name' => 'Aliso Viejo', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '56504000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '72712000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:44', + 'updated_at' => '2019-10-06 08:01:44', + 'flag' => true, + 'wikiDataId' => 'Q948231', + ], + [ + 'id' => 111196, + 'name' => 'Allendale', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '44463000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '94302000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:44', + 'updated_at' => '2019-10-06 08:01:44', + 'flag' => true, + 'wikiDataId' => 'Q4731990', + ], + [ + 'id' => 111215, + 'name' => 'Alondra Park', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '88946000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '33091000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:45', + 'updated_at' => '2019-10-06 08:01:45', + 'flag' => true, + 'wikiDataId' => 'Q1668473', + ], + [ + 'id' => 111217, + 'name' => 'Alpaugh', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '35'; + $this->fractionalPart = '88773000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '48734000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:45', + 'updated_at' => '2019-10-06 08:01:45', + 'flag' => true, + 'wikiDataId' => 'Q742631', + ], + [ + 'id' => 111223, + 'name' => 'Alpine', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '32'; + $this->fractionalPart = '83505000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '116'; + $this->fractionalPart = '76641000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:45', + 'updated_at' => '2019-10-06 08:01:45', + 'flag' => true, + 'wikiDataId' => 'Q2114785', + ], + [ + 'id' => 111226, + 'name' => 'Alpine County', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '59725000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '82065000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:45', + 'updated_at' => '2019-10-06 08:01:45', + 'flag' => true, + 'wikiDataId' => 'Q108077', + ], + [ + 'id' => 111230, + 'name' => 'Alta Sierra', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '35'; + $this->fractionalPart = '73126000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '55390000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:45', + 'updated_at' => '2019-10-06 08:01:45', + 'flag' => true, + 'wikiDataId' => 'Q4736000', + ], + [ + 'id' => 111231, + 'name' => 'Altadena', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '18973000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '13118000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:45', + 'updated_at' => '2019-10-06 08:01:45', + 'flag' => true, + 'wikiDataId' => 'Q433701', + ], + [ + 'id' => 111251, + 'name' => 'Alturas', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '48714000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '54349000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:45', + 'updated_at' => '2019-10-06 08:01:45', + 'flag' => true, + 'wikiDataId' => 'Q446281', + ], + [ + 'id' => 111254, + 'name' => 'Alum Rock', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '36605000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '82718000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:45', + 'updated_at' => '2019-10-06 08:01:45', + 'flag' => true, + 'wikiDataId' => 'Q3461009', + ], + [ + 'id' => 111261, + 'name' => 'Amador County', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '44639000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '65112000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:45', + 'updated_at' => '2019-10-06 08:01:45', + 'flag' => true, + 'wikiDataId' => 'Q156177', + ], + [ + 'id' => 111271, + 'name' => 'American Canyon', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '17492000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '26080000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:45', + 'updated_at' => '2019-10-06 08:01:45', + 'flag' => true, + 'wikiDataId' => 'Q463679', + ], + [ + 'id' => 111280, + 'name' => 'Amesti', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '96356000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '77912000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:45', + 'updated_at' => '2019-10-06 08:01:45', + 'flag' => true, + 'wikiDataId' => 'Q3301177', + ], + [ + 'id' => 111299, + 'name' => 'Anaheim', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '83529000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '91450000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:45', + 'updated_at' => '2019-10-06 08:01:45', + 'flag' => true, + 'wikiDataId' => 'Q49247', + ], + [ + 'id' => 111314, + 'name' => 'Anderson', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '44821000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '29778000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:45', + 'updated_at' => '2019-10-06 08:01:45', + 'flag' => true, + 'wikiDataId' => 'Q491469', + ], + [ + 'id' => 111337, + 'name' => 'Angels Camp', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '06826000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '53965000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:45', + 'updated_at' => '2019-10-06 08:01:45', + 'flag' => true, + 'wikiDataId' => 'Q2603725', + ], + [ + 'id' => 111343, + 'name' => 'Angwin', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '57574000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '44998000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:45', + 'updated_at' => '2019-10-06 08:01:45', + 'flag' => true, + 'wikiDataId' => 'Q2277678', + ], + [ + 'id' => 111364, + 'name' => 'Antelope', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '70824000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '32995000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:45', + 'updated_at' => '2019-10-06 08:01:45', + 'flag' => true, + 'wikiDataId' => 'Q3470866', + ], + [ + 'id' => 111373, + 'name' => 'Antioch', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '00492000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '80579000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:46', + 'updated_at' => '2019-10-06 08:01:46', + 'flag' => true, + 'wikiDataId' => 'Q495357', + ], + [ + 'id' => 111378, + 'name' => 'Anza', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '55503000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '116'; + $this->fractionalPart = '67363000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:46', + 'updated_at' => '2019-10-06 08:01:46', + 'flag' => true, + 'wikiDataId' => 'Q3458204', + ], + [ + 'id' => 111394, + 'name' => 'Apple Valley', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '50083000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '18588000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:46', + 'updated_at' => '2019-10-06 08:01:46', + 'flag' => true, + 'wikiDataId' => 'Q621372', + ], + [ + 'id' => 111403, + 'name' => 'Aptos', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '97717000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '89940000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:46', + 'updated_at' => '2019-10-06 08:01:46', + 'flag' => true, + 'wikiDataId' => 'Q622269', + ], + [ + 'id' => 111404, + 'name' => 'Aptos Hills-Larkin Valley', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '96064000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '83404000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:46', + 'updated_at' => '2019-10-06 08:01:46', + 'flag' => true, + 'wikiDataId' => 'Q2987998', + ], + [ + 'id' => 111416, + 'name' => 'Arbuckle', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '01740000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '05775000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:46', + 'updated_at' => '2019-10-06 08:01:46', + 'flag' => true, + 'wikiDataId' => 'Q3306160', + ], + [ + 'id' => 111425, + 'name' => 'Arcadia', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '13973000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '03534000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:46', + 'updated_at' => '2019-10-06 08:01:46', + 'flag' => true, + 'wikiDataId' => 'Q534536', + ], + [ + 'id' => 111426, + 'name' => 'Arcata', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '86652000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '124'; + $this->fractionalPart = '08284000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:46', + 'updated_at' => '2019-10-06 08:01:46', + 'flag' => true, + 'wikiDataId' => 'Q631752', + ], + [ + 'id' => 111440, + 'name' => 'Arden-Arcade', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '60250000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '37854000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:46', + 'updated_at' => '2019-10-06 08:01:46', + 'flag' => true, + 'wikiDataId' => 'Q638819', + ], + [ + 'id' => 111477, + 'name' => 'Armona', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '31578000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '70846000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:46', + 'updated_at' => '2019-10-06 08:01:46', + 'flag' => true, + 'wikiDataId' => 'Q2673381', + ], + [ + 'id' => 111488, + 'name' => 'Arnold', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '25547000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '35103000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:46', + 'updated_at' => '2019-10-06 08:01:46', + 'flag' => true, + 'wikiDataId' => 'Q2179690', + ], + [ + 'id' => 111491, + 'name' => 'Aromas', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '88856000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '64300000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:46', + 'updated_at' => '2019-10-06 08:01:46', + 'flag' => true, + 'wikiDataId' => 'Q3301893', + ], + [ + 'id' => 111494, + 'name' => 'Arroyo Grande', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '35'; + $this->fractionalPart = '11859000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '59073000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:46', + 'updated_at' => '2019-10-06 08:01:46', + 'flag' => true, + 'wikiDataId' => 'Q703206', + ], + [ + 'id' => 111496, + 'name' => 'Artesia', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '86585000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '08312000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:46', + 'updated_at' => '2019-10-06 08:01:46', + 'flag' => true, + 'wikiDataId' => 'Q526814', + ], + [ + 'id' => 111505, + 'name' => 'Arvin', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '35'; + $this->fractionalPart = '20913000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '82843000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:46', + 'updated_at' => '2019-10-06 08:01:46', + 'flag' => true, + 'wikiDataId' => 'Q717385', + ], + [ + 'id' => 111538, + 'name' => 'Ashland', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '69465000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '11385000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:46', + 'updated_at' => '2019-10-06 08:01:46', + 'flag' => true, + 'wikiDataId' => 'Q1006582', + ], + [ + 'id' => 111564, + 'name' => 'Atascadero', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '35'; + $this->fractionalPart = '48942000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '67073000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:47', + 'updated_at' => '2019-10-06 08:01:47', + 'flag' => true, + 'wikiDataId' => 'Q653827', + ], + [ + 'id' => 111582, + 'name' => 'Atherton', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '46133000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '19774000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:47', + 'updated_at' => '2019-10-06 08:01:47', + 'flag' => true, + 'wikiDataId' => 'Q2869080', + ], + [ + 'id' => 111613, + 'name' => 'Atwater', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '34772000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '60908000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:47', + 'updated_at' => '2019-10-06 08:01:47', + 'flag' => true, + 'wikiDataId' => 'Q595806', + ], + [ + 'id' => 111617, + 'name' => 'Auberry', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '08078000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '48541000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:47', + 'updated_at' => '2019-10-06 08:01:47', + 'flag' => true, + 'wikiDataId' => 'Q2662360', + ], + [ + 'id' => 111631, + 'name' => 'Auburn', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '89657000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '07689000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:47', + 'updated_at' => '2019-10-06 08:01:47', + 'flag' => true, + 'wikiDataId' => 'Q758542', + ], + [ + 'id' => 111635, + 'name' => 'Auburn Lake Trails', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '91434000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '95244000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:47', + 'updated_at' => '2019-10-06 08:01:47', + 'flag' => true, + 'wikiDataId' => 'Q4819286', + ], + [ + 'id' => 111644, + 'name' => 'August', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '97881000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '26217000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:47', + 'updated_at' => '2019-10-06 08:01:47', + 'flag' => true, + 'wikiDataId' => 'Q2617712', + ], + [ + 'id' => 111675, + 'name' => 'Avalon', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '34281000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '32785000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:47', + 'updated_at' => '2019-10-06 08:01:47', + 'flag' => true, + 'wikiDataId' => 'Q695715', + ], + [ + 'id' => 111676, + 'name' => 'Avenal', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '00412000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '12903000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:47', + 'updated_at' => '2019-10-06 08:01:47', + 'flag' => true, + 'wikiDataId' => 'Q790415', + ], + [ + 'id' => 111683, + 'name' => 'Avila Beach', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '35'; + $this->fractionalPart = '17998000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '73184000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:47', + 'updated_at' => '2019-10-06 08:01:47', + 'flag' => true, + 'wikiDataId' => 'Q3477456', + ], + [ + 'id' => 111689, + 'name' => 'Avocado Heights', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '03612000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '99118000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:47', + 'updated_at' => '2019-10-06 08:01:47', + 'flag' => true, + 'wikiDataId' => 'Q791245', + ], + [ + 'id' => 111713, + 'name' => 'Azusa', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '13362000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '90756000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:48', + 'updated_at' => '2019-10-06 08:01:48', + 'flag' => true, + 'wikiDataId' => 'Q794396', + ], + [ + 'id' => 111744, + 'name' => 'Bakersfield', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '35'; + $this->fractionalPart = '37329000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '01871000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:48', + 'updated_at' => '2019-10-06 08:01:48', + 'flag' => true, + 'wikiDataId' => 'Q49256', + ], + [ + 'id' => 111763, + 'name' => 'Baldwin Park', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '08529000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '96090000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:48', + 'updated_at' => '2019-10-06 08:01:48', + 'flag' => true, + 'wikiDataId' => 'Q804878', + ], + [ + 'id' => 111803, + 'name' => 'Banning', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '92557000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '116'; + $this->fractionalPart = '87641000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:48', + 'updated_at' => '2019-10-06 08:01:48', + 'flag' => true, + 'wikiDataId' => 'Q806903', + ], + [ + 'id' => 111857, + 'name' => 'Barstow', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '89859000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '02282000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:48', + 'updated_at' => '2019-10-06 08:01:48', + 'flag' => true, + 'wikiDataId' => 'Q499174', + ], + [ + 'id' => 111858, + 'name' => 'Barstow Heights', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '86971000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '05615000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:48', + 'updated_at' => '2019-10-06 08:01:48', + 'flag' => true, + 'wikiDataId' => 'Q499174', + ], + [ + 'id' => 111932, + 'name' => 'Bay Point', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '02909000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '96163000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:49', + 'updated_at' => '2019-10-06 08:01:49', + 'flag' => true, + 'wikiDataId' => 'Q812085', + ], + [ + 'id' => 111957, + 'name' => 'Bayside', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '84235000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '124'; + $this->fractionalPart = '06367000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:49', + 'updated_at' => '2019-10-06 08:01:49', + 'flag' => true, + 'wikiDataId' => 'Q812624', + ], + [ + 'id' => 111959, + 'name' => 'Bayview', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '77263000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '124'; + $this->fractionalPart = '18395000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:49', + 'updated_at' => '2019-10-06 08:01:49', + 'flag' => true, + 'wikiDataId' => 'Q474517', + ], + [ + 'id' => 111971, + 'name' => 'Beale Air Force Base', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '10917000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '35444000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:49', + 'updated_at' => '2019-10-06 08:01:49', + 'flag' => true, + 'wikiDataId' => 'Q484780', + ], + [ + 'id' => 111979, + 'name' => 'Bear Valley Springs', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '35'; + $this->fractionalPart = '15913000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '62842000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:49', + 'updated_at' => '2019-10-06 08:01:49', + 'flag' => true, + 'wikiDataId' => 'Q2083078', + ], + [ + 'id' => 111990, + 'name' => 'Beaumont', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '92946000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '116'; + $this->fractionalPart = '97725000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:49', + 'updated_at' => '2019-10-06 08:01:49', + 'flag' => true, + 'wikiDataId' => 'Q813431', + ], + [ + 'id' => 112066, + 'name' => 'Bell', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '97751000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '18702000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:50', + 'updated_at' => '2019-10-06 08:01:50', + 'flag' => true, + 'wikiDataId' => 'Q377736', + ], + [ + 'id' => 112070, + 'name' => 'Bell Gardens', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '96529000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '15146000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:50', + 'updated_at' => '2019-10-06 08:01:50', + 'flag' => true, + 'wikiDataId' => 'Q815720', + ], + [ + 'id' => 112072, + 'name' => 'Bella Vista', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '64071000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '23250000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:50', + 'updated_at' => '2019-10-06 08:01:50', + 'flag' => true, + 'wikiDataId' => 'Q3458829', + ], + [ + 'id' => 112118, + 'name' => 'Bellflower', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '88168000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '11701000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:50', + 'updated_at' => '2019-10-06 08:01:50', + 'flag' => true, + 'wikiDataId' => 'Q815979', + ], + [ + 'id' => 112142, + 'name' => 'Belmont', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '52021000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '27580000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:50', + 'updated_at' => '2019-10-06 08:01:50', + 'flag' => true, + 'wikiDataId' => 'Q816099', + ], + [ + 'id' => 112153, + 'name' => 'Belvedere', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '87270000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '46442000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:50', + 'updated_at' => '2019-10-06 08:01:50', + 'flag' => true, + 'wikiDataId' => 'Q2054234', + ], + [ + 'id' => 112163, + 'name' => 'Ben Lomond', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '08911000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '08635000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:50', + 'updated_at' => '2019-10-06 08:01:50', + 'flag' => true, + 'wikiDataId' => 'Q588934', + ], + [ + 'id' => 112168, + 'name' => 'Benicia', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '04937000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '15858000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:50', + 'updated_at' => '2019-10-06 08:01:50', + 'flag' => true, + 'wikiDataId' => 'Q817301', + ], + [ + 'id' => 112223, + 'name' => 'Berkeley', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '87159000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '27275000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:51', + 'updated_at' => '2019-10-06 08:01:51', + 'flag' => true, + 'wikiDataId' => 'Q484678', + ], + [ + 'id' => 112240, + 'name' => 'Bermuda Dunes', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '74280000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '116'; + $this->fractionalPart = '28918000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:51', + 'updated_at' => '2019-10-06 08:01:51', + 'flag' => true, + 'wikiDataId' => 'Q2206371', + ], + [ + 'id' => 112253, + 'name' => 'Berry Creek', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '64516000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '40330000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:51', + 'updated_at' => '2019-10-06 08:01:51', + 'flag' => true, + 'wikiDataId' => 'Q3458761', + ], + [ + 'id' => 112260, + 'name' => 'Bertsch-Oceanview', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '75250000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '124'; + $this->fractionalPart = '15875000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:51', + 'updated_at' => '2019-10-06 08:01:51', + 'flag' => true, + 'wikiDataId' => 'Q3301935', + ], + [ + 'id' => 112286, + 'name' => 'Bethel Island', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '01492000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '64051000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:51', + 'updated_at' => '2019-10-06 08:01:51', + 'flag' => true, + 'wikiDataId' => 'Q3306108', + ], + [ + 'id' => 112306, + 'name' => 'Beverly Hills', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '07362000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '40036000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:51', + 'updated_at' => '2019-10-06 08:01:51', + 'flag' => true, + 'wikiDataId' => 'Q127856', + ], + [ + 'id' => 112315, + 'name' => 'Big Bear City', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '26112000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '116'; + $this->fractionalPart = '84503000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:51', + 'updated_at' => '2019-10-06 08:01:51', + 'flag' => true, + 'wikiDataId' => 'Q542794', + ], + [ + 'id' => 112316, + 'name' => 'Big Bear Lake', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '24390000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '116'; + $this->fractionalPart = '91142000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:51', + 'updated_at' => '2019-10-06 08:01:51', + 'flag' => true, + 'wikiDataId' => 'Q430708', + ], + [ + 'id' => 112328, + 'name' => 'Big Pine', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '16493000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '28955000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:51', + 'updated_at' => '2019-10-06 08:01:51', + 'flag' => true, + 'wikiDataId' => 'Q2532244', + ], + [ + 'id' => 112331, + 'name' => 'Big River', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '14002000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '114'; + $this->fractionalPart = '36134000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:52', + 'updated_at' => '2019-10-06 08:01:52', + 'flag' => true, + 'wikiDataId' => 'Q1837406', + ], + [ + 'id' => 112340, + 'name' => 'Biggs', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '41239000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '71275000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:52', + 'updated_at' => '2019-10-06 08:01:52', + 'flag' => true, + 'wikiDataId' => 'Q2902454', + ], + [ + 'id' => 112352, + 'name' => 'Biola', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '80217000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '01627000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:52', + 'updated_at' => '2019-10-06 08:01:52', + 'flag' => true, + 'wikiDataId' => 'Q2912357', + ], + [ + 'id' => 112364, + 'name' => 'Bishop', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '36354000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '39511000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:52', + 'updated_at' => '2019-10-06 08:01:52', + 'flag' => true, + 'wikiDataId' => 'Q852658', + ], + [ + 'id' => 112381, + 'name' => 'Black Point-Green Point', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '11547000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '51318000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:52', + 'updated_at' => '2019-10-06 08:01:52', + 'flag' => true, + 'wikiDataId' => 'Q2413277', + ], + [ + 'id' => 112387, + 'name' => 'Blackhawk', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '82076000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '90774000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:52', + 'updated_at' => '2019-10-06 08:01:52', + 'flag' => true, + 'wikiDataId' => 'Q3470840', + ], + [ + 'id' => 112453, + 'name' => 'Bloomington', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '07029000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '39588000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:52', + 'updated_at' => '2019-10-06 08:01:52', + 'flag' => true, + 'wikiDataId' => 'Q885396', + ], + [ + 'id' => 112470, + 'name' => 'Blue Lake', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '88291000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '123'; + $this->fractionalPart = '98395000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:52', + 'updated_at' => '2019-10-06 08:01:52', + 'flag' => true, + 'wikiDataId' => 'Q2907220', + ], + [ + 'id' => 112485, + 'name' => 'Blythe', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '61030000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '114'; + $this->fractionalPart = '59635000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:53', + 'updated_at' => '2019-10-06 08:01:53', + 'flag' => true, + 'wikiDataId' => 'Q886915', + ], + [ + 'id' => 112495, + 'name' => 'Bodega Bay', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '33325000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '123'; + $this->fractionalPart = '04806000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:53', + 'updated_at' => '2019-10-06 08:01:53', + 'flag' => true, + 'wikiDataId' => 'Q889411', + ], + [ + 'id' => 112496, + 'name' => 'Bodfish', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '35'; + $this->fractionalPart = '58801000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '49203000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:53', + 'updated_at' => '2019-10-06 08:01:53', + 'flag' => true, + 'wikiDataId' => 'Q2396293', + ], + [ + 'id' => 112514, + 'name' => 'Bolinas', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '90937000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '68637000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:53', + 'updated_at' => '2019-10-06 08:01:53', + 'flag' => true, + 'wikiDataId' => 'Q2686131', + ], + [ + 'id' => 112529, + 'name' => 'Bonadelle Ranchos-Madera Ranchos', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '98467000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '87463000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:53', + 'updated_at' => '2019-10-06 08:01:53', + 'flag' => true, + 'wikiDataId' => 'Q2379808', + ], + [ + 'id' => 112537, + 'name' => 'Bonita', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '32'; + $this->fractionalPart = '65783000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '03003000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:53', + 'updated_at' => '2019-10-06 08:01:53', + 'flag' => true, + 'wikiDataId' => 'Q892613', + ], + [ + 'id' => 112548, + 'name' => 'Bonny Doon', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '04162000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '15052000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:53', + 'updated_at' => '2019-10-06 08:01:53', + 'flag' => true, + 'wikiDataId' => 'Q3476197', + ], + [ + 'id' => 112550, + 'name' => 'Bonsall', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '28892000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '22559000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:53', + 'updated_at' => '2019-10-06 08:01:53', + 'flag' => true, + 'wikiDataId' => 'Q2393153', + ], + [ + 'id' => 112571, + 'name' => 'Boonville', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '00907000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '123'; + $this->fractionalPart = '36612000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:53', + 'updated_at' => '2019-10-06 08:01:53', + 'flag' => true, + 'wikiDataId' => 'Q2910515', + ], + [ + 'id' => 112578, + 'name' => 'Boron', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '99942000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '64978000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:53', + 'updated_at' => '2019-10-06 08:01:53', + 'flag' => true, + 'wikiDataId' => 'Q1965078', + ], + [ + 'id' => 112579, + 'name' => 'Boronda', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '69885000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '67495000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:53', + 'updated_at' => '2019-10-06 08:01:53', + 'flag' => true, + 'wikiDataId' => 'Q2083254', + ], + [ + 'id' => 112581, + 'name' => 'Borrego Springs', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '25587000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '116'; + $this->fractionalPart = '37501000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:53', + 'updated_at' => '2019-10-06 08:01:53', + 'flag' => true, + 'wikiDataId' => 'Q2049424', + ], + [ + 'id' => 112591, + 'name' => 'Bostonia', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '32'; + $this->fractionalPart = '80755000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '116'; + $this->fractionalPart = '93642000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:53', + 'updated_at' => '2019-10-06 08:01:53', + 'flag' => true, + 'wikiDataId' => 'Q894606', + ], + [ + 'id' => 112604, + 'name' => 'Boulder Creek', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '12606000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '12219000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:53', + 'updated_at' => '2019-10-06 08:01:53', + 'flag' => true, + 'wikiDataId' => 'Q2195131', + ], + [ + 'id' => 112646, + 'name' => 'Boyes Hot Springs', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '31380000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '48193000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:53', + 'updated_at' => '2019-10-06 08:01:53', + 'flag' => true, + 'wikiDataId' => 'Q2547778', + ], + [ + 'id' => 112649, + 'name' => 'Boyle Heights', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '03390000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '20535000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:54', + 'updated_at' => '2019-10-06 08:01:54', + 'flag' => true, + 'wikiDataId' => 'Q2923029', + ], + [ + 'id' => 112658, + 'name' => 'Bradbury', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '14695000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '97090000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:54', + 'updated_at' => '2019-10-06 08:01:54', + 'flag' => true, + 'wikiDataId' => 'Q896910', + ], + [ + 'id' => 112700, + 'name' => 'Brawley', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '32'; + $this->fractionalPart = '97866000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '115'; + $this->fractionalPart = '53027000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:54', + 'updated_at' => '2019-10-06 08:01:54', + 'flag' => true, + 'wikiDataId' => 'Q902878', + ], + [ + 'id' => 112707, + 'name' => 'Brea', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '91668000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '90006000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:54', + 'updated_at' => '2019-10-06 08:01:54', + 'flag' => true, + 'wikiDataId' => 'Q302612', + ], + [ + 'id' => 112733, + 'name' => 'Brentwood', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '93187000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '69579000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:54', + 'updated_at' => '2019-10-06 08:01:54', + 'flag' => true, + 'wikiDataId' => 'Q846426', + ], + [ + 'id' => 112736, + 'name' => 'Bret Harte', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '60207000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '00519000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:54', + 'updated_at' => '2019-10-06 08:01:54', + 'flag' => true, + 'wikiDataId' => 'Q2792234', + ], + [ + 'id' => 112765, + 'name' => 'Bridgeport', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '25575000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '23127000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:54', + 'updated_at' => '2019-10-06 08:01:54', + 'flag' => true, + 'wikiDataId' => 'Q913753', + ], + [ + 'id' => 112800, + 'name' => 'Brisbane', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '68077000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '39997000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:55', + 'updated_at' => '2019-10-06 08:01:55', + 'flag' => true, + 'wikiDataId' => 'Q917671', + ], + [ + 'id' => 112825, + 'name' => 'Broadmoor', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '68660000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '48275000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:55', + 'updated_at' => '2019-10-06 08:01:55', + 'flag' => true, + 'wikiDataId' => 'Q2944590', + ], + [ + 'id' => 112851, + 'name' => 'Brookdale', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '10634000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '10608000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:55', + 'updated_at' => '2019-10-06 08:01:55', + 'flag' => true, + 'wikiDataId' => 'Q2892145', + ], + [ + 'id' => 112893, + 'name' => 'Brooktrails', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '44377000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '123'; + $this->fractionalPart = '38529000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:55', + 'updated_at' => '2019-10-06 08:01:55', + 'flag' => true, + 'wikiDataId' => 'Q4975151', + ], + [ + 'id' => 112983, + 'name' => 'Buckhorn', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '45216000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '52854000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:56', + 'updated_at' => '2019-10-06 08:01:56', + 'flag' => true, + 'wikiDataId' => 'Q4983148', + ], + [ + 'id' => 112997, + 'name' => 'Buellton', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '61360000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '19265000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:56', + 'updated_at' => '2019-10-06 08:01:56', + 'flag' => true, + 'wikiDataId' => 'Q999905', + ], + [ + 'id' => 112999, + 'name' => 'Buena Park', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '86751000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '99812000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:56', + 'updated_at' => '2019-10-06 08:01:56', + 'flag' => true, + 'wikiDataId' => 'Q838762', + ], + [ + 'id' => 113003, + 'name' => 'Buena Vista', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '32133000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '91662000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:56', + 'updated_at' => '2019-10-06 08:01:56', + 'flag' => true, + 'wikiDataId' => 'Q3094060', + ], + [ + 'id' => 113047, + 'name' => 'Burbank', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '18084000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '30897000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:56', + 'updated_at' => '2019-10-06 08:01:56', + 'flag' => true, + 'wikiDataId' => 'Q39561', + ], + [ + 'id' => 113065, + 'name' => 'Burlingame', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '58410000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '36608000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:56', + 'updated_at' => '2019-10-06 08:01:56', + 'flag' => true, + 'wikiDataId' => 'Q986867', + ], + [ + 'id' => 113082, + 'name' => 'Burney', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '88238000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '66082000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:56', + 'updated_at' => '2019-10-06 08:01:56', + 'flag' => true, + 'wikiDataId' => 'Q2587867', + ], + [ + 'id' => 113125, + 'name' => 'Butte County', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '66693000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '60067000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:57', + 'updated_at' => '2019-10-06 08:01:57', + 'flag' => true, + 'wikiDataId' => 'Q156181', + ], + [ + 'id' => 113129, + 'name' => 'Buttonwillow', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '35'; + $this->fractionalPart = '40052000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '46956000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:57', + 'updated_at' => '2019-10-06 08:01:57', + 'flag' => true, + 'wikiDataId' => 'Q2347141', + ], + [ + 'id' => 113146, + 'name' => 'Byron', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '86715000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '63801000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:57', + 'updated_at' => '2019-10-06 08:01:57', + 'flag' => true, + 'wikiDataId' => 'Q1018596', + ], + [ + 'id' => 113148, + 'name' => 'Bystrom', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '62076000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '98577000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:57', + 'updated_at' => '2019-10-06 08:01:57', + 'flag' => true, + 'wikiDataId' => 'Q3303215', + ], + [ + 'id' => 113150, + 'name' => 'Cabazon', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '91752000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '116'; + $this->fractionalPart = '78724000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:57', + 'updated_at' => '2019-10-06 08:01:57', + 'flag' => true, + 'wikiDataId' => 'Q2805009', + ], + [ + 'id' => 113173, + 'name' => 'Calabasas', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '15778000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '63842000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:57', + 'updated_at' => '2019-10-06 08:01:57', + 'flag' => true, + 'wikiDataId' => 'Q629088', + ], + [ + 'id' => 113176, + 'name' => 'Calaveras County', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '20461000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '55413000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:57', + 'updated_at' => '2019-10-06 08:01:57', + 'flag' => true, + 'wikiDataId' => 'Q271613', + ], + [ + 'id' => 113196, + 'name' => 'Calexico', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '32'; + $this->fractionalPart = '67895000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '115'; + $this->fractionalPart = '49888000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:57', + 'updated_at' => '2019-10-06 08:01:57', + 'flag' => true, + 'wikiDataId' => 'Q753034', + ], + [ + 'id' => 113218, + 'name' => 'California City', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '35'; + $this->fractionalPart = '12580000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '98590000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:57', + 'updated_at' => '2019-10-06 08:01:57', + 'flag' => true, + 'wikiDataId' => 'Q732125', + ], + [ + 'id' => 113219, + 'name' => 'Calimesa', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '00390000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '06198000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:57', + 'updated_at' => '2019-10-06 08:01:57', + 'flag' => true, + 'wikiDataId' => 'Q2346469', + ], + [ + 'id' => 113220, + 'name' => 'Calipatria', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '12560000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '115'; + $this->fractionalPart = '51415000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:57', + 'updated_at' => '2019-10-06 08:01:57', + 'flag' => true, + 'wikiDataId' => 'Q931778', + ], + [ + 'id' => 113221, + 'name' => 'Calistoga', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '57880000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '57971000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:57', + 'updated_at' => '2019-10-06 08:01:57', + 'flag' => true, + 'wikiDataId' => 'Q983598', + ], + [ + 'id' => 113226, + 'name' => 'Callender', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '35'; + $this->fractionalPart = '05303000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '59628000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:57', + 'updated_at' => '2019-10-06 08:01:57', + 'flag' => true, + 'wikiDataId' => 'Q5021900', + ], + [ + 'id' => 113242, + 'name' => 'Camarillo', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '21639000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '03760000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:57', + 'updated_at' => '2019-10-06 08:01:57', + 'flag' => true, + 'wikiDataId' => 'Q846040', + ], + [ + 'id' => 113246, + 'name' => 'Cambria', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '35'; + $this->fractionalPart = '56414000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '08075000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:58', + 'updated_at' => '2019-10-06 08:01:58', + 'flag' => true, + 'wikiDataId' => 'Q1028196', + ], + [ + 'id' => 113249, + 'name' => 'Cambrian Park', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '25689000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '93079000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:58', + 'updated_at' => '2019-10-06 08:01:58', + 'flag' => true, + 'wikiDataId' => 'Q1911837', + ], + [ + 'id' => 113281, + 'name' => 'Cameron Park', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '66879000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '98716000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:58', + 'updated_at' => '2019-10-06 08:01:58', + 'flag' => true, + 'wikiDataId' => 'Q1028791', + ], + [ + 'id' => 113285, + 'name' => 'Camino', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '73824000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '67493000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:58', + 'updated_at' => '2019-10-06 08:01:58', + 'flag' => true, + 'wikiDataId' => 'Q3458211', + ], + [ + 'id' => 113289, + 'name' => 'Camp Meeker', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '42519000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '95944000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:58', + 'updated_at' => '2019-10-06 08:01:58', + 'flag' => true, + 'wikiDataId' => 'Q5027407', + ], + [ + 'id' => 113290, + 'name' => 'Camp Pendleton North', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '31465000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '31603000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:58', + 'updated_at' => '2019-10-06 08:01:58', + 'flag' => true, + 'wikiDataId' => 'Q1029922', + ], + [ + 'id' => 113291, + 'name' => 'Camp Pendleton South', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '22844000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '37929000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:58', + 'updated_at' => '2019-10-06 08:01:58', + 'flag' => true, + 'wikiDataId' => 'Q1029918', + ], + [ + 'id' => 113298, + 'name' => 'Campbell', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '28717000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '94996000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:58', + 'updated_at' => '2019-10-06 08:01:58', + 'flag' => true, + 'wikiDataId' => 'Q988721', + ], + [ + 'id' => 113308, + 'name' => 'Campo', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '32'; + $this->fractionalPart = '60645000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '116'; + $this->fractionalPart = '46891000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:58', + 'updated_at' => '2019-10-06 08:01:58', + 'flag' => true, + 'wikiDataId' => 'Q249224', + ], + [ + 'id' => 113335, + 'name' => 'Canoga Park', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '20112000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '59814000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:58', + 'updated_at' => '2019-10-06 08:01:58', + 'flag' => true, + 'wikiDataId' => 'Q2457268', + ], + [ + 'id' => 113359, + 'name' => 'Canyon Lake', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '68502000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '27309000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:58', + 'updated_at' => '2019-10-06 08:01:58', + 'flag' => true, + 'wikiDataId' => 'Q656378', + ], + [ + 'id' => 113376, + 'name' => 'Capitola', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '97523000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '95329000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:58', + 'updated_at' => '2019-10-06 08:01:58', + 'flag' => true, + 'wikiDataId' => 'Q986894', + ], + [ + 'id' => 113408, + 'name' => 'Carlsbad', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '15809000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '35059000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:58', + 'updated_at' => '2019-10-06 08:01:58', + 'flag' => true, + 'wikiDataId' => 'Q491099', + ], + [ + 'id' => 113420, + 'name' => 'Carmel Valley Village', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '50605000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '76594000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:59', + 'updated_at' => '2019-10-06 08:01:59', + 'flag' => true, + 'wikiDataId' => 'Q2150893', + ], + [ + 'id' => 113421, + 'name' => 'Carmel-by-the-Sea', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '55524000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '92329000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:59', + 'updated_at' => '2019-10-06 08:01:59', + 'flag' => true, + 'wikiDataId' => 'Q625458', + ], + [ + 'id' => 113423, + 'name' => 'Carmichael', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '61713000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '32828000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:59', + 'updated_at' => '2019-10-06 08:01:59', + 'flag' => true, + 'wikiDataId' => 'Q1006574', + ], + [ + 'id' => 113440, + 'name' => 'Carpinteria', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '39888000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '51846000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:59', + 'updated_at' => '2019-10-06 08:01:59', + 'flag' => true, + 'wikiDataId' => 'Q588482', + ], + [ + 'id' => 113474, + 'name' => 'Carson', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '83141000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '28202000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:59', + 'updated_at' => '2019-10-06 08:01:59', + 'flag' => true, + 'wikiDataId' => 'Q494690', + ], + [ + 'id' => 113498, + 'name' => 'Caruthers', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '54273000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '83320000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:59', + 'updated_at' => '2019-10-06 08:01:59', + 'flag' => true, + 'wikiDataId' => 'Q2671627', + ], + [ + 'id' => 113509, + 'name' => 'Casa Conejo', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '18362000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '94343000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:59', + 'updated_at' => '2019-10-06 08:01:59', + 'flag' => true, + 'wikiDataId' => 'Q2490542', + ], + [ + 'id' => 113511, + 'name' => 'Casa de Oro-Mount Helix', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '32'; + $this->fractionalPart = '76397000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '116'; + $this->fractionalPart = '96877000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:59', + 'updated_at' => '2019-10-06 08:01:59', + 'flag' => true, + 'wikiDataId' => 'Q1046519', + ], + [ + 'id' => 113540, + 'name' => 'Castaic', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '48888000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '62287000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:59', + 'updated_at' => '2019-10-06 08:01:59', + 'flag' => true, + 'wikiDataId' => 'Q3242084', + ], + [ + 'id' => 113557, + 'name' => 'Castro Valley', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '69410000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '08635000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:59', + 'updated_at' => '2019-10-06 08:01:59', + 'flag' => true, + 'wikiDataId' => 'Q1020700', + ], + [ + 'id' => 113559, + 'name' => 'Castroville', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '76579000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '75800000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:59', + 'updated_at' => '2019-10-06 08:01:59', + 'flag' => true, + 'wikiDataId' => 'Q372402', + ], + [ + 'id' => 113570, + 'name' => 'Cathedral City', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '77974000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '116'; + $this->fractionalPart = '46529000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:59', + 'updated_at' => '2019-10-06 08:01:59', + 'flag' => true, + 'wikiDataId' => 'Q578518', + ], + [ + 'id' => 113592, + 'name' => 'Cayucos', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '35'; + $this->fractionalPart = '44275000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '89213000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:00', + 'updated_at' => '2019-10-06 08:02:00', + 'flag' => true, + 'wikiDataId' => 'Q1052054', + ], + [ + 'id' => 113622, + 'name' => 'Cedar Ridge', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '06576000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '27686000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:00', + 'updated_at' => '2019-10-06 08:02:00', + 'flag' => true, + 'wikiDataId' => 'Q486439', + ], + [ + 'id' => 113683, + 'name' => 'Central Valley (historical)', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '68043000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '37112000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:00', + 'updated_at' => '2019-10-06 08:02:00', + 'flag' => true, + 'wikiDataId' => 'Q3826294', + ], + [ + 'id' => 113698, + 'name' => 'Century City', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '05557000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '41786000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:00', + 'updated_at' => '2019-10-06 08:02:00', + 'flag' => true, + 'wikiDataId' => 'Q1054483', + ], + [ + 'id' => 113700, + 'name' => 'Ceres', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '59493000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '95771000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:00', + 'updated_at' => '2019-10-06 08:02:00', + 'flag' => true, + 'wikiDataId' => 'Q594171', + ], + [ + 'id' => 113701, + 'name' => 'Cerritos', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '85835000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '06479000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:00', + 'updated_at' => '2019-10-06 08:02:00', + 'flag' => true, + 'wikiDataId' => 'Q575316', + ], + [ + 'id' => 113714, + 'name' => 'Challenge-Brownsville', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '46447000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '26338000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:01', + 'updated_at' => '2019-10-06 08:02:01', + 'flag' => true, + 'wikiDataId' => 'Q3301605', + ], + [ + 'id' => 113734, + 'name' => 'Channel Islands Beach', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '15806000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '22316000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:01', + 'updated_at' => '2019-10-06 08:02:01', + 'flag' => true, + 'wikiDataId' => 'Q550185', + ], + [ + 'id' => 113790, + 'name' => 'Charter Oak', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '10306000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '84589000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:01', + 'updated_at' => '2019-10-06 08:02:01', + 'flag' => true, + 'wikiDataId' => 'Q1067838', + ], + [ + 'id' => 113807, + 'name' => 'Chatsworth', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '25723000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '60120000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:01', + 'updated_at' => '2019-10-06 08:02:01', + 'flag' => true, + 'wikiDataId' => 'Q1020942', + ], + [ + 'id' => 113865, + 'name' => 'Cherry Valley', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '97252000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '116'; + $this->fractionalPart = '97725000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:01', + 'updated_at' => '2019-10-06 08:02:01', + 'flag' => true, + 'wikiDataId' => 'Q3296026', + ], + [ + 'id' => 113867, + 'name' => 'Cherryland', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '67938000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '10330000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:01', + 'updated_at' => '2019-10-06 08:02:01', + 'flag' => true, + 'wikiDataId' => 'Q473016', + ], + [ + 'id' => 113892, + 'name' => 'Chester', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '30627000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '23191000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:02', + 'updated_at' => '2019-10-06 08:02:02', + 'flag' => true, + 'wikiDataId' => 'Q301176', + ], + [ + 'id' => 113943, + 'name' => 'Chico', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '72849000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '83748000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:02', + 'updated_at' => '2019-10-06 08:02:02', + 'flag' => true, + 'wikiDataId' => 'Q432152', + ], + [ + 'id' => 113963, + 'name' => 'China Lake Acres', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '35'; + $this->fractionalPart = '64051000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '76395000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:02', + 'updated_at' => '2019-10-06 08:02:02', + 'flag' => true, + 'wikiDataId' => 'Q2720635', + ], + [ + 'id' => 113964, + 'name' => 'Chinatown', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '79660000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '40858000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:02', + 'updated_at' => '2019-10-06 08:02:02', + 'flag' => true, + 'wikiDataId' => 'Q2720635', + ], + [ + 'id' => 113968, + 'name' => 'Chino', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '01223000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '68894000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:02', + 'updated_at' => '2019-10-06 08:02:02', + 'flag' => true, + 'wikiDataId' => 'Q506395', + ], + [ + 'id' => 113969, + 'name' => 'Chino Hills', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '99380000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '75888000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:02', + 'updated_at' => '2019-10-06 08:02:02', + 'flag' => true, + 'wikiDataId' => 'Q852721', + ], + [ + 'id' => 113993, + 'name' => 'Chowchilla', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '12300000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '26018000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:03', + 'updated_at' => '2019-10-06 08:02:03', + 'flag' => true, + 'wikiDataId' => 'Q985260', + ], + [ + 'id' => 114003, + 'name' => 'Chualar', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '57052000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '51855000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:03', + 'updated_at' => '2019-10-06 08:02:03', + 'flag' => true, + 'wikiDataId' => 'Q2797405', + ], + [ + 'id' => 114005, + 'name' => 'Chula Vista', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '32'; + $this->fractionalPart = '64005000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '08420000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:03', + 'updated_at' => '2019-10-06 08:02:03', + 'flag' => true, + 'wikiDataId' => 'Q49270', + ], + [ + 'id' => 114034, + 'name' => 'Citrus', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '11501000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '89173000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:03', + 'updated_at' => '2019-10-06 08:02:03', + 'flag' => true, + 'wikiDataId' => 'Q2738888', + ], + [ + 'id' => 114037, + 'name' => 'Citrus Heights', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '70712000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '28106000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:03', + 'updated_at' => '2019-10-06 08:02:03', + 'flag' => true, + 'wikiDataId' => 'Q658402', + ], + [ + 'id' => 114046, + 'name' => 'City and County of San Francisco', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '77823000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '44250000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:03', + 'updated_at' => '2019-10-06 08:02:03', + 'flag' => true, + 'wikiDataId' => 'Q13188841', + ], + [ + 'id' => 114106, + 'name' => 'Claremont', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '09668000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '71978000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:03', + 'updated_at' => '2019-10-06 08:02:03', + 'flag' => true, + 'wikiDataId' => 'Q506398', + ], + [ + 'id' => 114169, + 'name' => 'Clay', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '33602000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '15939000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:04', + 'updated_at' => '2019-10-06 08:02:04', + 'flag' => true, + 'wikiDataId' => 'Q5129810', + ], + [ + 'id' => 114203, + 'name' => 'Clayton', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '94103000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '93579000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:04', + 'updated_at' => '2019-10-06 08:02:04', + 'flag' => true, + 'wikiDataId' => 'Q948168', + ], + [ + 'id' => 114213, + 'name' => 'Clear Lake Riviera', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '95406000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '72082000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:04', + 'updated_at' => '2019-10-06 08:02:04', + 'flag' => true, + 'wikiDataId' => 'Q1515610', + ], + [ + 'id' => 114219, + 'name' => 'Clearlake', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '95823000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '62637000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:04', + 'updated_at' => '2019-10-06 08:02:04', + 'flag' => true, + 'wikiDataId' => 'Q376246', + ], + [ + 'id' => 114220, + 'name' => 'Clearlake Oaks', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '02628000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '67193000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:04', + 'updated_at' => '2019-10-06 08:02:04', + 'flag' => true, + 'wikiDataId' => 'Q2507947', + ], + [ + 'id' => 114311, + 'name' => 'Cloverdale', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '80546000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '123'; + $this->fractionalPart = '01722000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:05', + 'updated_at' => '2019-10-06 08:02:05', + 'flag' => true, + 'wikiDataId' => 'Q928609', + ], + [ + 'id' => 114315, + 'name' => 'Clovis', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '82523000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '70292000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:05', + 'updated_at' => '2019-10-06 08:02:05', + 'flag' => true, + 'wikiDataId' => 'Q303794', + ], + [ + 'id' => 114324, + 'name' => 'Coachella', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '68030000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '116'; + $this->fractionalPart = '17389000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:05', + 'updated_at' => '2019-10-06 08:02:05', + 'flag' => true, + 'wikiDataId' => 'Q948219', + ], + [ + 'id' => 114338, + 'name' => 'Coalinga', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '13968000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '36015000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:05', + 'updated_at' => '2019-10-06 08:02:05', + 'flag' => true, + 'wikiDataId' => 'Q985263', + ], + [ + 'id' => 114340, + 'name' => 'Coarsegold', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '26217000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '70098000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:05', + 'updated_at' => '2019-10-06 08:02:05', + 'flag' => true, + 'wikiDataId' => 'Q3459084', + ], + [ + 'id' => 114343, + 'name' => 'Cobb', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '82213000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '72305000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:05', + 'updated_at' => '2019-10-06 08:02:05', + 'flag' => true, + 'wikiDataId' => 'Q682616', + ], + [ + 'id' => 114408, + 'name' => 'Colfax', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '10073000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '95328000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:06', + 'updated_at' => '2019-10-06 08:02:06', + 'flag' => true, + 'wikiDataId' => 'Q2190495', + ], + [ + 'id' => 114425, + 'name' => 'Collierville', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '21464000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '26884000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:06', + 'updated_at' => '2019-10-06 08:02:06', + 'flag' => true, + 'wikiDataId' => 'Q3662315', + ], + [ + 'id' => 114440, + 'name' => 'Colma', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '67688000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '45969000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:06', + 'updated_at' => '2019-10-06 08:02:06', + 'flag' => true, + 'wikiDataId' => 'Q987296', + ], + [ + 'id' => 114463, + 'name' => 'Colton', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '07390000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '31365000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:06', + 'updated_at' => '2019-10-06 08:02:06', + 'flag' => true, + 'wikiDataId' => 'Q846606', + ], + [ + 'id' => 114474, + 'name' => 'Columbia', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '03631000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '40131000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:06', + 'updated_at' => '2019-10-06 08:02:06', + 'flag' => true, + 'wikiDataId' => 'Q1112365', + ], + [ + 'id' => 114504, + 'name' => 'Colusa', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '21433000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '00942000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:06', + 'updated_at' => '2019-10-06 08:02:06', + 'flag' => true, + 'wikiDataId' => 'Q2444930', + ], + [ + 'id' => 114505, + 'name' => 'Colusa County', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '17757000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '23703000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:06', + 'updated_at' => '2019-10-06 08:02:06', + 'flag' => true, + 'wikiDataId' => 'Q271609', + ], + [ + 'id' => 114525, + 'name' => 'Commerce', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '00057000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '15979000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:06', + 'updated_at' => '2019-10-06 08:02:06', + 'flag' => true, + 'wikiDataId' => 'Q917540', + ], + [ + 'id' => 114529, + 'name' => 'Compton', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '89585000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '22007000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:06', + 'updated_at' => '2019-10-06 08:02:06', + 'flag' => true, + 'wikiDataId' => 'Q487119', + ], + [ + 'id' => 114543, + 'name' => 'Concord', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '97798000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '03107000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:07', + 'updated_at' => '2019-10-06 08:02:07', + 'flag' => true, + 'wikiDataId' => 'Q490441', + ], + [ + 'id' => 114575, + 'name' => 'Contra Costa Centre', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '92752000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '05786000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:07', + 'updated_at' => '2019-10-06 08:02:07', + 'flag' => true, + 'wikiDataId' => 'Q5165600', + ], + [ + 'id' => 114576, + 'name' => 'Contra Costa County', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '92342000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '95121000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:07', + 'updated_at' => '2019-10-06 08:02:07', + 'flag' => true, + 'wikiDataId' => 'Q108058', + ], + [ + 'id' => 114596, + 'name' => 'Cool', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '88722000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '01472000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:07', + 'updated_at' => '2019-10-06 08:02:07', + 'flag' => true, + 'wikiDataId' => 'Q5167224', + ], + [ + 'id' => 114622, + 'name' => 'Copperopolis', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '98104000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '64187000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:07', + 'updated_at' => '2019-10-06 08:02:07', + 'flag' => true, + 'wikiDataId' => 'Q2116258', + ], + [ + 'id' => 114633, + 'name' => 'Corcoran', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '09801000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '56040000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:07', + 'updated_at' => '2019-10-06 08:02:07', + 'flag' => true, + 'wikiDataId' => 'Q913487', + ], + [ + 'id' => 114654, + 'name' => 'Corning', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '92766000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '17916000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:08', + 'updated_at' => '2019-10-06 08:02:08', + 'flag' => true, + 'wikiDataId' => 'Q2997606', + ], + [ + 'id' => 114662, + 'name' => 'Corona', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '87529000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '56644000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:08', + 'updated_at' => '2019-10-06 08:02:08', + 'flag' => true, + 'wikiDataId' => 'Q494707', + ], + [ + 'id' => 114664, + 'name' => 'Coronado', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '32'; + $this->fractionalPart = '68589000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '18309000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:08', + 'updated_at' => '2019-10-06 08:02:08', + 'flag' => true, + 'wikiDataId' => 'Q828753', + ], + [ + 'id' => 114667, + 'name' => 'Corralitos', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '98856000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '80634000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:08', + 'updated_at' => '2019-10-06 08:02:08', + 'flag' => true, + 'wikiDataId' => 'Q2339321', + ], + [ + 'id' => 114672, + 'name' => 'Corte Madera', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '92548000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '52748000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:08', + 'updated_at' => '2019-10-06 08:02:08', + 'flag' => true, + 'wikiDataId' => 'Q985266', + ], + [ + 'id' => 114686, + 'name' => 'Costa Mesa', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '64113000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '91867000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:08', + 'updated_at' => '2019-10-06 08:02:08', + 'flag' => true, + 'wikiDataId' => 'Q499196', + ], + [ + 'id' => 114688, + 'name' => 'Cotati', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '32686000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '70721000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:08', + 'updated_at' => '2019-10-06 08:02:08', + 'flag' => true, + 'wikiDataId' => 'Q1650450', + ], + [ + 'id' => 114689, + 'name' => 'Coto De Caza', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '60419000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '58699000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:08', + 'updated_at' => '2019-10-06 08:02:08', + 'flag' => true, + 'wikiDataId' => 'Q2182879', + ], + [ + 'id' => 114702, + 'name' => 'Cottonwood', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '38571000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '28084000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:08', + 'updated_at' => '2019-10-06 08:02:08', + 'flag' => true, + 'wikiDataId' => 'Q2195685', + ], + [ + 'id' => 114715, + 'name' => 'Country Club', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '96881000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '34078000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:08', + 'updated_at' => '2019-10-06 08:02:08', + 'flag' => true, + 'wikiDataId' => 'Q1137215', + ], + [ + 'id' => 114731, + 'name' => 'Covelo', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '79327000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '123'; + $this->fractionalPart = '24922000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:08', + 'updated_at' => '2019-10-06 08:02:08', + 'flag' => true, + 'wikiDataId' => 'Q2196301', + ], + [ + 'id' => 114734, + 'name' => 'Covina', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '09001000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '89034000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:08', + 'updated_at' => '2019-10-06 08:02:08', + 'flag' => true, + 'wikiDataId' => 'Q838782', + ], + [ + 'id' => 114796, + 'name' => 'Crescent City', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '75595000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '124'; + $this->fractionalPart = '20175000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:09', + 'updated_at' => '2019-10-06 08:02:09', + 'flag' => true, + 'wikiDataId' => 'Q166866', + ], + [ + 'id' => 114802, + 'name' => 'Crest', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '32'; + $this->fractionalPart = '80727000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '116'; + $this->fractionalPart = '86808000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:09', + 'updated_at' => '2019-10-06 08:02:09', + 'flag' => true, + 'wikiDataId' => 'Q2117707', + ], + [ + 'id' => 114805, + 'name' => 'Crestline', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '24195000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '28560000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:09', + 'updated_at' => '2019-10-06 08:02:09', + 'flag' => true, + 'wikiDataId' => 'Q522914', + ], + [ + 'id' => 114830, + 'name' => 'Crockett', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '05242000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '21302000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:09', + 'updated_at' => '2019-10-06 08:02:09', + 'flag' => true, + 'wikiDataId' => 'Q2430009', + ], + [ + 'id' => 114890, + 'name' => 'Cudahy', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '96057000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '18535000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:09', + 'updated_at' => '2019-10-06 08:02:09', + 'flag' => true, + 'wikiDataId' => 'Q953506', + ], + [ + 'id' => 114904, + 'name' => 'Culver City', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '02112000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '39647000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:09', + 'updated_at' => '2019-10-06 08:02:09', + 'flag' => true, + 'wikiDataId' => 'Q493378', + ], + [ + 'id' => 114924, + 'name' => 'Cupertino', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '32300000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '03218000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:10', + 'updated_at' => '2019-10-06 08:02:10', + 'flag' => true, + 'wikiDataId' => 'Q189471', + ], + [ + 'id' => 114947, + 'name' => 'Cutler', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '52328000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '28678000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:10', + 'updated_at' => '2019-10-06 08:02:10', + 'flag' => true, + 'wikiDataId' => 'Q2055988', + ], + [ + 'id' => 114951, + 'name' => 'Cutten', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '76985000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '124'; + $this->fractionalPart = '14284000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:10', + 'updated_at' => '2019-10-06 08:02:10', + 'flag' => true, + 'wikiDataId' => 'Q2402910', + ], + [ + 'id' => 114954, + 'name' => 'Cypress', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '81696000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '03729000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:10', + 'updated_at' => '2019-10-06 08:02:10', + 'flag' => true, + 'wikiDataId' => 'Q685224', + ], + [ + 'id' => 115006, + 'name' => 'Daly City', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '70577000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '46192000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:10', + 'updated_at' => '2019-10-06 08:02:10', + 'flag' => true, + 'wikiDataId' => 'Q370925', + ], + [ + 'id' => 115012, + 'name' => 'Dana Point', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '46697000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '69811000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:10', + 'updated_at' => '2019-10-06 08:02:10', + 'flag' => true, + 'wikiDataId' => 'Q852638', + ], + [ + 'id' => 115038, + 'name' => 'Danville', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '82159000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '99996000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:10', + 'updated_at' => '2019-10-06 08:02:10', + 'flag' => true, + 'wikiDataId' => 'Q846586', + ], + [ + 'id' => 115073, + 'name' => 'Davis', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '54491000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '74052000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:11', + 'updated_at' => '2019-10-06 08:02:11', + 'flag' => true, + 'wikiDataId' => 'Q668546', + ], + [ + 'id' => 115090, + 'name' => 'Day Valley', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '03578000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '86246000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:11', + 'updated_at' => '2019-10-06 08:02:11', + 'flag' => true, + 'wikiDataId' => 'Q2933330', + ], + [ + 'id' => 115178, + 'name' => 'Deer Park', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '68185000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '82327000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:12', + 'updated_at' => '2019-10-06 08:02:12', + 'flag' => true, + 'wikiDataId' => 'Q5250793', + ], + [ + 'id' => 115186, + 'name' => 'Del Aire', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '91613000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '36952000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:12', + 'updated_at' => '2019-10-06 08:02:12', + 'flag' => true, + 'wikiDataId' => 'Q2546580', + ], + [ + 'id' => 115188, + 'name' => 'Del Mar', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '32'; + $this->fractionalPart = '95949000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '26531000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:12', + 'updated_at' => '2019-10-06 08:02:12', + 'flag' => true, + 'wikiDataId' => 'Q674469', + ], + [ + 'id' => 115189, + 'name' => 'Del Monte Forest', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '58635000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '94746000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:12', + 'updated_at' => '2019-10-06 08:02:12', + 'flag' => true, + 'wikiDataId' => 'Q1913695', + ], + [ + 'id' => 115191, + 'name' => 'Del Norte County', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '74496000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '123'; + $this->fractionalPart = '95781000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:12', + 'updated_at' => '2019-10-06 08:02:12', + 'flag' => true, + 'wikiDataId' => 'Q156186', + ], + [ + 'id' => 115192, + 'name' => 'Del Rey', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '65912000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '59374000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:12', + 'updated_at' => '2019-10-06 08:02:12', + 'flag' => true, + 'wikiDataId' => 'Q596836', + ], + [ + 'id' => 115193, + 'name' => 'Del Rey Oaks', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '59329000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '83495000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:12', + 'updated_at' => '2019-10-06 08:02:12', + 'flag' => true, + 'wikiDataId' => 'Q2258788', + ], + [ + 'id' => 115194, + 'name' => 'Del Rio', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '74354000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '01188000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:12', + 'updated_at' => '2019-10-06 08:02:12', + 'flag' => true, + 'wikiDataId' => 'Q2391559', + ], + [ + 'id' => 115199, + 'name' => 'Delano', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '35'; + $this->fractionalPart = '76884000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '24705000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:12', + 'updated_at' => '2019-10-06 08:02:12', + 'flag' => true, + 'wikiDataId' => 'Q775868', + ], + [ + 'id' => 115213, + 'name' => 'Delhi', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '43216000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '77854000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:12', + 'updated_at' => '2019-10-06 08:02:12', + 'flag' => true, + 'wikiDataId' => 'Q2205368', + ], + [ + 'id' => 115234, + 'name' => 'Denair', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '52632000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '79687000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:12', + 'updated_at' => '2019-10-06 08:02:12', + 'flag' => true, + 'wikiDataId' => 'Q2751490', + ], + [ + 'id' => 115276, + 'name' => 'Descanso', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '32'; + $this->fractionalPart = '85283000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '116'; + $this->fractionalPart = '61585000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:13', + 'updated_at' => '2019-10-06 08:02:13', + 'flag' => true, + 'wikiDataId' => 'Q3458226', + ], + [ + 'id' => 115280, + 'name' => 'Desert Edge', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '92417000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '116'; + $this->fractionalPart = '44139000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:13', + 'updated_at' => '2019-10-06 08:02:13', + 'flag' => true, + 'wikiDataId' => 'Q5263920', + ], + [ + 'id' => 115282, + 'name' => 'Desert Hot Springs', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '96173000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '116'; + $this->fractionalPart = '50353000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:13', + 'updated_at' => '2019-10-06 08:02:13', + 'flag' => true, + 'wikiDataId' => 'Q573096', + ], + [ + 'id' => 115283, + 'name' => 'Desert Shores', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '40420000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '116'; + $this->fractionalPart = '03972000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:13', + 'updated_at' => '2019-10-06 08:02:13', + 'flag' => true, + 'wikiDataId' => 'Q2533288', + ], + [ + 'id' => 115284, + 'name' => 'Desert View Highlands', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '59082000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '15257000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:13', + 'updated_at' => '2019-10-06 08:02:13', + 'flag' => true, + 'wikiDataId' => 'Q2463913', + ], + [ + 'id' => 115312, + 'name' => 'Diablo', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '83493000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '95801000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:13', + 'updated_at' => '2019-10-06 08:02:13', + 'flag' => true, + 'wikiDataId' => 'Q2622618', + ], + [ + 'id' => 115314, + 'name' => 'Diamond Bar', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '02862000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '81034000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:13', + 'updated_at' => '2019-10-06 08:02:13', + 'flag' => true, + 'wikiDataId' => 'Q768449', + ], + [ + 'id' => 115316, + 'name' => 'Diamond Springs', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '69463000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '81494000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:13', + 'updated_at' => '2019-10-06 08:02:13', + 'flag' => true, + 'wikiDataId' => 'Q2257197', + ], + [ + 'id' => 115351, + 'name' => 'Dinuba', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '54328000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '38707000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:14', + 'updated_at' => '2019-10-06 08:02:14', + 'flag' => true, + 'wikiDataId' => 'Q986906', + ], + [ + 'id' => 115353, + 'name' => 'Discovery Bay', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '90854000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '60023000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:14', + 'updated_at' => '2019-10-06 08:02:14', + 'flag' => true, + 'wikiDataId' => 'Q2053386', + ], + [ + 'id' => 115367, + 'name' => 'Dixon', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '44546000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '82330000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:14', + 'updated_at' => '2019-10-06 08:02:14', + 'flag' => true, + 'wikiDataId' => 'Q986903', + ], + [ + 'id' => 115369, + 'name' => 'Dixon Lane-Meadow Creek', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '38639000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '41527000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:14', + 'updated_at' => '2019-10-06 08:02:14', + 'flag' => true, + 'wikiDataId' => 'Q2529935', + ], + [ + 'id' => 115385, + 'name' => 'Dogtown', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '21381000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '08855000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:15', + 'updated_at' => '2019-10-06 08:02:15', + 'flag' => true, + 'wikiDataId' => 'Q982146', + ], + [ + 'id' => 115390, + 'name' => 'Dollar Point', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '18796000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '09991000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:15', + 'updated_at' => '2019-10-06 08:02:15', + 'flag' => true, + 'wikiDataId' => 'Q3301222', + ], + [ + 'id' => 115414, + 'name' => 'Dos Palos', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '98606000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '62657000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:15', + 'updated_at' => '2019-10-06 08:02:15', + 'flag' => true, + 'wikiDataId' => 'Q986878', + ], + [ + 'id' => 115460, + 'name' => 'Downey', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '94001000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '13257000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:16', + 'updated_at' => '2019-10-06 08:02:16', + 'flag' => true, + 'wikiDataId' => 'Q488946', + ], + [ + 'id' => 115461, + 'name' => 'Downieville', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '55934000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '82689000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:16', + 'updated_at' => '2019-10-06 08:02:16', + 'flag' => true, + 'wikiDataId' => 'Q2261383', + ], + [ + 'id' => 115490, + 'name' => 'Duarte', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '13945000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '97729000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:16', + 'updated_at' => '2019-10-06 08:02:16', + 'flag' => true, + 'wikiDataId' => 'Q927189', + ], + [ + 'id' => 115496, + 'name' => 'Dublin', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '70215000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '93579000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:16', + 'updated_at' => '2019-10-06 08:02:16', + 'flag' => true, + 'wikiDataId' => 'Q837109', + ], + [ + 'id' => 115551, + 'name' => 'Dunnigan', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '88518000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '96969000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:17', + 'updated_at' => '2019-10-06 08:02:17', + 'flag' => true, + 'wikiDataId' => 'Q1006507', + ], + [ + 'id' => 115553, + 'name' => 'Dunsmuir', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '20821000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '27195000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:17', + 'updated_at' => '2019-10-06 08:02:17', + 'flag' => true, + 'wikiDataId' => 'Q611982', + ], + [ + 'id' => 115573, + 'name' => 'Durham', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '64627000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '79998000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:17', + 'updated_at' => '2019-10-06 08:02:17', + 'flag' => true, + 'wikiDataId' => 'Q599922', + ], + [ + 'id' => 115618, + 'name' => 'Earlimart', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '35'; + $this->fractionalPart = '88412000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '27233000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:18', + 'updated_at' => '2019-10-06 08:02:18', + 'flag' => true, + 'wikiDataId' => 'Q2235532', + ], + [ + 'id' => 115663, + 'name' => 'East Foothills', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '38105000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '81745000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:18', + 'updated_at' => '2019-10-06 08:02:18', + 'flag' => true, + 'wikiDataId' => 'Q1277862', + ], + [ + 'id' => 115689, + 'name' => 'East Hemet', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '74002000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '116'; + $this->fractionalPart = '93891000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:38', + 'updated_at' => '2019-10-06 08:02:38', + 'flag' => true, + 'wikiDataId' => 'Q976954', + ], + [ + 'id' => 115699, + 'name' => 'East La Mirada', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '92446000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '98895000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:38', + 'updated_at' => '2019-10-06 08:02:38', + 'flag' => true, + 'wikiDataId' => 'Q1277933', + ], + [ + 'id' => 115706, + 'name' => 'East Los Angeles', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '02390000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '17202000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:38', + 'updated_at' => '2019-10-06 08:02:38', + 'flag' => true, + 'wikiDataId' => 'Q690991', + ], + [ + 'id' => 115725, + 'name' => 'East Oakdale', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '78798000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '80382000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:38', + 'updated_at' => '2019-10-06 08:02:38', + 'flag' => true, + 'wikiDataId' => 'Q2781014', + ], + [ + 'id' => 115728, + 'name' => 'East Palo Alto', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '46883000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '14108000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:38', + 'updated_at' => '2019-10-06 08:02:38', + 'flag' => true, + 'wikiDataId' => 'Q988697', + ], + [ + 'id' => 115729, + 'name' => 'East Pasadena', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '13814000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '07384000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:38', + 'updated_at' => '2019-10-06 08:02:38', + 'flag' => true, + 'wikiDataId' => 'Q1973893', + ], + [ + 'id' => 115739, + 'name' => 'East Porterville', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '05745000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '97566000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:38', + 'updated_at' => '2019-10-06 08:02:38', + 'flag' => true, + 'wikiDataId' => 'Q2676537', + ], + [ + 'id' => 115742, + 'name' => 'East Quincy', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '93406000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '89801000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:38', + 'updated_at' => '2019-10-06 08:02:38', + 'flag' => true, + 'wikiDataId' => 'Q2103573', + ], + [ + 'id' => 115744, + 'name' => 'East Rancho Dominguez', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '89807000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '19535000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:38', + 'updated_at' => '2019-10-06 08:02:38', + 'flag' => true, + 'wikiDataId' => 'Q1277813', + ], + [ + 'id' => 115746, + 'name' => 'East Richmond Heights', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '94492000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '31358000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:38', + 'updated_at' => '2019-10-06 08:02:38', + 'flag' => true, + 'wikiDataId' => 'Q2317126', + ], + [ + 'id' => 115755, + 'name' => 'East San Gabriel', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '09168000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '09118000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:38', + 'updated_at' => '2019-10-06 08:02:38', + 'flag' => true, + 'wikiDataId' => 'Q1252788', + ], + [ + 'id' => 115759, + 'name' => 'East Sonora', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '97770000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '36130000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:38', + 'updated_at' => '2019-10-06 08:02:38', + 'flag' => true, + 'wikiDataId' => 'Q1955566', + ], + [ + 'id' => 115791, + 'name' => 'Easton', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '65023000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '79070000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:39', + 'updated_at' => '2019-10-06 08:02:39', + 'flag' => true, + 'wikiDataId' => 'Q3389296', + ], + [ + 'id' => 115797, + 'name' => 'Eastvale', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '96358000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '56418000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:39', + 'updated_at' => '2019-10-06 08:02:39', + 'flag' => true, + 'wikiDataId' => 'Q3046621', + ], + [ + 'id' => 115814, + 'name' => 'Echo Park', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '07808000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '26066000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:39', + 'updated_at' => '2019-10-06 08:02:39', + 'flag' => true, + 'wikiDataId' => 'Q1085753', + ], + [ + 'id' => 115888, + 'name' => 'Edwards Air Force Base', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '91637000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '93535000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:39', + 'updated_at' => '2019-10-06 08:02:39', + 'flag' => true, + 'wikiDataId' => 'Q534396', + ], + [ + 'id' => 115911, + 'name' => 'El Cajon', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '32'; + $this->fractionalPart = '79477000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '116'; + $this->fractionalPart = '96253000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:39', + 'updated_at' => '2019-10-06 08:02:39', + 'flag' => true, + 'wikiDataId' => 'Q369947', + ], + [ + 'id' => 115914, + 'name' => 'El Centro', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '32'; + $this->fractionalPart = '79200000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '115'; + $this->fractionalPart = '56305000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:39', + 'updated_at' => '2019-10-06 08:02:39', + 'flag' => true, + 'wikiDataId' => 'Q495369', + ], + [ + 'id' => 115915, + 'name' => 'El Cerrito', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '91576000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '31164000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:39', + 'updated_at' => '2019-10-06 08:02:39', + 'flag' => true, + 'wikiDataId' => 'Q996569', + ], + [ + 'id' => 115916, + 'name' => 'El Cerrito Corona', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '84057000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '52283000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:39', + 'updated_at' => '2019-10-06 08:02:39', + 'flag' => true, + 'wikiDataId' => 'Q3458276', + ], + [ + 'id' => 115921, + 'name' => 'El Dorado County', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '77874000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '52465000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:39', + 'updated_at' => '2019-10-06 08:02:39', + 'flag' => true, + 'wikiDataId' => 'Q108093', + ], + [ + 'id' => 115922, + 'name' => 'El Dorado Hills', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '68574000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '08217000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:39', + 'updated_at' => '2019-10-06 08:02:39', + 'flag' => true, + 'wikiDataId' => 'Q2218053', + ], + [ + 'id' => 115924, + 'name' => 'El Granada', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '50272000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '46942000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:39', + 'updated_at' => '2019-10-06 08:02:39', + 'flag' => true, + 'wikiDataId' => 'Q1324217', + ], + [ + 'id' => 115928, + 'name' => 'El Monte', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '06862000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '02757000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:40', + 'updated_at' => '2019-10-06 08:02:40', + 'flag' => true, + 'wikiDataId' => 'Q595550', + ], + [ + 'id' => 115936, + 'name' => 'El Rio', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '23578000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '16383000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:40', + 'updated_at' => '2019-10-06 08:02:40', + 'flag' => true, + 'wikiDataId' => 'Q2796218', + ], + [ + 'id' => 115937, + 'name' => 'El Segundo', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '91918000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '41647000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:40', + 'updated_at' => '2019-10-06 08:02:40', + 'flag' => true, + 'wikiDataId' => 'Q983859', + ], + [ + 'id' => 115938, + 'name' => 'El Sobrante', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '97715000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '29525000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:40', + 'updated_at' => '2019-10-06 08:02:40', + 'flag' => true, + 'wikiDataId' => 'Q1024085', + ], + [ + 'id' => 115940, + 'name' => 'El Verano', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '29769000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '49165000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:40', + 'updated_at' => '2019-10-06 08:02:40', + 'flag' => true, + 'wikiDataId' => 'Q1847895', + ], + [ + 'id' => 115957, + 'name' => 'Eldridge', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '34880000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '51081000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:40', + 'updated_at' => '2019-10-06 08:02:40', + 'flag' => true, + 'wikiDataId' => 'Q1943479', + ], + [ + 'id' => 115987, + 'name' => 'Elk Grove', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '40880000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '37162000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:40', + 'updated_at' => '2019-10-06 08:02:40', + 'flag' => true, + 'wikiDataId' => 'Q671314', + ], + [ + 'id' => 116003, + 'name' => 'Elkhorn', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '82440000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '74050000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:40', + 'updated_at' => '2019-10-06 08:02:40', + 'flag' => true, + 'wikiDataId' => 'Q2655751', + ], + [ + 'id' => 116075, + 'name' => 'Elverta', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '71379000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '46273000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:40', + 'updated_at' => '2019-10-06 08:02:40', + 'flag' => true, + 'wikiDataId' => 'Q3244057', + ], + [ + 'id' => 116090, + 'name' => 'Emerald Lake Hills', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '46466000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '26802000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:41', + 'updated_at' => '2019-10-06 08:02:41', + 'flag' => true, + 'wikiDataId' => 'Q2042944', + ], + [ + 'id' => 116097, + 'name' => 'Emeryville', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '83132000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '28525000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:41', + 'updated_at' => '2019-10-06 08:02:41', + 'flag' => true, + 'wikiDataId' => 'Q499178', + ], + [ + 'id' => 116110, + 'name' => 'Empire', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '63826000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '90215000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:41', + 'updated_at' => '2019-10-06 08:02:41', + 'flag' => true, + 'wikiDataId' => 'Q2471770', + ], + [ + 'id' => 116118, + 'name' => 'Encinitas', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '03699000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '29198000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:41', + 'updated_at' => '2019-10-06 08:02:41', + 'flag' => true, + 'wikiDataId' => 'Q532711', + ], + [ + 'id' => 116119, + 'name' => 'Encino', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '15917000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '50119000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:41', + 'updated_at' => '2019-10-06 08:02:41', + 'flag' => true, + 'wikiDataId' => 'Q1190590', + ], + [ + 'id' => 116178, + 'name' => 'Escalon', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '79781000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '99792000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:41', + 'updated_at' => '2019-10-06 08:02:41', + 'flag' => true, + 'wikiDataId' => 'Q3057873', + ], + [ + 'id' => 116184, + 'name' => 'Escondido', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '11921000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '08642000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:41', + 'updated_at' => '2019-10-06 08:02:41', + 'flag' => true, + 'wikiDataId' => 'Q372454', + ], + [ + 'id' => 116187, + 'name' => 'Esparto', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '69213000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '01719000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:41', + 'updated_at' => '2019-10-06 08:02:41', + 'flag' => true, + 'wikiDataId' => 'Q1368039', + ], + [ + 'id' => 116221, + 'name' => 'Eucalyptus Hills', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '32'; + $this->fractionalPart = '87977000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '116'; + $this->fractionalPart = '94669000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:41', + 'updated_at' => '2019-10-06 08:02:41', + 'flag' => true, + 'wikiDataId' => 'Q5850225', + ], + [ + 'id' => 116235, + 'name' => 'Eureka', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '80207000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '124'; + $this->fractionalPart = '16367000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:41', + 'updated_at' => '2019-10-06 08:02:41', + 'flag' => true, + 'wikiDataId' => 'Q488702', + ], + [ + 'id' => 116274, + 'name' => 'Exeter', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '29606000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '14205000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:42', + 'updated_at' => '2019-10-06 08:02:42', + 'flag' => true, + 'wikiDataId' => 'Q986815', + ], + [ + 'id' => 116286, + 'name' => 'Fair Oaks', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '64463000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '27217000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:42', + 'updated_at' => '2019-10-06 08:02:42', + 'flag' => true, + 'wikiDataId' => 'Q1393019', + ], + [ + 'id' => 116292, + 'name' => 'Fairbanks Ranch', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '32'; + $this->fractionalPart = '99393000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '18726000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:42', + 'updated_at' => '2019-10-06 08:02:42', + 'flag' => true, + 'wikiDataId' => 'Q2207235', + ], + [ + 'id' => 116306, + 'name' => 'Fairfax', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '98715000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '58887000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:42', + 'updated_at' => '2019-10-06 08:02:42', + 'flag' => true, + 'wikiDataId' => 'Q2108879', + ], + [ + 'id' => 116316, + 'name' => 'Fairfield', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '24936000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '03997000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:42', + 'updated_at' => '2019-10-06 08:02:42', + 'flag' => true, + 'wikiDataId' => 'Q323432', + ], + [ + 'id' => 116333, + 'name' => 'Fairmead', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '07633000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '19295000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:42', + 'updated_at' => '2019-10-06 08:02:42', + 'flag' => true, + 'wikiDataId' => 'Q5430572', + ], + [ + 'id' => 116355, + 'name' => 'Fairview', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '67854000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '04580000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:42', + 'updated_at' => '2019-10-06 08:02:42', + 'flag' => true, + 'wikiDataId' => 'Q1393430', + ], + [ + 'id' => 116376, + 'name' => 'Fallbrook', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '37642000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '25115000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:42', + 'updated_at' => '2019-10-06 08:02:42', + 'flag' => true, + 'wikiDataId' => 'Q1279784', + ], + [ + 'id' => 116407, + 'name' => 'Farmersville', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '29773000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '20678000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:43', + 'updated_at' => '2019-10-06 08:02:43', + 'flag' => true, + 'wikiDataId' => 'Q986808', + ], + [ + 'id' => 116471, + 'name' => 'Felton', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '05134000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '07330000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:43', + 'updated_at' => '2019-10-06 08:02:43', + 'flag' => true, + 'wikiDataId' => 'Q2495480', + ], + [ + 'id' => 116489, + 'name' => 'Ferndale', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '57624000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '124'; + $this->fractionalPart = '26394000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:43', + 'updated_at' => '2019-10-06 08:02:43', + 'flag' => true, + 'wikiDataId' => 'Q3069604', + ], + [ + 'id' => 116503, + 'name' => 'Fetters Hot Springs-Agua Caliente', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '32140000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '48682000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:43', + 'updated_at' => '2019-10-06 08:02:43', + 'flag' => true, + 'wikiDataId' => 'Q1816945', + ], + [ + 'id' => 116508, + 'name' => 'Fillmore', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '39916000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '91815000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:43', + 'updated_at' => '2019-10-06 08:02:43', + 'flag' => true, + 'wikiDataId' => 'Q985346', + ], + [ + 'id' => 116520, + 'name' => 'Firebaugh', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '85884000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '45601000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:43', + 'updated_at' => '2019-10-06 08:02:43', + 'flag' => true, + 'wikiDataId' => 'Q1705364', + ], + [ + 'id' => 116589, + 'name' => 'Florence-Graham', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '96772000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '24438000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:44', + 'updated_at' => '2019-10-06 08:02:44', + 'flag' => true, + 'wikiDataId' => 'Q601787', + ], + [ + 'id' => 116595, + 'name' => 'Florin', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '49602000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '40884000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:44', + 'updated_at' => '2019-10-06 08:02:44', + 'flag' => true, + 'wikiDataId' => 'Q3460991', + ], + [ + 'id' => 116626, + 'name' => 'Folsom', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '67796000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '17606000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:44', + 'updated_at' => '2019-10-06 08:02:44', + 'flag' => true, + 'wikiDataId' => 'Q984155', + ], + [ + 'id' => 116631, + 'name' => 'Fontana', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '09223000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '43505000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:44', + 'updated_at' => '2019-10-06 08:02:44', + 'flag' => true, + 'wikiDataId' => 'Q491128', + ], + [ + 'id' => 116632, + 'name' => 'Foothill Farms', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '67877000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '35114000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:44', + 'updated_at' => '2019-10-06 08:02:44', + 'flag' => true, + 'wikiDataId' => 'Q1436505', + ], + [ + 'id' => 116633, + 'name' => 'Foothill Ranch', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '68641000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '66088000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:44', + 'updated_at' => '2019-10-06 08:02:44', + 'flag' => true, + 'wikiDataId' => 'Q3241032', + ], + [ + 'id' => 116635, + 'name' => 'Ford City', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '35'; + $this->fractionalPart = '15441000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '45623000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:44', + 'updated_at' => '2019-10-06 08:02:44', + 'flag' => true, + 'wikiDataId' => 'Q3295940', + ], + [ + 'id' => 116662, + 'name' => 'Forest Meadows', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '16851000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '40659000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:44', + 'updated_at' => '2019-10-06 08:02:44', + 'flag' => true, + 'wikiDataId' => 'Q1931743', + ], + [ + 'id' => 116667, + 'name' => 'Forest Ranch', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '88211000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '67275000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:44', + 'updated_at' => '2019-10-06 08:02:44', + 'flag' => true, + 'wikiDataId' => 'Q3458766', + ], + [ + 'id' => 116671, + 'name' => 'Foresthill', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '02018000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '81799000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:44', + 'updated_at' => '2019-10-06 08:02:44', + 'flag' => true, + 'wikiDataId' => 'Q3301540', + ], + [ + 'id' => 116673, + 'name' => 'Forestville', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '47352000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '89027000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:44', + 'updated_at' => '2019-10-06 08:02:44', + 'flag' => true, + 'wikiDataId' => 'Q1437250', + ], + [ + 'id' => 116695, + 'name' => 'Fort Bragg', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '44572000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '123'; + $this->fractionalPart = '80529000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:45', + 'updated_at' => '2019-10-06 08:02:45', + 'flag' => true, + 'wikiDataId' => 'Q579180', + ], + [ + 'id' => 116719, + 'name' => 'Fort Irwin', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '35'; + $this->fractionalPart = '26275000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '116'; + $this->fractionalPart = '68475000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:45', + 'updated_at' => '2019-10-06 08:02:45', + 'flag' => true, + 'wikiDataId' => 'Q186160', + ], + [ + 'id' => 116767, + 'name' => 'Fortuna', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '59819000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '124'; + $this->fractionalPart = '15728000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:45', + 'updated_at' => '2019-10-06 08:02:45', + 'flag' => true, + 'wikiDataId' => 'Q509604', + ], + [ + 'id' => 116776, + 'name' => 'Foster City', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '55855000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '27108000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:45', + 'updated_at' => '2019-10-06 08:02:45', + 'flag' => true, + 'wikiDataId' => 'Q988691', + ], + [ + 'id' => 116784, + 'name' => 'Fountain Valley', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '70918000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '95367000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:45', + 'updated_at' => '2019-10-06 08:02:45', + 'flag' => true, + 'wikiDataId' => 'Q838769', + ], + [ + 'id' => 116797, + 'name' => 'Fowler', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '63051000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '67847000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:45', + 'updated_at' => '2019-10-06 08:02:45', + 'flag' => true, + 'wikiDataId' => 'Q1705361', + ], + [ + 'id' => 116883, + 'name' => 'Frazier Park', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '82276000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '94482000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:46', + 'updated_at' => '2019-10-06 08:02:46', + 'flag' => true, + 'wikiDataId' => 'Q937672', + ], + [ + 'id' => 116903, + 'name' => 'Freedom', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '93523000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '77301000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:46', + 'updated_at' => '2019-10-06 08:02:46', + 'flag' => true, + 'wikiDataId' => 'Q2033190', + ], + [ + 'id' => 116924, + 'name' => 'Fremont', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '54827000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '98857000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:46', + 'updated_at' => '2019-10-06 08:02:46', + 'flag' => true, + 'wikiDataId' => 'Q49220', + ], + [ + 'id' => 116929, + 'name' => 'French Camp', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '88409000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '27106000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:46', + 'updated_at' => '2019-10-06 08:02:46', + 'flag' => true, + 'wikiDataId' => 'Q600331', + ], + [ + 'id' => 116939, + 'name' => 'Fresno', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '74773000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '77237000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:46', + 'updated_at' => '2019-10-06 08:02:46', + 'flag' => true, + 'wikiDataId' => 'Q43301', + ], + [ + 'id' => 116940, + 'name' => 'Fresno County', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '75818000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '64932000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:46', + 'updated_at' => '2019-10-06 08:02:46', + 'flag' => true, + 'wikiDataId' => 'Q271915', + ], + [ + 'id' => 116975, + 'name' => 'Fruitridge Pocket', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '53265000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '45581000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:46', + 'updated_at' => '2019-10-06 08:02:46', + 'flag' => true, + 'wikiDataId' => 'Q5506466', + ], + [ + 'id' => 116983, + 'name' => 'Fullerton', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '87029000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '92534000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:46', + 'updated_at' => '2019-10-06 08:02:46', + 'flag' => true, + 'wikiDataId' => 'Q494723', + ], + [ + 'id' => 117040, + 'name' => 'Galt', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '25464000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '29995000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:47', + 'updated_at' => '2019-10-06 08:02:47', + 'flag' => true, + 'wikiDataId' => 'Q985262', + ], + [ + 'id' => 117053, + 'name' => 'Garden Acres', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '96381000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '22939000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:47', + 'updated_at' => '2019-10-06 08:02:47', + 'flag' => true, + 'wikiDataId' => 'Q1494075', + ], + [ + 'id' => 117065, + 'name' => 'Garden Grove', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '77391000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '94145000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:47', + 'updated_at' => '2019-10-06 08:02:47', + 'flag' => true, + 'wikiDataId' => 'Q50054', + ], + [ + 'id' => 117069, + 'name' => 'Gardena', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '88835000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '30896000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:47', + 'updated_at' => '2019-10-06 08:02:47', + 'flag' => true, + 'wikiDataId' => 'Q846409', + ], + [ + 'id' => 117094, + 'name' => 'Garnet', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '90196000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '116'; + $this->fractionalPart = '54557000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:47', + 'updated_at' => '2019-10-06 08:02:47', + 'flag' => true, + 'wikiDataId' => 'Q959321', + ], + [ + 'id' => 117165, + 'name' => 'Georgetown', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '90684000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '83855000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:48', + 'updated_at' => '2019-10-06 08:02:48', + 'flag' => true, + 'wikiDataId' => 'Q2695764', + ], + [ + 'id' => 117169, + 'name' => 'Gerber', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '05627000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '15027000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:48', + 'updated_at' => '2019-10-06 08:02:48', + 'flag' => true, + 'wikiDataId' => 'Q5550380', + ], + [ + 'id' => 117225, + 'name' => 'Gilroy', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '00578000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '56828000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:48', + 'updated_at' => '2019-10-06 08:02:48', + 'flag' => true, + 'wikiDataId' => 'Q837097', + ], + [ + 'id' => 117261, + 'name' => 'Glen Avon', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '01168000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '48477000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:49', + 'updated_at' => '2019-10-06 08:02:49', + 'flag' => true, + 'wikiDataId' => 'Q385395', + ], + [ + 'id' => 117286, + 'name' => 'Glendale', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '14251000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '25508000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:49', + 'updated_at' => '2019-10-06 08:02:49', + 'flag' => true, + 'wikiDataId' => 'Q485716', + ], + [ + 'id' => 117291, + 'name' => 'Glendora', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '13612000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '86534000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:49', + 'updated_at' => '2019-10-06 08:02:49', + 'flag' => true, + 'wikiDataId' => 'Q851041', + ], + [ + 'id' => 117296, + 'name' => 'Glenn County', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '59840000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '39221000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:49', + 'updated_at' => '2019-10-06 08:02:49', + 'flag' => true, + 'wikiDataId' => 'Q271601', + ], + [ + 'id' => 117345, + 'name' => 'Gold River', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '62629000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '24662000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:49', + 'updated_at' => '2019-10-06 08:02:49', + 'flag' => true, + 'wikiDataId' => 'Q629530', + ], + [ + 'id' => 117351, + 'name' => 'Golden Hills', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '35'; + $this->fractionalPart = '14247000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '49036000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:49', + 'updated_at' => '2019-10-06 08:02:49', + 'flag' => true, + 'wikiDataId' => 'Q948463', + ], + [ + 'id' => 117367, + 'name' => 'Goleta', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '43583000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '82764000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:49', + 'updated_at' => '2019-10-06 08:02:49', + 'flag' => true, + 'wikiDataId' => 'Q983840', + ], + [ + 'id' => 117372, + 'name' => 'Gonzales', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '50663000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '44438000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:49', + 'updated_at' => '2019-10-06 08:02:49', + 'flag' => true, + 'wikiDataId' => 'Q862689', + ], + [ + 'id' => 117378, + 'name' => 'Good Hope', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '76474000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '26698000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:49', + 'updated_at' => '2019-10-06 08:02:49', + 'flag' => true, + 'wikiDataId' => 'Q5554378', + ], + [ + 'id' => 117410, + 'name' => 'Goshen', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '35106000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '42012000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:50', + 'updated_at' => '2019-10-06 08:02:50', + 'flag' => true, + 'wikiDataId' => 'Q2136629', + ], + [ + 'id' => 117476, + 'name' => 'Grand Terrace', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '03390000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '31365000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:50', + 'updated_at' => '2019-10-06 08:02:50', + 'flag' => true, + 'wikiDataId' => 'Q853677', + ], + [ + 'id' => 117493, + 'name' => 'Granite Bay', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '76323000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '16384000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:50', + 'updated_at' => '2019-10-06 08:02:50', + 'flag' => true, + 'wikiDataId' => 'Q2327725', + ], + [ + 'id' => 117499, + 'name' => 'Granite Hills', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '32'; + $this->fractionalPart = '80311000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '116'; + $this->fractionalPart = '90475000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:50', + 'updated_at' => '2019-10-06 08:02:50', + 'flag' => true, + 'wikiDataId' => 'Q2280605', + ], + [ + 'id' => 117543, + 'name' => 'Grass Valley', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '21906000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '06106000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:51', + 'updated_at' => '2019-10-06 08:02:51', + 'flag' => true, + 'wikiDataId' => 'Q834337', + ], + [ + 'id' => 117545, + 'name' => 'Graton', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '43630000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '86972000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:51', + 'updated_at' => '2019-10-06 08:02:51', + 'flag' => true, + 'wikiDataId' => 'Q2542166', + ], + [ + 'id' => 117590, + 'name' => 'Green Acres', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '73808000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '07642000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:51', + 'updated_at' => '2019-10-06 08:02:51', + 'flag' => true, + 'wikiDataId' => 'Q5602264', + ], + [ + 'id' => 117611, + 'name' => 'Green Valley', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '25297000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '16219000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:51', + 'updated_at' => '2019-10-06 08:02:51', + 'flag' => true, + 'wikiDataId' => 'Q3295961', + ], + [ + 'id' => 117613, + 'name' => 'Greenacres', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '35'; + $this->fractionalPart = '38329000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '10983000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:51', + 'updated_at' => '2019-10-06 08:02:51', + 'flag' => true, + 'wikiDataId' => 'Q3498404', + ], + [ + 'id' => 117654, + 'name' => 'Greenfield', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '32080000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '24381000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:52', + 'updated_at' => '2019-10-06 08:02:52', + 'flag' => true, + 'wikiDataId' => 'Q983596', + ], + [ + 'id' => 117696, + 'name' => 'Greenville', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '13961000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '95107000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:52', + 'updated_at' => '2019-10-06 08:02:52', + 'flag' => true, + 'wikiDataId' => 'Q2700934', + ], + [ + 'id' => 117730, + 'name' => 'Gridley', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '36378000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '69358000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:52', + 'updated_at' => '2019-10-06 08:02:52', + 'flag' => true, + 'wikiDataId' => 'Q2709827', + ], + [ + 'id' => 117760, + 'name' => 'Grover Beach', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '35'; + $this->fractionalPart = '12164000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '62128000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:52', + 'updated_at' => '2019-10-06 08:02:52', + 'flag' => true, + 'wikiDataId' => 'Q986934', + ], + [ + 'id' => 117777, + 'name' => 'Guadalupe', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '97164000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '57184000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:53', + 'updated_at' => '2019-10-06 08:02:53', + 'flag' => true, + 'wikiDataId' => 'Q24335', + ], + [ + 'id' => 117780, + 'name' => 'Guerneville', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '50186000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '99611000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:53', + 'updated_at' => '2019-10-06 08:02:53', + 'flag' => true, + 'wikiDataId' => 'Q2542807', + ], + [ + 'id' => 117810, + 'name' => 'Gustine', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '25772000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '99882000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:53', + 'updated_at' => '2019-10-06 08:02:53', + 'flag' => true, + 'wikiDataId' => 'Q2295402', + ], + [ + 'id' => 117825, + 'name' => 'Hacienda Heights', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '99307000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '96868000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:53', + 'updated_at' => '2019-10-06 08:02:53', + 'flag' => true, + 'wikiDataId' => 'Q577450', + ], + [ + 'id' => 117856, + 'name' => 'Half Moon Bay', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '46355000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '42859000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:53', + 'updated_at' => '2019-10-06 08:02:53', + 'flag' => true, + 'wikiDataId' => 'Q983652', + ], + [ + 'id' => 117895, + 'name' => 'Hamilton City', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '74266000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '01359000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:53', + 'updated_at' => '2019-10-06 08:02:53', + 'flag' => true, + 'wikiDataId' => 'Q1573469', + ], + [ + 'id' => 117960, + 'name' => 'Hanford', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '32745000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '64568000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:55', + 'updated_at' => '2019-10-06 08:02:55', + 'flag' => true, + 'wikiDataId' => 'Q375185', + ], + [ + 'id' => 117982, + 'name' => 'Happy Camp', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '79275000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '123'; + $this->fractionalPart = '38080000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:55', + 'updated_at' => '2019-10-06 08:02:55', + 'flag' => true, + 'wikiDataId' => 'Q3458622', + ], + [ + 'id' => 117986, + 'name' => 'Harbison Canyon', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '32'; + $this->fractionalPart = '82033000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '116'; + $this->fractionalPart = '83002000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:55', + 'updated_at' => '2019-10-06 08:02:55', + 'flag' => true, + 'wikiDataId' => 'Q2041639', + ], + [ + 'id' => 118099, + 'name' => 'Hartley', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '41713000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '94691000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:56', + 'updated_at' => '2019-10-06 08:02:56', + 'flag' => true, + 'wikiDataId' => 'Q5674848', + ], + [ + 'id' => 118160, + 'name' => 'Hawaiian Gardens', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '83140000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '07284000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:56', + 'updated_at' => '2019-10-06 08:02:56', + 'flag' => true, + 'wikiDataId' => 'Q985355', + ], + [ + 'id' => 118175, + 'name' => 'Hawthorne', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '91640000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '35257000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:57', + 'updated_at' => '2019-10-06 08:02:57', + 'flag' => true, + 'wikiDataId' => 'Q688596', + ], + [ + 'id' => 118186, + 'name' => 'Hayfork', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '55431000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '123'; + $this->fractionalPart = '18308000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:57', + 'updated_at' => '2019-10-06 08:02:57', + 'flag' => true, + 'wikiDataId' => 'Q2041071', + ], + [ + 'id' => 118197, + 'name' => 'Hayward', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '66882000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '08080000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:57', + 'updated_at' => '2019-10-06 08:02:57', + 'flag' => true, + 'wikiDataId' => 'Q491114', + ], + [ + 'id' => 118217, + 'name' => 'Healdsburg', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '61047000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '86916000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:57', + 'updated_at' => '2019-10-06 08:02:57', + 'flag' => true, + 'wikiDataId' => 'Q852598', + ], + [ + 'id' => 118228, + 'name' => 'Heber', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '32'; + $this->fractionalPart = '73089000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '115'; + $this->fractionalPart = '52972000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:57', + 'updated_at' => '2019-10-06 08:02:57', + 'flag' => true, + 'wikiDataId' => 'Q2785753', + ], + [ + 'id' => 118264, + 'name' => 'Hemet', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '74761000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '116'; + $this->fractionalPart = '97307000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:57', + 'updated_at' => '2019-10-06 08:02:57', + 'flag' => true, + 'wikiDataId' => 'Q948188', + ], + [ + 'id' => 118311, + 'name' => 'Herald', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '29575000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '24439000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:58', + 'updated_at' => '2019-10-06 08:02:58', + 'flag' => true, + 'wikiDataId' => 'Q3458808', + ], + [ + 'id' => 118314, + 'name' => 'Hercules', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '01714000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '28858000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:58', + 'updated_at' => '2019-10-06 08:02:58', + 'flag' => true, + 'wikiDataId' => 'Q948140', + ], + [ + 'id' => 118331, + 'name' => 'Hermosa Beach', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '86224000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '39952000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:58', + 'updated_at' => '2019-10-06 08:02:58', + 'flag' => true, + 'wikiDataId' => 'Q828712', + ], + [ + 'id' => 118344, + 'name' => 'Hesperia', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '42639000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '30088000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:58', + 'updated_at' => '2019-10-06 08:02:58', + 'flag' => true, + 'wikiDataId' => 'Q773516', + ], + [ + 'id' => 118376, + 'name' => 'Hidden Hills', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '16028000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '65231000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:58', + 'updated_at' => '2019-10-06 08:02:58', + 'flag' => true, + 'wikiDataId' => 'Q913346', + ], + [ + 'id' => 118377, + 'name' => 'Hidden Meadows', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '22531000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '11253000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:58', + 'updated_at' => '2019-10-06 08:02:58', + 'flag' => true, + 'wikiDataId' => 'Q2314579', + ], + [ + 'id' => 118380, + 'name' => 'Hidden Valley Lake', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '80796000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '55832000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:58', + 'updated_at' => '2019-10-06 08:02:58', + 'flag' => true, + 'wikiDataId' => 'Q1818463', + ], + [ + 'id' => 118391, + 'name' => 'Highgrove', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '01585000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '33338000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:58', + 'updated_at' => '2019-10-06 08:02:58', + 'flag' => true, + 'wikiDataId' => 'Q3041404', + ], + [ + 'id' => 118398, + 'name' => 'Highland', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '12834000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '20865000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:58', + 'updated_at' => '2019-10-06 08:02:58', + 'flag' => true, + 'wikiDataId' => 'Q693577', + ], + [ + 'id' => 118421, + 'name' => 'Highlands-Baywood Park', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '52272000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '34506000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:59', + 'updated_at' => '2019-10-06 08:02:59', + 'flag' => true, + 'wikiDataId' => 'Q2036981', + ], + [ + 'id' => 118455, + 'name' => 'Hillsborough', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '57410000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '37942000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:59', + 'updated_at' => '2019-10-06 08:02:59', + 'flag' => true, + 'wikiDataId' => 'Q1011171', + ], + [ + 'id' => 118471, + 'name' => 'Hilmar-Irwin', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '40454000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '85042000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:59', + 'updated_at' => '2019-10-06 08:02:59', + 'flag' => true, + 'wikiDataId' => 'Q12947590', + ], + [ + 'id' => 118552, + 'name' => 'Hollister', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '85245000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '40160000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:00', + 'updated_at' => '2019-10-06 08:03:00', + 'flag' => true, + 'wikiDataId' => 'Q936919', + ], + [ + 'id' => 118567, + 'name' => 'Hollywood', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '09834000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '32674000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:00', + 'updated_at' => '2019-10-06 08:03:00', + 'flag' => true, + 'wikiDataId' => 'Q34006', + ], + [ + 'id' => 118582, + 'name' => 'Holtville', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '32'; + $this->fractionalPart = '81116000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '115'; + $this->fractionalPart = '38026000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:00', + 'updated_at' => '2019-10-06 08:03:00', + 'flag' => true, + 'wikiDataId' => 'Q631666', + ], + [ + 'id' => 118586, + 'name' => 'Home Garden', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '30328000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '63624000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:00', + 'updated_at' => '2019-10-06 08:03:00', + 'flag' => true, + 'wikiDataId' => 'Q1867902', + ], + [ + 'id' => 118587, + 'name' => 'Home Gardens', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '87807000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '52088000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:00', + 'updated_at' => '2019-10-06 08:03:00', + 'flag' => true, + 'wikiDataId' => 'Q1854660', + ], + [ + 'id' => 118590, + 'name' => 'Homeland', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '74308000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '10920000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:00', + 'updated_at' => '2019-10-06 08:03:00', + 'flag' => true, + 'wikiDataId' => 'Q2320430', + ], + [ + 'id' => 118764, + 'name' => 'Hughson', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '59688000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '86604000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:01', + 'updated_at' => '2019-10-06 08:03:01', + 'flag' => true, + 'wikiDataId' => 'Q3239635', + ], + [ + 'id' => 118779, + 'name' => 'Humboldt County', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '70501000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '123'; + $this->fractionalPart = '91582000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:02', + 'updated_at' => '2019-10-06 08:03:02', + 'flag' => true, + 'wikiDataId' => 'Q109651', + ], + [ + 'id' => 118781, + 'name' => 'Humboldt Hill', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '72596000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '124'; + $this->fractionalPart = '18978000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:02', + 'updated_at' => '2019-10-06 08:03:02', + 'flag' => true, + 'wikiDataId' => 'Q2175550', + ], + [ + 'id' => 118805, + 'name' => 'Huntington Beach', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '66030000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '99923000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:02', + 'updated_at' => '2019-10-06 08:03:02', + 'flag' => true, + 'wikiDataId' => 'Q5917', + ], + [ + 'id' => 118807, + 'name' => 'Huntington Park', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '98168000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '22507000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:02', + 'updated_at' => '2019-10-06 08:03:02', + 'flag' => true, + 'wikiDataId' => 'Q851027', + ], + [ + 'id' => 118825, + 'name' => 'Huron', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '20273000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '10292000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:02', + 'updated_at' => '2019-10-06 08:03:02', + 'flag' => true, + 'wikiDataId' => 'Q2649652', + ], + [ + 'id' => 118855, + 'name' => 'Hydesville', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '54763000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '124'; + $this->fractionalPart = '09727000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:02', + 'updated_at' => '2019-10-06 08:03:02', + 'flag' => true, + 'wikiDataId' => 'Q2280473', + ], + [ + 'id' => 118874, + 'name' => 'Idyllwild', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '74002000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '116'; + $this->fractionalPart = '71891000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:02', + 'updated_at' => '2019-10-06 08:03:02', + 'flag' => true, + 'wikiDataId' => 'Q930801', + ], + [ + 'id' => 118875, + 'name' => 'Idyllwild-Pine Cove', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '74429000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '116'; + $this->fractionalPart = '72587000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:02', + 'updated_at' => '2019-10-06 08:03:02', + 'flag' => true, + 'wikiDataId' => 'Q2314331', + ], + [ + 'id' => 118883, + 'name' => 'Imperial', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '32'; + $this->fractionalPart = '84755000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '115'; + $this->fractionalPart = '56944000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:02', + 'updated_at' => '2019-10-06 08:03:02', + 'flag' => true, + 'wikiDataId' => 'Q930766', + ], + [ + 'id' => 118885, + 'name' => 'Imperial Beach', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '32'; + $this->fractionalPart = '58394000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '11308000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:02', + 'updated_at' => '2019-10-06 08:03:02', + 'flag' => true, + 'wikiDataId' => 'Q917531', + ], + [ + 'id' => 118886, + 'name' => 'Imperial County', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '03951000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '115'; + $this->fractionalPart = '36532000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:02', + 'updated_at' => '2019-10-06 08:03:02', + 'flag' => true, + 'wikiDataId' => 'Q169952', + ], + [ + 'id' => 118921, + 'name' => 'Indian Wells', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '71791000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '116'; + $this->fractionalPart = '34311000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:03', + 'updated_at' => '2019-10-06 08:03:03', + 'flag' => true, + 'wikiDataId' => 'Q490714', + ], + [ + 'id' => 118929, + 'name' => 'Indio', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '72070000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '116'; + $this->fractionalPart = '21677000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:03', + 'updated_at' => '2019-10-06 08:03:03', + 'flag' => true, + 'wikiDataId' => 'Q838789', + ], + [ + 'id' => 118937, + 'name' => 'Inglewood', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '96168000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '35313000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:03', + 'updated_at' => '2019-10-06 08:03:03', + 'flag' => true, + 'wikiDataId' => 'Q621549', + ], + [ + 'id' => 118951, + 'name' => 'Interlaken', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '95134000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '73384000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:03', + 'updated_at' => '2019-10-06 08:03:03', + 'flag' => true, + 'wikiDataId' => 'Q600900', + ], + [ + 'id' => 118957, + 'name' => 'Inverness', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '10103000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '85694000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:03', + 'updated_at' => '2019-10-06 08:03:03', + 'flag' => true, + 'wikiDataId' => 'Q3306123', + ], + [ + 'id' => 118964, + 'name' => 'Inyo County', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '51113000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '41079000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:03', + 'updated_at' => '2019-10-06 08:03:03', + 'flag' => true, + 'wikiDataId' => 'Q109670', + ], + [ + 'id' => 118965, + 'name' => 'Inyokern', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '35'; + $this->fractionalPart = '64690000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '81257000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:03', + 'updated_at' => '2019-10-06 08:03:03', + 'flag' => true, + 'wikiDataId' => 'Q256695', + ], + [ + 'id' => 118970, + 'name' => 'Ione', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '35269000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '93272000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:03', + 'updated_at' => '2019-10-06 08:03:03', + 'flag' => true, + 'wikiDataId' => 'Q953598', + ], + [ + 'id' => 119004, + 'name' => 'Irvine', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '66946000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '82311000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:03', + 'updated_at' => '2019-10-06 08:03:03', + 'flag' => true, + 'wikiDataId' => 'Q49219', + ], + [ + 'id' => 119014, + 'name' => 'Irwindale', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '10695000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '93534000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:03', + 'updated_at' => '2019-10-06 08:03:03', + 'flag' => true, + 'wikiDataId' => 'Q984171', + ], + [ + 'id' => 119021, + 'name' => 'Isla Vista', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '41333000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '86097000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:04', + 'updated_at' => '2019-10-06 08:03:04', + 'flag' => true, + 'wikiDataId' => 'Q1674054', + ], + [ + 'id' => 119049, + 'name' => 'Ivanhoe', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '38717000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '21789000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:04', + 'updated_at' => '2019-10-06 08:03:04', + 'flag' => true, + 'wikiDataId' => 'Q2426614', + ], + [ + 'id' => 119073, + 'name' => 'Jackson', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '34880000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '77410000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:04', + 'updated_at' => '2019-10-06 08:03:04', + 'flag' => true, + 'wikiDataId' => 'Q1966879', + ], + [ + 'id' => 119126, + 'name' => 'Jamestown', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '95326000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '42270000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:05', + 'updated_at' => '2019-10-06 08:03:05', + 'flag' => true, + 'wikiDataId' => 'Q2651966', + ], + [ + 'id' => 119128, + 'name' => 'Jamul', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '32'; + $this->fractionalPart = '71700000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '116'; + $this->fractionalPart = '87613000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:05', + 'updated_at' => '2019-10-06 08:03:05', + 'flag' => true, + 'wikiDataId' => 'Q2234295', + ], + [ + 'id' => 119132, + 'name' => 'Janesville', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '29656000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '52411000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:05', + 'updated_at' => '2019-10-06 08:03:05', + 'flag' => true, + 'wikiDataId' => 'Q3138794', + ], + [ + 'id' => 119283, + 'name' => 'Johnstonville', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '38434000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '58745000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:06', + 'updated_at' => '2019-10-06 08:03:06', + 'flag' => true, + 'wikiDataId' => 'Q11685232', + ], + [ + 'id' => 119323, + 'name' => 'Joshua Tree', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '13473000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '116'; + $this->fractionalPart = '31307000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:06', + 'updated_at' => '2019-10-06 08:03:06', + 'flag' => true, + 'wikiDataId' => 'Q168308', + ], + [ + 'id' => 119330, + 'name' => 'Julian', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '07866000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '116'; + $this->fractionalPart = '60196000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:06', + 'updated_at' => '2019-10-06 08:03:06', + 'flag' => true, + 'wikiDataId' => 'Q691469', + ], + [ + 'id' => 119343, + 'name' => 'Jurupa Valley', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '99251000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '51644000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:07', + 'updated_at' => '2019-10-06 08:03:07', + 'flag' => true, + 'wikiDataId' => 'Q1928372', + ], + [ + 'id' => 119431, + 'name' => 'Kelseyville', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '97795000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '83944000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:07', + 'updated_at' => '2019-10-06 08:03:07', + 'flag' => true, + 'wikiDataId' => 'Q1839339', + ], + [ + 'id' => 119469, + 'name' => 'Kennedy', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '92992000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '25272000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:08', + 'updated_at' => '2019-10-06 08:03:08', + 'flag' => true, + 'wikiDataId' => 'Q2490795', + ], + [ + 'id' => 119484, + 'name' => 'Kensington', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '91048000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '28025000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:08', + 'updated_at' => '2019-10-06 08:03:08', + 'flag' => true, + 'wikiDataId' => 'Q3296036', + ], + [ + 'id' => 119495, + 'name' => 'Kentfield', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '95215000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '55720000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:08', + 'updated_at' => '2019-10-06 08:03:08', + 'flag' => true, + 'wikiDataId' => 'Q2450147', + ], + [ + 'id' => 119505, + 'name' => 'Kenwood', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '41380000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '54609000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:08', + 'updated_at' => '2019-10-06 08:03:08', + 'flag' => true, + 'wikiDataId' => 'Q3476166', + ], + [ + 'id' => 119512, + 'name' => 'Kerman', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '72356000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '05988000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:08', + 'updated_at' => '2019-10-06 08:03:08', + 'flag' => true, + 'wikiDataId' => 'Q984605', + ], + [ + 'id' => 119514, + 'name' => 'Kern County', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '35'; + $this->fractionalPart = '34285000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '72990000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:08', + 'updated_at' => '2019-10-06 08:03:08', + 'flag' => true, + 'wikiDataId' => 'Q108047', + ], + [ + 'id' => 119516, + 'name' => 'Kernville', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '35'; + $this->fractionalPart = '75467000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '42536000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:08', + 'updated_at' => '2019-10-06 08:03:08', + 'flag' => true, + 'wikiDataId' => 'Q3028509', + ], + [ + 'id' => 119528, + 'name' => 'Kettleman City', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '00829000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '96180000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:08', + 'updated_at' => '2019-10-06 08:03:08', + 'flag' => true, + 'wikiDataId' => 'Q1908364', + ], + [ + 'id' => 119543, + 'name' => 'Keyes', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '55660000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '91549000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:08', + 'updated_at' => '2019-10-06 08:03:08', + 'flag' => true, + 'wikiDataId' => 'Q2381554', + ], + [ + 'id' => 119579, + 'name' => 'King City', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '21274000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '12603000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:09', + 'updated_at' => '2019-10-06 08:03:09', + 'flag' => true, + 'wikiDataId' => 'Q862700', + ], + [ + 'id' => 119598, + 'name' => 'Kings Beach', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '23768000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '02658000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:09', + 'updated_at' => '2019-10-06 08:03:09', + 'flag' => true, + 'wikiDataId' => 'Q2691503', + ], + [ + 'id' => 119600, + 'name' => 'Kings County', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '07536000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '81550000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:09', + 'updated_at' => '2019-10-06 08:03:09', + 'flag' => true, + 'wikiDataId' => 'Q156358', + ], + [ + 'id' => 119609, + 'name' => 'Kingsburg', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '51384000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '55402000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:09', + 'updated_at' => '2019-10-06 08:03:09', + 'flag' => true, + 'wikiDataId' => 'Q779614', + ], + [ + 'id' => 119675, + 'name' => 'Knightsen', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '96881000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '66801000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:09', + 'updated_at' => '2019-10-06 08:03:09', + 'flag' => true, + 'wikiDataId' => 'Q965882', + ], + [ + 'id' => 119708, + 'name' => 'Koreatown', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '05779000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '30091000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:10', + 'updated_at' => '2019-10-06 08:03:10', + 'flag' => true, + 'wikiDataId' => 'Q872664', + ], + [ + 'id' => 119736, + 'name' => 'La Cañada Flintridge', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '19917000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '18785000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:10', + 'updated_at' => '2020-05-02 01:53:22', + 'flag' => true, + 'wikiDataId' => 'Q1011181', + ], + [ + 'id' => 119742, + 'name' => 'La Crescenta-Montrose', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '23216000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '23529000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:10', + 'updated_at' => '2019-10-06 08:03:10', + 'flag' => true, + 'wikiDataId' => 'Q1798748', + ], + [ + 'id' => 119755, + 'name' => 'La Habra', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '93196000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '94617000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:10', + 'updated_at' => '2019-10-06 08:03:10', + 'flag' => true, + 'wikiDataId' => 'Q948071', + ], + [ + 'id' => 119756, + 'name' => 'La Habra Heights', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '96085000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '95062000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:10', + 'updated_at' => '2019-10-06 08:03:10', + 'flag' => true, + 'wikiDataId' => 'Q143269', + ], + [ + 'id' => 119760, + 'name' => 'La Jolla', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '32'; + $this->fractionalPart = '84727000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '27420000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:10', + 'updated_at' => '2019-10-06 08:03:10', + 'flag' => true, + 'wikiDataId' => 'Q840668', + ], + [ + 'id' => 119765, + 'name' => 'La Mesa', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '32'; + $this->fractionalPart = '76783000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '02308000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:10', + 'updated_at' => '2019-10-06 08:03:10', + 'flag' => true, + 'wikiDataId' => 'Q850929', + ], + [ + 'id' => 119767, + 'name' => 'La Mirada', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '91724000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '01201000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:10', + 'updated_at' => '2019-10-06 08:03:10', + 'flag' => true, + 'wikiDataId' => 'Q517569', + ], + [ + 'id' => 119769, + 'name' => 'La Palma', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '84640000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '04673000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:10', + 'updated_at' => '2019-10-06 08:03:10', + 'flag' => true, + 'wikiDataId' => 'Q595175', + ], + [ + 'id' => 119779, + 'name' => 'La Presa', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '32'; + $this->fractionalPart = '70811000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '116'; + $this->fractionalPart = '99725000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:10', + 'updated_at' => '2019-10-06 08:03:10', + 'flag' => true, + 'wikiDataId' => 'Q178785', + ], + [ + 'id' => 119782, + 'name' => 'La Puente', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '02001000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '94951000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:10', + 'updated_at' => '2019-10-06 08:03:10', + 'flag' => true, + 'wikiDataId' => 'Q475724', + ], + [ + 'id' => 119783, + 'name' => 'La Quinta', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '66336000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '116'; + $this->fractionalPart = '31001000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:10', + 'updated_at' => '2019-10-06 08:03:10', + 'flag' => true, + 'wikiDataId' => 'Q983614', + ], + [ + 'id' => 119784, + 'name' => 'La Riviera', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '56685000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '35690000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:10', + 'updated_at' => '2019-10-06 08:03:10', + 'flag' => true, + 'wikiDataId' => 'Q634572', + ], + [ + 'id' => 119789, + 'name' => 'La Selva Beach', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '93662000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '86468000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:11', + 'updated_at' => '2019-10-06 08:03:11', + 'flag' => true, + 'wikiDataId' => 'Q2380037', + ], + [ + 'id' => 119793, + 'name' => 'La Verne', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '10084000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '76784000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:11', + 'updated_at' => '2019-10-06 08:03:11', + 'flag' => true, + 'wikiDataId' => 'Q985347', + ], + [ + 'id' => 119823, + 'name' => 'Ladera', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '39994000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '19830000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:11', + 'updated_at' => '2019-10-06 08:03:11', + 'flag' => true, + 'wikiDataId' => 'Q3476073', + ], + [ + 'id' => 119824, + 'name' => 'Ladera Heights', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '99418000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '37535000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:11', + 'updated_at' => '2019-10-06 08:03:11', + 'flag' => true, + 'wikiDataId' => 'Q2584592', + ], + [ + 'id' => 119825, + 'name' => 'Ladera Ranch', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '57086000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '63561000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:11', + 'updated_at' => '2019-10-06 08:03:11', + 'flag' => true, + 'wikiDataId' => 'Q3313468', + ], + [ + 'id' => 119835, + 'name' => 'Lafayette', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '88576000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '11802000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:11', + 'updated_at' => '2019-10-06 08:03:11', + 'flag' => true, + 'wikiDataId' => 'Q284803', + ], + [ + 'id' => 119849, + 'name' => 'Laguna', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '42102000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '42384000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:11', + 'updated_at' => '2019-10-06 08:03:11', + 'flag' => true, + 'wikiDataId' => 'Q2055185', + ], + [ + 'id' => 119852, + 'name' => 'Laguna Beach', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '54225000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '78311000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:11', + 'updated_at' => '2019-10-06 08:03:11', + 'flag' => true, + 'wikiDataId' => 'Q1908566', + ], + [ + 'id' => 119854, + 'name' => 'Laguna Hills', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '61252000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '71283000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:11', + 'updated_at' => '2019-10-06 08:03:11', + 'flag' => true, + 'wikiDataId' => 'Q862679', + ], + [ + 'id' => 119855, + 'name' => 'Laguna Niguel', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '52253000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '70755000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:11', + 'updated_at' => '2019-10-06 08:03:11', + 'flag' => true, + 'wikiDataId' => 'Q948086', + ], + [ + 'id' => 119858, + 'name' => 'Laguna Woods', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '61030000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '72533000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:11', + 'updated_at' => '2019-10-06 08:03:11', + 'flag' => true, + 'wikiDataId' => 'Q983826', + ], + [ + 'id' => 119859, + 'name' => 'Lagunitas-Forest Knolls', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '01793000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '69124000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:11', + 'updated_at' => '2019-10-06 08:03:11', + 'flag' => true, + 'wikiDataId' => 'Q1800568', + ], + [ + 'id' => 119866, + 'name' => 'Lake Arrowhead', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '24834000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '18921000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:11', + 'updated_at' => '2019-10-06 08:03:11', + 'flag' => true, + 'wikiDataId' => 'Q979424', + ], + [ + 'id' => 119896, + 'name' => 'Lake County', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '09965000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '75318000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:11', + 'updated_at' => '2019-10-06 08:03:11', + 'flag' => true, + 'wikiDataId' => 'Q156361', + ], + [ + 'id' => 119906, + 'name' => 'Lake Elsinore', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '66808000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '32726000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:12', + 'updated_at' => '2019-10-06 08:03:12', + 'flag' => true, + 'wikiDataId' => 'Q948102', + ], + [ + 'id' => 119911, + 'name' => 'Lake Forest', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '64697000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '68922000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:12', + 'updated_at' => '2019-10-06 08:03:12', + 'flag' => true, + 'wikiDataId' => 'Q752671', + ], + [ + 'id' => 119923, + 'name' => 'Lake Isabella', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '35'; + $this->fractionalPart = '61801000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '47314000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:12', + 'updated_at' => '2019-10-06 08:03:12', + 'flag' => true, + 'wikiDataId' => 'Q2495360', + ], + [ + 'id' => 119931, + 'name' => 'Lake Los Angeles', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '61249000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '82812000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:12', + 'updated_at' => '2019-10-06 08:03:12', + 'flag' => true, + 'wikiDataId' => 'Q1966409', + ], + [ + 'id' => 119950, + 'name' => 'Lake Nacimiento', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '35'; + $this->fractionalPart = '72830000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '87963000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:12', + 'updated_at' => '2019-10-06 08:03:12', + 'flag' => true, + 'wikiDataId' => 'Q576559', + ], + [ + 'id' => 119973, + 'name' => 'Lake San Marcos', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '12615000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '20837000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:12', + 'updated_at' => '2019-10-06 08:03:12', + 'flag' => true, + 'wikiDataId' => 'Q3008146', + ], + [ + 'id' => 119993, + 'name' => 'Lake Wildwood', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '23295000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '20051000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:12', + 'updated_at' => '2019-10-06 08:03:12', + 'flag' => true, + 'wikiDataId' => 'Q2029247', + ], + [ + 'id' => 120005, + 'name' => 'Lake of the Pines', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '03962000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '05661000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:12', + 'updated_at' => '2019-10-06 08:03:12', + 'flag' => true, + 'wikiDataId' => 'Q1955656', + ], + [ + 'id' => 120020, + 'name' => 'Lakeland Village', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '63863000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '34393000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:13', + 'updated_at' => '2019-10-06 08:03:13', + 'flag' => true, + 'wikiDataId' => 'Q2498602', + ], + [ + 'id' => 120023, + 'name' => 'Lakeport', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '04295000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '91583000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:13', + 'updated_at' => '2019-10-06 08:03:13', + 'flag' => true, + 'wikiDataId' => 'Q1960647', + ], + [ + 'id' => 120032, + 'name' => 'Lakeside', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '32'; + $this->fractionalPart = '85727000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '116'; + $this->fractionalPart = '92225000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:13', + 'updated_at' => '2019-10-06 08:03:13', + 'flag' => true, + 'wikiDataId' => 'Q2499052', + ], + [ + 'id' => 120040, + 'name' => 'Lakeview', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '83863000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '11809000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:13', + 'updated_at' => '2019-10-06 08:03:13', + 'flag' => true, + 'wikiDataId' => 'Q2429449', + ], + [ + 'id' => 120051, + 'name' => 'Lakewood', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '85363000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '13396000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:13', + 'updated_at' => '2019-10-06 08:03:13', + 'flag' => true, + 'wikiDataId' => 'Q838757', + ], + [ + 'id' => 120074, + 'name' => 'Lamont', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '35'; + $this->fractionalPart = '25968000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '91427000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:13', + 'updated_at' => '2019-10-06 08:03:13', + 'flag' => true, + 'wikiDataId' => 'Q2079113', + ], + [ + 'id' => 120089, + 'name' => 'Lancaster', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '69804000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '13674000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:13', + 'updated_at' => '2019-10-06 08:03:13', + 'flag' => true, + 'wikiDataId' => 'Q494711', + ], + [ + 'id' => 120147, + 'name' => 'Larkfield-Wikiup', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '51342000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '75094000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:14', + 'updated_at' => '2019-10-06 08:03:14', + 'flag' => true, + 'wikiDataId' => 'Q2620952', + ], + [ + 'id' => 120148, + 'name' => 'Larkspur', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '93409000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '53525000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:14', + 'updated_at' => '2019-10-06 08:03:14', + 'flag' => true, + 'wikiDataId' => 'Q984595', + ], + [ + 'id' => 120156, + 'name' => 'Las Flores', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '58808000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '62672000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:14', + 'updated_at' => '2019-10-06 08:03:14', + 'flag' => true, + 'wikiDataId' => 'Q2155868', + ], + [ + 'id' => 120158, + 'name' => 'Las Lomas', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '86523000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '73495000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:14', + 'updated_at' => '2019-10-06 08:03:14', + 'flag' => true, + 'wikiDataId' => 'Q3460997', + ], + [ + 'id' => 120166, + 'name' => 'Lassen County', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '67359000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '59433000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:14', + 'updated_at' => '2019-10-06 08:03:14', + 'flag' => true, + 'wikiDataId' => 'Q156340', + ], + [ + 'id' => 120170, + 'name' => 'Lathrop', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '82270000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '27661000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:14', + 'updated_at' => '2019-10-06 08:03:14', + 'flag' => true, + 'wikiDataId' => 'Q986862', + ], + [ + 'id' => 120174, + 'name' => 'Laton', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '43328000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '68680000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:14', + 'updated_at' => '2019-10-06 08:03:14', + 'flag' => true, + 'wikiDataId' => 'Q2386043', + ], + [ + 'id' => 120222, + 'name' => 'Lawndale', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '88724000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '35257000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:15', + 'updated_at' => '2019-10-06 08:03:15', + 'flag' => true, + 'wikiDataId' => 'Q985356', + ], + [ + 'id' => 120255, + 'name' => 'Laytonville', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '68821000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '123'; + $this->fractionalPart = '48279000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:15', + 'updated_at' => '2019-10-06 08:03:15', + 'flag' => true, + 'wikiDataId' => 'Q2976117', + ], + [ + 'id' => 120260, + 'name' => 'Le Grand', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '22855000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '24823000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:15', + 'updated_at' => '2019-10-06 08:03:15', + 'flag' => true, + 'wikiDataId' => 'Q3301680', + ], + [ + 'id' => 120298, + 'name' => 'Lebec', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '84164000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '86482000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:16', + 'updated_at' => '2019-10-06 08:03:16', + 'flag' => true, + 'wikiDataId' => 'Q2879536', + ], + [ + 'id' => 120359, + 'name' => 'Lemon Grove', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '32'; + $this->fractionalPart = '74255000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '03142000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:17', + 'updated_at' => '2019-10-06 08:03:17', + 'flag' => true, + 'wikiDataId' => 'Q948206', + ], + [ + 'id' => 120362, + 'name' => 'Lemoore', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '30078000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '78291000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:17', + 'updated_at' => '2019-10-06 08:03:17', + 'flag' => true, + 'wikiDataId' => 'Q986940', + ], + [ + 'id' => 120363, + 'name' => 'Lemoore Station', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '26326000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '90476000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:17', + 'updated_at' => '2019-10-06 08:03:17', + 'flag' => true, + 'wikiDataId' => 'Q2192165', + ], + [ + 'id' => 120371, + 'name' => 'Lennox', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '93807000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '35258000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:17', + 'updated_at' => '2019-10-06 08:03:17', + 'flag' => true, + 'wikiDataId' => 'Q1551721', + ], + [ + 'id' => 120378, + 'name' => 'Lenwood', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '87665000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '10393000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:17', + 'updated_at' => '2019-10-06 08:03:17', + 'flag' => true, + 'wikiDataId' => 'Q3306212', + ], + [ + 'id' => 120387, + 'name' => 'Leona Valley', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '61832000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '28813000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:17', + 'updated_at' => '2019-10-06 08:03:17', + 'flag' => true, + 'wikiDataId' => 'Q3458863', + ], + [ + 'id' => 120427, + 'name' => 'Lewiston', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '70737000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '80752000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:18', + 'updated_at' => '2019-10-06 08:03:18', + 'flag' => true, + 'wikiDataId' => 'Q2394912', + ], + [ + 'id' => 120454, + 'name' => 'Lexington Hills', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '16467000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '97301000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:18', + 'updated_at' => '2019-10-06 08:03:18', + 'flag' => true, + 'wikiDataId' => 'Q2684293', + ], + [ + 'id' => 120509, + 'name' => 'Lincoln', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '89156000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '29301000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:19', + 'updated_at' => '2019-10-06 08:03:19', + 'flag' => true, + 'wikiDataId' => 'Q966492', + ], + [ + 'id' => 120547, + 'name' => 'Lincoln Village', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '00520000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '32828000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:19', + 'updated_at' => '2019-10-06 08:03:19', + 'flag' => true, + 'wikiDataId' => 'Q2786412', + ], + [ + 'id' => 120557, + 'name' => 'Linda', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '12767000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '55080000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:19', + 'updated_at' => '2019-10-06 08:03:19', + 'flag' => true, + 'wikiDataId' => 'Q514215', + ], + [ + 'id' => 120566, + 'name' => 'Linden', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '02131000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '08383000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:19', + 'updated_at' => '2019-10-06 08:03:19', + 'flag' => true, + 'wikiDataId' => 'Q3306085', + ], + [ + 'id' => 120574, + 'name' => 'Lindsay', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '20301000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '08816000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:19', + 'updated_at' => '2019-10-06 08:03:19', + 'flag' => true, + 'wikiDataId' => 'Q984167', + ], + [ + 'id' => 120633, + 'name' => 'Littlerock', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '52110000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '98368000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:20', + 'updated_at' => '2019-10-06 08:03:20', + 'flag' => true, + 'wikiDataId' => 'Q2268250', + ], + [ + 'id' => 120640, + 'name' => 'Live Oak', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '98356000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '98052000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:20', + 'updated_at' => '2019-10-06 08:03:20', + 'flag' => true, + 'wikiDataId' => 'Q81644', + ], + [ + 'id' => 120644, + 'name' => 'Livermore', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '68187000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '76801000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:20', + 'updated_at' => '2019-10-06 08:03:20', + 'flag' => true, + 'wikiDataId' => 'Q138901', + ], + [ + 'id' => 120652, + 'name' => 'Livingston', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '38688000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '72353000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:20', + 'updated_at' => '2019-10-06 08:03:20', + 'flag' => true, + 'wikiDataId' => 'Q986871', + ], + [ + 'id' => 120675, + 'name' => 'Lockeford', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '16353000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '14994000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:21', + 'updated_at' => '2019-10-06 08:03:21', + 'flag' => true, + 'wikiDataId' => 'Q1884088', + ], + [ + 'id' => 120691, + 'name' => 'Lodi', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '13020000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '27245000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:21', + 'updated_at' => '2019-10-06 08:03:21', + 'flag' => true, + 'wikiDataId' => 'Q852647', + ], + [ + 'id' => 120712, + 'name' => 'Loma Linda', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '04835000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '26115000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:21', + 'updated_at' => '2019-10-06 08:03:21', + 'flag' => true, + 'wikiDataId' => 'Q837113', + ], + [ + 'id' => 120713, + 'name' => 'Loma Rica', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '31183000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '41774000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:21', + 'updated_at' => '2019-10-06 08:03:21', + 'flag' => true, + 'wikiDataId' => 'Q1868721', + ], + [ + 'id' => 120716, + 'name' => 'Lomita', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '79224000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '31507000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:21', + 'updated_at' => '2019-10-06 08:03:21', + 'flag' => true, + 'wikiDataId' => 'Q984162', + ], + [ + 'id' => 120717, + 'name' => 'Lompico', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '10550000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '05274000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:21', + 'updated_at' => '2019-10-06 08:03:21', + 'flag' => true, + 'wikiDataId' => 'Q2838260', + ], + [ + 'id' => 120718, + 'name' => 'Lompoc', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '63915000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '45794000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:21', + 'updated_at' => '2019-10-06 08:03:21', + 'flag' => true, + 'wikiDataId' => 'Q852704', + ], + [ + 'id' => 120722, + 'name' => 'London', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '47606000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '44318000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:21', + 'updated_at' => '2019-10-06 08:03:21', + 'flag' => true, + 'wikiDataId' => 'Q586353', + ], + [ + 'id' => 120729, + 'name' => 'Lone Pine', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '60626000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '06462000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:21', + 'updated_at' => '2019-10-06 08:03:21', + 'flag' => true, + 'wikiDataId' => 'Q1854013', + ], + [ + 'id' => 120738, + 'name' => 'Long Beach', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '76696000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '18923000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:21', + 'updated_at' => '2019-10-06 08:03:21', + 'flag' => true, + 'wikiDataId' => 'Q16739', + ], + [ + 'id' => 120767, + 'name' => 'Loomis', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '82129000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '19300000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:22', + 'updated_at' => '2019-10-06 08:03:22', + 'flag' => true, + 'wikiDataId' => 'Q2835325', + ], + [ + 'id' => 120778, + 'name' => 'Los Alamitos', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '80307000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '07256000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:22', + 'updated_at' => '2019-10-06 08:03:22', + 'flag' => true, + 'wikiDataId' => 'Q948059', + ], + [ + 'id' => 120779, + 'name' => 'Los Alamos', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '74443000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '27821000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:22', + 'updated_at' => '2019-10-06 08:03:22', + 'flag' => true, + 'wikiDataId' => 'Q1915491', + ], + [ + 'id' => 120782, + 'name' => 'Los Altos', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '38522000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '11413000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:22', + 'updated_at' => '2019-10-06 08:03:22', + 'flag' => true, + 'wikiDataId' => 'Q864124', + ], + [ + 'id' => 120783, + 'name' => 'Los Altos Hills', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '37966000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '13746000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:22', + 'updated_at' => '2019-10-06 08:03:22', + 'flag' => true, + 'wikiDataId' => 'Q868677', + ], + [ + 'id' => 120784, + 'name' => 'Los Angeles', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '05223000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '24368000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:22', + 'updated_at' => '2019-10-06 08:03:22', + 'flag' => true, + 'wikiDataId' => 'Q65', + ], + [ + 'id' => 120785, + 'name' => 'Los Angeles County', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '19801000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '26102000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:22', + 'updated_at' => '2019-10-06 08:03:22', + 'flag' => true, + 'wikiDataId' => 'Q104994', + ], + [ + 'id' => 120786, + 'name' => 'Los Banos', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '05828000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '84992000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:22', + 'updated_at' => '2019-10-06 08:03:22', + 'flag' => true, + 'wikiDataId' => 'Q590932', + ], + [ + 'id' => 120789, + 'name' => 'Los Gatos', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '22661000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '97468000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:22', + 'updated_at' => '2019-10-06 08:03:22', + 'flag' => true, + 'wikiDataId' => 'Q747509', + ], + [ + 'id' => 120792, + 'name' => 'Los Molinos', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '02127000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '10027000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:22', + 'updated_at' => '2019-10-06 08:03:22', + 'flag' => true, + 'wikiDataId' => 'Q2396734', + ], + [ + 'id' => 120793, + 'name' => 'Los Olivos', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '66776000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '11487000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:22', + 'updated_at' => '2019-10-06 08:03:22', + 'flag' => true, + 'wikiDataId' => 'Q1006597', + ], + [ + 'id' => 120794, + 'name' => 'Los Osos', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '35'; + $this->fractionalPart = '31109000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '83240000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:22', + 'updated_at' => '2019-10-06 08:03:22', + 'flag' => true, + 'wikiDataId' => 'Q3458288', + ], + [ + 'id' => 120796, + 'name' => 'Los Serranos', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '97279000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '70811000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:22', + 'updated_at' => '2019-10-06 08:03:22', + 'flag' => true, + 'wikiDataId' => 'Q6683265', + ], + [ + 'id' => 120798, + 'name' => 'Lost Hills', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '35'; + $this->fractionalPart = '61635000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '69429000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:22', + 'updated_at' => '2019-10-06 08:03:22', + 'flag' => true, + 'wikiDataId' => 'Q2188469', + ], + [ + 'id' => 120842, + 'name' => 'Lower Lake', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '91045000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '61026000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:22', + 'updated_at' => '2019-10-06 08:03:22', + 'flag' => true, + 'wikiDataId' => 'Q2261797', + ], + [ + 'id' => 120855, + 'name' => 'Loyola', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '35133000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '10052000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:23', + 'updated_at' => '2019-10-06 08:03:23', + 'flag' => true, + 'wikiDataId' => 'Q2090576', + ], + [ + 'id' => 120862, + 'name' => 'Lucas Valley-Marinwood', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '04011000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '57550000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:23', + 'updated_at' => '2019-10-06 08:03:23', + 'flag' => true, + 'wikiDataId' => 'Q2570615', + ], + [ + 'id' => 120865, + 'name' => 'Lucerne', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '38078000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '66430000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:23', + 'updated_at' => '2019-10-06 08:03:23', + 'flag' => true, + 'wikiDataId' => 'Q6696485', + ], + [ + 'id' => 120866, + 'name' => 'Lucerne Valley', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '44389000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '116'; + $this->fractionalPart = '96781000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:23', + 'updated_at' => '2019-10-06 08:03:23', + 'flag' => true, + 'wikiDataId' => 'Q3458247', + ], + [ + 'id' => 120934, + 'name' => 'Lynwood', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '93029000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '21146000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:23', + 'updated_at' => '2019-10-06 08:03:23', + 'flag' => true, + 'wikiDataId' => 'Q849619', + ], + [ + 'id' => 120980, + 'name' => 'Madera', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '96134000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '06072000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:24', + 'updated_at' => '2019-10-06 08:03:24', + 'flag' => true, + 'wikiDataId' => 'Q851000', + ], + [ + 'id' => 120981, + 'name' => 'Madera Acres', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '01911000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '06683000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:24', + 'updated_at' => '2019-10-06 08:03:24', + 'flag' => true, + 'wikiDataId' => 'Q3295955', + ], + [ + 'id' => 120982, + 'name' => 'Madera County', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '21804000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '76265000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:24', + 'updated_at' => '2019-10-06 08:03:24', + 'flag' => true, + 'wikiDataId' => 'Q109661', + ], + [ + 'id' => 121031, + 'name' => 'Magalia', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '81211000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '57831000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:24', + 'updated_at' => '2019-10-06 08:03:24', + 'flag' => true, + 'wikiDataId' => 'Q1883728', + ], + [ + 'id' => 121062, + 'name' => 'Malibu', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '02577000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '78040000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:25', + 'updated_at' => '2019-10-06 08:03:25', + 'flag' => true, + 'wikiDataId' => 'Q495414', + ], + [ + 'id' => 121077, + 'name' => 'Mammoth Lakes', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '64855000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '97208000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:25', + 'updated_at' => '2019-10-06 08:03:25', + 'flag' => true, + 'wikiDataId' => 'Q983604', + ], + [ + 'id' => 121117, + 'name' => 'Manhattan Beach', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '88474000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '41091000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:25', + 'updated_at' => '2019-10-06 08:03:25', + 'flag' => true, + 'wikiDataId' => 'Q568610', + ], + [ + 'id' => 121154, + 'name' => 'Manteca', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '79743000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '21605000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:26', + 'updated_at' => '2019-10-06 08:03:26', + 'flag' => true, + 'wikiDataId' => 'Q986109', + ], + [ + 'id' => 121196, + 'name' => 'March Air Force Base', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '89209000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '26310000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:26', + 'updated_at' => '2019-10-06 08:03:26', + 'flag' => true, + 'wikiDataId' => 'Q3710243', + ], + [ + 'id' => 121212, + 'name' => 'Maricopa', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '35'; + $this->fractionalPart = '05886000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '40095000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:26', + 'updated_at' => '2019-10-06 08:03:26', + 'flag' => true, + 'wikiDataId' => 'Q984159', + ], + [ + 'id' => 121221, + 'name' => 'Marin City', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '86854000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '50914000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:26', + 'updated_at' => '2019-10-06 08:03:26', + 'flag' => true, + 'wikiDataId' => 'Q2586362', + ], + [ + 'id' => 121222, + 'name' => 'Marin County', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '05518000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '74886000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:26', + 'updated_at' => '2019-10-06 08:03:26', + 'flag' => true, + 'wikiDataId' => 'Q108117', + ], + [ + 'id' => 121223, + 'name' => 'Marina', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '68440000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '80217000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:26', + 'updated_at' => '2019-10-06 08:03:26', + 'flag' => true, + 'wikiDataId' => 'Q985077', + ], + [ + 'id' => 121224, + 'name' => 'Marina del Rey', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '98029000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '45174000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:26', + 'updated_at' => '2019-10-06 08:03:26', + 'flag' => true, + 'wikiDataId' => 'Q988140', + ], + [ + 'id' => 121264, + 'name' => 'Mariposa', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '48494000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '96628000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:27', + 'updated_at' => '2019-10-06 08:03:27', + 'flag' => true, + 'wikiDataId' => 'Q2396842', + ], + [ + 'id' => 121265, + 'name' => 'Mariposa County', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '58152000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '90552000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:27', + 'updated_at' => '2019-10-06 08:03:27', + 'flag' => true, + 'wikiDataId' => 'Q156191', + ], + [ + 'id' => 121345, + 'name' => 'Martinez', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '01937000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '13413000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:27', + 'updated_at' => '2019-10-06 08:03:27', + 'flag' => true, + 'wikiDataId' => 'Q506439', + ], + [ + 'id' => 121360, + 'name' => 'Marysville', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '14573000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '59135000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:28', + 'updated_at' => '2019-10-06 08:03:28', + 'flag' => true, + 'wikiDataId' => 'Q950966', + ], + [ + 'id' => 121401, + 'name' => 'Matheny', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '17066000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '35158000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:28', + 'updated_at' => '2019-10-06 08:03:28', + 'flag' => true, + 'wikiDataId' => 'Q6006083', + ], + [ + 'id' => 121430, + 'name' => 'Maxwell', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '27628000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '19137000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:28', + 'updated_at' => '2019-10-06 08:03:28', + 'flag' => true, + 'wikiDataId' => 'Q6796063', + ], + [ + 'id' => 121439, + 'name' => 'Mayflower Village', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '11501000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '00979000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:28', + 'updated_at' => '2019-10-06 08:03:28', + 'flag' => true, + 'wikiDataId' => 'Q773041', + ], + [ + 'id' => 121459, + 'name' => 'Maywood', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '98668000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '18535000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:29', + 'updated_at' => '2019-10-06 08:03:29', + 'flag' => true, + 'wikiDataId' => 'Q774998', + ], + [ + 'id' => 121471, + 'name' => 'McCloud', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '25571000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '13945000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:29', + 'updated_at' => '2019-10-06 08:03:29', + 'flag' => true, + 'wikiDataId' => 'Q3306166', + ], + [ + 'id' => 121500, + 'name' => 'McFarland', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '35'; + $this->fractionalPart = '67801000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '22927000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:29', + 'updated_at' => '2019-10-06 08:03:29', + 'flag' => true, + 'wikiDataId' => 'Q977395', + ], + [ + 'id' => 121524, + 'name' => 'McKinleyville', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '94652000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '124'; + $this->fractionalPart = '10062000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:29', + 'updated_at' => '2019-10-06 08:03:29', + 'flag' => true, + 'wikiDataId' => 'Q1915277', + ], + [ + 'id' => 121554, + 'name' => 'Mead Valley', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '83335000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '29615000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:30', + 'updated_at' => '2019-10-06 08:03:30', + 'flag' => true, + 'wikiDataId' => 'Q6008143', + ], + [ + 'id' => 121563, + 'name' => 'Meadow Vista', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '00101000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '02189000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:30', + 'updated_at' => '2019-10-06 08:03:30', + 'flag' => true, + 'wikiDataId' => 'Q2484478', + ], + [ + 'id' => 121567, + 'name' => 'Meadowbrook', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '72578000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '28509000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:30', + 'updated_at' => '2019-10-06 08:03:30', + 'flag' => true, + 'wikiDataId' => 'Q6803319', + ], + [ + 'id' => 121578, + 'name' => 'Mecca', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '57219000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '116'; + $this->fractionalPart = '07820000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:30', + 'updated_at' => '2019-10-06 08:03:30', + 'flag' => true, + 'wikiDataId' => 'Q2097028', + ], + [ + 'id' => 121619, + 'name' => 'Meiners Oaks', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '44694000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '27928000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:30', + 'updated_at' => '2019-10-06 08:03:30', + 'flag' => true, + 'wikiDataId' => 'Q2789372', + ], + [ + 'id' => 121652, + 'name' => 'Mendocino County', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '43362000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '123'; + $this->fractionalPart = '43155000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:31', + 'updated_at' => '2019-10-06 08:03:31', + 'flag' => true, + 'wikiDataId' => 'Q108087', + ], + [ + 'id' => 121657, + 'name' => 'Mendota', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '75356000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '38156000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:31', + 'updated_at' => '2019-10-06 08:03:31', + 'flag' => true, + 'wikiDataId' => 'Q984601', + ], + [ + 'id' => 121659, + 'name' => 'Menifee', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '72835000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '14642000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:31', + 'updated_at' => '2019-10-06 08:03:31', + 'flag' => true, + 'wikiDataId' => 'Q3476276', + ], + [ + 'id' => 121661, + 'name' => 'Menlo Park', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '45383000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '18219000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:31', + 'updated_at' => '2019-10-06 08:03:31', + 'flag' => true, + 'wikiDataId' => 'Q74195', + ], + [ + 'id' => 121667, + 'name' => 'Mentone', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '07001000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '13448000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:31', + 'updated_at' => '2019-10-06 08:03:31', + 'flag' => true, + 'wikiDataId' => 'Q3295946', + ], + [ + 'id' => 121671, + 'name' => 'Merced', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '30216000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '48297000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:31', + 'updated_at' => '2019-10-06 08:03:31', + 'flag' => true, + 'wikiDataId' => 'Q499189', + ], + [ + 'id' => 121672, + 'name' => 'Merced County', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '19186000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '71767000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:31', + 'updated_at' => '2019-10-06 08:03:31', + 'flag' => true, + 'wikiDataId' => 'Q109690', + ], + [ + 'id' => 121722, + 'name' => 'Mesa Verde', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '60586000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '114'; + $this->fractionalPart = '73107000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:31', + 'updated_at' => '2019-10-06 08:03:31', + 'flag' => true, + 'wikiDataId' => 'Q6821095', + ], + [ + 'id' => 121794, + 'name' => 'Middletown', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '75240000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '61499000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:32', + 'updated_at' => '2019-10-06 08:03:32', + 'flag' => true, + 'wikiDataId' => 'Q2625116', + ], + [ + 'id' => 121809, + 'name' => 'Midpines', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '54438000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '92045000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:32', + 'updated_at' => '2019-10-06 08:03:32', + 'flag' => true, + 'wikiDataId' => 'Q6646603', + ], + [ + 'id' => 121821, + 'name' => 'Midway City', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '74474000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '98923000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:33', + 'updated_at' => '2019-10-06 08:03:33', + 'flag' => true, + 'wikiDataId' => 'Q3313488', + ], + [ + 'id' => 121868, + 'name' => 'Mill Valley', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '90604000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '54498000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:33', + 'updated_at' => '2019-10-06 08:03:33', + 'flag' => true, + 'wikiDataId' => 'Q846413', + ], + [ + 'id' => 121871, + 'name' => 'Millbrae', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '59855000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '38719000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:33', + 'updated_at' => '2019-10-06 08:03:33', + 'flag' => true, + 'wikiDataId' => 'Q1011108', + ], + [ + 'id' => 121909, + 'name' => 'Milpitas', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '42827000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '90662000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:33', + 'updated_at' => '2019-10-06 08:03:33', + 'flag' => true, + 'wikiDataId' => 'Q927510', + ], + [ + 'id' => 121949, + 'name' => 'Minkler', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '72384000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '45818000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:34', + 'updated_at' => '2019-10-06 08:03:34', + 'flag' => true, + 'wikiDataId' => 'Q2841566', + ], + [ + 'id' => 121971, + 'name' => 'Mira Mesa', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '32'; + $this->fractionalPart = '91560000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '14392000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:34', + 'updated_at' => '2019-10-06 08:03:34', + 'flag' => true, + 'wikiDataId' => 'Q9033543', + ], + [ + 'id' => 121972, + 'name' => 'Mira Monte', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '43361000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '28511000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:34', + 'updated_at' => '2019-10-06 08:03:34', + 'flag' => true, + 'wikiDataId' => 'Q2484729', + ], + [ + 'id' => 121984, + 'name' => 'Mission Canyon', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '45083000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '71291000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:34', + 'updated_at' => '2019-10-06 08:03:34', + 'flag' => true, + 'wikiDataId' => 'Q2537425', + ], + [ + 'id' => 121985, + 'name' => 'Mission District', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '75993000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '41914000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:34', + 'updated_at' => '2019-10-06 08:03:34', + 'flag' => true, + 'wikiDataId' => 'Q7469', + ], + [ + 'id' => 121987, + 'name' => 'Mission Hills', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '68609000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '43683000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:34', + 'updated_at' => '2019-10-06 08:03:34', + 'flag' => true, + 'wikiDataId' => 'Q1918669', + ], + [ + 'id' => 121988, + 'name' => 'Mission Viejo', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '60002000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '67200000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:34', + 'updated_at' => '2019-10-06 08:03:34', + 'flag' => true, + 'wikiDataId' => 'Q506428', + ], + [ + 'id' => 122014, + 'name' => 'Modesto', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '63910000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '99688000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:35', + 'updated_at' => '2019-10-06 08:03:35', + 'flag' => true, + 'wikiDataId' => 'Q204561', + ], + [ + 'id' => 122015, + 'name' => 'Modoc County', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '58985000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '72497000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:35', + 'updated_at' => '2019-10-06 08:03:35', + 'flag' => true, + 'wikiDataId' => 'Q109695', + ], + [ + 'id' => 122023, + 'name' => 'Mojave', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '35'; + $this->fractionalPart = '05247000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '17396000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:35', + 'updated_at' => '2019-10-06 08:03:35', + 'flag' => true, + 'wikiDataId' => 'Q1943133', + ], + [ + 'id' => 122048, + 'name' => 'Mono County', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '93899000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '88671000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:35', + 'updated_at' => '2019-10-06 08:03:35', + 'flag' => true, + 'wikiDataId' => 'Q156366', + ], + [ + 'id' => 122049, + 'name' => 'Mono Vista', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '99770000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '26991000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:35', + 'updated_at' => '2019-10-06 08:03:35', + 'flag' => true, + 'wikiDataId' => 'Q2266531', + ], + [ + 'id' => 122088, + 'name' => 'Monrovia', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '14806000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '99895000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:36', + 'updated_at' => '2019-10-06 08:03:36', + 'flag' => true, + 'wikiDataId' => 'Q926988', + ], + [ + 'id' => 122098, + 'name' => 'Montague', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '72820000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '52780000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:36', + 'updated_at' => '2019-10-06 08:03:36', + 'flag' => true, + 'wikiDataId' => 'Q175682', + ], + [ + 'id' => 122100, + 'name' => 'Montalvin', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '99548000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '33275000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:36', + 'updated_at' => '2019-10-06 08:03:36', + 'flag' => true, + 'wikiDataId' => 'Q6646755', + ], + [ + 'id' => 122102, + 'name' => 'Montara', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '54216000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '51609000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:36', + 'updated_at' => '2019-10-06 08:03:36', + 'flag' => true, + 'wikiDataId' => 'Q2682480', + ], + [ + 'id' => 122107, + 'name' => 'Montclair', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '07751000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '68978000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:36', + 'updated_at' => '2019-10-06 08:03:36', + 'flag' => true, + 'wikiDataId' => 'Q853691', + ], + [ + 'id' => 122109, + 'name' => 'Monte Rio', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '46547000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '123'; + $this->fractionalPart = '00889000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:36', + 'updated_at' => '2019-10-06 08:03:36', + 'flag' => true, + 'wikiDataId' => 'Q2637332', + ], + [ + 'id' => 122110, + 'name' => 'Monte Sereno', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '23633000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '99246000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:36', + 'updated_at' => '2019-10-06 08:03:36', + 'flag' => true, + 'wikiDataId' => 'Q985343', + ], + [ + 'id' => 122114, + 'name' => 'Montebello', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '00946000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '10535000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:36', + 'updated_at' => '2019-10-06 08:03:36', + 'flag' => true, + 'wikiDataId' => 'Q664503', + ], + [ + 'id' => 122115, + 'name' => 'Montecito', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '43666000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '63208000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:36', + 'updated_at' => '2019-10-06 08:03:36', + 'flag' => true, + 'wikiDataId' => 'Q1008912', + ], + [ + 'id' => 122120, + 'name' => 'Monterey', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '60024000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '89468000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:36', + 'updated_at' => '2019-10-06 08:03:36', + 'flag' => true, + 'wikiDataId' => 'Q487315', + ], + [ + 'id' => 122121, + 'name' => 'Monterey County', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '23977000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '30890000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:36', + 'updated_at' => '2019-10-06 08:03:36', + 'flag' => true, + 'wikiDataId' => 'Q108072', + ], + [ + 'id' => 122122, + 'name' => 'Monterey Park', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '06251000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '12285000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:36', + 'updated_at' => '2019-10-06 08:03:36', + 'flag' => true, + 'wikiDataId' => 'Q927213', + ], + [ + 'id' => 122193, + 'name' => 'Monument Hills', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '66429000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '87566000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:37', + 'updated_at' => '2019-10-06 08:03:37', + 'flag' => true, + 'wikiDataId' => 'Q6022905', + ], + [ + 'id' => 122213, + 'name' => 'Moorpark', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '28556000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '88204000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:37', + 'updated_at' => '2019-10-06 08:03:37', + 'flag' => true, + 'wikiDataId' => 'Q983829', + ], + [ + 'id' => 122221, + 'name' => 'Morada', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '03853000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '24578000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:37', + 'updated_at' => '2019-10-06 08:03:37', + 'flag' => true, + 'wikiDataId' => 'Q3301194', + ], + [ + 'id' => 122222, + 'name' => 'Moraga', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '83493000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '12969000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:37', + 'updated_at' => '2019-10-06 08:03:37', + 'flag' => true, + 'wikiDataId' => 'Q594122', + ], + [ + 'id' => 122231, + 'name' => 'Moreno Valley', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '93752000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '23059000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:37', + 'updated_at' => '2019-10-06 08:03:37', + 'flag' => true, + 'wikiDataId' => 'Q494720', + ], + [ + 'id' => 122246, + 'name' => 'Morgan Hill', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '13050000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '65439000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:37', + 'updated_at' => '2019-10-06 08:03:37', + 'flag' => true, + 'wikiDataId' => 'Q609084', + ], + [ + 'id' => 122261, + 'name' => 'Morongo Valley', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '04695000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '116'; + $this->fractionalPart = '58085000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:37', + 'updated_at' => '2019-10-06 08:03:37', + 'flag' => true, + 'wikiDataId' => 'Q609184', + ], + [ + 'id' => 122288, + 'name' => 'Morro Bay', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '35'; + $this->fractionalPart = '36581000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '84990000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:38', + 'updated_at' => '2019-10-06 08:03:38', + 'flag' => true, + 'wikiDataId' => 'Q605491', + ], + [ + 'id' => 122307, + 'name' => 'Moss Beach', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '52744000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '51331000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:38', + 'updated_at' => '2019-10-06 08:03:38', + 'flag' => true, + 'wikiDataId' => 'Q3295933', + ], + [ + 'id' => 122347, + 'name' => 'Mount Hermon', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '05106000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '05857000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:38', + 'updated_at' => '2019-10-06 08:03:38', + 'flag' => true, + 'wikiDataId' => 'Q3458733', + ], + [ + 'id' => 122388, + 'name' => 'Mount Shasta', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '31024000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '31225000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:39', + 'updated_at' => '2019-10-06 08:03:39', + 'flag' => true, + 'wikiDataId' => 'Q987106', + ], + [ + 'id' => 122418, + 'name' => 'Mountain House', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '78326000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '54273000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:39', + 'updated_at' => '2019-10-06 08:03:39', + 'flag' => true, + 'wikiDataId' => 'Q3473861', + ], + [ + 'id' => 122425, + 'name' => 'Mountain Ranch', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '22825000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '54076000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:39', + 'updated_at' => '2019-10-06 08:03:39', + 'flag' => true, + 'wikiDataId' => 'Q2155376', + ], + [ + 'id' => 122431, + 'name' => 'Mountain View', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '38605000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '08385000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:39', + 'updated_at' => '2019-10-06 08:03:39', + 'flag' => true, + 'wikiDataId' => 'Q486860', + ], + [ + 'id' => 122434, + 'name' => 'Mountain View Acres', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '49666000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '34894000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:39', + 'updated_at' => '2019-10-06 08:03:39', + 'flag' => true, + 'wikiDataId' => 'Q1810220', + ], + [ + 'id' => 122488, + 'name' => 'Murphys', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '13762000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '46105000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:40', + 'updated_at' => '2019-10-06 08:03:40', + 'flag' => true, + 'wikiDataId' => 'Q1978709', + ], + [ + 'id' => 122498, + 'name' => 'Murrieta', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '55391000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '21392000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:40', + 'updated_at' => '2019-10-06 08:03:40', + 'flag' => true, + 'wikiDataId' => 'Q838787', + ], + [ + 'id' => 122499, + 'name' => 'Murrieta Hot Springs', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '56058000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '15809000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:40', + 'updated_at' => '2019-10-06 08:03:40', + 'flag' => true, + 'wikiDataId' => 'Q2129663', + ], + [ + 'id' => 122506, + 'name' => 'Muscoy', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '15418000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '34421000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:40', + 'updated_at' => '2019-10-06 08:03:40', + 'flag' => true, + 'wikiDataId' => 'Q1901255', + ], + [ + 'id' => 122525, + 'name' => 'Myrtletown', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '78874000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '124'; + $this->fractionalPart = '13034000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:40', + 'updated_at' => '2019-10-06 08:03:40', + 'flag' => true, + 'wikiDataId' => 'Q1959045', + ], + [ + 'id' => 122546, + 'name' => 'Napa', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '29714000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '28553000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:41', + 'updated_at' => '2019-10-06 08:03:41', + 'flag' => true, + 'wikiDataId' => 'Q60537', + ], + [ + 'id' => 122547, + 'name' => 'Napa County', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '50647000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '33053000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:41', + 'updated_at' => '2019-10-06 08:03:41', + 'flag' => true, + 'wikiDataId' => 'Q108137', + ], + [ + 'id' => 122591, + 'name' => 'National City', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '32'; + $this->fractionalPart = '67811000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '09920000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:41', + 'updated_at' => '2019-10-06 08:03:41', + 'flag' => true, + 'wikiDataId' => 'Q430316', + ], + [ + 'id' => 122614, + 'name' => 'Needles', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '84806000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '114'; + $this->fractionalPart = '61413000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:41', + 'updated_at' => '2019-10-06 08:03:41', + 'flag' => true, + 'wikiDataId' => 'Q846591', + ], + [ + 'id' => 122651, + 'name' => 'Nevada City', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '26173000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '01779000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:42', + 'updated_at' => '2019-10-06 08:03:42', + 'flag' => true, + 'wikiDataId' => 'Q667268', + ], + [ + 'id' => 122653, + 'name' => 'Nevada County', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '30137000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '76875000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:42', + 'updated_at' => '2019-10-06 08:03:42', + 'flag' => true, + 'wikiDataId' => 'Q109681', + ], + [ + 'id' => 122805, + 'name' => 'Newark', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '52966000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '04024000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:44', + 'updated_at' => '2019-10-06 08:03:44', + 'flag' => true, + 'wikiDataId' => 'Q850812', + ], + [ + 'id' => 122821, + 'name' => 'Newcastle', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '87407000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '13328000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:44', + 'updated_at' => '2019-10-06 08:03:44', + 'flag' => true, + 'wikiDataId' => 'Q3131990', + ], + [ + 'id' => 122834, + 'name' => 'Newman', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '31383000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '02076000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:44', + 'updated_at' => '2019-10-06 08:03:44', + 'flag' => true, + 'wikiDataId' => 'Q2836799', + ], + [ + 'id' => 122853, + 'name' => 'Newport Beach', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '61891000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '92895000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:44', + 'updated_at' => '2019-10-06 08:03:44', + 'flag' => true, + 'wikiDataId' => 'Q268873', + ], + [ + 'id' => 122885, + 'name' => 'Nice', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '12323000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '84833000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:45', + 'updated_at' => '2019-10-06 08:03:45', + 'flag' => true, + 'wikiDataId' => 'Q2108340', + ], + [ + 'id' => 122899, + 'name' => 'Niland', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '24004000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '115'; + $this->fractionalPart = '51888000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:45', + 'updated_at' => '2019-10-06 08:03:45', + 'flag' => true, + 'wikiDataId' => 'Q1606333', + ], + [ + 'id' => 122905, + 'name' => 'Nipomo', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '35'; + $this->fractionalPart = '04275000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '47600000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:45', + 'updated_at' => '2019-10-06 08:03:45', + 'flag' => true, + 'wikiDataId' => 'Q2316538', + ], + [ + 'id' => 122925, + 'name' => 'Noe Valley', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '75018000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '43369000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:45', + 'updated_at' => '2019-10-06 08:03:45', + 'flag' => true, + 'wikiDataId' => 'Q3342640', + ], + [ + 'id' => 122939, + 'name' => 'Norco', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '93113000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '54866000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:45', + 'updated_at' => '2019-10-06 08:03:45', + 'flag' => true, + 'wikiDataId' => 'Q983606', + ], + [ + 'id' => 122968, + 'name' => 'North Auburn', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '93129000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '08189000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:46', + 'updated_at' => '2019-10-06 08:03:46', + 'flag' => true, + 'wikiDataId' => 'Q1459504', + ], + [ + 'id' => 123020, + 'name' => 'North Edwards', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '35'; + $this->fractionalPart = '01664000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '83284000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:46', + 'updated_at' => '2019-10-06 08:03:46', + 'flag' => true, + 'wikiDataId' => 'Q2660151', + ], + [ + 'id' => 123021, + 'name' => 'North El Monte', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '10279000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '02423000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:46', + 'updated_at' => '2019-10-06 08:03:46', + 'flag' => true, + 'wikiDataId' => 'Q1845961', + ], + [ + 'id' => 123024, + 'name' => 'North Fair Oaks', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '47438000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '19663000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:46', + 'updated_at' => '2019-10-06 08:03:46', + 'flag' => true, + 'wikiDataId' => 'Q185972', + ], + [ + 'id' => 123039, + 'name' => 'North Highlands', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '68574000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '37217000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:47', + 'updated_at' => '2019-10-06 08:03:47', + 'flag' => true, + 'wikiDataId' => 'Q530920', + ], + [ + 'id' => 123041, + 'name' => 'North Hills', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '23639000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '48472000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:47', + 'updated_at' => '2019-10-06 08:03:47', + 'flag' => true, + 'wikiDataId' => 'Q3448834', + ], + [ + 'id' => 123042, + 'name' => 'North Hollywood', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '17223000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '37897000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:47', + 'updated_at' => '2019-10-06 08:03:47', + 'flag' => true, + 'wikiDataId' => 'Q1319697', + ], + [ + 'id' => 123050, + 'name' => 'North Lakeport', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '08831000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '90538000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:47', + 'updated_at' => '2019-10-06 08:03:47', + 'flag' => true, + 'wikiDataId' => 'Q2124913', + ], + [ + 'id' => 123094, + 'name' => 'North Richmond', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '95881000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '36747000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:47', + 'updated_at' => '2019-10-06 08:03:47', + 'flag' => true, + 'wikiDataId' => 'Q2493425', + ], + [ + 'id' => 123117, + 'name' => 'North Tustin', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '76446000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '79394000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:48', + 'updated_at' => '2019-10-06 08:03:48', + 'flag' => true, + 'wikiDataId' => 'Q2295817', + ], + [ + 'id' => 123163, + 'name' => 'Northridge', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '22834000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '53675000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:49', + 'updated_at' => '2019-10-06 08:03:49', + 'flag' => true, + 'wikiDataId' => 'Q2050326', + ], + [ + 'id' => 123191, + 'name' => 'Norwalk', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '90224000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '08173000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:49', + 'updated_at' => '2019-10-06 08:03:49', + 'flag' => true, + 'wikiDataId' => 'Q494715', + ], + [ + 'id' => 123207, + 'name' => 'Novato', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '10742000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '56970000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:49', + 'updated_at' => '2019-10-06 08:03:49', + 'flag' => true, + 'wikiDataId' => 'Q851004', + ], + [ + 'id' => 123216, + 'name' => 'Nuevo', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '80141000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '14587000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:50', + 'updated_at' => '2019-10-06 08:03:50', + 'flag' => true, + 'wikiDataId' => 'Q970741', + ], + [ + 'id' => 123248, + 'name' => 'Oak Hills', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '38313000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '38135000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:50', + 'updated_at' => '2019-10-06 08:03:50', + 'flag' => true, + 'wikiDataId' => 'Q1184432', + ], + [ + 'id' => 123257, + 'name' => 'Oak Park', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '17917000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '76287000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:50', + 'updated_at' => '2019-10-06 08:03:50', + 'flag' => true, + 'wikiDataId' => 'Q1978751', + ], + [ + 'id' => 123266, + 'name' => 'Oak View', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '40000000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '30011000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:50', + 'updated_at' => '2019-10-06 08:03:50', + 'flag' => true, + 'wikiDataId' => 'Q1876120', + ], + [ + 'id' => 123274, + 'name' => 'Oakdale', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '76659000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '84715000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:50', + 'updated_at' => '2019-10-06 08:03:50', + 'flag' => true, + 'wikiDataId' => 'Q984607', + ], + [ + 'id' => 123281, + 'name' => 'Oakhurst', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '32800000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '64932000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:50', + 'updated_at' => '2019-10-06 08:03:50', + 'flag' => true, + 'wikiDataId' => 'Q2008503', + ], + [ + 'id' => 123293, + 'name' => 'Oakland', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '80437000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '27080000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:50', + 'updated_at' => '2019-10-06 08:03:50', + 'flag' => true, + 'wikiDataId' => 'Q17042', + ], + [ + 'id' => 123298, + 'name' => 'Oakley', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '99742000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '71245000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:50', + 'updated_at' => '2019-10-06 08:03:50', + 'flag' => true, + 'wikiDataId' => 'Q950912', + ], + [ + 'id' => 123313, + 'name' => 'Oasis', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '46586000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '116'; + $this->fractionalPart = '09889000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:51', + 'updated_at' => '2019-10-06 08:03:51', + 'flag' => true, + 'wikiDataId' => 'Q7074391', + ], + [ + 'id' => 123321, + 'name' => 'Occidental', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '40741000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '94833000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:51', + 'updated_at' => '2019-10-06 08:03:51', + 'flag' => true, + 'wikiDataId' => 'Q2338133', + ], + [ + 'id' => 123341, + 'name' => 'Oceano', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '35'; + $this->fractionalPart = '09886000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '61239000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:54', + 'updated_at' => '2019-10-06 08:03:54', + 'flag' => true, + 'wikiDataId' => 'Q1826669', + ], + [ + 'id' => 123344, + 'name' => 'Oceanside', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '19587000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '37948000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:54', + 'updated_at' => '2019-10-06 08:03:54', + 'flag' => true, + 'wikiDataId' => 'Q488924', + ], + [ + 'id' => 123388, + 'name' => 'Oildale', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '35'; + $this->fractionalPart = '41968000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '01955000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:54', + 'updated_at' => '2019-10-06 08:03:54', + 'flag' => true, + 'wikiDataId' => 'Q2016874', + ], + [ + 'id' => 123390, + 'name' => 'Ojai', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '44805000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '24289000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:54', + 'updated_at' => '2019-10-06 08:03:54', + 'flag' => true, + 'wikiDataId' => 'Q837420', + ], + [ + 'id' => 123418, + 'name' => 'Old Fig Garden', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '79885000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '80515000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:55', + 'updated_at' => '2019-10-06 08:03:55', + 'flag' => true, + 'wikiDataId' => 'Q5790906', + ], + [ + 'id' => 123441, + 'name' => 'Olivehurst', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '09545000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '55219000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:55', + 'updated_at' => '2019-10-06 08:03:55', + 'flag' => true, + 'wikiDataId' => 'Q2019996', + ], + [ + 'id' => 123486, + 'name' => 'Ontario', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '06334000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '65089000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:55', + 'updated_at' => '2019-10-06 08:03:55', + 'flag' => true, + 'wikiDataId' => 'Q488134', + ], + [ + 'id' => 123495, + 'name' => 'Opal Cliffs', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '96078000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '96413000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:55', + 'updated_at' => '2019-10-06 08:03:55', + 'flag' => true, + 'wikiDataId' => 'Q2269707', + ], + [ + 'id' => 123510, + 'name' => 'Orange', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '78779000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '85311000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:56', + 'updated_at' => '2019-10-06 08:03:56', + 'flag' => true, + 'wikiDataId' => 'Q491350', + ], + [ + 'id' => 123521, + 'name' => 'Orange County', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '67691000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '77617000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:56', + 'updated_at' => '2019-10-06 08:03:56', + 'flag' => true, + 'wikiDataId' => 'Q5925', + ], + [ + 'id' => 123522, + 'name' => 'Orange Cove', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '62439000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '31373000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:56', + 'updated_at' => '2019-10-06 08:03:56', + 'flag' => true, + 'wikiDataId' => 'Q83845', + ], + [ + 'id' => 123530, + 'name' => 'Orangevale', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '67851000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '22578000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:56', + 'updated_at' => '2019-10-06 08:03:56', + 'flag' => true, + 'wikiDataId' => 'Q2028231', + ], + [ + 'id' => 123541, + 'name' => 'Orcutt', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '86526000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '43600000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:56', + 'updated_at' => '2019-10-06 08:03:56', + 'flag' => true, + 'wikiDataId' => 'Q1636815', + ], + [ + 'id' => 123554, + 'name' => 'Orinda', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '87715000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '17969000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:56', + 'updated_at' => '2019-10-06 08:03:56', + 'flag' => true, + 'wikiDataId' => 'Q206464', + ], + [ + 'id' => 123559, + 'name' => 'Orland', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '74738000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '19637000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:56', + 'updated_at' => '2019-10-06 08:03:56', + 'flag' => true, + 'wikiDataId' => 'Q2679379', + ], + [ + 'id' => 123577, + 'name' => 'Orosi', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '54495000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '28734000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:56', + 'updated_at' => '2019-10-06 08:03:56', + 'flag' => true, + 'wikiDataId' => 'Q3301639', + ], + [ + 'id' => 123578, + 'name' => 'Oroville', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '51394000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '55776000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:56', + 'updated_at' => '2019-10-06 08:03:56', + 'flag' => true, + 'wikiDataId' => 'Q850972', + ], + [ + 'id' => 123580, + 'name' => 'Oroville East', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '51126000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '47519000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:56', + 'updated_at' => '2019-10-06 08:03:56', + 'flag' => true, + 'wikiDataId' => 'Q2671843', + ], + [ + 'id' => 123689, + 'name' => 'Oxnard', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '19750000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '17705000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:57', + 'updated_at' => '2019-10-06 08:03:57', + 'flag' => true, + 'wikiDataId' => 'Q209338', + ], + [ + 'id' => 123705, + 'name' => 'Pacheco', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '98353000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '07524000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:58', + 'updated_at' => '2019-10-06 08:03:58', + 'flag' => true, + 'wikiDataId' => 'Q2752145', + ], + [ + 'id' => 123710, + 'name' => 'Pacific Grove', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '61774000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '91662000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:58', + 'updated_at' => '2019-10-06 08:03:58', + 'flag' => true, + 'wikiDataId' => 'Q117514', + ], + [ + 'id' => 123711, + 'name' => 'Pacifica', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '61383000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '48692000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:58', + 'updated_at' => '2019-10-06 08:03:58', + 'flag' => true, + 'wikiDataId' => 'Q925925', + ], + [ + 'id' => 123729, + 'name' => 'Pajaro', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '90412000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '74856000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:58', + 'updated_at' => '2019-10-06 08:03:58', + 'flag' => true, + 'wikiDataId' => 'Q2279386', + ], + [ + 'id' => 123735, + 'name' => 'Palermo', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '43544000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '53802000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:58', + 'updated_at' => '2019-10-06 08:03:58', + 'flag' => true, + 'wikiDataId' => 'Q2565536', + ], + [ + 'id' => 123748, + 'name' => 'Palm Desert', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '72255000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '116'; + $this->fractionalPart = '37697000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:58', + 'updated_at' => '2019-10-06 08:03:58', + 'flag' => true, + 'wikiDataId' => 'Q399976', + ], + [ + 'id' => 123752, + 'name' => 'Palm Springs', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '83030000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '116'; + $this->fractionalPart = '54529000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:58', + 'updated_at' => '2019-10-06 08:03:58', + 'flag' => true, + 'wikiDataId' => 'Q488004', + ], + [ + 'id' => 123757, + 'name' => 'Palmdale', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '57943000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '11646000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:58', + 'updated_at' => '2019-10-06 08:03:58', + 'flag' => true, + 'wikiDataId' => 'Q488940', + ], + [ + 'id' => 123781, + 'name' => 'Palo Alto', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '44188000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '14302000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:58', + 'updated_at' => '2019-10-06 08:03:58', + 'flag' => true, + 'wikiDataId' => 'Q47265', + ], + [ + 'id' => 123783, + 'name' => 'Palo Cedro', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '56376000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '23889000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:58', + 'updated_at' => '2019-10-06 08:03:58', + 'flag' => true, + 'wikiDataId' => 'Q2401513', + ], + [ + 'id' => 123791, + 'name' => 'Palos Verdes Estates', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '80105000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '39245000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:58', + 'updated_at' => '2019-10-06 08:03:58', + 'flag' => true, + 'wikiDataId' => 'Q948149', + ], + [ + 'id' => 123818, + 'name' => 'Paradise', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '75961000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '62192000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:59', + 'updated_at' => '2019-10-06 08:03:59', + 'flag' => true, + 'wikiDataId' => 'Q387183', + ], + [ + 'id' => 123824, + 'name' => 'Paramount', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '88946000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '15979000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:59', + 'updated_at' => '2019-10-06 08:03:59', + 'flag' => true, + 'wikiDataId' => 'Q927134', + ], + [ + 'id' => 123874, + 'name' => 'Parksdale', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '94717000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '02294000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:59', + 'updated_at' => '2019-10-06 08:03:59', + 'flag' => true, + 'wikiDataId' => 'Q2734538', + ], + [ + 'id' => 123881, + 'name' => 'Parkway', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '49602000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '45884000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:59', + 'updated_at' => '2019-10-06 08:03:59', + 'flag' => true, + 'wikiDataId' => 'Q6644903', + ], + [ + 'id' => 123882, + 'name' => 'Parkwood', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '92689000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '04461000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:59', + 'updated_at' => '2019-10-06 08:03:59', + 'flag' => true, + 'wikiDataId' => 'Q3301618', + ], + [ + 'id' => 123884, + 'name' => 'Parlier', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '61162000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '52707000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:59', + 'updated_at' => '2019-10-06 08:03:59', + 'flag' => true, + 'wikiDataId' => 'Q985259', + ], + [ + 'id' => 123897, + 'name' => 'Pasadena', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '14778000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '14452000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:59', + 'updated_at' => '2019-10-06 08:03:59', + 'flag' => true, + 'wikiDataId' => 'Q485176', + ], + [ + 'id' => 123899, + 'name' => 'Pasatiempo', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '00439000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '02580000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:59', + 'updated_at' => '2019-10-06 08:03:59', + 'flag' => true, + 'wikiDataId' => 'Q7141622', + ], + [ + 'id' => 123904, + 'name' => 'Paso Robles', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '35'; + $this->fractionalPart = '62664000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '69100000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:59', + 'updated_at' => '2019-10-06 08:03:59', + 'flag' => true, + 'wikiDataId' => 'Q586528', + ], + [ + 'id' => 123916, + 'name' => 'Patterson', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '47160000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '12966000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:00', + 'updated_at' => '2019-10-06 08:04:00', + 'flag' => true, + 'wikiDataId' => 'Q938238', + ], + [ + 'id' => 123917, + 'name' => 'Patterson Tract', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '37952000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '29560000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:00', + 'updated_at' => '2019-10-06 08:04:00', + 'flag' => true, + 'wikiDataId' => 'Q6067025', + ], + [ + 'id' => 123983, + 'name' => 'Pedley', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '97529000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '47588000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:00', + 'updated_at' => '2019-10-06 08:04:00', + 'flag' => true, + 'wikiDataId' => 'Q1672897', + ], + [ + 'id' => 124024, + 'name' => 'Penn Valley', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '19600000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '19107000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:01', + 'updated_at' => '2019-10-06 08:04:01', + 'flag' => true, + 'wikiDataId' => 'Q2078030', + ], + [ + 'id' => 124028, + 'name' => 'Penngrove', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '29964000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '66665000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:01', + 'updated_at' => '2019-10-06 08:04:01', + 'flag' => true, + 'wikiDataId' => 'Q3476201', + ], + [ + 'id' => 124066, + 'name' => 'Perris', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '78252000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '22865000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:01', + 'updated_at' => '2019-10-06 08:04:01', + 'flag' => true, + 'wikiDataId' => 'Q983609', + ], + [ + 'id' => 124101, + 'name' => 'Petaluma', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '23242000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '63665000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:02', + 'updated_at' => '2019-10-06 08:04:02', + 'flag' => true, + 'wikiDataId' => 'Q720087', + ], + [ + 'id' => 124119, + 'name' => 'Phelan', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '42611000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '57228000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:02', + 'updated_at' => '2019-10-06 08:04:02', + 'flag' => true, + 'wikiDataId' => 'Q3470873', + ], + [ + 'id' => 124150, + 'name' => 'Phoenix Lake', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '00594000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '30702000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:02', + 'updated_at' => '2019-10-06 08:04:02', + 'flag' => true, + 'wikiDataId' => 'Q6074404', + ], + [ + 'id' => 124162, + 'name' => 'Pico Rivera', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '98307000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '09673000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:02', + 'updated_at' => '2019-10-06 08:04:02', + 'flag' => true, + 'wikiDataId' => 'Q828706', + ], + [ + 'id' => 124168, + 'name' => 'Piedmont', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '82437000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '23163000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:02', + 'updated_at' => '2019-10-06 08:04:02', + 'flag' => true, + 'wikiDataId' => 'Q570301', + ], + [ + 'id' => 124222, + 'name' => 'Pine Grove', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '41297000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '65882000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:03', + 'updated_at' => '2019-10-06 08:04:03', + 'flag' => true, + 'wikiDataId' => 'Q3476081', + ], + [ + 'id' => 124226, + 'name' => 'Pine Hills', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '73318000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '124'; + $this->fractionalPart = '15228000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:03', + 'updated_at' => '2019-10-06 08:04:03', + 'flag' => true, + 'wikiDataId' => 'Q512329', + ], + [ + 'id' => 124239, + 'name' => 'Pine Mountain Club', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '84637000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '14955000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:03', + 'updated_at' => '2019-10-06 08:04:03', + 'flag' => true, + 'wikiDataId' => 'Q3475885', + ], + [ + 'id' => 124246, + 'name' => 'Pine Valley', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '32'; + $this->fractionalPart = '82144000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '116'; + $this->fractionalPart = '52918000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:03', + 'updated_at' => '2019-10-06 08:04:03', + 'flag' => true, + 'wikiDataId' => 'Q1844155', + ], + [ + 'id' => 124271, + 'name' => 'Pinole', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '00437000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '29886000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:03', + 'updated_at' => '2019-10-06 08:04:03', + 'flag' => true, + 'wikiDataId' => 'Q629763', + ], + [ + 'id' => 124274, + 'name' => 'Pioneer', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '43186000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '57187000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:03', + 'updated_at' => '2019-10-06 08:04:03', + 'flag' => true, + 'wikiDataId' => 'Q2411171', + ], + [ + 'id' => 124280, + 'name' => 'Piru', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '41527000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '79398000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:03', + 'updated_at' => '2019-10-06 08:04:03', + 'flag' => true, + 'wikiDataId' => 'Q3322382', + ], + [ + 'id' => 124283, + 'name' => 'Pismo Beach', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '35'; + $this->fractionalPart = '14275000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '64128000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:03', + 'updated_at' => '2019-10-06 08:04:03', + 'flag' => true, + 'wikiDataId' => 'Q570287', + ], + [ + 'id' => 124294, + 'name' => 'Pittsburg', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '02798000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '88468000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:04', + 'updated_at' => '2019-10-06 08:04:04', + 'flag' => true, + 'wikiDataId' => 'Q281248', + ], + [ + 'id' => 124308, + 'name' => 'Pixley', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '35'; + $this->fractionalPart = '96856000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '29178000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:04', + 'updated_at' => '2019-10-06 08:04:04', + 'flag' => true, + 'wikiDataId' => 'Q979976', + ], + [ + 'id' => 124309, + 'name' => 'Piñon Hills', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '43333000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '64672000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:04', + 'updated_at' => '2020-05-02 01:53:22', + 'flag' => true, + 'wikiDataId' => 'Q3478240', + ], + [ + 'id' => 124310, + 'name' => 'Placentia', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '87224000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '87034000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:04', + 'updated_at' => '2019-10-06 08:04:04', + 'flag' => true, + 'wikiDataId' => 'Q864130', + ], + [ + 'id' => 124311, + 'name' => 'Placer County', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '06343000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '71766000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:04', + 'updated_at' => '2019-10-06 08:04:04', + 'flag' => true, + 'wikiDataId' => 'Q156353', + ], + [ + 'id' => 124312, + 'name' => 'Placerville', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '72963000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '79855000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:04', + 'updated_at' => '2019-10-06 08:04:04', + 'flag' => true, + 'wikiDataId' => 'Q927485', + ], + [ + 'id' => 124338, + 'name' => 'Planada', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '29077000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '31852000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:04', + 'updated_at' => '2019-10-06 08:04:04', + 'flag' => true, + 'wikiDataId' => 'Q3306176', + ], + [ + 'id' => 124372, + 'name' => 'Pleasant Hill', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '94798000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '06080000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:04', + 'updated_at' => '2019-10-06 08:04:04', + 'flag' => true, + 'wikiDataId' => 'Q950926', + ], + [ + 'id' => 124384, + 'name' => 'Pleasanton', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '66243000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '87468000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:04', + 'updated_at' => '2019-10-06 08:04:04', + 'flag' => true, + 'wikiDataId' => 'Q747444', + ], + [ + 'id' => 124395, + 'name' => 'Plumas County', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '00468000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '83860000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:05', + 'updated_at' => '2019-10-06 08:04:05', + 'flag' => true, + 'wikiDataId' => 'Q156342', + ], + [ + 'id' => 124396, + 'name' => 'Plumas Lake', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '02073000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '55802000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:05', + 'updated_at' => '2019-10-06 08:04:05', + 'flag' => true, + 'wikiDataId' => 'Q6644607', + ], + [ + 'id' => 124453, + 'name' => 'Pollock Pines', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '76158000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '58611000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:05', + 'updated_at' => '2019-10-06 08:04:05', + 'flag' => true, + 'wikiDataId' => 'Q589958', + ], + [ + 'id' => 124459, + 'name' => 'Pomona', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '05529000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '75228000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:05', + 'updated_at' => '2019-10-06 08:04:05', + 'flag' => true, + 'wikiDataId' => 'Q486868', + ], + [ + 'id' => 124486, + 'name' => 'Poplar-Cotton Center', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '05635000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '14919000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:06', + 'updated_at' => '2019-10-06 08:04:06', + 'flag' => true, + 'wikiDataId' => 'Q3303186', + ], + [ + 'id' => 124510, + 'name' => 'Port Hueneme', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '14778000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '19511000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:06', + 'updated_at' => '2019-10-06 08:04:06', + 'flag' => true, + 'wikiDataId' => 'Q983853', + ], + [ + 'id' => 124556, + 'name' => 'Porterville', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '06523000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '01677000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:06', + 'updated_at' => '2019-10-06 08:04:06', + 'flag' => true, + 'wikiDataId' => 'Q927173', + ], + [ + 'id' => 124566, + 'name' => 'Portola', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '81046000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '46910000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:06', + 'updated_at' => '2019-10-06 08:04:06', + 'flag' => true, + 'wikiDataId' => 'Q1011130', + ], + [ + 'id' => 124567, + 'name' => 'Portola Hills', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '67919000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '63116000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:06', + 'updated_at' => '2019-10-06 08:04:06', + 'flag' => true, + 'wikiDataId' => 'Q2233828', + ], + [ + 'id' => 124568, + 'name' => 'Portola Valley', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '38411000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '23524000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:06', + 'updated_at' => '2019-10-06 08:04:06', + 'flag' => true, + 'wikiDataId' => 'Q1011116', + ], + [ + 'id' => 124606, + 'name' => 'Poway', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '32'; + $this->fractionalPart = '96282000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '03586000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:07', + 'updated_at' => '2019-10-06 08:04:07', + 'flag' => true, + 'wikiDataId' => 'Q540727', + ], + [ + 'id' => 124725, + 'name' => 'Prunedale', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '77579000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '66967000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:08', + 'updated_at' => '2019-10-06 08:04:08', + 'flag' => true, + 'wikiDataId' => 'Q3296010', + ], + [ + 'id' => 124777, + 'name' => 'Quail Valley', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '70697000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '24504000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:09', + 'updated_at' => '2019-10-06 08:04:09', + 'flag' => true, + 'wikiDataId' => 'Q2547023', + ], + [ + 'id' => 124782, + 'name' => 'Quartz Hill', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '64526000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '21813000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:09', + 'updated_at' => '2019-10-06 08:04:09', + 'flag' => true, + 'wikiDataId' => 'Q1928358', + ], + [ + 'id' => 124799, + 'name' => 'Quincy', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '93682000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '94647000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:10', + 'updated_at' => '2019-10-06 08:04:10', + 'flag' => true, + 'wikiDataId' => 'Q1979185', + ], + [ + 'id' => 124823, + 'name' => 'Rainbow', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '41031000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '14781000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:10', + 'updated_at' => '2019-10-06 08:04:10', + 'flag' => true, + 'wikiDataId' => 'Q595723', + ], + [ + 'id' => 124838, + 'name' => 'Ramona', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '04171000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '116'; + $this->fractionalPart = '86808000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:10', + 'updated_at' => '2019-10-06 08:04:10', + 'flag' => true, + 'wikiDataId' => 'Q1928388', + ], + [ + 'id' => 124848, + 'name' => 'Rancho Calaveras', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '12742000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '85827000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:10', + 'updated_at' => '2019-10-06 08:04:10', + 'flag' => true, + 'wikiDataId' => 'Q982610', + ], + [ + 'id' => 124849, + 'name' => 'Rancho Cordova', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '58907000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '30273000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:10', + 'updated_at' => '2019-10-06 08:04:10', + 'flag' => true, + 'wikiDataId' => 'Q986928', + ], + [ + 'id' => 124850, + 'name' => 'Rancho Cucamonga', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '10640000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '59311000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:10', + 'updated_at' => '2019-10-06 08:04:10', + 'flag' => true, + 'wikiDataId' => 'Q495365', + ], + [ + 'id' => 124851, + 'name' => 'Rancho Mirage', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '73974000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '116'; + $this->fractionalPart = '41279000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:10', + 'updated_at' => '2019-10-06 08:04:10', + 'flag' => true, + 'wikiDataId' => 'Q506446', + ], + [ + 'id' => 124852, + 'name' => 'Rancho Murieta', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '50185000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '09467000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:10', + 'updated_at' => '2019-10-06 08:04:10', + 'flag' => true, + 'wikiDataId' => 'Q2313069', + ], + [ + 'id' => 124853, + 'name' => 'Rancho Palos Verdes', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '74446000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '38702000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:10', + 'updated_at' => '2019-10-06 08:04:10', + 'flag' => true, + 'wikiDataId' => 'Q180226', + ], + [ + 'id' => 124854, + 'name' => 'Rancho Penasquitos', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '32'; + $this->fractionalPart = '95949000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '11531000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:10', + 'updated_at' => '2019-10-06 08:04:10', + 'flag' => true, + 'wikiDataId' => 'Q7291165', + ], + [ + 'id' => 124855, + 'name' => 'Rancho San Diego', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '32'; + $this->fractionalPart = '74727000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '116'; + $this->fractionalPart = '93530000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:10', + 'updated_at' => '2019-10-06 08:04:10', + 'flag' => true, + 'wikiDataId' => 'Q1489677', + ], + [ + 'id' => 124856, + 'name' => 'Rancho Santa Fe', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '02032000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '20281000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:10', + 'updated_at' => '2019-10-06 08:04:10', + 'flag' => true, + 'wikiDataId' => 'Q979425', + ], + [ + 'id' => 124857, + 'name' => 'Rancho Santa Margarita', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '64086000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '60310000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:10', + 'updated_at' => '2019-10-06 08:04:10', + 'flag' => true, + 'wikiDataId' => 'Q985344', + ], + [ + 'id' => 124858, + 'name' => 'Rancho Tehama Reserve', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '01569000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '40072000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:10', + 'updated_at' => '2019-10-06 08:04:10', + 'flag' => true, + 'wikiDataId' => 'Q2263159', + ], + [ + 'id' => 124940, + 'name' => 'Red Bluff', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '17849000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '23583000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:11', + 'updated_at' => '2019-10-06 08:04:11', + 'flag' => true, + 'wikiDataId' => 'Q546468', + ], + [ + 'id' => 124945, + 'name' => 'Red Corral', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '41165000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '60552000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:11', + 'updated_at' => '2019-10-06 08:04:11', + 'flag' => true, + 'wikiDataId' => 'Q6102996', + ], + [ + 'id' => 124966, + 'name' => 'Redding', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '58654000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '39168000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:11', + 'updated_at' => '2019-10-06 08:04:11', + 'flag' => true, + 'wikiDataId' => 'Q495361', + ], + [ + 'id' => 124976, + 'name' => 'Redlands', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '05557000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '18254000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:11', + 'updated_at' => '2019-10-06 08:04:11', + 'flag' => true, + 'wikiDataId' => 'Q753830', + ], + [ + 'id' => 124980, + 'name' => 'Redondo Beach', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '84918000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '38841000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:11', + 'updated_at' => '2019-10-06 08:04:11', + 'flag' => true, + 'wikiDataId' => 'Q840678', + ], + [ + 'id' => 124983, + 'name' => 'Redway', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '12014000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '123'; + $this->fractionalPart = '82336000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:11', + 'updated_at' => '2019-10-06 08:04:11', + 'flag' => true, + 'wikiDataId' => 'Q2431290', + ], + [ + 'id' => 124986, + 'name' => 'Redwood City', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '48522000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '23635000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:11', + 'updated_at' => '2019-10-06 08:04:11', + 'flag' => true, + 'wikiDataId' => 'Q505549', + ], + [ + 'id' => 124989, + 'name' => 'Redwood Shores', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '53188000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '24802000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:12', + 'updated_at' => '2019-10-06 08:04:12', + 'flag' => true, + 'wikiDataId' => 'Q1267489', + ], + [ + 'id' => 124990, + 'name' => 'Redwood Valley', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '26544000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '123'; + $this->fractionalPart = '20445000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:12', + 'updated_at' => '2019-10-06 08:04:12', + 'flag' => true, + 'wikiDataId' => 'Q3459093', + ], + [ + 'id' => 124993, + 'name' => 'Reedley', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '59634000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '45040000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:12', + 'updated_at' => '2019-10-06 08:04:12', + 'flag' => true, + 'wikiDataId' => 'Q984609', + ], + [ + 'id' => 125049, + 'name' => 'Rialto', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '10640000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '37032000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:12', + 'updated_at' => '2019-10-06 08:04:12', + 'flag' => true, + 'wikiDataId' => 'Q289661', + ], + [ + 'id' => 125066, + 'name' => 'Richgrove', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '35'; + $this->fractionalPart = '79662000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '10788000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:12', + 'updated_at' => '2019-10-06 08:04:12', + 'flag' => true, + 'wikiDataId' => 'Q2153913', + ], + [ + 'id' => 125096, + 'name' => 'Richmond', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '93576000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '34775000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:13', + 'updated_at' => '2019-10-06 08:04:13', + 'flag' => true, + 'wikiDataId' => 'Q495377', + ], + [ + 'id' => 125118, + 'name' => 'Ridgecrest', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '35'; + $this->fractionalPart = '62246000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '67090000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:03', + 'updated_at' => '2019-10-06 08:06:03', + 'flag' => true, + 'wikiDataId' => 'Q862704', + ], + [ + 'id' => 125127, + 'name' => 'Ridgemark', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '81246000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '36577000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:03', + 'updated_at' => '2019-10-06 08:06:03', + 'flag' => true, + 'wikiDataId' => 'Q1844398', + ], + [ + 'id' => 125151, + 'name' => 'Rio Del Mar', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '96828000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '90023000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:03', + 'updated_at' => '2019-10-06 08:06:03', + 'flag' => true, + 'wikiDataId' => 'Q1898688', + ], + [ + 'id' => 125152, + 'name' => 'Rio Dell', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '49930000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '124'; + $this->fractionalPart = '10644000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:03', + 'updated_at' => '2019-10-06 08:06:03', + 'flag' => true, + 'wikiDataId' => 'Q2544177', + ], + [ + 'id' => 125157, + 'name' => 'Rio Linda', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '69101000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '44857000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:03', + 'updated_at' => '2019-10-06 08:06:03', + 'flag' => true, + 'wikiDataId' => 'Q2154437', + ], + [ + 'id' => 125161, + 'name' => 'Rio Vista', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '16389000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '69583000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:03', + 'updated_at' => '2019-10-06 08:06:03', + 'flag' => true, + 'wikiDataId' => 'Q985257', + ], + [ + 'id' => 125168, + 'name' => 'Ripon', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '74159000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '12438000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:03', + 'updated_at' => '2019-10-06 08:06:03', + 'flag' => true, + 'wikiDataId' => 'Q986098', + ], + [ + 'id' => 125190, + 'name' => 'Riverbank', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '73604000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '93549000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:04', + 'updated_at' => '2019-10-06 08:06:04', + 'flag' => true, + 'wikiDataId' => 'Q1011120', + ], + [ + 'id' => 125196, + 'name' => 'Riverdale', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '43106000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '85958000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:04', + 'updated_at' => '2019-10-06 08:06:04', + 'flag' => true, + 'wikiDataId' => 'Q3458236', + ], + [ + 'id' => 125199, + 'name' => 'Riverdale Park', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '60938000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '05188000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:04', + 'updated_at' => '2019-10-06 08:06:04', + 'flag' => true, + 'wikiDataId' => 'Q2687742', + ], + [ + 'id' => 125209, + 'name' => 'Riverside', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '95335000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '39616000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:04', + 'updated_at' => '2019-10-06 08:06:04', + 'flag' => true, + 'wikiDataId' => 'Q49243', + ], + [ + 'id' => 125210, + 'name' => 'Riverside County', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '74368000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '115'; + $this->fractionalPart = '99386000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:04', + 'updated_at' => '2019-10-06 08:06:04', + 'flag' => true, + 'wikiDataId' => 'Q108111', + ], + [ + 'id' => 125313, + 'name' => 'Rocklin', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '79073000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '23578000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:05', + 'updated_at' => '2019-10-06 08:06:05', + 'flag' => true, + 'wikiDataId' => 'Q984599', + ], + [ + 'id' => 125341, + 'name' => 'Rodeo', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '03298000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '26691000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:05', + 'updated_at' => '2019-10-06 08:06:05', + 'flag' => true, + 'wikiDataId' => 'Q2094336', + ], + [ + 'id' => 125358, + 'name' => 'Rohnert Park', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '33964000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '70110000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:06', + 'updated_at' => '2019-10-06 08:06:06', + 'flag' => true, + 'wikiDataId' => 'Q986835', + ], + [ + 'id' => 125366, + 'name' => 'Rolling Hills', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '75739000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '35752000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:06', + 'updated_at' => '2019-10-06 08:06:06', + 'flag' => true, + 'wikiDataId' => 'Q958507', + ], + [ + 'id' => 125367, + 'name' => 'Rolling Hills Estates', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '78779000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '35813000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:06', + 'updated_at' => '2019-10-06 08:06:06', + 'flag' => true, + 'wikiDataId' => 'Q953528', + ], + [ + 'id' => 125370, + 'name' => 'Rollingwood', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '96520000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '32997000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:06', + 'updated_at' => '2019-10-06 08:06:06', + 'flag' => true, + 'wikiDataId' => 'Q3303221', + ], + [ + 'id' => 125384, + 'name' => 'Romoland', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '74585000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '17503000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:06', + 'updated_at' => '2019-10-06 08:06:06', + 'flag' => true, + 'wikiDataId' => 'Q2026167', + ], + [ + 'id' => 125397, + 'name' => 'Rosamond', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '86414000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '16341000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:06', + 'updated_at' => '2019-10-06 08:06:06', + 'flag' => true, + 'wikiDataId' => 'Q2005156', + ], + [ + 'id' => 125419, + 'name' => 'Rosedale', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '35'; + $this->fractionalPart = '38357000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '14538000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:06', + 'updated_at' => '2019-10-06 08:06:06', + 'flag' => true, + 'wikiDataId' => 'Q2267331', + ], + [ + 'id' => 125424, + 'name' => 'Roseland', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '42213000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '72804000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:06', + 'updated_at' => '2019-10-06 08:06:06', + 'flag' => true, + 'wikiDataId' => 'Q2166903', + ], + [ + 'id' => 125429, + 'name' => 'Rosemead', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '08057000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '07285000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:06', + 'updated_at' => '2019-10-06 08:06:06', + 'flag' => true, + 'wikiDataId' => 'Q910851', + ], + [ + 'id' => 125431, + 'name' => 'Rosemont', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '55185000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '36467000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:06', + 'updated_at' => '2019-10-06 08:06:06', + 'flag' => true, + 'wikiDataId' => 'Q973717', + ], + [ + 'id' => 125441, + 'name' => 'Roseville', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '75212000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '28801000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:07', + 'updated_at' => '2019-10-06 08:06:07', + 'flag' => true, + 'wikiDataId' => 'Q491340', + ], + [ + 'id' => 125451, + 'name' => 'Ross', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '96242000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '55498000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:07', + 'updated_at' => '2019-10-06 08:06:07', + 'flag' => true, + 'wikiDataId' => 'Q2747056', + ], + [ + 'id' => 125455, + 'name' => 'Rossmoor', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '78557000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '08506000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:07', + 'updated_at' => '2019-10-06 08:06:07', + 'flag' => true, + 'wikiDataId' => 'Q1649551', + ], + [ + 'id' => 125480, + 'name' => 'Rowland Heights', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '97612000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '90534000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:07', + 'updated_at' => '2019-10-06 08:06:07', + 'flag' => true, + 'wikiDataId' => 'Q1251747', + ], + [ + 'id' => 125501, + 'name' => 'Rubidoux', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '99613000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '40560000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:07', + 'updated_at' => '2019-10-06 08:06:07', + 'flag' => true, + 'wikiDataId' => 'Q2104941', + ], + [ + 'id' => 125514, + 'name' => 'Running Springs', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '20779000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '10920000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:07', + 'updated_at' => '2019-10-06 08:06:07', + 'flag' => true, + 'wikiDataId' => 'Q1966095', + ], + [ + 'id' => 125577, + 'name' => 'Sacramento', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '58157000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '49440000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:08', + 'updated_at' => '2019-10-06 08:06:08', + 'flag' => true, + 'wikiDataId' => 'Q18013', + ], + [ + 'id' => 125578, + 'name' => 'Sacramento County', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '44932000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '34424000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:08', + 'updated_at' => '2019-10-06 08:06:08', + 'flag' => true, + 'wikiDataId' => 'Q108131', + ], + [ + 'id' => 125647, + 'name' => 'Saint Helena', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '50519000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '47026000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:09', + 'updated_at' => '2019-10-06 08:06:09', + 'flag' => true, + 'wikiDataId' => 'Q125733', + ], + [ + 'id' => 125742, + 'name' => 'Salida', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '70576000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '08494000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:10', + 'updated_at' => '2019-10-06 08:06:10', + 'flag' => true, + 'wikiDataId' => 'Q2233853', + ], + [ + 'id' => 125747, + 'name' => 'Salinas', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '67774000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '65550000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:10', + 'updated_at' => '2019-10-06 08:06:10', + 'flag' => true, + 'wikiDataId' => 'Q488125', + ], + [ + 'id' => 125770, + 'name' => 'Salton City', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '29865000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '115'; + $this->fractionalPart = '95611000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:10', + 'updated_at' => '2019-10-06 08:06:10', + 'flag' => true, + 'wikiDataId' => 'Q426341', + ], + [ + 'id' => 125783, + 'name' => 'San Andreas', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '19603000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '68049000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:10', + 'updated_at' => '2019-10-06 08:06:10', + 'flag' => true, + 'wikiDataId' => 'Q2371380', + ], + [ + 'id' => 125785, + 'name' => 'San Anselmo', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '97465000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '56164000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:10', + 'updated_at' => '2019-10-06 08:06:10', + 'flag' => true, + 'wikiDataId' => 'Q984597', + ], + [ + 'id' => 125788, + 'name' => 'San Antonio Heights', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '15556000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '65644000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:10', + 'updated_at' => '2019-10-06 08:06:10', + 'flag' => true, + 'wikiDataId' => 'Q2183469', + ], + [ + 'id' => 125792, + 'name' => 'San Benito County', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '60571000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '07500000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:10', + 'updated_at' => '2019-10-06 08:06:10', + 'flag' => true, + 'wikiDataId' => 'Q109656', + ], + [ + 'id' => 125793, + 'name' => 'San Bernardino', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '10834000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '28977000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:10', + 'updated_at' => '2019-10-06 08:06:10', + 'flag' => true, + 'wikiDataId' => 'Q486168', + ], + [ + 'id' => 125794, + 'name' => 'San Bernardino County', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '84143000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '116'; + $this->fractionalPart = '17846000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:10', + 'updated_at' => '2019-10-06 08:06:10', + 'flag' => true, + 'wikiDataId' => 'Q108053', + ], + [ + 'id' => 125795, + 'name' => 'San Bruno', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '63049000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '41108000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:10', + 'updated_at' => '2019-10-06 08:06:10', + 'flag' => true, + 'wikiDataId' => 'Q667738', + ], + [ + 'id' => 125798, + 'name' => 'San Carlos', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '50716000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '26052000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:10', + 'updated_at' => '2019-10-06 08:06:10', + 'flag' => true, + 'wikiDataId' => 'Q383234', + ], + [ + 'id' => 125800, + 'name' => 'San Clemente', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '42697000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '61199000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:10', + 'updated_at' => '2019-10-06 08:06:10', + 'flag' => true, + 'wikiDataId' => 'Q675070', + ], + [ + 'id' => 125802, + 'name' => 'San Diego', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '32'; + $this->fractionalPart = '71571000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '16472000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:10', + 'updated_at' => '2019-10-06 08:06:10', + 'flag' => true, + 'wikiDataId' => 'Q16552', + ], + [ + 'id' => 125803, + 'name' => 'San Diego Country Estates', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '00671000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '116'; + $this->fractionalPart = '78364000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:10', + 'updated_at' => '2019-10-06 08:06:10', + 'flag' => true, + 'wikiDataId' => 'Q2078862', + ], + [ + 'id' => 125804, + 'name' => 'San Diego County', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '02820000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '116'; + $this->fractionalPart = '77021000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:10', + 'updated_at' => '2019-10-06 08:06:10', + 'flag' => true, + 'wikiDataId' => 'Q108143', + ], + [ + 'id' => 125805, + 'name' => 'San Dimas', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '10668000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '80673000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:10', + 'updated_at' => '2019-10-06 08:06:10', + 'flag' => true, + 'wikiDataId' => 'Q923845', + ], + [ + 'id' => 125808, + 'name' => 'San Fernando', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '28195000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '43897000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:10', + 'updated_at' => '2019-10-06 08:06:10', + 'flag' => true, + 'wikiDataId' => 'Q846406', + ], + [ + 'id' => 125809, + 'name' => 'San Francisco', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '77493000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '41942000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:11', + 'updated_at' => '2019-10-06 08:06:11', + 'flag' => true, + 'wikiDataId' => 'Q62', + ], + [ + 'id' => 125810, + 'name' => 'San Gabriel', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '09611000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '10583000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:11', + 'updated_at' => '2019-10-06 08:06:11', + 'flag' => true, + 'wikiDataId' => 'Q953437', + ], + [ + 'id' => 125811, + 'name' => 'San Jacinto', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '78391000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '116'; + $this->fractionalPart = '95864000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:11', + 'updated_at' => '2019-10-06 08:06:11', + 'flag' => true, + 'wikiDataId' => 'Q985265', + ], + [ + 'id' => 125813, + 'name' => 'San Joaquin', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '60662000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '18904000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:11', + 'updated_at' => '2019-10-06 08:06:11', + 'flag' => true, + 'wikiDataId' => 'Q2081619', + ], + [ + 'id' => 125814, + 'name' => 'San Joaquin County', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '93478000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '27145000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:11', + 'updated_at' => '2019-10-06 08:06:11', + 'flag' => true, + 'wikiDataId' => 'Q108499', + ], + [ + 'id' => 125815, + 'name' => 'San Joaquin Hills', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '61169000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '83672000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:11', + 'updated_at' => '2019-10-06 08:06:11', + 'flag' => true, + 'wikiDataId' => 'Q1551029', + ], + [ + 'id' => 125816, + 'name' => 'San Jose', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '33939000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '89496000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:11', + 'updated_at' => '2019-10-06 08:06:11', + 'flag' => true, + 'wikiDataId' => 'Q16553', + ], + [ + 'id' => 125818, + 'name' => 'San Juan Bautista', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '84551000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '53800000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:11', + 'updated_at' => '2019-10-06 08:06:11', + 'flag' => true, + 'wikiDataId' => 'Q991036', + ], + [ + 'id' => 125819, + 'name' => 'San Juan Capistrano', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '50169000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '66255000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:11', + 'updated_at' => '2019-10-06 08:06:11', + 'flag' => true, + 'wikiDataId' => 'Q923780', + ], + [ + 'id' => 125824, + 'name' => 'San Leandro', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '72493000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '15608000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:11', + 'updated_at' => '2019-10-06 08:06:11', + 'flag' => true, + 'wikiDataId' => 'Q851034', + ], + [ + 'id' => 125826, + 'name' => 'San Lorenzo', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '68104000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '12441000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:11', + 'updated_at' => '2019-10-06 08:06:11', + 'flag' => true, + 'wikiDataId' => 'Q2075078', + ], + [ + 'id' => 125829, + 'name' => 'San Luis Obispo', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '35'; + $this->fractionalPart = '28275000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '65962000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:11', + 'updated_at' => '2019-10-06 08:06:11', + 'flag' => true, + 'wikiDataId' => 'Q49012', + ], + [ + 'id' => 125830, + 'name' => 'San Luis Obispo County', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '35'; + $this->fractionalPart = '38742000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '45220000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:11', + 'updated_at' => '2019-10-06 08:06:11', + 'flag' => true, + 'wikiDataId' => 'Q49014', + ], + [ + 'id' => 125833, + 'name' => 'San Marcos', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '14337000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '16614000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:11', + 'updated_at' => '2019-10-06 08:06:11', + 'flag' => true, + 'wikiDataId' => 'Q506411', + ], + [ + 'id' => 125834, + 'name' => 'San Marino', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '12140000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '10646000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:11', + 'updated_at' => '2019-10-06 08:06:11', + 'flag' => true, + 'wikiDataId' => 'Q850869', + ], + [ + 'id' => 125835, + 'name' => 'San Martin', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '08495000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '61022000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:11', + 'updated_at' => '2019-10-06 08:06:11', + 'flag' => true, + 'wikiDataId' => 'Q1974441', + ], + [ + 'id' => 125836, + 'name' => 'San Mateo', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '56299000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '32553000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:11', + 'updated_at' => '2019-10-06 08:06:11', + 'flag' => true, + 'wikiDataId' => 'Q169943', + ], + [ + 'id' => 125837, + 'name' => 'San Mateo County', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '43621000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '35566000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:11', + 'updated_at' => '2019-10-06 08:06:11', + 'flag' => true, + 'wikiDataId' => 'Q108101', + ], + [ + 'id' => 125838, + 'name' => 'San Miguel', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '35'; + $this->fractionalPart = '75247000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '69628000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:11', + 'updated_at' => '2019-10-06 08:06:11', + 'flag' => true, + 'wikiDataId' => 'Q598074', + ], + [ + 'id' => 125842, + 'name' => 'San Pablo', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '96215000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '34553000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:11', + 'updated_at' => '2019-10-06 08:06:11', + 'flag' => true, + 'wikiDataId' => 'Q983863', + ], + [ + 'id' => 125843, + 'name' => 'San Pasqual', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '09171000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '116'; + $this->fractionalPart = '95392000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:11', + 'updated_at' => '2019-10-06 08:06:11', + 'flag' => true, + 'wikiDataId' => 'Q983863', + ], + [ + 'id' => 125845, + 'name' => 'San Pedro', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '73585000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '29229000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:11', + 'updated_at' => '2019-10-06 08:06:11', + 'flag' => true, + 'wikiDataId' => 'Q290356', + ], + [ + 'id' => 125846, + 'name' => 'San Rafael', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '97353000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '53109000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:11', + 'updated_at' => '2019-10-06 08:06:11', + 'flag' => true, + 'wikiDataId' => 'Q631915', + ], + [ + 'id' => 125847, + 'name' => 'San Ramon', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '77993000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '97802000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:11', + 'updated_at' => '2019-10-06 08:06:11', + 'flag' => true, + 'wikiDataId' => 'Q605472', + ], + [ + 'id' => 125892, + 'name' => 'Sanger', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '70801000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '55597000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:11', + 'updated_at' => '2019-10-06 08:06:11', + 'flag' => true, + 'wikiDataId' => 'Q174427', + ], + [ + 'id' => 125899, + 'name' => 'Santa Ana', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '74557000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '86783000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:11', + 'updated_at' => '2019-10-06 08:06:11', + 'flag' => true, + 'wikiDataId' => 'Q49244', + ], + [ + 'id' => 125901, + 'name' => 'Santa Barbara', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '42083000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '69819000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:11', + 'updated_at' => '2019-10-06 08:06:11', + 'flag' => true, + 'wikiDataId' => 'Q159288', + ], + [ + 'id' => 125902, + 'name' => 'Santa Barbara County', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '53834000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '03078000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:11', + 'updated_at' => '2019-10-06 08:06:11', + 'flag' => true, + 'wikiDataId' => 'Q108106', + ], + [ + 'id' => 125903, + 'name' => 'Santa Clara', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '35411000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '95524000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:11', + 'updated_at' => '2019-10-06 08:06:11', + 'flag' => true, + 'wikiDataId' => 'Q159260', + ], + [ + 'id' => 125906, + 'name' => 'Santa Clara County', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '23249000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '69627000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:11', + 'updated_at' => '2019-10-06 08:06:11', + 'flag' => true, + 'wikiDataId' => 'Q110739', + ], + [ + 'id' => 125908, + 'name' => 'Santa Clarita', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '39166000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '54259000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:12', + 'updated_at' => '2019-10-06 08:06:12', + 'flag' => true, + 'wikiDataId' => 'Q491132', + ], + [ + 'id' => 125910, + 'name' => 'Santa Cruz', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '97412000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '03080000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:12', + 'updated_at' => '2019-10-06 08:06:12', + 'flag' => true, + 'wikiDataId' => 'Q159232', + ], + [ + 'id' => 125912, + 'name' => 'Santa Cruz County', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '02161000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '00979000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:12', + 'updated_at' => '2019-10-06 08:06:12', + 'flag' => true, + 'wikiDataId' => 'Q108122', + ], + [ + 'id' => 125916, + 'name' => 'Santa Fe Springs', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '94724000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '08535000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:12', + 'updated_at' => '2019-10-06 08:06:12', + 'flag' => true, + 'wikiDataId' => 'Q948045', + ], + [ + 'id' => 125917, + 'name' => 'Santa Margarita', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '35'; + $this->fractionalPart = '38997000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '60906000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:12', + 'updated_at' => '2019-10-06 08:06:12', + 'flag' => true, + 'wikiDataId' => 'Q3476162', + ], + [ + 'id' => 125918, + 'name' => 'Santa Maria', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '95303000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '43572000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:12', + 'updated_at' => '2019-10-06 08:06:12', + 'flag' => true, + 'wikiDataId' => 'Q643953', + ], + [ + 'id' => 125919, + 'name' => 'Santa Monica', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '01945000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '49119000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:12', + 'updated_at' => '2019-10-06 08:06:12', + 'flag' => true, + 'wikiDataId' => 'Q47164', + ], + [ + 'id' => 125920, + 'name' => 'Santa Paula', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '35417000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '05927000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:12', + 'updated_at' => '2019-10-06 08:06:12', + 'flag' => true, + 'wikiDataId' => 'Q985348', + ], + [ + 'id' => 125922, + 'name' => 'Santa Rosa', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '44047000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '71443000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:12', + 'updated_at' => '2019-10-06 08:06:12', + 'flag' => true, + 'wikiDataId' => 'Q212991', + ], + [ + 'id' => 125925, + 'name' => 'Santa Susana', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '27167000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '70898000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:12', + 'updated_at' => '2019-10-06 08:06:12', + 'flag' => true, + 'wikiDataId' => 'Q6120698', + ], + [ + 'id' => 125927, + 'name' => 'Santa Venetia', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '99853000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '52525000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:12', + 'updated_at' => '2019-10-06 08:06:12', + 'flag' => true, + 'wikiDataId' => 'Q2665797', + ], + [ + 'id' => 125928, + 'name' => 'Santa Ynez', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '61443000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '07987000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:12', + 'updated_at' => '2019-10-06 08:06:12', + 'flag' => true, + 'wikiDataId' => 'Q1787293', + ], + [ + 'id' => 125930, + 'name' => 'Santee', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '32'; + $this->fractionalPart = '83838000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '116'; + $this->fractionalPart = '97392000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:12', + 'updated_at' => '2019-10-06 08:06:12', + 'flag' => true, + 'wikiDataId' => 'Q923799', + ], + [ + 'id' => 125937, + 'name' => 'Saranap', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '88492000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '07607000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:12', + 'updated_at' => '2019-10-06 08:06:12', + 'flag' => true, + 'wikiDataId' => 'Q3470832', + ], + [ + 'id' => 125941, + 'name' => 'Saratoga', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '26383000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '02301000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:12', + 'updated_at' => '2019-10-06 08:06:12', + 'flag' => true, + 'wikiDataId' => 'Q927163', + ], + [ + 'id' => 125956, + 'name' => 'Saticoy', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '28306000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '14983000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:12', + 'updated_at' => '2019-10-06 08:06:12', + 'flag' => true, + 'wikiDataId' => 'Q3458756', + ], + [ + 'id' => 125970, + 'name' => 'Sausalito', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '85909000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '48525000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:12', + 'updated_at' => '2019-10-06 08:06:12', + 'flag' => true, + 'wikiDataId' => 'Q828729', + ], + [ + 'id' => 126059, + 'name' => 'Scotts Valley', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '05106000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '01468000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:13', + 'updated_at' => '2019-10-06 08:06:13', + 'flag' => true, + 'wikiDataId' => 'Q598266', + ], + [ + 'id' => 126075, + 'name' => 'Sea Ranch', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '71519000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '123'; + $this->fractionalPart = '45445000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:14', + 'updated_at' => '2019-10-06 08:06:14', + 'flag' => true, + 'wikiDataId' => 'Q3459108', + ], + [ + 'id' => 126083, + 'name' => 'Seacliff', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '97412000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '91579000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:14', + 'updated_at' => '2019-10-06 08:06:14', + 'flag' => true, + 'wikiDataId' => 'Q7440256', + ], + [ + 'id' => 126090, + 'name' => 'Seal Beach', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '74141000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '10479000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:14', + 'updated_at' => '2019-10-06 08:06:14', + 'flag' => true, + 'wikiDataId' => 'Q593039', + ], + [ + 'id' => 126095, + 'name' => 'Searles Valley', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '35'; + $this->fractionalPart = '76745000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '40395000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:14', + 'updated_at' => '2019-10-06 08:06:14', + 'flag' => true, + 'wikiDataId' => 'Q1013444', + ], + [ + 'id' => 126099, + 'name' => 'Seaside', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '61107000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '85162000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:14', + 'updated_at' => '2019-10-06 08:06:14', + 'flag' => true, + 'wikiDataId' => 'Q986900', + ], + [ + 'id' => 126108, + 'name' => 'Sebastopol', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '40214000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '82388000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:14', + 'updated_at' => '2019-10-06 08:06:14', + 'flag' => true, + 'wikiDataId' => 'Q985264', + ], + [ + 'id' => 126116, + 'name' => 'Sedco Hills', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '64169000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '29087000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:14', + 'updated_at' => '2019-10-06 08:06:14', + 'flag' => true, + 'wikiDataId' => 'Q1900684', + ], + [ + 'id' => 126124, + 'name' => 'Seeley', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '32'; + $this->fractionalPart = '79311000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '115'; + $this->fractionalPart = '69111000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:14', + 'updated_at' => '2019-10-06 08:06:14', + 'flag' => true, + 'wikiDataId' => 'Q2695873', + ], + [ + 'id' => 126141, + 'name' => 'Selma', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '57078000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '61208000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:14', + 'updated_at' => '2019-10-06 08:06:14', + 'flag' => true, + 'wikiDataId' => 'Q983593', + ], + [ + 'id' => 126176, + 'name' => 'Seven Trees', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '28605000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '83856000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:15', + 'updated_at' => '2019-10-06 08:06:15', + 'flag' => true, + 'wikiDataId' => 'Q2149128', + ], + [ + 'id' => 126198, + 'name' => 'Shackelford', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '61382000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '99271000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:15', + 'updated_at' => '2019-10-06 08:06:15', + 'flag' => true, + 'wikiDataId' => 'Q2599295', + ], + [ + 'id' => 126202, + 'name' => 'Shadow Hills', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '26195000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '35175000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:15', + 'updated_at' => '2019-10-06 08:06:15', + 'flag' => true, + 'wikiDataId' => 'Q2678935', + ], + [ + 'id' => 126210, + 'name' => 'Shafter', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '35'; + $this->fractionalPart = '50051000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '27178000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:15', + 'updated_at' => '2019-10-06 08:06:15', + 'flag' => true, + 'wikiDataId' => 'Q985258', + ], + [ + 'id' => 126217, + 'name' => 'Shandon', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '35'; + $this->fractionalPart = '65525000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '37543000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:15', + 'updated_at' => '2019-10-06 08:06:15', + 'flag' => true, + 'wikiDataId' => 'Q1856931', + ], + [ + 'id' => 126238, + 'name' => 'Shasta', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '59932000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '49196000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:16', + 'updated_at' => '2019-10-06 08:06:16', + 'flag' => true, + 'wikiDataId' => 'Q3116391', + ], + [ + 'id' => 126239, + 'name' => 'Shasta County', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '76377000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '04052000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:16', + 'updated_at' => '2019-10-06 08:06:16', + 'flag' => true, + 'wikiDataId' => 'Q156350', + ], + [ + 'id' => 126240, + 'name' => 'Shasta Lake', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '68043000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '37084000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:16', + 'updated_at' => '2019-10-06 08:06:16', + 'flag' => true, + 'wikiDataId' => 'Q986923', + ], + [ + 'id' => 126321, + 'name' => 'Sheridan', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '97962000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '37551000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:17', + 'updated_at' => '2019-10-06 08:06:17', + 'flag' => true, + 'wikiDataId' => 'Q7494869', + ], + [ + 'id' => 126336, + 'name' => 'Sherman Oaks', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '15112000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '44925000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:17', + 'updated_at' => '2019-10-06 08:06:17', + 'flag' => true, + 'wikiDataId' => 'Q1015874', + ], + [ + 'id' => 126351, + 'name' => 'Shingle Springs', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '66574000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '92605000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:17', + 'updated_at' => '2019-10-06 08:06:17', + 'flag' => true, + 'wikiDataId' => 'Q2279125', + ], + [ + 'id' => 126353, + 'name' => 'Shingletown', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '49238000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '88916000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:18', + 'updated_at' => '2019-10-06 08:06:18', + 'flag' => true, + 'wikiDataId' => 'Q1866350', + ], + [ + 'id' => 126402, + 'name' => 'Sierra County', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '58040000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '51600000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:18', + 'updated_at' => '2019-10-06 08:06:18', + 'flag' => true, + 'wikiDataId' => 'Q156370', + ], + [ + 'id' => 126404, + 'name' => 'Sierra Madre', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '16167000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '05285000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:18', + 'updated_at' => '2019-10-06 08:06:18', + 'flag' => true, + 'wikiDataId' => 'Q174026', + ], + [ + 'id' => 126411, + 'name' => 'Signal Hill', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '80446000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '16785000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:18', + 'updated_at' => '2019-10-06 08:06:18', + 'flag' => true, + 'wikiDataId' => 'Q985349', + ], + [ + 'id' => 126431, + 'name' => 'Silver Lake', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '08668000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '27023000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:19', + 'updated_at' => '2019-10-06 08:06:19', + 'flag' => true, + 'wikiDataId' => 'Q7516127', + ], + [ + 'id' => 126432, + 'name' => 'Silver Lakes', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '74558000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '34098000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:19', + 'updated_at' => '2019-10-06 08:06:19', + 'flag' => true, + 'wikiDataId' => 'Q7516127', + ], + [ + 'id' => 126445, + 'name' => 'Simi Valley', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '26945000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '78148000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:19', + 'updated_at' => '2019-10-06 08:06:19', + 'flag' => true, + 'wikiDataId' => 'Q323414', + ], + [ + 'id' => 126465, + 'name' => 'Siskiyou County', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '59265000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '54037000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:19', + 'updated_at' => '2019-10-06 08:06:19', + 'flag' => true, + 'wikiDataId' => 'Q156374', + ], + [ + 'id' => 126486, + 'name' => 'Sky Valley', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '89001000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '116'; + $this->fractionalPart = '35251000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:20', + 'updated_at' => '2019-10-06 08:06:20', + 'flag' => true, + 'wikiDataId' => 'Q6646207', + ], + [ + 'id' => 126499, + 'name' => 'Sleepy Hollow', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '01048000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '58442000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:20', + 'updated_at' => '2019-10-06 08:06:20', + 'flag' => true, + 'wikiDataId' => 'Q3476215', + ], + [ + 'id' => 126561, + 'name' => 'Soda Bay', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '00101000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '78916000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:21', + 'updated_at' => '2019-10-06 08:06:21', + 'flag' => true, + 'wikiDataId' => 'Q3774771', + ], + [ + 'id' => 126565, + 'name' => 'Solana Beach', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '32'; + $this->fractionalPart = '99115000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '27115000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:21', + 'updated_at' => '2019-10-06 08:06:21', + 'flag' => true, + 'wikiDataId' => 'Q383278', + ], + [ + 'id' => 126566, + 'name' => 'Solano County', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '26692000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '94001000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:21', + 'updated_at' => '2019-10-06 08:06:21', + 'flag' => true, + 'wikiDataId' => 'Q108083', + ], + [ + 'id' => 126568, + 'name' => 'Soledad', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '42469000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '32632000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:21', + 'updated_at' => '2019-10-06 08:06:21', + 'flag' => true, + 'wikiDataId' => 'Q985256', + ], + [ + 'id' => 126572, + 'name' => 'Solvang', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '59582000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '13765000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:21', + 'updated_at' => '2019-10-06 08:06:21', + 'flag' => true, + 'wikiDataId' => 'Q822559', + ], + [ + 'id' => 126598, + 'name' => 'Sonoma', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '29186000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '45804000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:22', + 'updated_at' => '2019-10-06 08:06:22', + 'flag' => true, + 'wikiDataId' => 'Q11592', + ], + [ + 'id' => 126599, + 'name' => 'Sonoma County', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '52529000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '92254000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:22', + 'updated_at' => '2019-10-06 08:06:22', + 'flag' => true, + 'wikiDataId' => 'Q108067', + ], + [ + 'id' => 126600, + 'name' => 'Sonora', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '98409000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '38214000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:22', + 'updated_at' => '2019-10-06 08:06:22', + 'flag' => true, + 'wikiDataId' => 'Q953567', + ], + [ + 'id' => 126604, + 'name' => 'Soquel', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '98801000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '95663000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:22', + 'updated_at' => '2019-10-06 08:06:22', + 'flag' => true, + 'wikiDataId' => 'Q1898575', + ], + [ + 'id' => 126606, + 'name' => 'Sorrento Valley', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '32'; + $this->fractionalPart = '89991000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '19451000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:22', + 'updated_at' => '2019-10-06 08:06:22', + 'flag' => true, + 'wikiDataId' => 'Q2056818', + ], + [ + 'id' => 126608, + 'name' => 'Soulsbyville', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '98465000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '26380000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:22', + 'updated_at' => '2019-10-06 08:06:22', + 'flag' => true, + 'wikiDataId' => 'Q2568433', + ], + [ + 'id' => 126648, + 'name' => 'South Dos Palos', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '96439000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '65324000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:23', + 'updated_at' => '2019-10-06 08:06:23', + 'flag' => true, + 'wikiDataId' => 'Q2481744', + ], + [ + 'id' => 126650, + 'name' => 'South El Monte', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '05195000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '04673000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:23', + 'updated_at' => '2019-10-06 08:06:23', + 'flag' => true, + 'wikiDataId' => 'Q983845', + ], + [ + 'id' => 126659, + 'name' => 'South Gate', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '95474000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '21202000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:23', + 'updated_at' => '2019-10-06 08:06:23', + 'flag' => true, + 'wikiDataId' => 'Q838772', + ], + [ + 'id' => 126684, + 'name' => 'South Lake Tahoe', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '93324000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '98435000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:24', + 'updated_at' => '2019-10-06 08:06:24', + 'flag' => true, + 'wikiDataId' => 'Q983602', + ], + [ + 'id' => 126699, + 'name' => 'South Oroville', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '49655000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '55219000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:24', + 'updated_at' => '2019-10-06 08:06:24', + 'flag' => true, + 'wikiDataId' => 'Q940371', + ], + [ + 'id' => 126706, + 'name' => 'South Pasadena', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '11612000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '15035000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:24', + 'updated_at' => '2019-10-06 08:06:24', + 'flag' => true, + 'wikiDataId' => 'Q852581', + ], + [ + 'id' => 126723, + 'name' => 'South San Francisco', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '65466000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '40775000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:24', + 'updated_at' => '2019-10-06 08:06:24', + 'flag' => true, + 'wikiDataId' => 'Q927122', + ], + [ + 'id' => 126724, + 'name' => 'South San Gabriel', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '04915000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '09462000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:24', + 'updated_at' => '2019-10-06 08:06:24', + 'flag' => true, + 'wikiDataId' => 'Q2364933', + ], + [ + 'id' => 126725, + 'name' => 'South San Jose Hills', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '01279000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '90478000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:24', + 'updated_at' => '2019-10-06 08:06:24', + 'flag' => true, + 'wikiDataId' => 'Q1757529', + ], + [ + 'id' => 126733, + 'name' => 'South Taft', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '35'; + $this->fractionalPart = '13469000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '45623000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:24', + 'updated_at' => '2019-10-06 08:06:24', + 'flag' => true, + 'wikiDataId' => 'Q2272525', + ], + [ + 'id' => 126748, + 'name' => 'South Whittier', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '95015000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '03917000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:25', + 'updated_at' => '2019-10-06 08:06:25', + 'flag' => true, + 'wikiDataId' => 'Q531275', + ], + [ + 'id' => 126756, + 'name' => 'South Yuba City', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '11656000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '63913000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:25', + 'updated_at' => '2019-10-06 08:06:25', + 'flag' => true, + 'wikiDataId' => 'Q281789', + ], + [ + 'id' => 126880, + 'name' => 'Spring Valley', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '32'; + $this->fractionalPart = '74477000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '116'; + $this->fractionalPart = '99892000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:30', + 'updated_at' => '2019-10-06 08:06:30', + 'flag' => true, + 'wikiDataId' => 'Q590828', + ], + [ + 'id' => 126882, + 'name' => 'Spring Valley Lake', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '49364000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '26832000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:30', + 'updated_at' => '2019-10-06 08:06:30', + 'flag' => true, + 'wikiDataId' => 'Q6133445', + ], + [ + 'id' => 126924, + 'name' => 'Squaw Valley', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '74023000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '24679000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:31', + 'updated_at' => '2019-10-06 08:06:31', + 'flag' => true, + 'wikiDataId' => 'Q2141628', + ], + [ + 'id' => 126941, + 'name' => 'Stallion Springs', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '35'; + $this->fractionalPart = '08886000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '64259000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:32', + 'updated_at' => '2019-10-06 08:06:32', + 'flag' => true, + 'wikiDataId' => 'Q651945', + ], + [ + 'id' => 126954, + 'name' => 'Stanford', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '42411000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '16608000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:32', + 'updated_at' => '2019-10-06 08:06:32', + 'flag' => true, + 'wikiDataId' => 'Q173813', + ], + [ + 'id' => 126957, + 'name' => 'Stanislaus County', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '55914000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '99769000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:32', + 'updated_at' => '2019-10-06 08:06:32', + 'flag' => true, + 'wikiDataId' => 'Q108503', + ], + [ + 'id' => 126969, + 'name' => 'Stanton', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '80252000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '99312000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:32', + 'updated_at' => '2019-10-06 08:06:32', + 'flag' => true, + 'wikiDataId' => 'Q983849', + ], + [ + 'id' => 127046, + 'name' => 'Stevenson Ranch', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '39048000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '57372000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:33', + 'updated_at' => '2019-10-06 08:06:33', + 'flag' => true, + 'wikiDataId' => 'Q577997', + ], + [ + 'id' => 127074, + 'name' => 'Stockton', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '95770000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '29078000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:34', + 'updated_at' => '2019-10-06 08:06:34', + 'flag' => true, + 'wikiDataId' => 'Q49240', + ], + [ + 'id' => 127127, + 'name' => 'Stratford', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '18940000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '82319000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:34', + 'updated_at' => '2019-10-06 08:06:34', + 'flag' => true, + 'wikiDataId' => 'Q2214380', + ], + [ + 'id' => 127131, + 'name' => 'Strathmore', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '14551000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '06066000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:34', + 'updated_at' => '2019-10-06 08:06:34', + 'flag' => true, + 'wikiDataId' => 'Q947961', + ], + [ + 'id' => 127133, + 'name' => 'Strawberry', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '89687000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '50886000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:34', + 'updated_at' => '2019-10-06 08:06:34', + 'flag' => true, + 'wikiDataId' => 'Q2511472', + ], + [ + 'id' => 127146, + 'name' => 'Studio City', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '14862000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '39647000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:34', + 'updated_at' => '2019-10-06 08:06:34', + 'flag' => true, + 'wikiDataId' => 'Q3143067', + ], + [ + 'id' => 127177, + 'name' => 'Suisun', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '23825000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '04024000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:35', + 'updated_at' => '2019-10-06 08:06:35', + 'flag' => true, + 'wikiDataId' => 'Q204087', + ], + [ + 'id' => 127204, + 'name' => 'Summerland', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '42138000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '59652000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:35', + 'updated_at' => '2019-10-06 08:06:35', + 'flag' => true, + 'wikiDataId' => 'Q1899860', + ], + [ + 'id' => 127233, + 'name' => 'Sun City', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '70919000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '19726000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:35', + 'updated_at' => '2019-10-06 08:06:35', + 'flag' => true, + 'wikiDataId' => 'Q1936551', + ], + [ + 'id' => 127243, + 'name' => 'Sun Village', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '55952000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '95676000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:35', + 'updated_at' => '2019-10-06 08:06:35', + 'flag' => true, + 'wikiDataId' => 'Q6644691', + ], + [ + 'id' => 127253, + 'name' => 'Sunland', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '26695000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '30230000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:36', + 'updated_at' => '2019-10-06 08:06:36', + 'flag' => true, + 'wikiDataId' => 'Q3503914', + ], + [ + 'id' => 127259, + 'name' => 'Sunnyside', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '74912000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '69931000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:36', + 'updated_at' => '2019-10-06 08:06:36', + 'flag' => true, + 'wikiDataId' => 'Q2578741', + ], + [ + 'id' => 127261, + 'name' => 'Sunnyside-Tahoe City', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '15023000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '16120000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:36', + 'updated_at' => '2019-10-06 08:06:36', + 'flag' => true, + 'wikiDataId' => 'Q2738891', + ], + [ + 'id' => 127262, + 'name' => 'Sunnyslope', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '01196000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '43338000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:36', + 'updated_at' => '2019-10-06 08:06:36', + 'flag' => true, + 'wikiDataId' => 'Q2190620', + ], + [ + 'id' => 127265, + 'name' => 'Sunnyvale', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '36883000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '03635000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:36', + 'updated_at' => '2019-10-06 08:06:36', + 'flag' => true, + 'wikiDataId' => 'Q208459', + ], + [ + 'id' => 127296, + 'name' => 'Susanville', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '41628000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '65301000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:36', + 'updated_at' => '2019-10-06 08:06:36', + 'flag' => true, + 'wikiDataId' => 'Q629584', + ], + [ + 'id' => 127308, + 'name' => 'Sutter', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '15989000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '75275000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:36', + 'updated_at' => '2019-10-06 08:06:36', + 'flag' => true, + 'wikiDataId' => 'Q3306183', + ], + [ + 'id' => 127309, + 'name' => 'Sutter County', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '03452000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '69484000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:36', + 'updated_at' => '2019-10-06 08:06:36', + 'flag' => true, + 'wikiDataId' => 'Q156377', + ], + [ + 'id' => 127310, + 'name' => 'Sutter Creek', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '39297000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '80244000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:36', + 'updated_at' => '2019-10-06 08:06:36', + 'flag' => true, + 'wikiDataId' => 'Q1257603', + ], + [ + 'id' => 127373, + 'name' => 'Taft', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '35'; + $this->fractionalPart = '14247000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '45651000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:37', + 'updated_at' => '2019-10-06 08:06:37', + 'flag' => true, + 'wikiDataId' => 'Q983611', + ], + [ + 'id' => 127374, + 'name' => 'Taft Heights', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '35'; + $this->fractionalPart = '13469000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '47262000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:37', + 'updated_at' => '2019-10-06 08:06:37', + 'flag' => true, + 'wikiDataId' => 'Q473341', + ], + [ + 'id' => 127375, + 'name' => 'Taft Mosswood', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '91385000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '28316000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:37', + 'updated_at' => '2019-10-06 08:06:37', + 'flag' => true, + 'wikiDataId' => 'Q2303659', + ], + [ + 'id' => 127378, + 'name' => 'Tahoe Vista', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '23991000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '05102000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:37', + 'updated_at' => '2019-10-06 08:06:37', + 'flag' => true, + 'wikiDataId' => 'Q2104291', + ], + [ + 'id' => 127380, + 'name' => 'Tahoma', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '06741000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '12824000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:37', + 'updated_at' => '2019-10-06 08:06:37', + 'flag' => true, + 'wikiDataId' => 'Q5844600', + ], + [ + 'id' => 127397, + 'name' => 'Talmage', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '13323000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '123'; + $this->fractionalPart = '16778000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:37', + 'updated_at' => '2019-10-06 08:06:37', + 'flag' => true, + 'wikiDataId' => 'Q2443361', + ], + [ + 'id' => 127402, + 'name' => 'Tamalpais Valley', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '87965000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '54581000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:38', + 'updated_at' => '2019-10-06 08:06:38', + 'flag' => true, + 'wikiDataId' => 'Q7680603', + ], + [ + 'id' => 127403, + 'name' => 'Tamalpais-Homestead Valley', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '87834000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '53625000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:38', + 'updated_at' => '2019-10-06 08:06:38', + 'flag' => true, + 'wikiDataId' => 'Q2303270', + ], + [ + 'id' => 127427, + 'name' => 'Tara Hills', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '99353000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '31636000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:38', + 'updated_at' => '2019-10-06 08:06:38', + 'flag' => true, + 'wikiDataId' => 'Q3289792', + ], + [ + 'id' => 127432, + 'name' => 'Tarpey Village', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '79301000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '70097000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:38', + 'updated_at' => '2019-10-06 08:06:38', + 'flag' => true, + 'wikiDataId' => 'Q5650252', + ], + [ + 'id' => 127483, + 'name' => 'Tehachapi', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '35'; + $this->fractionalPart = '13219000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '44897000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:39', + 'updated_at' => '2019-10-06 08:06:39', + 'flag' => true, + 'wikiDataId' => 'Q985253', + ], + [ + 'id' => 127484, + 'name' => 'Tehama County', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '12574000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '23388000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:39', + 'updated_at' => '2019-10-06 08:06:39', + 'flag' => true, + 'wikiDataId' => 'Q109705', + ], + [ + 'id' => 127492, + 'name' => 'Temecula', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '49364000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '14836000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:39', + 'updated_at' => '2019-10-06 08:06:39', + 'flag' => true, + 'wikiDataId' => 'Q838785', + ], + [ + 'id' => 127493, + 'name' => 'Temelec', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '26658000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '49276000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:39', + 'updated_at' => '2019-10-06 08:06:39', + 'flag' => true, + 'wikiDataId' => 'Q2651428', + ], + [ + 'id' => 127501, + 'name' => 'Temple City', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '10723000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '05785000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:39', + 'updated_at' => '2019-10-06 08:06:39', + 'flag' => true, + 'wikiDataId' => 'Q864144', + ], + [ + 'id' => 127505, + 'name' => 'Templeton', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '35'; + $this->fractionalPart = '54969000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '70600000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:39', + 'updated_at' => '2019-10-06 08:06:39', + 'flag' => true, + 'wikiDataId' => 'Q2468866', + ], + [ + 'id' => 127515, + 'name' => 'Terra Bella', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '35'; + $this->fractionalPart = '96245000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '04427000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:39', + 'updated_at' => '2019-10-06 08:06:39', + 'flag' => true, + 'wikiDataId' => 'Q289033', + ], + [ + 'id' => 127541, + 'name' => 'Teviston', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '35'; + $this->fractionalPart = '92894000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '27831000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:40', + 'updated_at' => '2019-10-06 08:06:40', + 'flag' => true, + 'wikiDataId' => 'Q6143717', + ], + [ + 'id' => 127570, + 'name' => 'Thermal', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '64030000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '116'; + $this->fractionalPart = '13945000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:40', + 'updated_at' => '2019-10-06 08:06:40', + 'flag' => true, + 'wikiDataId' => 'Q133921', + ], + [ + 'id' => 127571, + 'name' => 'Thermalito', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '51128000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '58692000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:40', + 'updated_at' => '2019-10-06 08:06:40', + 'flag' => true, + 'wikiDataId' => 'Q2261584', + ], + [ + 'id' => 127604, + 'name' => 'Thornton', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '22603000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '42467000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:41', + 'updated_at' => '2019-10-06 08:06:41', + 'flag' => true, + 'wikiDataId' => 'Q6644877', + ], + [ + 'id' => 127609, + 'name' => 'Thousand Oaks', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '17056000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '83759000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:41', + 'updated_at' => '2019-10-06 08:06:41', + 'flag' => true, + 'wikiDataId' => 'Q208447', + ], + [ + 'id' => 127610, + 'name' => 'Thousand Palms', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '82002000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '116'; + $this->fractionalPart = '39029000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:41', + 'updated_at' => '2019-10-06 08:06:41', + 'flag' => true, + 'wikiDataId' => 'Q1432447', + ], + [ + 'id' => 127620, + 'name' => 'Three Rivers', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '43884000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '90454000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:41', + 'updated_at' => '2019-10-06 08:06:41', + 'flag' => true, + 'wikiDataId' => 'Q601394', + ], + [ + 'id' => 127632, + 'name' => 'Tiburon', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '87354000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '45664000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:41', + 'updated_at' => '2019-10-06 08:06:41', + 'flag' => true, + 'wikiDataId' => 'Q984603', + ], + [ + 'id' => 127637, + 'name' => 'Tierra Buena', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '14878000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '66691000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:41', + 'updated_at' => '2019-10-06 08:06:41', + 'flag' => true, + 'wikiDataId' => 'Q3303176', + ], + [ + 'id' => 127678, + 'name' => 'Tipton', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '05940000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '31206000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:43', + 'updated_at' => '2019-10-06 08:06:43', + 'flag' => true, + 'wikiDataId' => 'Q2849923', + ], + [ + 'id' => 127730, + 'name' => 'Topanga', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '09362000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '60147000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:44', + 'updated_at' => '2019-10-06 08:06:44', + 'flag' => true, + 'wikiDataId' => 'Q144792', + ], + [ + 'id' => 127741, + 'name' => 'Toro Canyon', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '42000000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '56707000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:44', + 'updated_at' => '2019-10-06 08:06:44', + 'flag' => true, + 'wikiDataId' => 'Q3194371', + ], + [ + 'id' => 127742, + 'name' => 'Torrance', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '83585000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '34063000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:44', + 'updated_at' => '2019-10-06 08:06:44', + 'flag' => true, + 'wikiDataId' => 'Q489197', + ], + [ + 'id' => 127769, + 'name' => 'Trabuco Canyon', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '66252000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '59033000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:45', + 'updated_at' => '2019-10-06 08:06:45', + 'flag' => true, + 'wikiDataId' => 'Q3474916', + ], + [ + 'id' => 127771, + 'name' => 'Tracy', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '73987000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '42618000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:45', + 'updated_at' => '2019-10-06 08:06:45', + 'flag' => true, + 'wikiDataId' => 'Q953409', + ], + [ + 'id' => 127829, + 'name' => 'Trinity County', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '65069000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '123'; + $this->fractionalPart = '11263000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:46', + 'updated_at' => '2019-10-06 08:06:46', + 'flag' => true, + 'wikiDataId' => 'Q156188', + ], + [ + 'id' => 127853, + 'name' => 'Truckee', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '32796000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '18325000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:46', + 'updated_at' => '2019-10-06 08:06:46', + 'flag' => true, + 'wikiDataId' => 'Q506402', + ], + [ + 'id' => 127878, + 'name' => 'Tujunga', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '25223000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '28841000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:46', + 'updated_at' => '2019-10-06 08:06:46', + 'flag' => true, + 'wikiDataId' => 'Q2430156', + ], + [ + 'id' => 127882, + 'name' => 'Tulare', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '20773000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '34734000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:47', + 'updated_at' => '2019-10-06 08:06:47', + 'flag' => true, + 'wikiDataId' => 'Q616562', + ], + [ + 'id' => 127883, + 'name' => 'Tulare County', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '22016000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '80047000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:47', + 'updated_at' => '2019-10-06 08:06:47', + 'flag' => true, + 'wikiDataId' => 'Q109686', + ], + [ + 'id' => 127895, + 'name' => 'Tuolumne City', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '96270000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '24130000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:47', + 'updated_at' => '2019-10-06 08:06:47', + 'flag' => true, + 'wikiDataId' => 'Q3301923', + ], + [ + 'id' => 127896, + 'name' => 'Tuolumne County', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '02760000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '95475000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:47', + 'updated_at' => '2019-10-06 08:06:47', + 'flag' => true, + 'wikiDataId' => 'Q156346', + ], + [ + 'id' => 127900, + 'name' => 'Turlock', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '49466000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '84659000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:47', + 'updated_at' => '2019-10-06 08:06:47', + 'flag' => true, + 'wikiDataId' => 'Q1011205', + ], + [ + 'id' => 127917, + 'name' => 'Tustin', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '74585000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '82617000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:47', + 'updated_at' => '2019-10-06 08:06:47', + 'flag' => true, + 'wikiDataId' => 'Q917513', + ], + [ + 'id' => 127920, + 'name' => 'Twain Harte', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '03965000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '23269000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:47', + 'updated_at' => '2019-10-06 08:06:47', + 'flag' => true, + 'wikiDataId' => 'Q1826741', + ], + [ + 'id' => 127921, + 'name' => 'Twentynine Palms', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '13556000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '116'; + $this->fractionalPart = '05417000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:47', + 'updated_at' => '2019-10-06 08:06:47', + 'flag' => true, + 'wikiDataId' => 'Q846582', + ], + [ + 'id' => 127930, + 'name' => 'Twin Lakes', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '96745000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '99802000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:47', + 'updated_at' => '2019-10-06 08:06:47', + 'flag' => true, + 'wikiDataId' => 'Q2133403', + ], + [ + 'id' => 127958, + 'name' => 'Ukiah', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '15017000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '123'; + $this->fractionalPart = '20778000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:48', + 'updated_at' => '2019-10-06 08:06:48', + 'flag' => true, + 'wikiDataId' => 'Q837105', + ], + [ + 'id' => 127987, + 'name' => 'Union City', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '59577000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '01913000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:48', + 'updated_at' => '2019-10-06 08:06:48', + 'flag' => true, + 'wikiDataId' => 'Q846402', + ], + [ + 'id' => 128023, + 'name' => 'Universal City', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '13890000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '35341000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:49', + 'updated_at' => '2019-10-06 08:06:49', + 'flag' => true, + 'wikiDataId' => 'Q1376480', + ], + [ + 'id' => 128039, + 'name' => 'Upland', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '09751000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '64839000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:49', + 'updated_at' => '2019-10-06 08:06:49', + 'flag' => true, + 'wikiDataId' => 'Q747466', + ], + [ + 'id' => 128045, + 'name' => 'Upper Lake', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '16461000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '91055000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:49', + 'updated_at' => '2019-10-06 08:06:49', + 'flag' => true, + 'wikiDataId' => 'Q3460938', + ], + [ + 'id' => 128072, + 'name' => 'Vacaville', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '35658000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '98774000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:49', + 'updated_at' => '2019-10-06 08:06:49', + 'flag' => true, + 'wikiDataId' => 'Q850823', + ], + [ + 'id' => 128078, + 'name' => 'Val Verde', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '44500000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '65759000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:50', + 'updated_at' => '2019-10-06 08:06:50', + 'flag' => true, + 'wikiDataId' => 'Q2268355', + ], + [ + 'id' => 128087, + 'name' => 'Valencia', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '44361000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '60953000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:50', + 'updated_at' => '2019-10-06 08:06:50', + 'flag' => true, + 'wikiDataId' => 'Q1319893', + ], + [ + 'id' => 128093, + 'name' => 'Valinda', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '04529000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '94367000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:50', + 'updated_at' => '2019-10-06 08:06:50', + 'flag' => true, + 'wikiDataId' => 'Q1309443', + ], + [ + 'id' => 128094, + 'name' => 'Valle Vista', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '74780000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '116'; + $this->fractionalPart = '89336000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:51', + 'updated_at' => '2019-10-06 08:06:51', + 'flag' => true, + 'wikiDataId' => 'Q2295807', + ], + [ + 'id' => 128096, + 'name' => 'Vallejo', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '10409000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '25664000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:51', + 'updated_at' => '2019-10-06 08:06:51', + 'flag' => true, + 'wikiDataId' => 'Q208445', + ], + [ + 'id' => 128100, + 'name' => 'Valley Center', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '21837000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '03420000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:51', + 'updated_at' => '2019-10-06 08:06:51', + 'flag' => true, + 'wikiDataId' => 'Q2861838', + ], + [ + 'id' => 128109, + 'name' => 'Valley Glen', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '18991000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '44953000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:51', + 'updated_at' => '2019-10-06 08:06:51', + 'flag' => true, + 'wikiDataId' => 'Q3476807', + ], + [ + 'id' => 128115, + 'name' => 'Valley Springs', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '19159000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '82910000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:51', + 'updated_at' => '2019-10-06 08:06:51', + 'flag' => true, + 'wikiDataId' => 'Q1976510', + ], + [ + 'id' => 128137, + 'name' => 'Van Nuys', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '18667000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '44897000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:51', + 'updated_at' => '2019-10-06 08:06:51', + 'flag' => true, + 'wikiDataId' => 'Q769446', + ], + [ + 'id' => 128147, + 'name' => 'Vandenberg Air Force Base', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '74830000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '51817000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:51', + 'updated_at' => '2019-10-06 08:06:51', + 'flag' => true, + 'wikiDataId' => 'Q960362', + ], + [ + 'id' => 128148, + 'name' => 'Vandenberg Village', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '70832000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '46766000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:51', + 'updated_at' => '2019-10-06 08:06:51', + 'flag' => true, + 'wikiDataId' => 'Q2793707', + ], + [ + 'id' => 128172, + 'name' => 'Venice', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '99084000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '46008000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:51', + 'updated_at' => '2019-10-06 08:06:51', + 'flag' => true, + 'wikiDataId' => 'Q773853', + ], + [ + 'id' => 128175, + 'name' => 'Ventura', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '27834000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '29317000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:52', + 'updated_at' => '2019-10-06 08:06:52', + 'flag' => true, + 'wikiDataId' => 'Q490434', + ], + [ + 'id' => 128176, + 'name' => 'Ventura County', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '35753000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '12603000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:52', + 'updated_at' => '2019-10-06 08:06:52', + 'flag' => true, + 'wikiDataId' => 'Q108127', + ], + [ + 'id' => 128224, + 'name' => 'Victorville', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '53611000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '29116000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:52', + 'updated_at' => '2019-10-06 08:06:52', + 'flag' => true, + 'wikiDataId' => 'Q495353', + ], + [ + 'id' => 128238, + 'name' => 'View Park-Windsor Hills', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '99551000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '34835000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:52', + 'updated_at' => '2019-10-06 08:06:52', + 'flag' => true, + 'wikiDataId' => 'Q261383', + ], + [ + 'id' => 128244, + 'name' => 'Villa Park', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '81446000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '81311000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:52', + 'updated_at' => '2019-10-06 08:06:52', + 'flag' => true, + 'wikiDataId' => 'Q1944021', + ], + [ + 'id' => 128265, + 'name' => 'Vincent', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '50055000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '11646000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:53', + 'updated_at' => '2019-10-06 08:06:53', + 'flag' => true, + 'wikiDataId' => 'Q1757523', + ], + [ + 'id' => 128269, + 'name' => 'Vine Hill', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '00853000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '09608000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:53', + 'updated_at' => '2019-10-06 08:06:53', + 'flag' => true, + 'wikiDataId' => 'Q2834585', + ], + [ + 'id' => 128273, + 'name' => 'Vineyard', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '46449000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '34692000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:53', + 'updated_at' => '2019-10-06 08:06:53', + 'flag' => true, + 'wikiDataId' => 'Q2252655', + ], + [ + 'id' => 128293, + 'name' => 'Visalia', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '33023000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '29206000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:53', + 'updated_at' => '2019-10-06 08:06:53', + 'flag' => true, + 'wikiDataId' => 'Q495373', + ], + [ + 'id' => 128294, + 'name' => 'Visitacion Valley', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '71715000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '40433000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:53', + 'updated_at' => '2019-10-06 08:06:53', + 'flag' => true, + 'wikiDataId' => 'Q495373', + ], + [ + 'id' => 128295, + 'name' => 'Vista', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '20004000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '24254000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:53', + 'updated_at' => '2019-10-06 08:06:53', + 'flag' => true, + 'wikiDataId' => 'Q924241', + ], + [ + 'id' => 128297, + 'name' => 'Vista Santa Rosa', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '62780000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '116'; + $this->fractionalPart = '21806000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:53', + 'updated_at' => '2019-10-06 08:06:53', + 'flag' => true, + 'wikiDataId' => 'Q6163983', + ], + [ + 'id' => 128374, + 'name' => 'Waldon', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '92631000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '05552000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:54', + 'updated_at' => '2019-10-06 08:06:54', + 'flag' => true, + 'wikiDataId' => 'Q2199259', + ], + [ + 'id' => 128414, + 'name' => 'Walnut', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '02029000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '86534000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:54', + 'updated_at' => '2019-10-06 08:06:54', + 'flag' => true, + 'wikiDataId' => 'Q850979', + ], + [ + 'id' => 128416, + 'name' => 'Walnut Creek', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '90631000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '06496000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:54', + 'updated_at' => '2019-10-06 08:06:54', + 'flag' => true, + 'wikiDataId' => 'Q493261', + ], + [ + 'id' => 128419, + 'name' => 'Walnut Grove', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '24214000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '51162000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:54', + 'updated_at' => '2019-10-06 08:06:54', + 'flag' => true, + 'wikiDataId' => 'Q1819794', + ], + [ + 'id' => 128422, + 'name' => 'Walnut Park', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '96807000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '22507000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:55', + 'updated_at' => '2019-10-06 08:06:55', + 'flag' => true, + 'wikiDataId' => 'Q925462', + ], + [ + 'id' => 128528, + 'name' => 'Wasco', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '35'; + $this->fractionalPart = '59412000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '34095000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:56', + 'updated_at' => '2019-10-06 08:06:56', + 'flag' => true, + 'wikiDataId' => 'Q985255', + ], + [ + 'id' => 128609, + 'name' => 'Waterford', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '64132000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '76048000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:57', + 'updated_at' => '2019-10-06 08:06:57', + 'flag' => true, + 'wikiDataId' => 'Q2600861', + ], + [ + 'id' => 128641, + 'name' => 'Watsonville', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '91023000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '75689000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:57', + 'updated_at' => '2019-10-06 08:06:57', + 'flag' => true, + 'wikiDataId' => 'Q913543', + ], + [ + 'id' => 128723, + 'name' => 'Weaverville', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '73098000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '94197000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:58', + 'updated_at' => '2019-10-06 08:06:58', + 'flag' => true, + 'wikiDataId' => 'Q3027750', + ], + [ + 'id' => 128751, + 'name' => 'Weed', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '42265000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '38613000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:59', + 'updated_at' => '2019-10-06 08:06:59', + 'flag' => true, + 'wikiDataId' => 'Q985254', + ], + [ + 'id' => 128752, + 'name' => 'Weedpatch', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '35'; + $this->fractionalPart = '23802000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '91510000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:59', + 'updated_at' => '2019-10-06 08:06:59', + 'flag' => true, + 'wikiDataId' => 'Q628718', + ], + [ + 'id' => 128770, + 'name' => 'Weldon', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '35'; + $this->fractionalPart = '66579000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '29036000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:59', + 'updated_at' => '2019-10-06 08:06:59', + 'flag' => true, + 'wikiDataId' => 'Q929048', + ], + [ + 'id' => 128818, + 'name' => 'West Athens', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '92335000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '30341000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:07:00', + 'updated_at' => '2019-10-06 08:07:00', + 'flag' => true, + 'wikiDataId' => 'Q1669280', + ], + [ + 'id' => 128826, + 'name' => 'West Bishop', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '36104000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '45511000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:07:00', + 'updated_at' => '2019-10-06 08:07:00', + 'flag' => true, + 'wikiDataId' => 'Q1861763', + ], + [ + 'id' => 128842, + 'name' => 'West Carson', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '82168000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '29257000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:07:00', + 'updated_at' => '2019-10-06 08:07:00', + 'flag' => true, + 'wikiDataId' => 'Q655926', + ], + [ + 'id' => 128853, + 'name' => 'West Covina', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '06862000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '93895000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:07:00', + 'updated_at' => '2019-10-06 08:07:00', + 'flag' => true, + 'wikiDataId' => 'Q494728', + ], + [ + 'id' => 128897, + 'name' => 'West Hills', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '19731000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '64398000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:07:01', + 'updated_at' => '2019-10-06 08:07:01', + 'flag' => true, + 'wikiDataId' => 'Q7985390', + ], + [ + 'id' => 128899, + 'name' => 'West Hollywood', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '09001000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '36174000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:07:01', + 'updated_at' => '2019-10-06 08:07:01', + 'flag' => true, + 'wikiDataId' => 'Q846421', + ], + [ + 'id' => 128929, + 'name' => 'West Menlo Park', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '43355000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '20302000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:07:01', + 'updated_at' => '2019-10-06 08:07:01', + 'flag' => true, + 'wikiDataId' => 'Q2405197', + ], + [ + 'id' => 128934, + 'name' => 'West Modesto', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '61754000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '03914000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:07:01', + 'updated_at' => '2019-10-06 08:07:01', + 'flag' => true, + 'wikiDataId' => 'Q2701552', + ], + [ + 'id' => 128950, + 'name' => 'West Park', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '71023000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '85126000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:07:01', + 'updated_at' => '2019-10-06 08:07:01', + 'flag' => true, + 'wikiDataId' => 'Q6645058', + ], + [ + 'id' => 128964, + 'name' => 'West Puente Valley', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '05168000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '96840000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:07:02', + 'updated_at' => '2019-10-06 08:07:02', + 'flag' => true, + 'wikiDataId' => 'Q1719317', + ], + [ + 'id' => 128966, + 'name' => 'West Rancho Dominguez', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '89390000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '27063000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:07:02', + 'updated_at' => '2019-10-06 08:07:02', + 'flag' => true, + 'wikiDataId' => 'Q1972817', + ], + [ + 'id' => 128971, + 'name' => 'West Sacramento', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '58046000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '53023000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:07:02', + 'updated_at' => '2019-10-06 08:07:02', + 'flag' => true, + 'wikiDataId' => 'Q983600', + ], + [ + 'id' => 129005, + 'name' => 'West Whittier-Los Nietos', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '97600000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '06909000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:07:02', + 'updated_at' => '2019-10-06 08:07:02', + 'flag' => true, + 'wikiDataId' => 'Q1898652', + ], + [ + 'id' => 129037, + 'name' => 'Westhaven-Moonstone', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '04489000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '124'; + $this->fractionalPart = '10239000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:07:03', + 'updated_at' => '2019-10-06 08:07:03', + 'flag' => true, + 'wikiDataId' => 'Q256896', + ], + [ + 'id' => 129040, + 'name' => 'Westlake Village', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '14584000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '80565000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:07:03', + 'updated_at' => '2019-10-06 08:07:03', + 'flag' => true, + 'wikiDataId' => 'Q474655', + ], + [ + 'id' => 129048, + 'name' => 'Westminster', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '75918000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '00673000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:07:03', + 'updated_at' => '2019-10-06 08:07:03', + 'flag' => true, + 'wikiDataId' => 'Q838759', + ], + [ + 'id' => 129051, + 'name' => 'Westmont', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '94140000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '30230000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:07:03', + 'updated_at' => '2019-10-06 08:07:03', + 'flag' => true, + 'wikiDataId' => 'Q1898611', + ], + [ + 'id' => 129057, + 'name' => 'Westmorland', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '03727000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '115'; + $this->fractionalPart = '62138000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:07:03', + 'updated_at' => '2019-10-06 08:07:03', + 'flag' => true, + 'wikiDataId' => 'Q2354754', + ], + [ + 'id' => 129087, + 'name' => 'Westwood', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '05612000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '43063000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:07:03', + 'updated_at' => '2019-10-06 08:07:03', + 'flag' => true, + 'wikiDataId' => 'Q1199774', + ], + [ + 'id' => 129108, + 'name' => 'Wheatland', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '00989000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '42301000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:07:03', + 'updated_at' => '2019-10-06 08:07:03', + 'flag' => true, + 'wikiDataId' => 'Q2370501', + ], + [ + 'id' => 129210, + 'name' => 'Whittier', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '97918000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '03284000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:07:05', + 'updated_at' => '2019-10-06 08:07:05', + 'flag' => true, + 'wikiDataId' => 'Q838791', + ], + [ + 'id' => 129235, + 'name' => 'Wildomar', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '59891000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '28004000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:07:06', + 'updated_at' => '2019-10-06 08:07:06', + 'flag' => true, + 'wikiDataId' => 'Q648835', + ], + [ + 'id' => 129261, + 'name' => 'Williams', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '15461000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '14942000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:07:06', + 'updated_at' => '2019-10-06 08:07:06', + 'flag' => true, + 'wikiDataId' => 'Q2685585', + ], + [ + 'id' => 129302, + 'name' => 'Willits', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '40961000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '123'; + $this->fractionalPart = '35557000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:07:07', + 'updated_at' => '2019-10-06 08:07:07', + 'flag' => true, + 'wikiDataId' => 'Q2334435', + ], + [ + 'id' => 129305, + 'name' => 'Willow Creek', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '93958000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '123'; + $this->fractionalPart = '63144000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:07:07', + 'updated_at' => '2019-10-06 08:07:07', + 'flag' => true, + 'wikiDataId' => 'Q3242429', + ], + [ + 'id' => 129315, + 'name' => 'Willowbrook', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '91696000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '25507000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:07:07', + 'updated_at' => '2019-10-06 08:07:07', + 'flag' => true, + 'wikiDataId' => 'Q1898553', + ], + [ + 'id' => 129316, + 'name' => 'Willows', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '52433000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '19359000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:07:07', + 'updated_at' => '2019-10-06 08:07:07', + 'flag' => true, + 'wikiDataId' => 'Q774750', + ], + [ + 'id' => 129346, + 'name' => 'Wilton', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '41186000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '27217000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:07:07', + 'updated_at' => '2019-10-06 08:07:07', + 'flag' => true, + 'wikiDataId' => 'Q2345262', + ], + [ + 'id' => 129360, + 'name' => 'Winchester', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '70697000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '08447000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:07:07', + 'updated_at' => '2019-10-06 08:07:07', + 'flag' => true, + 'wikiDataId' => 'Q2117694', + ], + [ + 'id' => 129386, + 'name' => 'Windsor', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '54713000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '81638000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:07:08', + 'updated_at' => '2019-10-06 08:07:08', + 'flag' => true, + 'wikiDataId' => 'Q986852', + ], + [ + 'id' => 129439, + 'name' => 'Winter Gardens', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '32'; + $this->fractionalPart = '83116000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '116'; + $this->fractionalPart = '93336000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:07:08', + 'updated_at' => '2019-10-06 08:07:08', + 'flag' => true, + 'wikiDataId' => 'Q1957613', + ], + [ + 'id' => 129445, + 'name' => 'Winters', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '52491000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '97080000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:07:08', + 'updated_at' => '2019-10-06 08:07:08', + 'flag' => true, + 'wikiDataId' => 'Q986857', + ], + [ + 'id' => 129454, + 'name' => 'Winton', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '38938000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '61325000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:07:08', + 'updated_at' => '2019-10-06 08:07:08', + 'flag' => true, + 'wikiDataId' => 'Q583115', + ], + [ + 'id' => 129467, + 'name' => 'Wofford Heights', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '35'; + $this->fractionalPart = '70690000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '45620000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:07:09', + 'updated_at' => '2019-10-06 08:07:09', + 'flag' => true, + 'wikiDataId' => 'Q2734461', + ], + [ + 'id' => 129493, + 'name' => 'Woodacre', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '01270000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '64526000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:07:09', + 'updated_at' => '2019-10-06 08:07:09', + 'flag' => true, + 'wikiDataId' => 'Q2881460', + ], + [ + 'id' => 129502, + 'name' => 'Woodbridge', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '15408000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '30134000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:07:09', + 'updated_at' => '2019-10-06 08:07:09', + 'flag' => true, + 'wikiDataId' => 'Q3030642', + ], + [ + 'id' => 129516, + 'name' => 'Woodcrest', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '88224000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '35727000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:07:09', + 'updated_at' => '2019-10-06 08:07:09', + 'flag' => true, + 'wikiDataId' => 'Q2301317', + ], + [ + 'id' => 129524, + 'name' => 'Woodlake', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '41356000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '09872000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:07:09', + 'updated_at' => '2019-10-06 08:07:09', + 'flag' => true, + 'wikiDataId' => 'Q986884', + ], + [ + 'id' => 129526, + 'name' => 'Woodland', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '67852000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '77330000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:07:09', + 'updated_at' => '2019-10-06 08:07:09', + 'flag' => true, + 'wikiDataId' => 'Q837129', + ], + [ + 'id' => 129530, + 'name' => 'Woodland Hills', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '16834000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '60592000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:07:09', + 'updated_at' => '2019-10-06 08:07:09', + 'flag' => true, + 'wikiDataId' => 'Q1337818', + ], + [ + 'id' => 129556, + 'name' => 'Woodside', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '42994000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '25386000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:07:10', + 'updated_at' => '2019-10-06 08:07:10', + 'flag' => true, + 'wikiDataId' => 'Q984177', + ], + [ + 'id' => 129574, + 'name' => 'Woodville', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '09356000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '19900000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:07:10', + 'updated_at' => '2019-10-06 08:07:10', + 'flag' => true, + 'wikiDataId' => 'Q390000', + ], + [ + 'id' => 129617, + 'name' => 'Wrightwood', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '36083000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '63339000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:07:10', + 'updated_at' => '2019-10-06 08:07:10', + 'flag' => true, + 'wikiDataId' => 'Q2481425', + ], + [ + 'id' => 129686, + 'name' => 'Yolo County', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '68665000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '90162000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:07:11', + 'updated_at' => '2019-10-06 08:07:11', + 'flag' => true, + 'wikiDataId' => 'Q109709', + ], + [ + 'id' => 129689, + 'name' => 'Yorba Linda', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '88863000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '81311000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:07:11', + 'updated_at' => '2019-10-06 08:07:11', + 'flag' => true, + 'wikiDataId' => 'Q493518', + ], + [ + 'id' => 129711, + 'name' => 'Yosemite Lakes', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '19106000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '77265000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:07:12', + 'updated_at' => '2019-10-06 08:07:12', + 'flag' => true, + 'wikiDataId' => 'Q3306227', + ], + [ + 'id' => 129712, + 'name' => 'Yosemite Valley', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '74075000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '57788000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:07:12', + 'updated_at' => '2019-10-06 08:07:12', + 'flag' => true, + 'wikiDataId' => 'Q2140121', + ], + [ + 'id' => 129723, + 'name' => 'Yountville', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '40158000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '36081000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:07:12', + 'updated_at' => '2019-10-06 08:07:12', + 'flag' => true, + 'wikiDataId' => 'Q2781893', + ], + [ + 'id' => 129725, + 'name' => 'Yreka', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '73542000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '63447000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:07:12', + 'updated_at' => '2019-10-06 08:07:12', + 'flag' => true, + 'wikiDataId' => 'Q2565455', + ], + [ + 'id' => 129726, + 'name' => 'Yuba City', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '14045000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '61691000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:07:12', + 'updated_at' => '2019-10-06 08:07:12', + 'flag' => true, + 'wikiDataId' => 'Q169948', + ], + [ + 'id' => 129727, + 'name' => 'Yuba County', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '26902000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '35126000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:07:12', + 'updated_at' => '2019-10-06 08:07:12', + 'flag' => true, + 'wikiDataId' => 'Q196014', + ], + [ + 'id' => 129728, + 'name' => 'Yucaipa', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '03363000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '04309000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:07:12', + 'updated_at' => '2019-10-06 08:07:12', + 'flag' => true, + 'wikiDataId' => 'Q598567', + ], + [ + 'id' => 129729, + 'name' => 'Yucca Valley', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '11417000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '116'; + $this->fractionalPart = '43224000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:07:12', + 'updated_at' => '2019-10-06 08:07:12', + 'flag' => true, + 'wikiDataId' => 'Q862684', + ], + [ + 'id' => 153627, + 'name' => 'City of Industry', + 'state_id' => 1416, + 'state_code' => 'CA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '01583333'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '95083333'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2023-07-05 20:51:00', + 'updated_at' => '2023-07-05 20:51:00', + 'flag' => true, + 'wikiDataId' => 'Q927094', + ], + [ + 'id' => 110979, + 'name' => 'Aberdeen', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '97537000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '123'; + $this->fractionalPart = '81572000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:43', + 'updated_at' => '2019-10-06 08:01:43', + 'flag' => true, + 'wikiDataId' => 'Q233808', + ], + [ + 'id' => 111027, + 'name' => 'Adams County', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '98338000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '56050000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:43', + 'updated_at' => '2019-10-06 08:01:43', + 'flag' => true, + 'wikiDataId' => 'Q156273', + ], + [ + 'id' => 111063, + 'name' => 'Ahtanum', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '55957000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '62201000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:44', + 'updated_at' => '2019-10-06 08:01:44', + 'flag' => true, + 'wikiDataId' => 'Q1510200', + ], + [ + 'id' => 111072, + 'name' => 'Airway Heights', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '64461000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '59327000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:44', + 'updated_at' => '2019-10-06 08:01:44', + 'flag' => true, + 'wikiDataId' => 'Q1502110', + ], + [ + 'id' => 111138, + 'name' => 'Alderton', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '16955000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '22928000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:44', + 'updated_at' => '2019-10-06 08:01:44', + 'flag' => true, + 'wikiDataId' => 'Q4713761', + ], + [ + 'id' => 111139, + 'name' => 'Alderwood Manor', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '82204000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '28207000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:44', + 'updated_at' => '2019-10-06 08:01:44', + 'flag' => true, + 'wikiDataId' => 'Q1515783', + ], + [ + 'id' => 111164, + 'name' => 'Algona', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '27899000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '25206000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:44', + 'updated_at' => '2019-10-06 08:01:44', + 'flag' => true, + 'wikiDataId' => 'Q514836', + ], + [ + 'id' => 111205, + 'name' => 'Allyn', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '38565000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '82764000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:44', + 'updated_at' => '2019-10-06 08:01:44', + 'flag' => true, + 'wikiDataId' => 'Q3473472', + ], + [ + 'id' => 111266, + 'name' => 'Amboy', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '45'; + $this->fractionalPart = '91011000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '44649000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:45', + 'updated_at' => '2019-10-06 08:01:45', + 'flag' => true, + 'wikiDataId' => 'Q1515830', + ], + [ + 'id' => 111278, + 'name' => 'Ames Lake', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '63288000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '96623000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:45', + 'updated_at' => '2019-10-06 08:01:45', + 'flag' => true, + 'wikiDataId' => 'Q1508298', + ], + [ + 'id' => 111297, + 'name' => 'Anacortes', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '48'; + $this->fractionalPart = '51260000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '61267000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:45', + 'updated_at' => '2019-10-06 08:01:45', + 'flag' => true, + 'wikiDataId' => 'Q483595', + ], + [ + 'id' => 111470, + 'name' => 'Arlington', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '48'; + $this->fractionalPart = '19871000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '12514000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:46', + 'updated_at' => '2019-10-06 08:01:46', + 'flag' => true, + 'wikiDataId' => 'Q1055866', + ], + [ + 'id' => 111474, + 'name' => 'Arlington Heights', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '48'; + $this->fractionalPart = '20205000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '06208000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:46', + 'updated_at' => '2019-10-06 08:01:46', + 'flag' => true, + 'wikiDataId' => 'Q1509600', + ], + [ + 'id' => 111501, + 'name' => 'Artondale', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '29954000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '62069000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:46', + 'updated_at' => '2019-10-06 08:01:46', + 'flag' => true, + 'wikiDataId' => 'Q1508649', + ], + [ + 'id' => 111550, + 'name' => 'Asotin', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '33933000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '04821000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:47', + 'updated_at' => '2019-10-06 08:01:47', + 'flag' => true, + 'wikiDataId' => 'Q168884', + ], + [ + 'id' => 111551, + 'name' => 'Asotin County', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '19186000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '20307000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:47', + 'updated_at' => '2019-10-06 08:01:47', + 'flag' => true, + 'wikiDataId' => 'Q156295', + ], + [ + 'id' => 111632, + 'name' => 'Auburn', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '30732000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '22845000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:47', + 'updated_at' => '2019-10-06 08:01:47', + 'flag' => true, + 'wikiDataId' => 'Q661595', + ], + [ + 'id' => 111654, + 'name' => 'Ault Field', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '48'; + $this->fractionalPart = '33812000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '67441000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:47', + 'updated_at' => '2019-10-06 08:01:47', + 'flag' => true, + 'wikiDataId' => 'Q1512908', + ], + [ + 'id' => 111735, + 'name' => 'Bainbridge Island', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '62621000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '52124000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:48', + 'updated_at' => '2019-10-06 08:01:48', + 'flag' => true, + 'wikiDataId' => 'Q803903', + ], + [ + 'id' => 111795, + 'name' => 'Bangor Trident Base', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '72274000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '71446000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:48', + 'updated_at' => '2019-10-06 08:01:48', + 'flag' => true, + 'wikiDataId' => 'Q2042744', + ], + [ + 'id' => 111813, + 'name' => 'Barberton', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '45'; + $this->fractionalPart = '69317000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '59899000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:48', + 'updated_at' => '2019-10-06 08:01:48', + 'flag' => true, + 'wikiDataId' => 'Q1508146', + ], + [ + 'id' => 111879, + 'name' => 'Basin City', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '59403000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '15223000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:48', + 'updated_at' => '2019-10-06 08:01:48', + 'flag' => true, + 'wikiDataId' => 'Q1512951', + ], + [ + 'id' => 111907, + 'name' => 'Battle Ground', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '45'; + $this->fractionalPart = '78095000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '53343000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:49', + 'updated_at' => '2019-10-06 08:01:49', + 'flag' => true, + 'wikiDataId' => 'Q810999', + ], + [ + 'id' => 112055, + 'name' => 'Belfair', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '45065000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '82737000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:50', + 'updated_at' => '2019-10-06 08:01:50', + 'flag' => true, + 'wikiDataId' => 'Q3473233', + ], + [ + 'id' => 112117, + 'name' => 'Bellevue', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '61038000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '20068000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:50', + 'updated_at' => '2019-10-06 08:01:50', + 'flag' => true, + 'wikiDataId' => 'Q214164', + ], + [ + 'id' => 112120, + 'name' => 'Bellingham', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '48'; + $this->fractionalPart = '75955000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '48822000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:50', + 'updated_at' => '2019-10-06 08:01:50', + 'flag' => true, + 'wikiDataId' => 'Q430267', + ], + [ + 'id' => 112198, + 'name' => 'Benton City', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '26319000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '48780000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:51', + 'updated_at' => '2019-10-06 08:01:51', + 'flag' => true, + 'wikiDataId' => 'Q1504090', + ], + [ + 'id' => 112207, + 'name' => 'Benton County', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '23978000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '51120000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:51', + 'updated_at' => '2019-10-06 08:01:51', + 'flag' => true, + 'wikiDataId' => 'Q156216', + ], + [ + 'id' => 112282, + 'name' => 'Bethel', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '49398000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '63125000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:51', + 'updated_at' => '2019-10-06 08:01:51', + 'flag' => true, + 'wikiDataId' => 'Q3473652', + ], + [ + 'id' => 112326, + 'name' => 'Big Lake', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '48'; + $this->fractionalPart = '40288000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '24127000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:51', + 'updated_at' => '2019-10-06 08:01:51', + 'flag' => true, + 'wikiDataId' => 'Q1509489', + ], + [ + 'id' => 112353, + 'name' => 'Birch Bay', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '48'; + $this->fractionalPart = '91789000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '74462000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:52', + 'updated_at' => '2019-10-06 08:01:52', + 'flag' => true, + 'wikiDataId' => 'Q1508497', + ], + [ + 'id' => 112374, + 'name' => 'Black Diamond', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '30871000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '00317000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:52', + 'updated_at' => '2019-10-06 08:01:52', + 'flag' => true, + 'wikiDataId' => 'Q1191152', + ], + [ + 'id' => 112404, + 'name' => 'Blaine', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '48'; + $this->fractionalPart = '99372000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '74712000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:52', + 'updated_at' => '2019-10-06 08:01:52', + 'flag' => true, + 'wikiDataId' => 'Q1144380', + ], + [ + 'id' => 112547, + 'name' => 'Bonney Lake', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '17705000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '18651000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:53', + 'updated_at' => '2019-10-06 08:01:53', + 'flag' => true, + 'wikiDataId' => 'Q657810', + ], + [ + 'id' => 112595, + 'name' => 'Bothell', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '76232000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '20540000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:53', + 'updated_at' => '2019-10-06 08:01:53', + 'flag' => true, + 'wikiDataId' => 'Q303046', + ], + [ + 'id' => 112596, + 'name' => 'Bothell East', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '80631000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '18427000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:53', + 'updated_at' => '2019-10-06 08:01:53', + 'flag' => true, + 'wikiDataId' => 'Q5732721', + ], + [ + 'id' => 112597, + 'name' => 'Bothell West', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '80527000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '24064000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:53', + 'updated_at' => '2019-10-06 08:01:53', + 'flag' => true, + 'wikiDataId' => 'Q5732724', + ], + [ + 'id' => 112607, + 'name' => 'Boulevard Park', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '48927000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '31512000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:53', + 'updated_at' => '2019-10-06 08:01:53', + 'flag' => true, + 'wikiDataId' => 'Q5732835', + ], + [ + 'id' => 112723, + 'name' => 'Bremerton', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '56732000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '63264000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:54', + 'updated_at' => '2019-10-06 08:01:54', + 'flag' => true, + 'wikiDataId' => 'Q695417', + ], + [ + 'id' => 112744, + 'name' => 'Brewster', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '48'; + $this->fractionalPart = '09598000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '78062000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:54', + 'updated_at' => '2019-10-06 08:01:54', + 'flag' => true, + 'wikiDataId' => 'Q1506880', + ], + [ + 'id' => 112768, + 'name' => 'Bridgeport', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '48'; + $this->fractionalPart = '00820000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '67116000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:54', + 'updated_at' => '2019-10-06 08:01:54', + 'flag' => true, + 'wikiDataId' => 'Q2266356', + ], + [ + 'id' => 112782, + 'name' => 'Brier', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '78454000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '27429000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:54', + 'updated_at' => '2019-10-06 08:01:54', + 'flag' => true, + 'wikiDataId' => 'Q1515537', + ], + [ + 'id' => 112922, + 'name' => 'Browns Point', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '30038000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '44124000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:55', + 'updated_at' => '2019-10-06 08:01:55', + 'flag' => true, + 'wikiDataId' => 'Q4976674', + ], + [ + 'id' => 112955, + 'name' => 'Brush Prairie', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '45'; + $this->fractionalPart = '73289000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '54649000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:56', + 'updated_at' => '2019-10-06 08:01:56', + 'flag' => true, + 'wikiDataId' => 'Q1502728', + ], + [ + 'id' => 112964, + 'name' => 'Bryant', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '48'; + $this->fractionalPart = '23899000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '15792000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:56', + 'updated_at' => '2019-10-06 08:01:56', + 'flag' => true, + 'wikiDataId' => 'Q4980536', + ], + [ + 'id' => 112967, + 'name' => 'Bryn Mawr-Skyway', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '49430000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '24092000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:56', + 'updated_at' => '2019-10-06 08:01:56', + 'flag' => true, + 'wikiDataId' => 'Q1508150', + ], + [ + 'id' => 112988, + 'name' => 'Buckley', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '16316000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '02678000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:56', + 'updated_at' => '2019-10-06 08:01:56', + 'flag' => true, + 'wikiDataId' => 'Q1363158', + ], + [ + 'id' => 113039, + 'name' => 'Bunk Foss', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '96171000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '09441000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:56', + 'updated_at' => '2019-10-06 08:01:56', + 'flag' => true, + 'wikiDataId' => 'Q5735636', + ], + [ + 'id' => 113048, + 'name' => 'Burbank', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '19986000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '01306000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:56', + 'updated_at' => '2019-10-06 08:01:56', + 'flag' => true, + 'wikiDataId' => 'Q1505383', + ], + [ + 'id' => 113052, + 'name' => 'Burien', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '47038000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '34679000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:56', + 'updated_at' => '2019-10-06 08:01:56', + 'flag' => true, + 'wikiDataId' => 'Q984825', + ], + [ + 'id' => 113064, + 'name' => 'Burley', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '41787000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '63097000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:56', + 'updated_at' => '2019-10-06 08:01:56', + 'flag' => true, + 'wikiDataId' => 'Q3473799', + ], + [ + 'id' => 113076, + 'name' => 'Burlington', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '48'; + $this->fractionalPart = '47566000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '32544000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:56', + 'updated_at' => '2019-10-06 08:01:56', + 'flag' => true, + 'wikiDataId' => 'Q1144352', + ], + [ + 'id' => 113240, + 'name' => 'Camano', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '48'; + $this->fractionalPart = '17399000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '52821000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:57', + 'updated_at' => '2019-10-06 08:01:57', + 'flag' => true, + 'wikiDataId' => 'Q995020', + ], + [ + 'id' => 113243, + 'name' => 'Camas', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '45'; + $this->fractionalPart = '58706000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '39954000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:58', + 'updated_at' => '2019-10-06 08:01:58', + 'flag' => true, + 'wikiDataId' => 'Q1507709', + ], + [ + 'id' => 113338, + 'name' => 'Canterwood', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '37510000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '58930000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:58', + 'updated_at' => '2019-10-06 08:01:58', + 'flag' => true, + 'wikiDataId' => 'Q2417199', + ], + [ + 'id' => 113424, + 'name' => 'Carnation', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '64788000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '91401000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:59', + 'updated_at' => '2019-10-06 08:01:59', + 'flag' => true, + 'wikiDataId' => 'Q1191413', + ], + [ + 'id' => 113476, + 'name' => 'Carson', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '45'; + $this->fractionalPart = '72539000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '81924000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:59', + 'updated_at' => '2019-10-06 08:01:59', + 'flag' => true, + 'wikiDataId' => 'Q390526', + ], + [ + 'id' => 113517, + 'name' => 'Cascade Valley', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '13459000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '32808000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:59', + 'updated_at' => '2019-10-06 08:01:59', + 'flag' => true, + 'wikiDataId' => 'Q1502511', + ], + [ + 'id' => 113522, + 'name' => 'Cashmere', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '52235000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '46980000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:59', + 'updated_at' => '2019-10-06 08:01:59', + 'flag' => true, + 'wikiDataId' => 'Q1207471', + ], + [ + 'id' => 113550, + 'name' => 'Castle Rock', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '27511000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '90761000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:59', + 'updated_at' => '2019-10-06 08:01:59', + 'flag' => true, + 'wikiDataId' => 'Q1023555', + ], + [ + 'id' => 113569, + 'name' => 'Cathcart', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '84788000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '09929000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:59', + 'updated_at' => '2019-10-06 08:01:59', + 'flag' => true, + 'wikiDataId' => 'Q1508281', + ], + [ + 'id' => 113571, + 'name' => 'Cathlamet', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '20317000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '123'; + $this->fractionalPart = '38318000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:01:59', + 'updated_at' => '2019-10-06 08:01:59', + 'flag' => true, + 'wikiDataId' => 'Q168854', + ], + [ + 'id' => 113679, + 'name' => 'Central Park', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '97343000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '123'; + $this->fractionalPart = '69239000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:00', + 'updated_at' => '2019-10-06 08:02:00', + 'flag' => true, + 'wikiDataId' => 'Q1504159', + ], + [ + 'id' => 113687, + 'name' => 'Centralia', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '71621000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '95430000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:00', + 'updated_at' => '2019-10-06 08:02:00', + 'flag' => true, + 'wikiDataId' => 'Q868700', + ], + [ + 'id' => 113825, + 'name' => 'Chehalis', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '66205000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '96402000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:01', + 'updated_at' => '2019-10-06 08:02:01', + 'flag' => true, + 'wikiDataId' => 'Q249441', + ], + [ + 'id' => 113826, + 'name' => 'Chelan', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '84097000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '01646000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:01', + 'updated_at' => '2019-10-06 08:02:01', + 'flag' => true, + 'wikiDataId' => 'Q1207462', + ], + [ + 'id' => 113827, + 'name' => 'Chelan County', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '86910000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '61891000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:01', + 'updated_at' => '2019-10-06 08:02:01', + 'flag' => true, + 'wikiDataId' => 'Q493236', + ], + [ + 'id' => 113840, + 'name' => 'Cheney', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '48739000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '57576000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:01', + 'updated_at' => '2019-10-06 08:02:01', + 'flag' => true, + 'wikiDataId' => 'Q1065488', + ], + [ + 'id' => 113924, + 'name' => 'Chewelah', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '48'; + $this->fractionalPart = '27629000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '71552000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:02', + 'updated_at' => '2019-10-06 08:02:02', + 'flag' => true, + 'wikiDataId' => 'Q1515809', + ], + [ + 'id' => 113944, + 'name' => 'Chico', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '61148000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '71042000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:02', + 'updated_at' => '2019-10-06 08:02:02', + 'flag' => true, + 'wikiDataId' => 'Q3473664', + ], + [ + 'id' => 114083, + 'name' => 'City of Sammamish', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '60444000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '03768000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:03', + 'updated_at' => '2019-10-06 08:02:03', + 'flag' => true, + 'wikiDataId' => 'Q13188841', + ], + [ + 'id' => 114097, + 'name' => 'Clallam County', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '48'; + $this->fractionalPart = '11044000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '123'; + $this->fractionalPart = '93432000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:03', + 'updated_at' => '2019-10-06 08:02:03', + 'flag' => true, + 'wikiDataId' => 'Q156306', + ], + [ + 'id' => 114131, + 'name' => 'Clark County', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '45'; + $this->fractionalPart = '77927000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '48259000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:04', + 'updated_at' => '2019-10-06 08:02:04', + 'flag' => true, + 'wikiDataId' => 'Q156287', + ], + [ + 'id' => 114150, + 'name' => 'Clarkston', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '41629000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '04557000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:04', + 'updated_at' => '2019-10-06 08:02:04', + 'flag' => true, + 'wikiDataId' => 'Q980878', + ], + [ + 'id' => 114151, + 'name' => 'Clarkston Heights-Vineland', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '38742000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '08300000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:04', + 'updated_at' => '2019-10-06 08:02:04', + 'flag' => true, + 'wikiDataId' => 'Q27276', + ], + [ + 'id' => 114207, + 'name' => 'Cle Elum', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '19540000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '93925000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:04', + 'updated_at' => '2019-10-06 08:02:04', + 'flag' => true, + 'wikiDataId' => 'Q1065481', + ], + [ + 'id' => 114212, + 'name' => 'Clear Lake', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '48'; + $this->fractionalPart = '46427000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '23404000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:04', + 'updated_at' => '2019-10-06 08:02:04', + 'flag' => true, + 'wikiDataId' => 'Q1515610', + ], + [ + 'id' => 114221, + 'name' => 'Clearview', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '83371000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '12596000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:04', + 'updated_at' => '2019-10-06 08:02:04', + 'flag' => true, + 'wikiDataId' => 'Q5130904', + ], + [ + 'id' => 114321, + 'name' => 'Clyde Hill', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '63177000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '21790000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:05', + 'updated_at' => '2019-10-06 08:02:05', + 'flag' => true, + 'wikiDataId' => 'Q1505600', + ], + [ + 'id' => 114409, + 'name' => 'Colfax', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '88017000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '36435000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:06', + 'updated_at' => '2019-10-06 08:02:06', + 'flag' => true, + 'wikiDataId' => 'Q1509984', + ], + [ + 'id' => 114415, + 'name' => 'College Place', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '04930000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '38830000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:06', + 'updated_at' => '2019-10-06 08:02:06', + 'flag' => true, + 'wikiDataId' => 'Q1516159', + ], + [ + 'id' => 114484, + 'name' => 'Columbia County', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '29755000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '90788000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:06', + 'updated_at' => '2019-10-06 08:02:06', + 'flag' => true, + 'wikiDataId' => 'Q156253', + ], + [ + 'id' => 114506, + 'name' => 'Colville', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '48'; + $this->fractionalPart = '54657000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '90554000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:06', + 'updated_at' => '2019-10-06 08:02:06', + 'flag' => true, + 'wikiDataId' => 'Q2601326', + ], + [ + 'id' => 114561, + 'name' => 'Connell', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '66347000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '86111000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:07', + 'updated_at' => '2019-10-06 08:02:07', + 'flag' => true, + 'wikiDataId' => 'Q1505746', + ], + [ + 'id' => 114685, + 'name' => 'Cosmopolis', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '95537000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '123'; + $this->fractionalPart = '77378000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:08', + 'updated_at' => '2019-10-06 08:02:08', + 'flag' => true, + 'wikiDataId' => 'Q1516226', + ], + [ + 'id' => 114694, + 'name' => 'Cottage Lake', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '74427000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '07735000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:08', + 'updated_at' => '2019-10-06 08:02:08', + 'flag' => true, + 'wikiDataId' => 'Q1502643', + ], + [ + 'id' => 114710, + 'name' => 'Coulee Dam', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '96543000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '97613000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:08', + 'updated_at' => '2019-10-06 08:02:08', + 'flag' => true, + 'wikiDataId' => 'Q1507868', + ], + [ + 'id' => 114720, + 'name' => 'Country Homes', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '74850000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '40439000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:08', + 'updated_at' => '2019-10-06 08:02:08', + 'flag' => true, + 'wikiDataId' => 'Q1510510', + ], + [ + 'id' => 114727, + 'name' => 'Coupeville', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '48'; + $this->fractionalPart = '21982000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '68628000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:08', + 'updated_at' => '2019-10-06 08:02:08', + 'flag' => true, + 'wikiDataId' => 'Q1513976', + ], + [ + 'id' => 114741, + 'name' => 'Covington', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '35818000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '12216000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:08', + 'updated_at' => '2019-10-06 08:02:08', + 'flag' => true, + 'wikiDataId' => 'Q1074503', + ], + [ + 'id' => 114749, + 'name' => 'Cowlitz County', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '19329000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '68078000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:08', + 'updated_at' => '2019-10-06 08:02:08', + 'flag' => true, + 'wikiDataId' => 'Q156276', + ], + [ + 'id' => 114828, + 'name' => 'Crocker', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '08091000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '10383000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:09', + 'updated_at' => '2019-10-06 08:02:09', + 'flag' => true, + 'wikiDataId' => 'Q953296', + ], + [ + 'id' => 115000, + 'name' => 'Dallesport', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '45'; + $this->fractionalPart = '61734000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '17952000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:10', + 'updated_at' => '2019-10-06 08:02:10', + 'flag' => true, + 'wikiDataId' => 'Q1508422', + ], + [ + 'id' => 115054, + 'name' => 'Darrington', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '48'; + $this->fractionalPart = '25539000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '60151000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:10', + 'updated_at' => '2019-10-06 08:02:10', + 'flag' => true, + 'wikiDataId' => 'Q1507497', + ], + [ + 'id' => 115060, + 'name' => 'Davenport', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '65405000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '14997000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:11', + 'updated_at' => '2019-10-06 08:02:11', + 'flag' => true, + 'wikiDataId' => 'Q1515095', + ], + [ + 'id' => 115101, + 'name' => 'Dayton', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '32375000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '97244000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:11', + 'updated_at' => '2019-10-06 08:02:11', + 'flag' => true, + 'wikiDataId' => 'Q925426', + ], + [ + 'id' => 115179, + 'name' => 'Deer Park', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '95434000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '47689000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:12', + 'updated_at' => '2019-10-06 08:02:12', + 'flag' => true, + 'wikiDataId' => 'Q1515762', + ], + [ + 'id' => 115272, + 'name' => 'Des Moines', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '40177000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '32429000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:13', + 'updated_at' => '2019-10-06 08:02:13', + 'flag' => true, + 'wikiDataId' => 'Q163325', + ], + [ + 'id' => 115279, + 'name' => 'Desert Aire', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '67930000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '91727000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:13', + 'updated_at' => '2019-10-06 08:02:13', + 'flag' => true, + 'wikiDataId' => 'Q2785000', + ], + [ + 'id' => 115354, + 'name' => 'Dishman', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '66007000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '27596000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:14', + 'updated_at' => '2019-10-06 08:02:14', + 'flag' => true, + 'wikiDataId' => 'Q1513007', + ], + [ + 'id' => 115389, + 'name' => 'Dollar Corner', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '45'; + $this->fractionalPart = '78012000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '60010000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:15', + 'updated_at' => '2019-10-06 08:02:15', + 'flag' => true, + 'wikiDataId' => 'Q1504680', + ], + [ + 'id' => 115436, + 'name' => 'Douglas County', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '73607000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '69172000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:15', + 'updated_at' => '2019-10-06 08:02:15', + 'flag' => true, + 'wikiDataId' => 'Q156220', + ], + [ + 'id' => 115489, + 'name' => 'DuPont', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '09676000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '63124000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:16', + 'updated_at' => '2019-10-06 08:02:16', + 'flag' => true, + 'wikiDataId' => 'Q128112', + ], + [ + 'id' => 115582, + 'name' => 'Duvall', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '74232000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '98568000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:17', + 'updated_at' => '2019-10-06 08:02:17', + 'flag' => true, + 'wikiDataId' => 'Q1362720', + ], + [ + 'id' => 115691, + 'name' => 'East Hill-Meridian', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '41052000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '17369000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:38', + 'updated_at' => '2019-10-06 08:02:38', + 'flag' => true, + 'wikiDataId' => 'Q1515580', + ], + [ + 'id' => 115738, + 'name' => 'East Port Orchard', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '52343000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '62430000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:38', + 'updated_at' => '2019-10-06 08:02:38', + 'flag' => true, + 'wikiDataId' => 'Q1503774', + ], + [ + 'id' => 115745, + 'name' => 'East Renton Highlands', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '48482000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '11234000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:38', + 'updated_at' => '2019-10-06 08:02:38', + 'flag' => true, + 'wikiDataId' => 'Q1508714', + ], + [ + 'id' => 115771, + 'name' => 'East Wenatchee', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '41568000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '29313000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:39', + 'updated_at' => '2019-10-06 08:02:39', + 'flag' => true, + 'wikiDataId' => 'Q988279', + ], + [ + 'id' => 115772, + 'name' => 'East Wenatchee Bench', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '42568000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '28118000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:39', + 'updated_at' => '2019-10-06 08:02:39', + 'flag' => true, + 'wikiDataId' => 'Q1515111', + ], + [ + 'id' => 115777, + 'name' => 'Eastgate', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '57266000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '14578000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:39', + 'updated_at' => '2019-10-06 08:02:39', + 'flag' => true, + 'wikiDataId' => 'Q1508690', + ], + [ + 'id' => 115784, + 'name' => 'Eastmont', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '89740000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '18154000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:39', + 'updated_at' => '2019-10-06 08:02:39', + 'flag' => true, + 'wikiDataId' => 'Q5816770', + ], + [ + 'id' => 115809, + 'name' => 'Eatonville', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '86733000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '26650000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:39', + 'updated_at' => '2019-10-06 08:02:39', + 'flag' => true, + 'wikiDataId' => 'Q1515430', + ], + [ + 'id' => 115864, + 'name' => 'Edgewood', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '25010000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '29373000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:39', + 'updated_at' => '2019-10-06 08:02:39', + 'flag' => true, + 'wikiDataId' => 'Q1508050', + ], + [ + 'id' => 115878, + 'name' => 'Edmonds', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '81065000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '37736000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:39', + 'updated_at' => '2019-10-06 08:02:39', + 'flag' => true, + 'wikiDataId' => 'Q1055845', + ], + [ + 'id' => 115960, + 'name' => 'Electric City', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '93237000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '03808000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:40', + 'updated_at' => '2019-10-06 08:02:40', + 'flag' => true, + 'wikiDataId' => 'Q1506981', + ], + [ + 'id' => 115989, + 'name' => 'Elk Plain', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '05316000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '39762000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:40', + 'updated_at' => '2019-10-06 08:02:40', + 'flag' => true, + 'wikiDataId' => 'Q1515942', + ], + [ + 'id' => 116018, + 'name' => 'Ellensburg', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '99651000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '54785000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:40', + 'updated_at' => '2019-10-06 08:02:40', + 'flag' => true, + 'wikiDataId' => 'Q868684', + ], + [ + 'id' => 116046, + 'name' => 'Elma', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '00343000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '123'; + $this->fractionalPart = '40877000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:40', + 'updated_at' => '2019-10-06 08:02:40', + 'flag' => true, + 'wikiDataId' => 'Q610930', + ], + [ + 'id' => 116123, + 'name' => 'Enetai', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '58482000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '59875000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:41', + 'updated_at' => '2019-10-06 08:02:41', + 'flag' => true, + 'wikiDataId' => 'Q16080913', + ], + [ + 'id' => 116152, + 'name' => 'Entiat', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '67596000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '20841000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:41', + 'updated_at' => '2019-10-06 08:02:41', + 'flag' => true, + 'wikiDataId' => 'Q1502048', + ], + [ + 'id' => 116153, + 'name' => 'Enumclaw', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '20427000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '99150000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:41', + 'updated_at' => '2019-10-06 08:02:41', + 'flag' => true, + 'wikiDataId' => 'Q1513207', + ], + [ + 'id' => 116156, + 'name' => 'Ephrata', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '31764000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '55365000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:41', + 'updated_at' => '2019-10-06 08:02:41', + 'flag' => true, + 'wikiDataId' => 'Q1507694', + ], + [ + 'id' => 116171, + 'name' => 'Erlands Point-Kitsap Lake', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '59719000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '70225000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:41', + 'updated_at' => '2019-10-06 08:02:41', + 'flag' => true, + 'wikiDataId' => 'Q1914933', + ], + [ + 'id' => 116189, + 'name' => 'Esperance', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '78899000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '35541000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:41', + 'updated_at' => '2019-10-06 08:02:41', + 'flag' => true, + 'wikiDataId' => 'Q1509659', + ], + [ + 'id' => 116260, + 'name' => 'Everett', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '97898000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '20208000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:42', + 'updated_at' => '2019-10-06 08:02:42', + 'flag' => true, + 'wikiDataId' => 'Q392599', + ], + [ + 'id' => 116267, + 'name' => 'Everson', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '48'; + $this->fractionalPart = '92012000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '34266000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:42', + 'updated_at' => '2019-10-06 08:02:42', + 'flag' => true, + 'wikiDataId' => 'Q1502658', + ], + [ + 'id' => 116297, + 'name' => 'Fairchild Air Force Base', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '61879000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '64826000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:42', + 'updated_at' => '2019-10-06 08:02:42', + 'flag' => true, + 'wikiDataId' => 'Q1513045', + ], + [ + 'id' => 116363, + 'name' => 'Fairwood', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '44843000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '15734000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:42', + 'updated_at' => '2019-10-06 08:02:42', + 'flag' => true, + 'wikiDataId' => 'Q1515735', + ], + [ + 'id' => 116371, + 'name' => 'Fall City', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '56732000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '88873000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:42', + 'updated_at' => '2019-10-06 08:02:42', + 'flag' => true, + 'wikiDataId' => 'Q1514432', + ], + [ + 'id' => 116465, + 'name' => 'Federal Way', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '32232000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '31262000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:43', + 'updated_at' => '2019-10-06 08:02:43', + 'flag' => true, + 'wikiDataId' => 'Q821112', + ], + [ + 'id' => 116467, + 'name' => 'Felida', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '45'; + $this->fractionalPart = '70956000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '70732000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:43', + 'updated_at' => '2019-10-06 08:02:43', + 'flag' => true, + 'wikiDataId' => 'Q1509896', + ], + [ + 'id' => 116484, + 'name' => 'Fern Prairie', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '45'; + $this->fractionalPart = '63651000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '39870000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:43', + 'updated_at' => '2019-10-06 08:02:43', + 'flag' => true, + 'wikiDataId' => 'Q5859071', + ], + [ + 'id' => 116490, + 'name' => 'Ferndale', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '48'; + $this->fractionalPart = '84650000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '59101000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:43', + 'updated_at' => '2019-10-06 08:02:43', + 'flag' => true, + 'wikiDataId' => 'Q1502426', + ], + [ + 'id' => 116498, + 'name' => 'Ferry County', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '48'; + $this->fractionalPart = '47007000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '51649000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:43', + 'updated_at' => '2019-10-06 08:02:43', + 'flag' => true, + 'wikiDataId' => 'Q493228', + ], + [ + 'id' => 116504, + 'name' => 'Fife', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '23927000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '35707000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:43', + 'updated_at' => '2019-10-06 08:02:43', + 'flag' => true, + 'wikiDataId' => 'Q1510211', + ], + [ + 'id' => 116505, + 'name' => 'Fife Heights', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '25899000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '34568000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:43', + 'updated_at' => '2019-10-06 08:02:43', + 'flag' => true, + 'wikiDataId' => 'Q13634345', + ], + [ + 'id' => 116517, + 'name' => 'Finley', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '15402000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '03390000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:43', + 'updated_at' => '2019-10-06 08:02:43', + 'flag' => true, + 'wikiDataId' => 'Q248754', + ], + [ + 'id' => 116519, + 'name' => 'Fircrest', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '23954000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '51596000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:43', + 'updated_at' => '2019-10-06 08:02:43', + 'flag' => true, + 'wikiDataId' => 'Q1505832', + ], + [ + 'id' => 116538, + 'name' => 'Five Corners', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '45'; + $this->fractionalPart = '68456000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '57510000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:43', + 'updated_at' => '2019-10-06 08:02:43', + 'flag' => true, + 'wikiDataId' => 'Q1504803', + ], + [ + 'id' => 116617, + 'name' => 'Fobes Hill', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '94899000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '11985000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:44', + 'updated_at' => '2019-10-06 08:02:44', + 'flag' => true, + 'wikiDataId' => 'Q3475108', + ], + [ + 'id' => 116641, + 'name' => 'Fords Prairie', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '73510000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '98902000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:44', + 'updated_at' => '2019-10-06 08:02:44', + 'flag' => true, + 'wikiDataId' => 'Q1503498', + ], + [ + 'id' => 116675, + 'name' => 'Forks', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '95036000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '124'; + $this->fractionalPart = '38549000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:44', + 'updated_at' => '2019-10-06 08:02:44', + 'flag' => true, + 'wikiDataId' => 'Q226013', + ], + [ + 'id' => 116802, + 'name' => 'Fox Island', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '25149000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '62902000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:45', + 'updated_at' => '2019-10-06 08:02:45', + 'flag' => true, + 'wikiDataId' => 'Q1239624', + ], + [ + 'id' => 116865, + 'name' => 'Franklin County', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '53477000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '89889000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:46', + 'updated_at' => '2019-10-06 08:02:46', + 'flag' => true, + 'wikiDataId' => 'Q118716', + ], + [ + 'id' => 116893, + 'name' => 'Frederickson', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '09621000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '35873000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:46', + 'updated_at' => '2019-10-06 08:02:46', + 'flag' => true, + 'wikiDataId' => 'Q1502544', + ], + [ + 'id' => 116907, + 'name' => 'Freeland', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '48'; + $this->fractionalPart = '00954000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '52598000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:46', + 'updated_at' => '2019-10-06 08:02:46', + 'flag' => true, + 'wikiDataId' => 'Q1508227', + ], + [ + 'id' => 116943, + 'name' => 'Friday Harbor', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '48'; + $this->fractionalPart = '53427000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '123'; + $this->fractionalPart = '01712000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:46', + 'updated_at' => '2019-10-06 08:02:46', + 'flag' => true, + 'wikiDataId' => 'Q968711', + ], + [ + 'id' => 117087, + 'name' => 'Garfield County', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '43156000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '54519000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:47', + 'updated_at' => '2019-10-06 08:02:47', + 'flag' => true, + 'wikiDataId' => 'Q695782', + ], + [ + 'id' => 117099, + 'name' => 'Garrett', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '05208000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '40275000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:47', + 'updated_at' => '2019-10-06 08:02:47', + 'flag' => true, + 'wikiDataId' => 'Q1503935', + ], + [ + 'id' => 117145, + 'name' => 'Geneva', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '48'; + $this->fractionalPart = '74567000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '40183000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:48', + 'updated_at' => '2019-10-06 08:02:48', + 'flag' => true, + 'wikiDataId' => 'Q580628', + ], + [ + 'id' => 117199, + 'name' => 'Gig Harbor', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '32926000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '58013000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:48', + 'updated_at' => '2019-10-06 08:02:48', + 'flag' => true, + 'wikiDataId' => 'Q1011748', + ], + [ + 'id' => 117258, + 'name' => 'Gleed', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '65818000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '61340000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:49', + 'updated_at' => '2019-10-06 08:02:49', + 'flag' => true, + 'wikiDataId' => 'Q1503439', + ], + [ + 'id' => 117339, + 'name' => 'Gold Bar', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '85677000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '69706000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:49', + 'updated_at' => '2019-10-06 08:02:49', + 'flag' => true, + 'wikiDataId' => 'Q1506914', + ], + [ + 'id' => 117360, + 'name' => 'Goldendale', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '45'; + $this->fractionalPart = '82068000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '82173000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:49', + 'updated_at' => '2019-10-06 08:02:49', + 'flag' => true, + 'wikiDataId' => 'Q999955', + ], + [ + 'id' => 117436, + 'name' => 'Graham', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '05288000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '29428000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:50', + 'updated_at' => '2019-10-06 08:02:50', + 'flag' => true, + 'wikiDataId' => 'Q195843', + ], + [ + 'id' => 117454, + 'name' => 'Grand Coulee', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '94154000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '00335000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:50', + 'updated_at' => '2019-10-06 08:02:50', + 'flag' => true, + 'wikiDataId' => 'Q1508192', + ], + [ + 'id' => 117469, + 'name' => 'Grand Mound', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '78788000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '123'; + $this->fractionalPart = '01125000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:50', + 'updated_at' => '2019-10-06 08:02:50', + 'flag' => true, + 'wikiDataId' => 'Q1515664', + ], + [ + 'id' => 117481, + 'name' => 'Grandview', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '25097000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '90170000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:50', + 'updated_at' => '2019-10-06 08:02:50', + 'flag' => true, + 'wikiDataId' => 'Q1074513', + ], + [ + 'id' => 117489, + 'name' => 'Granger', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '34207000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '18727000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:50', + 'updated_at' => '2019-10-06 08:02:50', + 'flag' => true, + 'wikiDataId' => 'Q1503906', + ], + [ + 'id' => 117498, + 'name' => 'Granite Falls', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '48'; + $this->fractionalPart = '08399000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '96874000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:50', + 'updated_at' => '2019-10-06 08:02:50', + 'flag' => true, + 'wikiDataId' => 'Q1506731', + ], + [ + 'id' => 117521, + 'name' => 'Grant County', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '20566000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '45177000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:51', + 'updated_at' => '2019-10-06 08:02:51', + 'flag' => true, + 'wikiDataId' => 'Q281681', + ], + [ + 'id' => 117558, + 'name' => 'Grays Harbor County', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '14445000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '123'; + $this->fractionalPart = '82847000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:51', + 'updated_at' => '2019-10-06 08:02:51', + 'flag' => true, + 'wikiDataId' => 'Q493222', + ], + [ + 'id' => 117980, + 'name' => 'Hansville', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '91870000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '55431000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:55', + 'updated_at' => '2019-10-06 08:02:55', + 'flag' => true, + 'wikiDataId' => 'Q3475424', + ], + [ + 'id' => 118203, + 'name' => 'Hazel Dell', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '45'; + $this->fractionalPart = '67151000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '66288000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:57', + 'updated_at' => '2019-10-06 08:02:57', + 'flag' => true, + 'wikiDataId' => 'Q3478045', + ], + [ + 'id' => 118399, + 'name' => 'Highland', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '13152000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '11418000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:58', + 'updated_at' => '2019-10-06 08:02:58', + 'flag' => true, + 'wikiDataId' => 'Q248752', + ], + [ + 'id' => 118498, + 'name' => 'Hobart', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '42177000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '97289000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:59', + 'updated_at' => '2019-10-06 08:02:59', + 'flag' => true, + 'wikiDataId' => 'Q1508550', + ], + [ + 'id' => 118504, + 'name' => 'Hockinson', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '45'; + $this->fractionalPart = '73789000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '48704000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:02:59', + 'updated_at' => '2019-10-06 08:02:59', + 'flag' => true, + 'wikiDataId' => 'Q1509120', + ], + [ + 'id' => 118585, + 'name' => 'Home', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '27482000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '76375000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:00', + 'updated_at' => '2019-10-06 08:03:00', + 'flag' => true, + 'wikiDataId' => 'Q5887905', + ], + [ + 'id' => 118660, + 'name' => 'Hoquiam', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '98092000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '123'; + $this->fractionalPart = '88933000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:01', + 'updated_at' => '2019-10-06 08:03:01', + 'flag' => true, + 'wikiDataId' => 'Q990621', + ], + [ + 'id' => 118927, + 'name' => 'Indianola', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '74704000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '52569000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:03', + 'updated_at' => '2019-10-06 08:03:03', + 'flag' => true, + 'wikiDataId' => 'Q1503701', + ], + [ + 'id' => 118938, + 'name' => 'Inglewood-Finn Hill', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '72049000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '23167000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:03', + 'updated_at' => '2019-10-06 08:03:03', + 'flag' => true, + 'wikiDataId' => 'Q1508424', + ], + [ + 'id' => 119024, + 'name' => 'Island County', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '48'; + $this->fractionalPart = '20820000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '66922000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:04', + 'updated_at' => '2019-10-06 08:03:04', + 'flag' => true, + 'wikiDataId' => 'Q493243', + ], + [ + 'id' => 119036, + 'name' => 'Issaquah', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '53010000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '03262000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:04', + 'updated_at' => '2019-10-06 08:03:04', + 'flag' => true, + 'wikiDataId' => 'Q40251', + ], + [ + 'id' => 119198, + 'name' => 'Jefferson County', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '77655000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '123'; + $this->fractionalPart = '57431000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:05', + 'updated_at' => '2019-10-06 08:03:05', + 'flag' => true, + 'wikiDataId' => 'Q384737', + ], + [ + 'id' => 119287, + 'name' => 'Joint Base Lewis McChord', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '10787000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '57694000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:06', + 'updated_at' => '2019-10-06 08:03:06', + 'flag' => true, + 'wikiDataId' => 'Q3505731', + ], + [ + 'id' => 119359, + 'name' => 'Kalama', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '00845000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '84455000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:07', + 'updated_at' => '2019-10-06 08:03:07', + 'flag' => true, + 'wikiDataId' => 'Q1516195', + ], + [ + 'id' => 119432, + 'name' => 'Kelso', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '14678000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '90844000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:07', + 'updated_at' => '2019-10-06 08:03:07', + 'flag' => true, + 'wikiDataId' => 'Q868654', + ], + [ + 'id' => 119463, + 'name' => 'Kenmore', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '75732000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '24401000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:08', + 'updated_at' => '2019-10-06 08:03:08', + 'flag' => true, + 'wikiDataId' => 'Q588640', + ], + [ + 'id' => 119475, + 'name' => 'Kennewick', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '21125000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '13723000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:08', + 'updated_at' => '2019-10-06 08:03:08', + 'flag' => true, + 'wikiDataId' => 'Q844033', + ], + [ + 'id' => 119487, + 'name' => 'Kent', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '38093000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '23484000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:08', + 'updated_at' => '2019-10-06 08:03:08', + 'flag' => true, + 'wikiDataId' => 'Q844008', + ], + [ + 'id' => 119527, + 'name' => 'Kettle Falls', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '48'; + $this->fractionalPart = '61074000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '05582000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:08', + 'updated_at' => '2019-10-06 08:03:08', + 'flag' => true, + 'wikiDataId' => 'Q1508096', + ], + [ + 'id' => 119538, + 'name' => 'Key Center', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '34065000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '74541000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:08', + 'updated_at' => '2019-10-06 08:03:08', + 'flag' => true, + 'wikiDataId' => 'Q6398025', + ], + [ + 'id' => 119582, + 'name' => 'King County', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '49084000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '83583000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:09', + 'updated_at' => '2019-10-06 08:03:09', + 'flag' => true, + 'wikiDataId' => 'Q108861', + ], + [ + 'id' => 119614, + 'name' => 'Kingsgate', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '72704000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '17957000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:09', + 'updated_at' => '2019-10-06 08:03:09', + 'flag' => true, + 'wikiDataId' => 'Q1510581', + ], + [ + 'id' => 119630, + 'name' => 'Kingston', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '79850000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '49806000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:09', + 'updated_at' => '2019-10-06 08:03:09', + 'flag' => true, + 'wikiDataId' => 'Q1511364', + ], + [ + 'id' => 119652, + 'name' => 'Kirkland', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '68149000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '20874000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:09', + 'updated_at' => '2019-10-06 08:03:09', + 'flag' => true, + 'wikiDataId' => 'Q936768', + ], + [ + 'id' => 119660, + 'name' => 'Kitsap County', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '63983000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '64900000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:09', + 'updated_at' => '2019-10-06 08:03:09', + 'flag' => true, + 'wikiDataId' => 'Q484159', + ], + [ + 'id' => 119664, + 'name' => 'Kittitas', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '98318000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '41701000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:09', + 'updated_at' => '2019-10-06 08:03:09', + 'flag' => true, + 'wikiDataId' => 'Q1023547', + ], + [ + 'id' => 119665, + 'name' => 'Kittitas County', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '12417000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '67972000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:09', + 'updated_at' => '2019-10-06 08:03:09', + 'flag' => true, + 'wikiDataId' => 'Q111540', + ], + [ + 'id' => 119669, + 'name' => 'Klahanie', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '43121000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '43652000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:09', + 'updated_at' => '2019-10-06 08:03:09', + 'flag' => true, + 'wikiDataId' => 'Q3474821', + ], + [ + 'id' => 119673, + 'name' => 'Klickitat County', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '45'; + $this->fractionalPart = '87378000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '78926000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:09', + 'updated_at' => '2019-10-06 08:03:09', + 'flag' => true, + 'wikiDataId' => 'Q820502', + ], + [ + 'id' => 119738, + 'name' => 'La Center', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '45'; + $this->fractionalPart = '86234000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '67038000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:10', + 'updated_at' => '2019-10-06 08:03:10', + 'flag' => true, + 'wikiDataId' => 'Q1506592', + ], + [ + 'id' => 119812, + 'name' => 'Lacey', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '03426000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '82319000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:11', + 'updated_at' => '2019-10-06 08:03:11', + 'flag' => true, + 'wikiDataId' => 'Q970086', + ], + [ + 'id' => 119912, + 'name' => 'Lake Forest Park', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '75676000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '28096000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:12', + 'updated_at' => '2019-10-06 08:03:12', + 'flag' => true, + 'wikiDataId' => 'Q1514977', + ], + [ + 'id' => 119938, + 'name' => 'Lake Marcel-Stillwater', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '69263000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '91513000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:12', + 'updated_at' => '2019-10-06 08:03:12', + 'flag' => true, + 'wikiDataId' => 'Q1509701', + ], + [ + 'id' => 119948, + 'name' => 'Lake Morton-Berrydale', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '33251000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '10286000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:12', + 'updated_at' => '2019-10-06 08:03:12', + 'flag' => true, + 'wikiDataId' => 'Q1508433', + ], + [ + 'id' => 119978, + 'name' => 'Lake Shore', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '45'; + $this->fractionalPart = '69067000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '69093000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:12', + 'updated_at' => '2019-10-06 08:03:12', + 'flag' => true, + 'wikiDataId' => 'Q1508272', + ], + [ + 'id' => 119980, + 'name' => 'Lake Stevens', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '48'; + $this->fractionalPart = '01510000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '06374000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:12', + 'updated_at' => '2019-10-06 08:03:12', + 'flag' => true, + 'wikiDataId' => 'Q1507935', + ], + [ + 'id' => 119981, + 'name' => 'Lake Stickney', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '87655000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '26214000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:12', + 'updated_at' => '2019-10-06 08:03:12', + 'flag' => true, + 'wikiDataId' => 'Q1503863', + ], + [ + 'id' => 120018, + 'name' => 'Lakeland North', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '33343000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '27695000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:13', + 'updated_at' => '2019-10-06 08:03:13', + 'flag' => true, + 'wikiDataId' => 'Q1503763', + ], + [ + 'id' => 120019, + 'name' => 'Lakeland South', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '27843000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '28326000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:13', + 'updated_at' => '2019-10-06 08:03:13', + 'flag' => true, + 'wikiDataId' => 'Q1514910', + ], + [ + 'id' => 120052, + 'name' => 'Lakewood', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '17176000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '51846000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:13', + 'updated_at' => '2019-10-06 08:03:13', + 'flag' => true, + 'wikiDataId' => 'Q983791', + ], + [ + 'id' => 120114, + 'name' => 'Langley', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '48'; + $this->fractionalPart = '04009000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '40626000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:14', + 'updated_at' => '2019-10-06 08:03:14', + 'flag' => true, + 'wikiDataId' => 'Q1011590', + ], + [ + 'id' => 120140, + 'name' => 'Larch Way', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '84290000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '25275000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:14', + 'updated_at' => '2019-10-06 08:03:14', + 'flag' => true, + 'wikiDataId' => 'Q483982', + ], + [ + 'id' => 120268, + 'name' => 'Lea Hill', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '32621000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '18151000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:15', + 'updated_at' => '2019-10-06 08:03:15', + 'flag' => true, + 'wikiDataId' => 'Q1510245', + ], + [ + 'id' => 120281, + 'name' => 'Leavenworth', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '59623000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '66148000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:16', + 'updated_at' => '2019-10-06 08:03:16', + 'flag' => true, + 'wikiDataId' => 'Q1025813', + ], + [ + 'id' => 120417, + 'name' => 'Lewis County', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '57773000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '39241000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:17', + 'updated_at' => '2019-10-06 08:03:17', + 'flag' => true, + 'wikiDataId' => 'Q483950', + ], + [ + 'id' => 120437, + 'name' => 'Lewisville', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '45'; + $this->fractionalPart = '80984000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '52315000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:18', + 'updated_at' => '2019-10-06 08:03:18', + 'flag' => true, + 'wikiDataId' => 'Q1503144', + ], + [ + 'id' => 120475, + 'name' => 'Liberty Lake', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '67591000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '11821000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:18', + 'updated_at' => '2019-10-06 08:03:18', + 'flag' => true, + 'wikiDataId' => 'Q916956', + ], + [ + 'id' => 120537, + 'name' => 'Lincoln County', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '57619000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '41879000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:19', + 'updated_at' => '2019-10-06 08:03:19', + 'flag' => true, + 'wikiDataId' => 'Q484150', + ], + [ + 'id' => 120673, + 'name' => 'Lochsloy', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '48'; + $this->fractionalPart = '05149000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '03208000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:21', + 'updated_at' => '2019-10-06 08:03:21', + 'flag' => true, + 'wikiDataId' => 'Q1503733', + ], + [ + 'id' => 120692, + 'name' => 'Lofall', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '81204000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '65821000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:21', + 'updated_at' => '2019-10-06 08:03:21', + 'flag' => true, + 'wikiDataId' => 'Q16108520', + ], + [ + 'id' => 120739, + 'name' => 'Long Beach', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '35232000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '124'; + $this->fractionalPart = '05432000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:21', + 'updated_at' => '2019-10-06 08:03:21', + 'flag' => true, + 'wikiDataId' => 'Q1008919', + ], + [ + 'id' => 120752, + 'name' => 'Longbranch', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '20898000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '75680000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:21', + 'updated_at' => '2019-10-06 08:03:21', + 'flag' => true, + 'wikiDataId' => 'Q5978718', + ], + [ + 'id' => 120758, + 'name' => 'Longview', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '13817000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '93817000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:21', + 'updated_at' => '2019-10-06 08:03:21', + 'flag' => true, + 'wikiDataId' => 'Q983801', + ], + [ + 'id' => 120759, + 'name' => 'Longview Heights', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '18039000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '95706000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:21', + 'updated_at' => '2019-10-06 08:03:21', + 'flag' => true, + 'wikiDataId' => 'Q1503669', + ], + [ + 'id' => 120919, + 'name' => 'Lynden', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '48'; + $this->fractionalPart = '94650000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '45211000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:23', + 'updated_at' => '2019-10-06 08:03:23', + 'flag' => true, + 'wikiDataId' => 'Q1507840', + ], + [ + 'id' => 120931, + 'name' => 'Lynnwood', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '82093000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '31513000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:23', + 'updated_at' => '2019-10-06 08:03:23', + 'flag' => true, + 'wikiDataId' => 'Q852607', + ], + [ + 'id' => 120951, + 'name' => 'Mabton', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '21485000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '99671000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:23', + 'updated_at' => '2019-10-06 08:03:23', + 'flag' => true, + 'wikiDataId' => 'Q1514937', + ], + [ + 'id' => 120957, + 'name' => 'Machias', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '98149000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '04596000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:23', + 'updated_at' => '2019-10-06 08:03:23', + 'flag' => true, + 'wikiDataId' => 'Q964649', + ], + [ + 'id' => 121069, + 'name' => 'Maltby', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '80510000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '11318000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:25', + 'updated_at' => '2019-10-06 08:03:25', + 'flag' => true, + 'wikiDataId' => 'Q1508441', + ], + [ + 'id' => 121102, + 'name' => 'Manchester', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '55566000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '54507000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:25', + 'updated_at' => '2019-10-06 08:03:25', + 'flag' => true, + 'wikiDataId' => 'Q1502741', + ], + [ + 'id' => 121151, + 'name' => 'Manson', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '88486000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '15841000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:26', + 'updated_at' => '2019-10-06 08:03:26', + 'flag' => true, + 'wikiDataId' => 'Q5991830', + ], + [ + 'id' => 121168, + 'name' => 'Maple Heights-Lake Desire', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '44413000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '09736000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:26', + 'updated_at' => '2019-10-06 08:03:26', + 'flag' => true, + 'wikiDataId' => 'Q282443', + ], + [ + 'id' => 121173, + 'name' => 'Maple Valley', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '39272000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '04641000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:26', + 'updated_at' => '2019-10-06 08:03:26', + 'flag' => true, + 'wikiDataId' => 'Q988204', + ], + [ + 'id' => 121180, + 'name' => 'Maplewood', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '40176000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '55707000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:26', + 'updated_at' => '2019-10-06 08:03:26', + 'flag' => true, + 'wikiDataId' => 'Q6754097', + ], + [ + 'id' => 121219, + 'name' => 'Marietta', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '48'; + $this->fractionalPart = '78705000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '58045000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:26', + 'updated_at' => '2019-10-06 08:03:26', + 'flag' => true, + 'wikiDataId' => 'Q1186711', + ], + [ + 'id' => 121220, + 'name' => 'Marietta-Alderwood', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '48'; + $this->fractionalPart = '78965000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '55369000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:26', + 'updated_at' => '2019-10-06 08:03:26', + 'flag' => true, + 'wikiDataId' => 'Q1508396', + ], + [ + 'id' => 121333, + 'name' => 'Martha Lake', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '85093000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '23930000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:27', + 'updated_at' => '2019-10-06 08:03:27', + 'flag' => true, + 'wikiDataId' => 'Q588153', + ], + [ + 'id' => 121361, + 'name' => 'Marysville', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '48'; + $this->fractionalPart = '05176000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '17708000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:28', + 'updated_at' => '2019-10-06 08:03:28', + 'flag' => true, + 'wikiDataId' => 'Q970001', + ], + [ + 'id' => 121382, + 'name' => 'Mason County', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '35048000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '123'; + $this->fractionalPart = '18309000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:28', + 'updated_at' => '2019-10-06 08:03:28', + 'flag' => true, + 'wikiDataId' => 'Q111904', + ], + [ + 'id' => 121409, + 'name' => 'Mattawa', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '73791000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '90282000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:28', + 'updated_at' => '2019-10-06 08:03:28', + 'flag' => true, + 'wikiDataId' => 'Q1505535', + ], + [ + 'id' => 121468, + 'name' => 'McChord Air Force Base', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '13397000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '49157000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:29', + 'updated_at' => '2019-10-06 08:03:29', + 'flag' => true, + 'wikiDataId' => 'Q3261090', + ], + [ + 'id' => 121470, + 'name' => 'McCleary', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '05315000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '123'; + $this->fractionalPart = '26543000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:29', + 'updated_at' => '2019-10-06 08:03:29', + 'flag' => true, + 'wikiDataId' => 'Q771582', + ], + [ + 'id' => 121538, + 'name' => 'McMillin', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '13982000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '23651000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:29', + 'updated_at' => '2019-10-06 08:03:29', + 'flag' => true, + 'wikiDataId' => 'Q2409406', + ], + [ + 'id' => 121553, + 'name' => 'Mead', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '76739000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '35494000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:30', + 'updated_at' => '2019-10-06 08:03:30', + 'flag' => true, + 'wikiDataId' => 'Q6008135', + ], + [ + 'id' => 121559, + 'name' => 'Meadow Glade', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '45'; + $this->fractionalPart = '75845000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '56038000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:30', + 'updated_at' => '2019-10-06 08:03:30', + 'flag' => true, + 'wikiDataId' => 'Q1512965', + ], + [ + 'id' => 121568, + 'name' => 'Meadowdale', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '85287000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '33347000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:30', + 'updated_at' => '2019-10-06 08:03:30', + 'flag' => true, + 'wikiDataId' => 'Q6803319', + ], + [ + 'id' => 121600, + 'name' => 'Medical Lake', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '57294000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '68216000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:30', + 'updated_at' => '2019-10-06 08:03:30', + 'flag' => true, + 'wikiDataId' => 'Q1506243', + ], + [ + 'id' => 121606, + 'name' => 'Medina', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '62093000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '22762000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:30', + 'updated_at' => '2019-10-06 08:03:30', + 'flag' => true, + 'wikiDataId' => 'Q1506847', + ], + [ + 'id' => 121682, + 'name' => 'Mercer Island', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '57065000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '22207000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:31', + 'updated_at' => '2019-10-06 08:03:31', + 'flag' => true, + 'wikiDataId' => 'Q954095', + ], + [ + 'id' => 121801, + 'name' => 'Midland', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '16704000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '40484000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:32', + 'updated_at' => '2019-10-06 08:03:32', + 'flag' => true, + 'wikiDataId' => 'Q1508513', + ], + [ + 'id' => 121863, + 'name' => 'Mill Creek', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '86010000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '20430000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:33', + 'updated_at' => '2019-10-06 08:03:33', + 'flag' => true, + 'wikiDataId' => 'Q1508016', + ], + [ + 'id' => 121864, + 'name' => 'Mill Creek East', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '83602000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '18766000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:33', + 'updated_at' => '2019-10-06 08:03:33', + 'flag' => true, + 'wikiDataId' => 'Q1508016', + ], + [ + 'id' => 121867, + 'name' => 'Mill Plain', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '45'; + $this->fractionalPart = '64290000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '49398000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:33', + 'updated_at' => '2019-10-06 08:03:33', + 'flag' => true, + 'wikiDataId' => 'Q1505203', + ], + [ + 'id' => 121907, + 'name' => 'Millwood', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '68128000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '28271000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:33', + 'updated_at' => '2019-10-06 08:03:33', + 'flag' => true, + 'wikiDataId' => 'Q1505556', + ], + [ + 'id' => 121921, + 'name' => 'Milton', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '24816000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '31290000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:34', + 'updated_at' => '2019-10-06 08:03:34', + 'flag' => true, + 'wikiDataId' => 'Q1516205', + ], + [ + 'id' => 121952, + 'name' => 'Minnehaha', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '45'; + $this->fractionalPart = '65901000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '64871000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:34', + 'updated_at' => '2019-10-06 08:03:34', + 'flag' => true, + 'wikiDataId' => 'Q1503381', + ], + [ + 'id' => 121975, + 'name' => 'Mirrormont', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '46232000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '99567000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:34', + 'updated_at' => '2019-10-06 08:03:34', + 'flag' => true, + 'wikiDataId' => 'Q1512767', + ], + [ + 'id' => 122065, + 'name' => 'Monroe', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '85538000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '97096000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:35', + 'updated_at' => '2019-10-06 08:03:35', + 'flag' => true, + 'wikiDataId' => 'Q1055861', + ], + [ + 'id' => 122083, + 'name' => 'Monroe North', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '88225000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '98729000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:35', + 'updated_at' => '2019-10-06 08:03:35', + 'flag' => true, + 'wikiDataId' => 'Q932966', + ], + [ + 'id' => 122124, + 'name' => 'Montesano', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '98121000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '123'; + $this->fractionalPart = '60266000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:36', + 'updated_at' => '2019-10-06 08:03:36', + 'flag' => true, + 'wikiDataId' => 'Q987133', + ], + [ + 'id' => 122295, + 'name' => 'Morton', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '55844000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '27510000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:38', + 'updated_at' => '2019-10-06 08:03:38', + 'flag' => true, + 'wikiDataId' => 'Q1023524', + ], + [ + 'id' => 122302, + 'name' => 'Moses Lake', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '13014000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '27808000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:38', + 'updated_at' => '2019-10-06 08:03:38', + 'flag' => true, + 'wikiDataId' => 'Q1065526', + ], + [ + 'id' => 122303, + 'name' => 'Moses Lake North', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '19433000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '31719000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:38', + 'updated_at' => '2019-10-06 08:03:38', + 'flag' => true, + 'wikiDataId' => 'Q1503090', + ], + [ + 'id' => 122403, + 'name' => 'Mount Vernon', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '48'; + $this->fractionalPart = '42122000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '33405000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:39', + 'updated_at' => '2019-10-06 08:03:39', + 'flag' => true, + 'wikiDataId' => 'Q866311', + ], + [ + 'id' => 122405, + 'name' => 'Mount Vista', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '45'; + $this->fractionalPart = '73428000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '63288000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:39', + 'updated_at' => '2019-10-06 08:03:39', + 'flag' => true, + 'wikiDataId' => 'Q1515157', + ], + [ + 'id' => 122439, + 'name' => 'Mountlake Terrace', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '78815000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '30874000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:40', + 'updated_at' => '2019-10-06 08:03:40', + 'flag' => true, + 'wikiDataId' => 'Q1507087', + ], + [ + 'id' => 122450, + 'name' => 'Mukilteo', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '94454000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '30458000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:40', + 'updated_at' => '2019-10-06 08:03:40', + 'flag' => true, + 'wikiDataId' => 'Q1507307', + ], + [ + 'id' => 122549, + 'name' => 'Napavine', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '57455000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '90818000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:41', + 'updated_at' => '2019-10-06 08:03:41', + 'flag' => true, + 'wikiDataId' => 'Q1510290', + ], + [ + 'id' => 122605, + 'name' => 'Navy Yard City', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '55343000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '66458000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:41', + 'updated_at' => '2019-10-06 08:03:41', + 'flag' => true, + 'wikiDataId' => 'Q1510771', + ], + [ + 'id' => 122823, + 'name' => 'Newcastle', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '53899000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '15568000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:44', + 'updated_at' => '2019-10-06 08:03:44', + 'flag' => true, + 'wikiDataId' => 'Q1502408', + ], + [ + 'id' => 122852, + 'name' => 'Newport', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '48'; + $this->fractionalPart = '17963000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '04326000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:44', + 'updated_at' => '2019-10-06 08:03:44', + 'flag' => true, + 'wikiDataId' => 'Q1514137', + ], + [ + 'id' => 122936, + 'name' => 'Nooksack', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '48'; + $this->fractionalPart = '92762000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '32155000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:45', + 'updated_at' => '2019-10-06 08:03:45', + 'flag' => true, + 'wikiDataId' => 'Q1501955', + ], + [ + 'id' => 122952, + 'name' => 'Normandy Park', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '43621000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '34068000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:46', + 'updated_at' => '2019-10-06 08:03:46', + 'flag' => true, + 'wikiDataId' => 'Q1502377', + ], + [ + 'id' => 122985, + 'name' => 'North Bend', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '49566000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '78678000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:46', + 'updated_at' => '2019-10-06 08:03:46', + 'flag' => true, + 'wikiDataId' => 'Q301889', + ], + [ + 'id' => 123011, + 'name' => 'North Creek', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '81954000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '17624000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:46', + 'updated_at' => '2019-10-06 08:03:46', + 'flag' => true, + 'wikiDataId' => 'Q1510602', + ], + [ + 'id' => 123028, + 'name' => 'North Fort Lewis', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '12131000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '59452000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:46', + 'updated_at' => '2019-10-06 08:03:46', + 'flag' => true, + 'wikiDataId' => 'Q2448931', + ], + [ + 'id' => 123090, + 'name' => 'North Puyallup', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '20677000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '28234000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:47', + 'updated_at' => '2019-10-06 08:03:47', + 'flag' => true, + 'wikiDataId' => 'Q1625652', + ], + [ + 'id' => 123132, + 'name' => 'North Yelm', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '96315000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '60290000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:48', + 'updated_at' => '2019-10-06 08:03:48', + 'flag' => true, + 'wikiDataId' => 'Q1502791', + ], + [ + 'id' => 123242, + 'name' => 'Oak Harbor', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '48'; + $this->fractionalPart = '29316000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '64322000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:50', + 'updated_at' => '2019-10-06 08:03:50', + 'flag' => true, + 'wikiDataId' => 'Q990977', + ], + [ + 'id' => 123332, + 'name' => 'Ocean Park', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '49177000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '124'; + $this->fractionalPart = '05208000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:52', + 'updated_at' => '2019-10-06 08:03:52', + 'flag' => true, + 'wikiDataId' => 'Q1503888', + ], + [ + 'id' => 123336, + 'name' => 'Ocean Shores', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '97370000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '124'; + $this->fractionalPart = '15629000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:52', + 'updated_at' => '2019-10-06 08:03:52', + 'flag' => true, + 'wikiDataId' => 'Q423697', + ], + [ + 'id' => 123393, + 'name' => 'Okanogan', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '48'; + $this->fractionalPart = '36126000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '58339000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:54', + 'updated_at' => '2019-10-06 08:03:54', + 'flag' => true, + 'wikiDataId' => 'Q1511988', + ], + [ + 'id' => 123394, + 'name' => 'Okanogan County', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '48'; + $this->fractionalPart = '54885000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '74079000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:54', + 'updated_at' => '2019-10-06 08:03:54', + 'flag' => true, + 'wikiDataId' => 'Q483958', + ], + [ + 'id' => 123459, + 'name' => 'Olympia', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '03787000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '90070000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:55', + 'updated_at' => '2019-10-06 08:03:55', + 'flag' => true, + 'wikiDataId' => 'Q42735', + ], + [ + 'id' => 123464, + 'name' => 'Omak', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '48'; + $this->fractionalPart = '41099000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '52755000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:55', + 'updated_at' => '2019-10-06 08:03:55', + 'flag' => true, + 'wikiDataId' => 'Q1509671', + ], + [ + 'id' => 123499, + 'name' => 'Opportunity', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '64995000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '23991000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:56', + 'updated_at' => '2019-10-06 08:03:56', + 'flag' => true, + 'wikiDataId' => 'Q1510586', + ], + [ + 'id' => 123539, + 'name' => 'Orchards', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '45'; + $this->fractionalPart = '66651000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '56093000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:56', + 'updated_at' => '2019-10-06 08:03:56', + 'flag' => true, + 'wikiDataId' => 'Q949185', + ], + [ + 'id' => 123579, + 'name' => 'Oroville', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '48'; + $this->fractionalPart = '93905000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '43562000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:56', + 'updated_at' => '2019-10-06 08:03:56', + 'flag' => true, + 'wikiDataId' => 'Q1017586', + ], + [ + 'id' => 123582, + 'name' => 'Orting', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '09788000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '20428000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:56', + 'updated_at' => '2019-10-06 08:03:56', + 'flag' => true, + 'wikiDataId' => 'Q1515932', + ], + [ + 'id' => 123627, + 'name' => 'Othello', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '82597000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '17529000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:57', + 'updated_at' => '2019-10-06 08:03:57', + 'flag' => true, + 'wikiDataId' => 'Q1510263', + ], + [ + 'id' => 123629, + 'name' => 'Otis Orchards-East Farms', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '70988000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '07975000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:57', + 'updated_at' => '2019-10-06 08:03:57', + 'flag' => true, + 'wikiDataId' => 'Q1513089', + ], + [ + 'id' => 123707, + 'name' => 'Pacific', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '26455000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '25012000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:58', + 'updated_at' => '2019-10-06 08:03:58', + 'flag' => true, + 'wikiDataId' => 'Q1506861', + ], + [ + 'id' => 123709, + 'name' => 'Pacific County', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '55128000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '123'; + $this->fractionalPart = '77886000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:58', + 'updated_at' => '2019-10-06 08:03:58', + 'flag' => true, + 'wikiDataId' => 'Q483990', + ], + [ + 'id' => 123792, + 'name' => 'Palouse', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '91017000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '07573000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:58', + 'updated_at' => '2019-10-06 08:03:58', + 'flag' => true, + 'wikiDataId' => 'Q1501870', + ], + [ + 'id' => 123872, + 'name' => 'Parkland', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '15538000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '43401000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:59', + 'updated_at' => '2019-10-06 08:03:59', + 'flag' => true, + 'wikiDataId' => 'Q210565', + ], + [ + 'id' => 123883, + 'name' => 'Parkwood', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '53315000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '61014000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:59', + 'updated_at' => '2019-10-06 08:03:59', + 'flag' => true, + 'wikiDataId' => 'Q1502856', + ], + [ + 'id' => 123901, + 'name' => 'Pasco', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '23958000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '10057000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:03:59', + 'updated_at' => '2019-10-06 08:03:59', + 'flag' => true, + 'wikiDataId' => 'Q844016', + ], + [ + 'id' => 123955, + 'name' => 'Peaceful Valley', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '48'; + $this->fractionalPart = '93815000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '14733000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:00', + 'updated_at' => '2019-10-06 08:04:00', + 'flag' => true, + 'wikiDataId' => 'Q1503286', + ], + [ + 'id' => 124013, + 'name' => 'Pend Oreille County', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '48'; + $this->fractionalPart = '53230000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '27397000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:01', + 'updated_at' => '2019-10-06 08:04:01', + 'flag' => true, + 'wikiDataId' => 'Q485301', + ], + [ + 'id' => 124160, + 'name' => 'Picnic Point', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '88111000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '32840000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:02', + 'updated_at' => '2019-10-06 08:04:02', + 'flag' => true, + 'wikiDataId' => 'Q494776', + ], + [ + 'id' => 124161, + 'name' => 'Picnic Point-North Lynnwood', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '86278000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '29497000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:02', + 'updated_at' => '2019-10-06 08:04:02', + 'flag' => true, + 'wikiDataId' => 'Q1503678', + ], + [ + 'id' => 124175, + 'name' => 'Pierce County', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '03764000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '13735000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:02', + 'updated_at' => '2019-10-06 08:04:02', + 'flag' => true, + 'wikiDataId' => 'Q156459', + ], + [ + 'id' => 124433, + 'name' => 'Point Roberts', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '48'; + $this->fractionalPart = '98538000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '123'; + $this->fractionalPart = '07797000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:05', + 'updated_at' => '2019-10-06 08:04:05', + 'flag' => true, + 'wikiDataId' => 'Q1203794', + ], + [ + 'id' => 124456, + 'name' => 'Pomeroy', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '47487000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '60269000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:05', + 'updated_at' => '2019-10-06 08:04:05', + 'flag' => true, + 'wikiDataId' => 'Q1148057', + ], + [ + 'id' => 124493, + 'name' => 'Port Angeles', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '48'; + $this->fractionalPart = '11815000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '123'; + $this->fractionalPart = '43074000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:06', + 'updated_at' => '2019-10-06 08:04:06', + 'flag' => true, + 'wikiDataId' => 'Q852584', + ], + [ + 'id' => 124494, + 'name' => 'Port Angeles East', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '48'; + $this->fractionalPart = '10667000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '123'; + $this->fractionalPart = '37172000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:06', + 'updated_at' => '2019-10-06 08:04:06', + 'flag' => true, + 'wikiDataId' => 'Q1504974', + ], + [ + 'id' => 124508, + 'name' => 'Port Hadlock-Irondale', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '48'; + $this->fractionalPart = '03273000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '78529000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:06', + 'updated_at' => '2019-10-06 08:04:06', + 'flag' => true, + 'wikiDataId' => 'Q1508181', + ], + [ + 'id' => 124518, + 'name' => 'Port Ludlow', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '92537000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '68349000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:06', + 'updated_at' => '2019-10-06 08:04:06', + 'flag' => true, + 'wikiDataId' => 'Q1514660', + ], + [ + 'id' => 124525, + 'name' => 'Port Orchard', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '54037000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '63625000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:06', + 'updated_at' => '2019-10-06 08:04:06', + 'flag' => true, + 'wikiDataId' => 'Q935482', + ], + [ + 'id' => 124537, + 'name' => 'Port Townsend', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '48'; + $this->fractionalPart = '11704000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '76045000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:06', + 'updated_at' => '2019-10-06 08:04:06', + 'flag' => true, + 'wikiDataId' => 'Q1001828', + ], + [ + 'id' => 124603, + 'name' => 'Poulsbo', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '73593000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '64654000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:07', + 'updated_at' => '2019-10-06 08:04:07', + 'flag' => true, + 'wikiDataId' => 'Q1509552', + ], + [ + 'id' => 124629, + 'name' => 'Prairie Heights', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '14933000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '10530000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:07', + 'updated_at' => '2019-10-06 08:04:07', + 'flag' => true, + 'wikiDataId' => 'Q2257106', + ], + [ + 'id' => 124630, + 'name' => 'Prairie Ridge', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '13760000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '14873000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:07', + 'updated_at' => '2019-10-06 08:04:07', + 'flag' => true, + 'wikiDataId' => 'Q1508577', + ], + [ + 'id' => 124714, + 'name' => 'Prosser', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '20680000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '76892000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:08', + 'updated_at' => '2019-10-06 08:04:08', + 'flag' => true, + 'wikiDataId' => 'Q543792', + ], + [ + 'id' => 124744, + 'name' => 'Pullman', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '73127000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '17962000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:08', + 'updated_at' => '2019-10-06 08:04:08', + 'flag' => true, + 'wikiDataId' => 'Q983540', + ], + [ + 'id' => 124757, + 'name' => 'Purdy', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '38899000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '62541000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:09', + 'updated_at' => '2019-10-06 08:04:09', + 'flag' => true, + 'wikiDataId' => 'Q597332', + ], + [ + 'id' => 124771, + 'name' => 'Puyallup', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '18538000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '29290000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:09', + 'updated_at' => '2019-10-06 08:04:09', + 'flag' => true, + 'wikiDataId' => 'Q179336', + ], + [ + 'id' => 124800, + 'name' => 'Quincy', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '23430000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '85255000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:10', + 'updated_at' => '2019-10-06 08:04:10', + 'flag' => true, + 'wikiDataId' => 'Q1514833', + ], + [ + 'id' => 124827, + 'name' => 'Rainier', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '88815000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '68846000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:10', + 'updated_at' => '2019-10-06 08:04:10', + 'flag' => true, + 'wikiDataId' => 'Q1502285', + ], + [ + 'id' => 124909, + 'name' => 'Ravensdale', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '35232000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '98373000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:11', + 'updated_at' => '2019-10-06 08:04:11', + 'flag' => true, + 'wikiDataId' => 'Q1503082', + ], + [ + 'id' => 124920, + 'name' => 'Raymond', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '68649000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '123'; + $this->fractionalPart = '73294000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:11', + 'updated_at' => '2019-10-06 08:04:11', + 'flag' => true, + 'wikiDataId' => 'Q1510374', + ], + [ + 'id' => 124979, + 'name' => 'Redmond', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '67399000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '12151000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:11', + 'updated_at' => '2019-10-06 08:04:11', + 'flag' => true, + 'wikiDataId' => 'Q223718', + ], + [ + 'id' => 125026, + 'name' => 'Renton', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '48288000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '21707000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:12', + 'updated_at' => '2019-10-06 08:04:12', + 'flag' => true, + 'wikiDataId' => 'Q679952', + ], + [ + 'id' => 125032, + 'name' => 'Republic', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '48'; + $this->fractionalPart = '64822000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '73781000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:12', + 'updated_at' => '2019-10-06 08:04:12', + 'flag' => true, + 'wikiDataId' => 'Q1006641', + ], + [ + 'id' => 125072, + 'name' => 'Richland', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '28569000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '28446000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:04:12', + 'updated_at' => '2019-10-06 08:04:12', + 'flag' => true, + 'wikiDataId' => 'Q693638', + ], + [ + 'id' => 125121, + 'name' => 'Ridgefield', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '45'; + $this->fractionalPart = '81511000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '74260000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:03', + 'updated_at' => '2019-10-06 08:06:03', + 'flag' => true, + 'wikiDataId' => 'Q1505990', + ], + [ + 'id' => 125174, + 'name' => 'Ritzville', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '12755000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '37999000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:03', + 'updated_at' => '2019-10-06 08:06:03', + 'flag' => true, + 'wikiDataId' => 'Q1512748', + ], + [ + 'id' => 125191, + 'name' => 'Riverbend', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '46649000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '75039000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:04', + 'updated_at' => '2019-10-06 08:06:04', + 'flag' => true, + 'wikiDataId' => 'Q1502634', + ], + [ + 'id' => 125213, + 'name' => 'Riverton', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '48427000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '29457000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:04', + 'updated_at' => '2019-10-06 08:06:04', + 'flag' => true, + 'wikiDataId' => 'Q280560', + ], + [ + 'id' => 125270, + 'name' => 'Rochester', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '82177000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '123'; + $this->fractionalPart = '09625000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:05', + 'updated_at' => '2019-10-06 08:06:05', + 'flag' => true, + 'wikiDataId' => 'Q1505161', + ], + [ + 'id' => 125339, + 'name' => 'Rocky Point', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '59287000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '66848000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:05', + 'updated_at' => '2019-10-06 08:06:05', + 'flag' => true, + 'wikiDataId' => 'Q3459765', + ], + [ + 'id' => 125420, + 'name' => 'Rosedale', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '33149000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '65235000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:06', + 'updated_at' => '2019-10-06 08:06:06', + 'flag' => true, + 'wikiDataId' => 'Q2267331', + ], + [ + 'id' => 125488, + 'name' => 'Royal City', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '90097000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '63059000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:07', + 'updated_at' => '2019-10-06 08:06:07', + 'flag' => true, + 'wikiDataId' => 'Q2601009', + ], + [ + 'id' => 125765, + 'name' => 'Salmon Creek', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '45'; + $this->fractionalPart = '71067000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '64899000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:10', + 'updated_at' => '2019-10-06 08:06:10', + 'flag' => true, + 'wikiDataId' => 'Q1510736', + ], + [ + 'id' => 125778, + 'name' => 'Sammamish', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '64177000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '08040000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:10', + 'updated_at' => '2019-10-06 08:06:10', + 'flag' => true, + 'wikiDataId' => 'Q988209', + ], + [ + 'id' => 125823, + 'name' => 'San Juan County', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '48'; + $this->fractionalPart = '53116000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '123'; + $this->fractionalPart = '02490000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:11', + 'updated_at' => '2019-10-06 08:06:11', + 'flag' => true, + 'wikiDataId' => 'Q484146', + ], + [ + 'id' => 126076, + 'name' => 'SeaTac', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '44846000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '29217000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:14', + 'updated_at' => '2019-10-06 08:06:14', + 'flag' => true, + 'wikiDataId' => 'Q985072', + ], + [ + 'id' => 126077, + 'name' => 'Seabeck', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '63954000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '82849000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:14', + 'updated_at' => '2019-10-06 08:06:14', + 'flag' => true, + 'wikiDataId' => 'Q5404291', + ], + [ + 'id' => 126104, + 'name' => 'Seattle', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '60621000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '33207000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:14', + 'updated_at' => '2019-10-06 08:06:14', + 'flag' => true, + 'wikiDataId' => 'Q5083', + ], + [ + 'id' => 126122, + 'name' => 'Sedro-Woolley', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '48'; + $this->fractionalPart = '50389000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '23611000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:14', + 'updated_at' => '2019-10-06 08:06:14', + 'flag' => true, + 'wikiDataId' => 'Q1502468', + ], + [ + 'id' => 126129, + 'name' => 'Selah', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '65402000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '53007000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:14', + 'updated_at' => '2019-10-06 08:06:14', + 'flag' => true, + 'wikiDataId' => 'Q947107', + ], + [ + 'id' => 126164, + 'name' => 'Sequim', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '48'; + $this->fractionalPart = '07963000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '123'; + $this->fractionalPart = '10234000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:15', + 'updated_at' => '2019-10-06 08:06:15', + 'flag' => true, + 'wikiDataId' => 'Q1514115', + ], + [ + 'id' => 126299, + 'name' => 'Shelton', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '21509000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '123'; + $this->fractionalPart = '10071000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:17', + 'updated_at' => '2019-10-06 08:06:17', + 'flag' => true, + 'wikiDataId' => 'Q983986', + ], + [ + 'id' => 126368, + 'name' => 'Shoreline', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '75565000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '34152000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:18', + 'updated_at' => '2019-10-06 08:06:18', + 'flag' => true, + 'wikiDataId' => 'Q983657', + ], + [ + 'id' => 126424, + 'name' => 'Silver Firs', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '86602000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '15510000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:19', + 'updated_at' => '2019-10-06 08:06:19', + 'flag' => true, + 'wikiDataId' => 'Q2668965', + ], + [ + 'id' => 126439, + 'name' => 'Silverdale', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '64454000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '69487000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:19', + 'updated_at' => '2019-10-06 08:06:19', + 'flag' => true, + 'wikiDataId' => 'Q1515408', + ], + [ + 'id' => 126464, + 'name' => 'Sisco Heights', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '48'; + $this->fractionalPart = '11538000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '09708000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:19', + 'updated_at' => '2019-10-06 08:06:19', + 'flag' => true, + 'wikiDataId' => 'Q2671451', + ], + [ + 'id' => 126474, + 'name' => 'Skagit County', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '48'; + $this->fractionalPart = '48215000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '80227000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:19', + 'updated_at' => '2019-10-06 08:06:19', + 'flag' => true, + 'wikiDataId' => 'Q113892', + ], + [ + 'id' => 126476, + 'name' => 'Skamania County', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '02276000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '91510000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:19', + 'updated_at' => '2019-10-06 08:06:19', + 'flag' => true, + 'wikiDataId' => 'Q304791', + ], + [ + 'id' => 126533, + 'name' => 'Smokey Point', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '48'; + $this->fractionalPart = '15232000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '18264000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:20', + 'updated_at' => '2019-10-06 08:06:20', + 'flag' => true, + 'wikiDataId' => 'Q1511504', + ], + [ + 'id' => 126542, + 'name' => 'Snohomish', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '91288000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '09818000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:21', + 'updated_at' => '2019-10-06 08:06:21', + 'flag' => true, + 'wikiDataId' => 'Q1505974', + ], + [ + 'id' => 126543, + 'name' => 'Snohomish County', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '48'; + $this->fractionalPart = '04602000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '72218000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:21', + 'updated_at' => '2019-10-06 08:06:21', + 'flag' => true, + 'wikiDataId' => 'Q110403', + ], + [ + 'id' => 126544, + 'name' => 'Snoqualmie', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '52871000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '82539000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:21', + 'updated_at' => '2019-10-06 08:06:21', + 'flag' => true, + 'wikiDataId' => 'Q1000951', + ], + [ + 'id' => 126553, + 'name' => 'Soap Lake', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '38931000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '49059000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:21', + 'updated_at' => '2019-10-06 08:06:21', + 'flag' => true, + 'wikiDataId' => 'Q592056', + ], + [ + 'id' => 126625, + 'name' => 'South Bend', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '66315000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '123'; + $this->fractionalPart = '80461000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:22', + 'updated_at' => '2019-10-06 08:06:22', + 'flag' => true, + 'wikiDataId' => 'Q1017572', + ], + [ + 'id' => 126673, + 'name' => 'South Hill', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '14121000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '27012000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:23', + 'updated_at' => '2019-10-06 08:06:23', + 'flag' => true, + 'wikiDataId' => 'Q1503540', + ], + [ + 'id' => 126746, + 'name' => 'South Wenatchee', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '39012000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '28958000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:25', + 'updated_at' => '2019-10-06 08:06:25', + 'flag' => true, + 'wikiDataId' => 'Q1029806', + ], + [ + 'id' => 126793, + 'name' => 'Southworth', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '51204000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '50180000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:27', + 'updated_at' => '2019-10-06 08:06:27', + 'flag' => true, + 'wikiDataId' => 'Q7571501', + ], + [ + 'id' => 126796, + 'name' => 'Spanaway', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '10399000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '43457000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:27', + 'updated_at' => '2019-10-06 08:06:27', + 'flag' => true, + 'wikiDataId' => 'Q1515461', + ], + [ + 'id' => 126842, + 'name' => 'Spokane', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '65966000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '42908000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:29', + 'updated_at' => '2019-10-06 08:06:29', + 'flag' => true, + 'wikiDataId' => 'Q187805', + ], + [ + 'id' => 126843, + 'name' => 'Spokane County', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '62064000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '40401000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:29', + 'updated_at' => '2019-10-06 08:06:29', + 'flag' => true, + 'wikiDataId' => 'Q485276', + ], + [ + 'id' => 126844, + 'name' => 'Spokane Valley', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '67323000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '23937000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:29', + 'updated_at' => '2019-10-06 08:06:29', + 'flag' => true, + 'wikiDataId' => 'Q988065', + ], + [ + 'id' => 126974, + 'name' => 'Stanwood', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '48'; + $this->fractionalPart = '24121000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '37071000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:32', + 'updated_at' => '2019-10-06 08:06:32', + 'flag' => true, + 'wikiDataId' => 'Q2601028', + ], + [ + 'id' => 127017, + 'name' => 'Steilacoom', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '16982000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '60263000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:32', + 'updated_at' => '2019-10-06 08:06:32', + 'flag' => true, + 'wikiDataId' => 'Q1507851', + ], + [ + 'id' => 127042, + 'name' => 'Stevens County', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '48'; + $this->fractionalPart = '39906000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '85514000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:33', + 'updated_at' => '2019-10-06 08:06:33', + 'flag' => true, + 'wikiDataId' => 'Q483954', + ], + [ + 'id' => 127045, + 'name' => 'Stevenson', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '45'; + $this->fractionalPart = '69567000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '88452000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:33', + 'updated_at' => '2019-10-06 08:06:33', + 'flag' => true, + 'wikiDataId' => 'Q514457', + ], + [ + 'id' => 127162, + 'name' => 'Sudden Valley', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '48'; + $this->fractionalPart = '72289000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '34655000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:35', + 'updated_at' => '2019-10-06 08:06:35', + 'flag' => true, + 'wikiDataId' => 'Q1508156', + ], + [ + 'id' => 127198, + 'name' => 'Sultan', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '86260000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '81651000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:35', + 'updated_at' => '2019-10-06 08:06:35', + 'flag' => true, + 'wikiDataId' => 'Q1505643', + ], + [ + 'id' => 127199, + 'name' => 'Sumas', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '49'; + $this->fractionalPart = '00012000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '26488000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:35', + 'updated_at' => '2019-10-06 08:06:35', + 'flag' => true, + 'wikiDataId' => 'Q1510124', + ], + [ + 'id' => 127215, + 'name' => 'Summit', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '16177000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '35707000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:35', + 'updated_at' => '2019-10-06 08:06:35', + 'flag' => true, + 'wikiDataId' => 'Q1504136', + ], + [ + 'id' => 127220, + 'name' => 'Summit View', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '13632000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '35202000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:35', + 'updated_at' => '2019-10-06 08:06:35', + 'flag' => true, + 'wikiDataId' => 'Q2646550', + ], + [ + 'id' => 127223, + 'name' => 'Sumner', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '20316000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '24040000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:35', + 'updated_at' => '2019-10-06 08:06:35', + 'flag' => true, + 'wikiDataId' => 'Q1510183', + ], + [ + 'id' => 127260, + 'name' => 'Sunnyside', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '32374000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '00865000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:36', + 'updated_at' => '2019-10-06 08:06:36', + 'flag' => true, + 'wikiDataId' => 'Q1044814', + ], + [ + 'id' => 127263, + 'name' => 'Sunnyslope', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '47290000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '33674000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:36', + 'updated_at' => '2019-10-06 08:06:36', + 'flag' => true, + 'wikiDataId' => 'Q1092968', + ], + [ + 'id' => 127284, + 'name' => 'Suquamish', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '73121000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '55236000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:36', + 'updated_at' => '2019-10-06 08:06:36', + 'flag' => true, + 'wikiDataId' => 'Q1514714', + ], + [ + 'id' => 127369, + 'name' => 'Tacoma', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '25288000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '44429000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:37', + 'updated_at' => '2019-10-06 08:06:37', + 'flag' => true, + 'wikiDataId' => 'Q199797', + ], + [ + 'id' => 127416, + 'name' => 'Tanglewilde', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '05150000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '78241000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:38', + 'updated_at' => '2019-10-06 08:06:38', + 'flag' => true, + 'wikiDataId' => 'Q504312', + ], + [ + 'id' => 127417, + 'name' => 'Tanglewilde-Thompson Place', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '05116000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '78081000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:38', + 'updated_at' => '2019-10-06 08:06:38', + 'flag' => true, + 'wikiDataId' => 'Q1508606', + ], + [ + 'id' => 127418, + 'name' => 'Tanner', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '47538000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '74622000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:38', + 'updated_at' => '2019-10-06 08:06:38', + 'flag' => true, + 'wikiDataId' => 'Q1512564', + ], + [ + 'id' => 127509, + 'name' => 'Tenino', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '85677000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '85291000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:39', + 'updated_at' => '2019-10-06 08:06:39', + 'flag' => true, + 'wikiDataId' => 'Q604958', + ], + [ + 'id' => 127518, + 'name' => 'Terrace Heights', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '60624000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '43979000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:39', + 'updated_at' => '2019-10-06 08:06:39', + 'flag' => true, + 'wikiDataId' => 'Q1508479', + ], + [ + 'id' => 127613, + 'name' => 'Three Lakes', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '94482000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '01152000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:41', + 'updated_at' => '2019-10-06 08:06:41', + 'flag' => true, + 'wikiDataId' => 'Q1504354', + ], + [ + 'id' => 127631, + 'name' => 'Thurston County', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '92950000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '83208000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:41', + 'updated_at' => '2019-10-06 08:06:41', + 'flag' => true, + 'wikiDataId' => 'Q113773', + ], + [ + 'id' => 127639, + 'name' => 'Tieton', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '70207000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '75535000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:41', + 'updated_at' => '2019-10-06 08:06:41', + 'flag' => true, + 'wikiDataId' => 'Q1506078', + ], + [ + 'id' => 127717, + 'name' => 'Tonasket', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '48'; + $this->fractionalPart = '70515000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '43950000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:44', + 'updated_at' => '2019-10-06 08:06:44', + 'flag' => true, + 'wikiDataId' => 'Q1506311', + ], + [ + 'id' => 127734, + 'name' => 'Toppenish', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '37735000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '30867000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:44', + 'updated_at' => '2019-10-06 08:06:44', + 'flag' => true, + 'wikiDataId' => 'Q986202', + ], + [ + 'id' => 127760, + 'name' => 'Town and Country', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '72739000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '42161000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:45', + 'updated_at' => '2019-10-06 08:06:45', + 'flag' => true, + 'wikiDataId' => 'Q1504059', + ], + [ + 'id' => 127773, + 'name' => 'Tracyton', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '60898000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '65514000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:45', + 'updated_at' => '2019-10-06 08:06:45', + 'flag' => true, + 'wikiDataId' => 'Q1505215', + ], + [ + 'id' => 127811, + 'name' => 'Trentwood', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '69656000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '21076000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:45', + 'updated_at' => '2019-10-06 08:06:45', + 'flag' => true, + 'wikiDataId' => 'Q1503104', + ], + [ + 'id' => 127879, + 'name' => 'Tukwila', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '47399000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '26096000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:47', + 'updated_at' => '2019-10-06 08:06:47', + 'flag' => true, + 'wikiDataId' => 'Q1510339', + ], + [ + 'id' => 127880, + 'name' => 'Tulalip', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '48'; + $this->fractionalPart = '06843000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '29181000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:47', + 'updated_at' => '2019-10-06 08:06:47', + 'flag' => true, + 'wikiDataId' => 'Q1516298', + ], + [ + 'id' => 127881, + 'name' => 'Tulalip Bay', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '48'; + $this->fractionalPart = '03732000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '31014000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:47', + 'updated_at' => '2019-10-06 08:06:47', + 'flag' => true, + 'wikiDataId' => 'Q1516298', + ], + [ + 'id' => 127890, + 'name' => 'Tumwater', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '00732000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '90931000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:47', + 'updated_at' => '2019-10-06 08:06:47', + 'flag' => true, + 'wikiDataId' => 'Q1507493', + ], + [ + 'id' => 128004, + 'name' => 'Union Gap', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '55735000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '47506000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:49', + 'updated_at' => '2019-10-06 08:06:49', + 'flag' => true, + 'wikiDataId' => 'Q1512710', + ], + [ + 'id' => 128007, + 'name' => 'Union Hill-Novelty Hill', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '67887000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '02833000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:49', + 'updated_at' => '2019-10-06 08:06:49', + 'flag' => true, + 'wikiDataId' => 'Q1514861', + ], + [ + 'id' => 128036, + 'name' => 'University Place', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '23565000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '55040000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:49', + 'updated_at' => '2019-10-06 08:06:49', + 'flag' => true, + 'wikiDataId' => 'Q1514808', + ], + [ + 'id' => 128144, + 'name' => 'Vancouver', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '45'; + $this->fractionalPart = '63873000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '66149000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:51', + 'updated_at' => '2019-10-06 08:06:51', + 'flag' => true, + 'wikiDataId' => 'Q234053', + ], + [ + 'id' => 128157, + 'name' => 'Vashon', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '44732000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '45985000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:51', + 'updated_at' => '2019-10-06 08:06:51', + 'flag' => true, + 'wikiDataId' => 'Q1505272', + ], + [ + 'id' => 128167, + 'name' => 'Venersborg', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '45'; + $this->fractionalPart = '77373000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '42454000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:51', + 'updated_at' => '2019-10-06 08:06:51', + 'flag' => true, + 'wikiDataId' => 'Q597247', + ], + [ + 'id' => 128178, + 'name' => 'Veradale', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '64995000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '20738000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:52', + 'updated_at' => '2019-10-06 08:06:52', + 'flag' => true, + 'wikiDataId' => 'Q1504247', + ], + [ + 'id' => 128332, + 'name' => 'Wahkiakum County', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '29125000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '123'; + $this->fractionalPart = '43316000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:53', + 'updated_at' => '2019-10-06 08:06:53', + 'flag' => true, + 'wikiDataId' => 'Q484015', + ], + [ + 'id' => 128354, + 'name' => 'Waitsburg', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '27042000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '15329000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:54', + 'updated_at' => '2019-10-06 08:06:54', + 'flag' => true, + 'wikiDataId' => 'Q1506464', + ], + [ + 'id' => 128393, + 'name' => 'Walla Walla', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '06458000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '34302000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:54', + 'updated_at' => '2019-10-06 08:06:54', + 'flag' => true, + 'wikiDataId' => 'Q222338', + ], + [ + 'id' => 128394, + 'name' => 'Walla Walla County', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '22980000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '47845000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:54', + 'updated_at' => '2019-10-06 08:06:54', + 'flag' => true, + 'wikiDataId' => 'Q485305', + ], + [ + 'id' => 128395, + 'name' => 'Walla Walla East', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '05184000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '118'; + $this->fractionalPart = '30403000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:54', + 'updated_at' => '2019-10-06 08:06:54', + 'flag' => true, + 'wikiDataId' => 'Q1502554', + ], + [ + 'id' => 128404, + 'name' => 'Waller', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '20066000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '36929000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:54', + 'updated_at' => '2019-10-06 08:06:54', + 'flag' => true, + 'wikiDataId' => 'Q1502819', + ], + [ + 'id' => 128420, + 'name' => 'Walnut Grove', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '45'; + $this->fractionalPart = '66789000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '59899000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:54', + 'updated_at' => '2019-10-06 08:06:54', + 'flag' => true, + 'wikiDataId' => 'Q1503462', + ], + [ + 'id' => 128453, + 'name' => 'Wapato', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '44763000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '42034000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:55', + 'updated_at' => '2019-10-06 08:06:55', + 'flag' => true, + 'wikiDataId' => 'Q1507767', + ], + [ + 'id' => 128460, + 'name' => 'Warden', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '96764000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '03973000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:55', + 'updated_at' => '2019-10-06 08:06:55', + 'flag' => true, + 'wikiDataId' => 'Q1510860', + ], + [ + 'id' => 128467, + 'name' => 'Warm Beach', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '48'; + $this->fractionalPart = '17065000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '36460000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:55', + 'updated_at' => '2019-10-06 08:06:55', + 'flag' => true, + 'wikiDataId' => 'Q1505252', + ], + [ + 'id' => 128591, + 'name' => 'Washougal', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '45'; + $this->fractionalPart = '58262000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '35342000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:57', + 'updated_at' => '2019-10-06 08:06:57', + 'flag' => true, + 'wikiDataId' => 'Q986371', + ], + [ + 'id' => 128629, + 'name' => 'Waterville', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '64708000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '07118000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:57', + 'updated_at' => '2019-10-06 08:06:57', + 'flag' => true, + 'wikiDataId' => 'Q168848', + ], + [ + 'id' => 128653, + 'name' => 'Wauna', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '37899000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '64263000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:58', + 'updated_at' => '2019-10-06 08:06:58', + 'flag' => true, + 'wikiDataId' => 'Q6166578', + ], + [ + 'id' => 128797, + 'name' => 'Wenatchee', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '42346000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '31035000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:06:59', + 'updated_at' => '2019-10-06 08:06:59', + 'flag' => true, + 'wikiDataId' => 'Q958596', + ], + [ + 'id' => 128847, + 'name' => 'West Clarkston-Highland', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '40287000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '06395000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:07:00', + 'updated_at' => '2019-10-06 08:07:00', + 'flag' => true, + 'wikiDataId' => 'Q27271', + ], + [ + 'id' => 128910, + 'name' => 'West Lake Sammamish', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '57760000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '10123000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:07:01', + 'updated_at' => '2019-10-06 08:07:01', + 'flag' => true, + 'wikiDataId' => 'Q1502687', + ], + [ + 'id' => 128911, + 'name' => 'West Lake Stevens', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '99343000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '10180000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:07:01', + 'updated_at' => '2019-10-06 08:07:01', + 'flag' => true, + 'wikiDataId' => 'Q1502959', + ], + [ + 'id' => 128923, + 'name' => 'West Longview', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '16789000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '99900000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:07:01', + 'updated_at' => '2019-10-06 08:07:01', + 'flag' => true, + 'wikiDataId' => 'Q1503112', + ], + [ + 'id' => 128951, + 'name' => 'West Pasco', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '24541000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '18279000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:07:01', + 'updated_at' => '2019-10-06 08:07:01', + 'flag' => true, + 'wikiDataId' => 'Q1504992', + ], + [ + 'id' => 128968, + 'name' => 'West Richland', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '30430000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '36141000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:07:02', + 'updated_at' => '2019-10-06 08:07:02', + 'flag' => true, + 'wikiDataId' => 'Q917589', + ], + [ + 'id' => 128981, + 'name' => 'West Side Highway', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '18399000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '91715000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:07:02', + 'updated_at' => '2019-10-06 08:07:02', + 'flag' => true, + 'wikiDataId' => 'Q1503595', + ], + [ + 'id' => 128996, + 'name' => 'West Valley', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '59207000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '60507000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:07:02', + 'updated_at' => '2019-10-06 08:07:02', + 'flag' => true, + 'wikiDataId' => 'Q1504315', + ], + [ + 'id' => 129003, + 'name' => 'West Wenatchee', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '44374000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '35341000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:07:02', + 'updated_at' => '2019-10-06 08:07:02', + 'flag' => true, + 'wikiDataId' => 'Q1093576', + ], + [ + 'id' => 129073, + 'name' => 'Westport', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '89009000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '124'; + $this->fractionalPart = '10406000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:07:03', + 'updated_at' => '2019-10-06 08:07:03', + 'flag' => true, + 'wikiDataId' => 'Q1007612', + ], + [ + 'id' => 129105, + 'name' => 'Whatcom County', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '48'; + $this->fractionalPart = '82975000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '87283000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:07:03', + 'updated_at' => '2019-10-06 08:07:03', + 'flag' => true, + 'wikiDataId' => 'Q156623', + ], + [ + 'id' => 129129, + 'name' => 'White Center', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '51732000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '35485000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:07:04', + 'updated_at' => '2019-10-06 08:07:04', + 'flag' => true, + 'wikiDataId' => 'Q1511304', + ], + [ + 'id' => 129159, + 'name' => 'White Salmon', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '45'; + $this->fractionalPart = '72762000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '48646000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:07:04', + 'updated_at' => '2019-10-06 08:07:04', + 'flag' => true, + 'wikiDataId' => 'Q1019847', + ], + [ + 'id' => 129204, + 'name' => 'Whitman County', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '90117000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '117'; + $this->fractionalPart = '52299000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:07:05', + 'updated_at' => '2019-10-06 08:07:05', + 'flag' => true, + 'wikiDataId' => 'Q484153', + ], + [ + 'id' => 129234, + 'name' => 'Wilderness Rim', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '44697000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '76857000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:07:06', + 'updated_at' => '2019-10-06 08:07:06', + 'flag' => true, + 'wikiDataId' => 'Q8001154', + ], + [ + 'id' => 129403, + 'name' => 'Winlock', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '49122000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '93790000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:07:08', + 'updated_at' => '2019-10-06 08:07:08', + 'flag' => true, + 'wikiDataId' => 'Q1502266', + ], + [ + 'id' => 129480, + 'name' => 'Wollochet', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '26871000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '58402000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:07:09', + 'updated_at' => '2019-10-06 08:07:09', + 'flag' => true, + 'wikiDataId' => 'Q6168166', + ], + [ + 'id' => 129523, + 'name' => 'Woodinville', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '75427000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '16346000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:07:09', + 'updated_at' => '2019-10-06 08:07:09', + 'flag' => true, + 'wikiDataId' => 'Q986378', + ], + [ + 'id' => 129527, + 'name' => 'Woodland', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '45'; + $this->fractionalPart = '90456000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '74399000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:07:09', + 'updated_at' => '2019-10-06 08:07:09', + 'flag' => true, + 'wikiDataId' => 'Q1191430', + ], + [ + 'id' => 129550, + 'name' => 'Woods Creek', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '87871000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '121'; + $this->fractionalPart = '89846000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:07:10', + 'updated_at' => '2019-10-06 08:07:10', + 'flag' => true, + 'wikiDataId' => 'Q1503566', + ], + [ + 'id' => 129579, + 'name' => 'Woodway', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '79621000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '38291000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:07:10', + 'updated_at' => '2019-10-06 08:07:10', + 'flag' => true, + 'wikiDataId' => 'Q1506485', + ], + [ + 'id' => 129647, + 'name' => 'Yacolt', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '45'; + $this->fractionalPart = '86595000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '40621000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:07:11', + 'updated_at' => '2019-10-06 08:07:11', + 'flag' => true, + 'wikiDataId' => 'Q1502151', + ], + [ + 'id' => 129650, + 'name' => 'Yakima', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '60207000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '50590000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:07:11', + 'updated_at' => '2019-10-06 08:07:11', + 'flag' => true, + 'wikiDataId' => 'Q499203', + ], + [ + 'id' => 129651, + 'name' => 'Yakima County', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '45685000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '73870000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:07:11', + 'updated_at' => '2019-10-06 08:07:11', + 'flag' => true, + 'wikiDataId' => 'Q156629', + ], + [ + 'id' => 129669, + 'name' => 'Yarrow Point', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '64621000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '21735000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:07:11', + 'updated_at' => '2019-10-06 08:07:11', + 'flag' => true, + 'wikiDataId' => 'Q1507131', + ], + [ + 'id' => 129681, + 'name' => 'Yelm', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '94204000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '122'; + $this->fractionalPart = '60596000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:07:11', + 'updated_at' => '2019-10-06 08:07:11', + 'flag' => true, + 'wikiDataId' => 'Q1510424', + ], + [ + 'id' => 129754, + 'name' => 'Zillah', + 'state_id' => 1462, + 'state_code' => 'WA', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '40207000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '26200000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 08:07:12', + 'updated_at' => '2019-10-06 08:07:12', + 'flag' => true, + 'wikiDataId' => 'Q781706', + ], + [ + 'id' => 141096, + 'name' => 'Ada', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '76950000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '83'; + $this->fractionalPart = '82271000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:01', + 'updated_at' => '2019-11-14 01:18:01', + 'flag' => true, + 'wikiDataId' => 'Q1934356', + ], + [ + 'id' => 141097, + 'name' => 'Adams County', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '84551000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '83'; + $this->fractionalPart = '47215000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:01', + 'updated_at' => '2019-11-14 01:18:01', + 'flag' => true, + 'wikiDataId' => 'Q109969', + ], + [ + 'id' => 141098, + 'name' => 'Akron', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '08144000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '51901000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:01', + 'updated_at' => '2019-11-14 01:18:01', + 'flag' => true, + 'wikiDataId' => 'Q163132', + ], + [ + 'id' => 141099, + 'name' => 'Allen County', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '77152000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '10578000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:01', + 'updated_at' => '2019-11-14 01:18:01', + 'flag' => true, + 'wikiDataId' => 'Q485577', + ], + [ + 'id' => 141100, + 'name' => 'Alliance', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '91534000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '10593000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:01', + 'updated_at' => '2019-11-14 01:18:01', + 'flag' => true, + 'wikiDataId' => 'Q985230', + ], + [ + 'id' => 141101, + 'name' => 'Amberley', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '20478000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '42800000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:01', + 'updated_at' => '2019-11-14 01:18:01', + 'flag' => true, + 'wikiDataId' => 'Q2673467', + ], + [ + 'id' => 141102, + 'name' => 'Amelia', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '02840000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '21771000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:01', + 'updated_at' => '2019-11-14 01:18:01', + 'flag' => true, + 'wikiDataId' => 'Q943559', + ], + [ + 'id' => 141103, + 'name' => 'Amherst', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '39782000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '82'; + $this->fractionalPart = '22238000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:02', + 'updated_at' => '2019-11-14 01:18:02', + 'flag' => true, + 'wikiDataId' => 'Q2232720', + ], + [ + 'id' => 141104, + 'name' => 'Andover', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '60672000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '80'; + $this->fractionalPart = '57230000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:02', + 'updated_at' => '2019-11-14 01:18:02', + 'flag' => true, + 'wikiDataId' => 'Q2646414', + ], + [ + 'id' => 141105, + 'name' => 'Anna', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '39449000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '17272000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:02', + 'updated_at' => '2019-11-14 01:18:02', + 'flag' => true, + 'wikiDataId' => 'Q2303540', + ], + [ + 'id' => 141106, + 'name' => 'Ansonia', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '21449000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '63690000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:02', + 'updated_at' => '2019-11-14 01:18:02', + 'flag' => true, + 'wikiDataId' => 'Q2279267', + ], + [ + 'id' => 141107, + 'name' => 'Antwerp', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '18144000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '74051000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:02', + 'updated_at' => '2019-11-14 01:18:02', + 'flag' => true, + 'wikiDataId' => 'Q2668866', + ], + [ + 'id' => 141108, + 'name' => 'Apple Creek', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '75172000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '83930000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:02', + 'updated_at' => '2019-11-14 01:18:02', + 'flag' => true, + 'wikiDataId' => 'Q1816973', + ], + [ + 'id' => 141109, + 'name' => 'Apple Valley', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '43890000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '82'; + $this->fractionalPart = '35391000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:02', + 'updated_at' => '2019-11-14 01:18:02', + 'flag' => true, + 'wikiDataId' => 'Q1816973', + ], + [ + 'id' => 141110, + 'name' => 'Arcanum', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '99005000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '55329000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:02', + 'updated_at' => '2019-11-14 01:18:02', + 'flag' => true, + 'wikiDataId' => 'Q2668825', + ], + [ + 'id' => 141111, + 'name' => 'Archbold', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '52144000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '30717000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:02', + 'updated_at' => '2019-11-14 01:18:02', + 'flag' => true, + 'wikiDataId' => 'Q632471', + ], + [ + 'id' => 141112, + 'name' => 'Arlington', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '89366000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '83'; + $this->fractionalPart = '65021000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:02', + 'updated_at' => '2019-11-14 01:18:02', + 'flag' => true, + 'wikiDataId' => 'Q690513', + ], + [ + 'id' => 141113, + 'name' => 'Ashland', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '86867000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '82'; + $this->fractionalPart = '31822000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:02', + 'updated_at' => '2019-11-14 01:18:02', + 'flag' => true, + 'wikiDataId' => 'Q725573', + ], + [ + 'id' => 141114, + 'name' => 'Ashland County', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '84602000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '82'; + $this->fractionalPart = '27069000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:02', + 'updated_at' => '2019-11-14 01:18:02', + 'flag' => true, + 'wikiDataId' => 'Q403544', + ], + [ + 'id' => 141115, + 'name' => 'Ashley', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '40895000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '82'; + $this->fractionalPart = '95546000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:02', + 'updated_at' => '2019-11-14 01:18:02', + 'flag' => true, + 'wikiDataId' => 'Q2039183', + ], + [ + 'id' => 141116, + 'name' => 'Ashtabula', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '86505000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '80'; + $this->fractionalPart = '78981000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:02', + 'updated_at' => '2019-11-14 01:18:02', + 'flag' => true, + 'wikiDataId' => 'Q726287', + ], + [ + 'id' => 141117, + 'name' => 'Ashtabula County', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '89638000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '80'; + $this->fractionalPart = '75901000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:02', + 'updated_at' => '2019-11-14 01:18:02', + 'flag' => true, + 'wikiDataId' => 'Q336322', + ], + [ + 'id' => 141118, + 'name' => 'Ashville', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '71562000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '82'; + $this->fractionalPart = '95296000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:02', + 'updated_at' => '2019-11-14 01:18:02', + 'flag' => true, + 'wikiDataId' => 'Q726559', + ], + [ + 'id' => 141119, + 'name' => 'Athens', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '32924000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '82'; + $this->fractionalPart = '10126000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:02', + 'updated_at' => '2019-11-14 01:18:02', + 'flag' => true, + 'wikiDataId' => 'Q755420', + ], + [ + 'id' => 141120, + 'name' => 'Athens County', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '33386000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '82'; + $this->fractionalPart = '04513000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:02', + 'updated_at' => '2019-11-14 01:18:02', + 'flag' => true, + 'wikiDataId' => 'Q485588', + ], + [ + 'id' => 141121, + 'name' => 'Auglaize County', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '56091000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '22174000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:02', + 'updated_at' => '2019-11-14 01:18:02', + 'flag' => true, + 'wikiDataId' => 'Q372364', + ], + [ + 'id' => 141122, + 'name' => 'Aurora', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '31755000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '34539000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:02', + 'updated_at' => '2019-11-14 01:18:02', + 'flag' => true, + 'wikiDataId' => 'Q777153', + ], + [ + 'id' => 141123, + 'name' => 'Austintown', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '10172000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '80'; + $this->fractionalPart = '76452000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:02', + 'updated_at' => '2019-11-14 01:18:02', + 'flag' => true, + 'wikiDataId' => 'Q769864', + ], + [ + 'id' => 141124, + 'name' => 'Avon', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '45171000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '82'; + $this->fractionalPart = '03542000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:02', + 'updated_at' => '2019-11-14 01:18:02', + 'flag' => true, + 'wikiDataId' => 'Q791271', + ], + [ + 'id' => 141125, + 'name' => 'Avon Center', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '45976000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '82'; + $this->fractionalPart = '01959000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:02', + 'updated_at' => '2019-11-14 01:18:02', + 'flag' => true, + 'wikiDataId' => 'Q791271', + ], + [ + 'id' => 141126, + 'name' => 'Avon Lake', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '50532000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '82'; + $this->fractionalPart = '02820000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:02', + 'updated_at' => '2019-11-14 01:18:02', + 'flag' => true, + 'wikiDataId' => 'Q791279', + ], + [ + 'id' => 141127, + 'name' => 'Bainbridge', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '38644000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '33955000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:02', + 'updated_at' => '2019-11-14 01:18:02', + 'flag' => true, + 'wikiDataId' => 'Q2088307', + ], + [ + 'id' => 141128, + 'name' => 'Ballville', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '32783000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '83'; + $this->fractionalPart = '13214000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:02', + 'updated_at' => '2019-11-14 01:18:02', + 'flag' => true, + 'wikiDataId' => 'Q2088307', + ], + [ + 'id' => 141129, + 'name' => 'Baltimore', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '84534000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '82'; + $this->fractionalPart = '60072000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:02', + 'updated_at' => '2019-11-14 01:18:02', + 'flag' => true, + 'wikiDataId' => 'Q1889293', + ], + [ + 'id' => 141130, + 'name' => 'Barberton', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '01283000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '60512000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:02', + 'updated_at' => '2019-11-14 01:18:02', + 'flag' => true, + 'wikiDataId' => 'Q807830', + ], + [ + 'id' => 141131, + 'name' => 'Barnesville', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '98813000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '17650000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:02', + 'updated_at' => '2019-11-14 01:18:02', + 'flag' => true, + 'wikiDataId' => 'Q808468', + ], + [ + 'id' => 141132, + 'name' => 'Batavia', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '07701000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '17688000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:02', + 'updated_at' => '2019-11-14 01:18:02', + 'flag' => true, + 'wikiDataId' => 'Q586282', + ], + [ + 'id' => 141133, + 'name' => 'Bay Village', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '48477000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '92208000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:02', + 'updated_at' => '2019-11-14 01:18:02', + 'flag' => true, + 'wikiDataId' => 'Q812092', + ], + [ + 'id' => 141134, + 'name' => 'Beach City', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '65312000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '58096000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:02', + 'updated_at' => '2019-11-14 01:18:02', + 'flag' => true, + 'wikiDataId' => 'Q1934678', + ], + [ + 'id' => 141135, + 'name' => 'Beachwood', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '46450000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '50873000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:02', + 'updated_at' => '2019-11-14 01:18:02', + 'flag' => true, + 'wikiDataId' => 'Q812890', + ], + [ + 'id' => 141136, + 'name' => 'Beavercreek', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '70923000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '06327000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:02', + 'updated_at' => '2019-11-14 01:18:02', + 'flag' => true, + 'wikiDataId' => 'Q2233290', + ], + [ + 'id' => 141137, + 'name' => 'Beckett Ridge', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '34700000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '43522000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:02', + 'updated_at' => '2019-11-14 01:18:02', + 'flag' => true, + 'wikiDataId' => 'Q3313176', + ], + [ + 'id' => 141138, + 'name' => 'Bedford', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '39311000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '53651000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:02', + 'updated_at' => '2019-11-14 01:18:02', + 'flag' => true, + 'wikiDataId' => 'Q813866', + ], + [ + 'id' => 141139, + 'name' => 'Bedford Heights', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '41700000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '52734000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:02', + 'updated_at' => '2019-11-14 01:18:02', + 'flag' => true, + 'wikiDataId' => 'Q206628', + ], + [ + 'id' => 141140, + 'name' => 'Beechwood Trails', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '02367000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '82'; + $this->fractionalPart = '65072000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:02', + 'updated_at' => '2019-11-14 01:18:02', + 'flag' => true, + 'wikiDataId' => 'Q431290', + ], + [ + 'id' => 141141, + 'name' => 'Bellaire', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '01618000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '80'; + $this->fractionalPart = '74231000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:02', + 'updated_at' => '2019-11-14 01:18:02', + 'flag' => true, + 'wikiDataId' => 'Q1985364', + ], + [ + 'id' => 141142, + 'name' => 'Bellbrook', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '63562000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '07077000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:02', + 'updated_at' => '2019-11-14 01:18:02', + 'flag' => true, + 'wikiDataId' => 'Q815826', + ], + [ + 'id' => 141143, + 'name' => 'Bellefontaine', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '36116000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '83'; + $this->fractionalPart = '75966000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:02', + 'updated_at' => '2019-11-14 01:18:02', + 'flag' => true, + 'wikiDataId' => 'Q815891', + ], + [ + 'id' => 141144, + 'name' => 'Bellevue', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '27366000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '82'; + $this->fractionalPart = '84158000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:02', + 'updated_at' => '2019-11-14 01:18:02', + 'flag' => true, + 'wikiDataId' => 'Q815964', + ], + [ + 'id' => 141145, + 'name' => 'Bellville', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '62006000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '82'; + $this->fractionalPart = '51072000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:02', + 'updated_at' => '2019-11-14 01:18:02', + 'flag' => true, + 'wikiDataId' => 'Q816072', + ], + [ + 'id' => 141146, + 'name' => 'Belmont County', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '01580000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '80'; + $this->fractionalPart = '98854000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:02', + 'updated_at' => '2019-11-14 01:18:02', + 'flag' => true, + 'wikiDataId' => 'Q485513', + ], + [ + 'id' => 141147, + 'name' => 'Belpre', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '27396000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '57290000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:02', + 'updated_at' => '2019-11-14 01:18:02', + 'flag' => true, + 'wikiDataId' => 'Q816175', + ], + [ + 'id' => 141148, + 'name' => 'Berea', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '36616000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '85430000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:02', + 'updated_at' => '2019-11-14 01:18:02', + 'flag' => true, + 'wikiDataId' => 'Q818897', + ], + [ + 'id' => 141149, + 'name' => 'Bethel', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '96368000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '08077000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:02', + 'updated_at' => '2019-11-14 01:18:02', + 'flag' => true, + 'wikiDataId' => 'Q2669228', + ], + [ + 'id' => 141150, + 'name' => 'Bethesda', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '01618000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '07260000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:02', + 'updated_at' => '2019-11-14 01:18:02', + 'flag' => true, + 'wikiDataId' => 'Q2392682', + ], + [ + 'id' => 141151, + 'name' => 'Beverly', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '54785000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '63957000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:02', + 'updated_at' => '2019-11-14 01:18:02', + 'flag' => true, + 'wikiDataId' => 'Q851740', + ], + [ + 'id' => 141152, + 'name' => 'Bexley', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '96895000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '82'; + $this->fractionalPart = '93768000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:02', + 'updated_at' => '2019-11-14 01:18:02', + 'flag' => true, + 'wikiDataId' => 'Q1857734', + ], + [ + 'id' => 141153, + 'name' => 'Blacklick Estates', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '90506000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '82'; + $this->fractionalPart = '86434000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:02', + 'updated_at' => '2019-11-14 01:18:02', + 'flag' => true, + 'wikiDataId' => 'Q2841657', + ], + [ + 'id' => 141154, + 'name' => 'Blanchester', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '29312000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '83'; + $this->fractionalPart = '98882000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:02', + 'updated_at' => '2019-11-14 01:18:02', + 'flag' => true, + 'wikiDataId' => 'Q527491', + ], + [ + 'id' => 141155, + 'name' => 'Blue Ash', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '23200000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '37827000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:02', + 'updated_at' => '2019-11-14 01:18:02', + 'flag' => true, + 'wikiDataId' => 'Q885619', + ], + [ + 'id' => 141156, + 'name' => 'Bluffton', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '89533000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '83'; + $this->fractionalPart = '88883000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:02', + 'updated_at' => '2019-11-14 01:18:02', + 'flag' => true, + 'wikiDataId' => 'Q282552', + ], + [ + 'id' => 141157, + 'name' => 'Boardman', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '02423000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '80'; + $this->fractionalPart = '66285000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:02', + 'updated_at' => '2019-11-14 01:18:02', + 'flag' => true, + 'wikiDataId' => 'Q887556', + ], + [ + 'id' => 141158, + 'name' => 'Bolindale', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '20728000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '80'; + $this->fractionalPart = '77758000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:02', + 'updated_at' => '2019-11-14 01:18:02', + 'flag' => true, + 'wikiDataId' => 'Q2416471', + ], + [ + 'id' => 141159, + 'name' => 'Boston Heights', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '26478000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '51317000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:02', + 'updated_at' => '2019-11-14 01:18:02', + 'flag' => true, + 'wikiDataId' => 'Q2056836', + ], + [ + 'id' => 141160, + 'name' => 'Botkins', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '46783000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '18050000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:02', + 'updated_at' => '2019-11-14 01:18:02', + 'flag' => true, + 'wikiDataId' => 'Q512794', + ], + [ + 'id' => 141161, + 'name' => 'Bowling Green', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '37477000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '83'; + $this->fractionalPart = '65132000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:02', + 'updated_at' => '2019-11-14 01:18:02', + 'flag' => true, + 'wikiDataId' => 'Q895459', + ], + [ + 'id' => 141162, + 'name' => 'Bradford', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '13227000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '43078000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:02', + 'updated_at' => '2019-11-14 01:18:02', + 'flag' => true, + 'wikiDataId' => 'Q280278', + ], + [ + 'id' => 141163, + 'name' => 'Bradner', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '32422000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '83'; + $this->fractionalPart = '43854000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:02', + 'updated_at' => '2019-11-14 01:18:02', + 'flag' => true, + 'wikiDataId' => 'Q897084', + ], + [ + 'id' => 141164, + 'name' => 'Bratenahl', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '54255000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '62624000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:02', + 'updated_at' => '2019-11-14 01:18:02', + 'flag' => true, + 'wikiDataId' => 'Q899590', + ], + [ + 'id' => 141165, + 'name' => 'Brecksville', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '31978000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '62679000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:02', + 'updated_at' => '2019-11-14 01:18:02', + 'flag' => true, + 'wikiDataId' => 'Q904449', + ], + [ + 'id' => 141166, + 'name' => 'Bremen', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '70173000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '82'; + $this->fractionalPart = '42682000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:02', + 'updated_at' => '2019-11-14 01:18:02', + 'flag' => true, + 'wikiDataId' => 'Q282406', + ], + [ + 'id' => 141167, + 'name' => 'Brewster', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '70700000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '59818000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:02', + 'updated_at' => '2019-11-14 01:18:02', + 'flag' => true, + 'wikiDataId' => 'Q911453', + ], + [ + 'id' => 141168, + 'name' => 'Bridgeport', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '06979000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '80'; + $this->fractionalPart = '74008000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:02', + 'updated_at' => '2019-11-14 01:18:02', + 'flag' => true, + 'wikiDataId' => 'Q2062947', + ], + [ + 'id' => 141169, + 'name' => 'Bridgetown', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '15311000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '63717000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:02', + 'updated_at' => '2019-11-14 01:18:02', + 'flag' => true, + 'wikiDataId' => 'Q4966785', + ], + [ + 'id' => 141170, + 'name' => 'Brilliant', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '26479000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '80'; + $this->fractionalPart = '62619000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:02', + 'updated_at' => '2019-11-14 01:18:02', + 'flag' => true, + 'wikiDataId' => 'Q826416', + ], + [ + 'id' => 141171, + 'name' => 'Brimfield', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '10006000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '34650000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:02', + 'updated_at' => '2019-11-14 01:18:02', + 'flag' => true, + 'wikiDataId' => 'Q2798238', + ], + [ + 'id' => 141172, + 'name' => 'Broadview Heights', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '31394000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '68513000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:02', + 'updated_at' => '2019-11-14 01:18:02', + 'flag' => true, + 'wikiDataId' => 'Q1911269', + ], + [ + 'id' => 141173, + 'name' => 'Brook Park', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '39838000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '80458000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:02', + 'updated_at' => '2019-11-14 01:18:02', + 'flag' => true, + 'wikiDataId' => 'Q928714', + ], + [ + 'id' => 141174, + 'name' => 'Brookfield Center', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '24061000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '80'; + $this->fractionalPart = '55785000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:02', + 'updated_at' => '2019-11-14 01:18:02', + 'flag' => true, + 'wikiDataId' => 'Q765529', + ], + [ + 'id' => 141175, + 'name' => 'Brooklyn', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '43977000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '73541000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:02', + 'updated_at' => '2019-11-14 01:18:02', + 'flag' => true, + 'wikiDataId' => 'Q929401', + ], + [ + 'id' => 141176, + 'name' => 'Brooklyn Heights', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '42533000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '68818000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:02', + 'updated_at' => '2019-11-14 01:18:02', + 'flag' => true, + 'wikiDataId' => 'Q929578', + ], + [ + 'id' => 141177, + 'name' => 'Brookville', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '83672000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '41134000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:02', + 'updated_at' => '2019-11-14 01:18:02', + 'flag' => true, + 'wikiDataId' => 'Q1925076', + ], + [ + 'id' => 141178, + 'name' => 'Brown County', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '93405000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '83'; + $this->fractionalPart = '86743000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:02', + 'updated_at' => '2019-11-14 01:18:02', + 'flag' => true, + 'wikiDataId' => 'Q111575', + ], + [ + 'id' => 141179, + 'name' => 'Brunswick', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '23811000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '84180000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:02', + 'updated_at' => '2019-11-14 01:18:02', + 'flag' => true, + 'wikiDataId' => 'Q263238', + ], + [ + 'id' => 141180, + 'name' => 'Bryan', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '47477000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '55245000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:02', + 'updated_at' => '2019-11-14 01:18:02', + 'flag' => true, + 'wikiDataId' => 'Q767752', + ], + [ + 'id' => 141181, + 'name' => 'Buckeye Lake', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '93368000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '82'; + $this->fractionalPart = '47238000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:02', + 'updated_at' => '2019-11-14 01:18:02', + 'flag' => true, + 'wikiDataId' => 'Q2668859', + ], + [ + 'id' => 141182, + 'name' => 'Bucyrus', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '80839000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '82'; + $this->fractionalPart = '97546000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:02', + 'updated_at' => '2019-11-14 01:18:02', + 'flag' => true, + 'wikiDataId' => 'Q993453', + ], + [ + 'id' => 141183, + 'name' => 'Burlington', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '40730000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '82'; + $this->fractionalPart = '53571000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:02', + 'updated_at' => '2019-11-14 01:18:02', + 'flag' => true, + 'wikiDataId' => 'Q2000682', + ], + [ + 'id' => 141184, + 'name' => 'Burton', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '47061000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '14510000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:02', + 'updated_at' => '2019-11-14 01:18:02', + 'flag' => true, + 'wikiDataId' => 'Q1017116', + ], + [ + 'id' => 141185, + 'name' => 'Butler County', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '43865000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '57566000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:02', + 'updated_at' => '2019-11-14 01:18:02', + 'flag' => true, + 'wikiDataId' => 'Q485561', + ], + [ + 'id' => 141186, + 'name' => 'Byesville', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '96979000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '53651000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:02', + 'updated_at' => '2019-11-14 01:18:02', + 'flag' => true, + 'wikiDataId' => 'Q2548846', + ], + [ + 'id' => 141187, + 'name' => 'Cadiz', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '27285000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '80'; + $this->fractionalPart = '99676000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:02', + 'updated_at' => '2019-11-14 01:18:02', + 'flag' => true, + 'wikiDataId' => 'Q1925015', + ], + [ + 'id' => 141188, + 'name' => 'Calcutta', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '67340000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '80'; + $this->fractionalPart = '57646000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:02', + 'updated_at' => '2019-11-14 01:18:02', + 'flag' => true, + 'wikiDataId' => 'Q2630411', + ], + [ + 'id' => 141189, + 'name' => 'Caldwell', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '74785000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '51651000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:02', + 'updated_at' => '2019-11-14 01:18:02', + 'flag' => true, + 'wikiDataId' => 'Q653835', + ], + [ + 'id' => 141190, + 'name' => 'Cambridge', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '03118000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '58846000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:02', + 'updated_at' => '2019-11-14 01:18:02', + 'flag' => true, + 'wikiDataId' => 'Q249454', + ], + [ + 'id' => 141191, + 'name' => 'Camden', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '62894000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '64856000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:02', + 'updated_at' => '2019-11-14 01:18:02', + 'flag' => true, + 'wikiDataId' => 'Q2668408', + ], + [ + 'id' => 141192, + 'name' => 'Campbell', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '07839000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '80'; + $this->fractionalPart = '59924000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:02', + 'updated_at' => '2019-11-14 01:18:02', + 'flag' => true, + 'wikiDataId' => 'Q1925085', + ], + [ + 'id' => 141193, + 'name' => 'Canal Fulton', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '88978000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '59762000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:02', + 'updated_at' => '2019-11-14 01:18:02', + 'flag' => true, + 'wikiDataId' => 'Q995730', + ], + [ + 'id' => 141194, + 'name' => 'Canal Winchester', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '84284000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '82'; + $this->fractionalPart = '80462000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:02', + 'updated_at' => '2019-11-14 01:18:02', + 'flag' => true, + 'wikiDataId' => 'Q1026010', + ], + [ + 'id' => 141195, + 'name' => 'Canfield', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '02506000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '80'; + $this->fractionalPart = '76091000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:02', + 'updated_at' => '2019-11-14 01:18:02', + 'flag' => true, + 'wikiDataId' => 'Q1924946', + ], + [ + 'id' => 141196, + 'name' => 'Canton', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '79895000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '37845000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:02', + 'updated_at' => '2019-11-14 01:18:02', + 'flag' => true, + 'wikiDataId' => 'Q491239', + ], + [ + 'id' => 141197, + 'name' => 'Cardington', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '50062000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '82'; + $this->fractionalPart = '89351000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:03', + 'updated_at' => '2019-11-14 01:18:03', + 'flag' => true, + 'wikiDataId' => 'Q2461475', + ], + [ + 'id' => 141198, + 'name' => 'Carey', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '95256000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '83'; + $this->fractionalPart = '38242000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:03', + 'updated_at' => '2019-11-14 01:18:03', + 'flag' => true, + 'wikiDataId' => 'Q2666477', + ], + [ + 'id' => 141199, + 'name' => 'Carlisle', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '58200000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '32022000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:03', + 'updated_at' => '2019-11-14 01:18:03', + 'flag' => true, + 'wikiDataId' => 'Q1004418', + ], + [ + 'id' => 141200, + 'name' => 'Carroll County', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '57959000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '08972000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:03', + 'updated_at' => '2019-11-14 01:18:03', + 'flag' => true, + 'wikiDataId' => 'Q421970', + ], + [ + 'id' => 141201, + 'name' => 'Carrollton', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '57284000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '08565000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:03', + 'updated_at' => '2019-11-14 01:18:03', + 'flag' => true, + 'wikiDataId' => 'Q998898', + ], + [ + 'id' => 141202, + 'name' => 'Cedarville', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '74423000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '83'; + $this->fractionalPart = '80854000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:03', + 'updated_at' => '2019-11-14 01:18:03', + 'flag' => true, + 'wikiDataId' => 'Q1014183', + ], + [ + 'id' => 141203, + 'name' => 'Celina', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '54894000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '57023000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:03', + 'updated_at' => '2019-11-14 01:18:03', + 'flag' => true, + 'wikiDataId' => 'Q387861', + ], + [ + 'id' => 141204, + 'name' => 'Centerburg', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '30451000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '82'; + $this->fractionalPart = '69628000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:03', + 'updated_at' => '2019-11-14 01:18:03', + 'flag' => true, + 'wikiDataId' => 'Q2666466', + ], + [ + 'id' => 141205, + 'name' => 'Centerville', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '62839000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '15938000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:03', + 'updated_at' => '2019-11-14 01:18:03', + 'flag' => true, + 'wikiDataId' => 'Q2375175', + ], + [ + 'id' => 141206, + 'name' => 'Chagrin Falls', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '43616000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '38650000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:03', + 'updated_at' => '2019-11-14 01:18:03', + 'flag' => true, + 'wikiDataId' => 'Q534836', + ], + [ + 'id' => 141207, + 'name' => 'Champaign County', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '13767000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '83'; + $this->fractionalPart = '76950000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:03', + 'updated_at' => '2019-11-14 01:18:03', + 'flag' => true, + 'wikiDataId' => 'Q389573', + ], + [ + 'id' => 141208, + 'name' => 'Champion Heights', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '28999000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '80'; + $this->fractionalPart = '84595000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:03', + 'updated_at' => '2019-11-14 01:18:03', + 'flag' => true, + 'wikiDataId' => 'Q2187816', + ], + [ + 'id' => 141209, + 'name' => 'Chardon', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '61422000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '14899000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:03', + 'updated_at' => '2019-11-14 01:18:03', + 'flag' => true, + 'wikiDataId' => 'Q986306', + ], + [ + 'id' => 141210, + 'name' => 'Chauncey', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '39785000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '82'; + $this->fractionalPart = '12931000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:03', + 'updated_at' => '2019-11-14 01:18:03', + 'flag' => true, + 'wikiDataId' => 'Q373237', + ], + [ + 'id' => 141211, + 'name' => 'Cherry Grove', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '07256000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '32188000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:03', + 'updated_at' => '2019-11-14 01:18:03', + 'flag' => true, + 'wikiDataId' => 'Q1997794', + ], + [ + 'id' => 141212, + 'name' => 'Chesterland', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '52227000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '33789000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:03', + 'updated_at' => '2019-11-14 01:18:03', + 'flag' => true, + 'wikiDataId' => 'Q3313474', + ], + [ + 'id' => 141213, + 'name' => 'Cheviot', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '15700000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '61328000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:03', + 'updated_at' => '2019-11-14 01:18:03', + 'flag' => true, + 'wikiDataId' => 'Q2201160', + ], + [ + 'id' => 141214, + 'name' => 'Chillicothe', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '33312000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '82'; + $this->fractionalPart = '98240000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:03', + 'updated_at' => '2019-11-14 01:18:03', + 'flag' => true, + 'wikiDataId' => 'Q988739', + ], + [ + 'id' => 141215, + 'name' => 'Choctaw Lake', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '96006000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '83'; + $this->fractionalPart = '48492000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:03', + 'updated_at' => '2019-11-14 01:18:03', + 'flag' => true, + 'wikiDataId' => 'Q2225829', + ], + [ + 'id' => 141216, + 'name' => 'Churchill', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '16200000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '80'; + $this->fractionalPart = '66480000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:03', + 'updated_at' => '2019-11-14 01:18:03', + 'flag' => true, + 'wikiDataId' => 'Q616888', + ], + [ + 'id' => 141217, + 'name' => 'Cincinnati', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '12711000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '51439000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:03', + 'updated_at' => '2019-11-14 01:18:03', + 'flag' => true, + 'wikiDataId' => 'Q43196', + ], + [ + 'id' => 141218, + 'name' => 'Circleville', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '60062000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '82'; + $this->fractionalPart = '94601000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:03', + 'updated_at' => '2019-11-14 01:18:03', + 'flag' => true, + 'wikiDataId' => 'Q1007037', + ], + [ + 'id' => 141219, + 'name' => 'Clark County', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '91678000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '83'; + $this->fractionalPart = '78390000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:03', + 'updated_at' => '2019-11-14 01:18:03', + 'flag' => true, + 'wikiDataId' => 'Q485558', + ], + [ + 'id' => 141220, + 'name' => 'Clark-Fulton', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '46402000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '70979000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:03', + 'updated_at' => '2019-11-14 01:18:03', + 'flag' => true, + 'wikiDataId' => 'Q5127124', + ], + [ + 'id' => 141221, + 'name' => 'Clayton', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '86311000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '36050000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:03', + 'updated_at' => '2019-11-14 01:18:03', + 'flag' => true, + 'wikiDataId' => 'Q1004062', + ], + [ + 'id' => 141222, + 'name' => 'Clermont County', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '04743000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '15192000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:03', + 'updated_at' => '2019-11-14 01:18:03', + 'flag' => true, + 'wikiDataId' => 'Q485582', + ], + [ + 'id' => 141223, + 'name' => 'Cleveland', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '49950000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '69541000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:03', + 'updated_at' => '2019-11-14 01:18:03', + 'flag' => true, + 'wikiDataId' => 'Q37320', + ], + [ + 'id' => 141224, + 'name' => 'Cleveland Heights', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '52005000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '55624000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:03', + 'updated_at' => '2019-11-14 01:18:03', + 'flag' => true, + 'wikiDataId' => 'Q248922', + ], + [ + 'id' => 141225, + 'name' => 'Cleves', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '16172000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '74912000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:03', + 'updated_at' => '2019-11-14 01:18:03', + 'flag' => true, + 'wikiDataId' => 'Q667720', + ], + [ + 'id' => 141226, + 'name' => 'Clinton', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '92672000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '63040000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:03', + 'updated_at' => '2019-11-14 01:18:03', + 'flag' => true, + 'wikiDataId' => 'Q1101670', + ], + [ + 'id' => 141227, + 'name' => 'Clinton County', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '41498000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '83'; + $this->fractionalPart = '80838000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:03', + 'updated_at' => '2019-11-14 01:18:03', + 'flag' => true, + 'wikiDataId' => 'Q113875', + ], + [ + 'id' => 141228, + 'name' => 'Clyde', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '30422000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '82'; + $this->fractionalPart = '97519000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:03', + 'updated_at' => '2019-11-14 01:18:03', + 'flag' => true, + 'wikiDataId' => 'Q177572', + ], + [ + 'id' => 141229, + 'name' => 'Coal Grove', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '50341000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '82'; + $this->fractionalPart = '64711000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:03', + 'updated_at' => '2019-11-14 01:18:03', + 'flag' => true, + 'wikiDataId' => 'Q2351912', + ], + [ + 'id' => 141230, + 'name' => 'Coldwater', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '47977000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '62829000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:03', + 'updated_at' => '2019-11-14 01:18:03', + 'flag' => true, + 'wikiDataId' => 'Q1025998', + ], + [ + 'id' => 141231, + 'name' => 'Collinwood', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '55838000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '56929000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:03', + 'updated_at' => '2019-11-14 01:18:03', + 'flag' => true, + 'wikiDataId' => 'Q5147468', + ], + [ + 'id' => 141232, + 'name' => 'Columbiana', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '88839000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '80'; + $this->fractionalPart = '69396000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:03', + 'updated_at' => '2019-11-14 01:18:03', + 'flag' => true, + 'wikiDataId' => 'Q998858', + ], + [ + 'id' => 141233, + 'name' => 'Columbiana County', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '76843000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '80'; + $this->fractionalPart = '77719000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:03', + 'updated_at' => '2019-11-14 01:18:03', + 'flag' => true, + 'wikiDataId' => 'Q421960', + ], + [ + 'id' => 141234, + 'name' => 'Columbus', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '96118000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '82'; + $this->fractionalPart = '99879000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:03', + 'updated_at' => '2019-11-14 01:18:03', + 'flag' => true, + 'wikiDataId' => 'Q16567', + ], + [ + 'id' => 141235, + 'name' => 'Columbus Grove', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '91950000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '05689000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:03', + 'updated_at' => '2019-11-14 01:18:03', + 'flag' => true, + 'wikiDataId' => 'Q2501955', + ], + [ + 'id' => 141236, + 'name' => 'Commercial Point', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '76840000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '83'; + $this->fractionalPart = '05713000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:03', + 'updated_at' => '2019-11-14 01:18:03', + 'flag' => true, + 'wikiDataId' => 'Q2045631', + ], + [ + 'id' => 141237, + 'name' => 'Conneaut', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '94756000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '80'; + $this->fractionalPart = '55424000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:03', + 'updated_at' => '2019-11-14 01:18:03', + 'flag' => true, + 'wikiDataId' => 'Q868777', + ], + [ + 'id' => 141238, + 'name' => 'Continental', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '10033000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '26634000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:03', + 'updated_at' => '2019-11-14 01:18:03', + 'flag' => true, + 'wikiDataId' => 'Q2081833', + ], + [ + 'id' => 141239, + 'name' => 'Convoy', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '91672000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '70274000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:03', + 'updated_at' => '2019-11-14 01:18:03', + 'flag' => true, + 'wikiDataId' => 'Q2668820', + ], + [ + 'id' => 141240, + 'name' => 'Copley', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '09894000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '64457000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:03', + 'updated_at' => '2019-11-14 01:18:03', + 'flag' => true, + 'wikiDataId' => 'Q2668820', + ], + [ + 'id' => 141241, + 'name' => 'Cortland', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '33033000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '80'; + $this->fractionalPart = '72536000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:03', + 'updated_at' => '2019-11-14 01:18:03', + 'flag' => true, + 'wikiDataId' => 'Q2231996', + ], + [ + 'id' => 141242, + 'name' => 'Coshocton', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '27202000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '85958000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:03', + 'updated_at' => '2019-11-14 01:18:03', + 'flag' => true, + 'wikiDataId' => 'Q991020', + ], + [ + 'id' => 141243, + 'name' => 'Coshocton County', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '30164000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '92001000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:03', + 'updated_at' => '2019-11-14 01:18:03', + 'flag' => true, + 'wikiDataId' => 'Q485532', + ], + [ + 'id' => 141244, + 'name' => 'Covedale', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '12117000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '60633000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:03', + 'updated_at' => '2019-11-14 01:18:03', + 'flag' => true, + 'wikiDataId' => 'Q2581413', + ], + [ + 'id' => 141245, + 'name' => 'Covington', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '11727000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '35384000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:03', + 'updated_at' => '2019-11-14 01:18:03', + 'flag' => true, + 'wikiDataId' => 'Q2668811', + ], + [ + 'id' => 141246, + 'name' => 'Craig Beach', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '11700000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '80'; + $this->fractionalPart = '98342000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:03', + 'updated_at' => '2019-11-14 01:18:03', + 'flag' => true, + 'wikiDataId' => 'Q2235290', + ], + [ + 'id' => 141247, + 'name' => 'Crawford County', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '85077000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '82'; + $this->fractionalPart = '91978000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:03', + 'updated_at' => '2019-11-14 01:18:03', + 'flag' => true, + 'wikiDataId' => 'Q403777', + ], + [ + 'id' => 141248, + 'name' => 'Crestline', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '78756000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '82'; + $this->fractionalPart = '73657000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:03', + 'updated_at' => '2019-11-14 01:18:03', + 'flag' => true, + 'wikiDataId' => 'Q577383', + ], + [ + 'id' => 141249, + 'name' => 'Creston', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '98700000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '89375000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:03', + 'updated_at' => '2019-11-14 01:18:03', + 'flag' => true, + 'wikiDataId' => 'Q2775502', + ], + [ + 'id' => 141250, + 'name' => 'Cridersville', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '65422000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '15078000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:03', + 'updated_at' => '2019-11-14 01:18:03', + 'flag' => true, + 'wikiDataId' => 'Q2151327', + ], + [ + 'id' => 141251, + 'name' => 'Crooksville', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '76896000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '82'; + $this->fractionalPart = '09209000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:03', + 'updated_at' => '2019-11-14 01:18:03', + 'flag' => true, + 'wikiDataId' => 'Q507944', + ], + [ + 'id' => 141252, + 'name' => 'Crystal Lakes', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '88923000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '02660000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:03', + 'updated_at' => '2019-11-14 01:18:03', + 'flag' => true, + 'wikiDataId' => 'Q3124969', + ], + [ + 'id' => 141253, + 'name' => 'Curtice', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '61838000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '83'; + $this->fractionalPart = '36771000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:03', + 'updated_at' => '2019-11-14 01:18:03', + 'flag' => true, + 'wikiDataId' => 'Q3472989', + ], + [ + 'id' => 141254, + 'name' => 'Cuyahoga County', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '47875000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '67786000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:03', + 'updated_at' => '2019-11-14 01:18:03', + 'flag' => true, + 'wikiDataId' => 'Q251267', + ], + [ + 'id' => 141255, + 'name' => 'Cuyahoga Falls', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '13394000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '48456000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:03', + 'updated_at' => '2019-11-14 01:18:03', + 'flag' => true, + 'wikiDataId' => 'Q531958', + ], + [ + 'id' => 141256, + 'name' => 'Dalton', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '79894000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '69541000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:03', + 'updated_at' => '2019-11-14 01:18:03', + 'flag' => true, + 'wikiDataId' => 'Q2666988', + ], + [ + 'id' => 141257, + 'name' => 'Danville', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '44756000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '82'; + $this->fractionalPart = '26016000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:03', + 'updated_at' => '2019-11-14 01:18:03', + 'flag' => true, + 'wikiDataId' => 'Q2216280', + ], + [ + 'id' => 141258, + 'name' => 'Darke County', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '13323000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '61931000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:03', + 'updated_at' => '2019-11-14 01:18:03', + 'flag' => true, + 'wikiDataId' => 'Q485592', + ], + [ + 'id' => 141259, + 'name' => 'Day Heights', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '17395000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '22633000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:03', + 'updated_at' => '2019-11-14 01:18:03', + 'flag' => true, + 'wikiDataId' => 'Q2171830', + ], + [ + 'id' => 141260, + 'name' => 'Dayton', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '75895000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '19161000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:03', + 'updated_at' => '2019-11-14 01:18:03', + 'flag' => true, + 'wikiDataId' => 'Q34739', + ], + [ + 'id' => 141261, + 'name' => 'De Graff', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '31200000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '83'; + $this->fractionalPart = '91577000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:03', + 'updated_at' => '2019-11-14 01:18:03', + 'flag' => true, + 'wikiDataId' => 'Q2388364', + ], + [ + 'id' => 141262, + 'name' => 'Deer Park', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '20534000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '39466000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:03', + 'updated_at' => '2019-11-14 01:18:03', + 'flag' => true, + 'wikiDataId' => 'Q1004402', + ], + [ + 'id' => 141263, + 'name' => 'Defiance', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '28449000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '35578000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:03', + 'updated_at' => '2019-11-14 01:18:03', + 'flag' => true, + 'wikiDataId' => 'Q651108', + ], + [ + 'id' => 141264, + 'name' => 'Defiance County', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '32392000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '49050000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:03', + 'updated_at' => '2019-11-14 01:18:03', + 'flag' => true, + 'wikiDataId' => 'Q336190', + ], + [ + 'id' => 141265, + 'name' => 'Delaware', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '29867000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '83'; + $this->fractionalPart = '06797000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:03', + 'updated_at' => '2019-11-14 01:18:03', + 'flag' => true, + 'wikiDataId' => 'Q986183', + ], + [ + 'id' => 141266, + 'name' => 'Delaware County', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '27839000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '83'; + $this->fractionalPart = '00489000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:03', + 'updated_at' => '2019-11-14 01:18:03', + 'flag' => true, + 'wikiDataId' => 'Q485524', + ], + [ + 'id' => 141267, + 'name' => 'Delhi Hills', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '09284000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '61272000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:03', + 'updated_at' => '2019-11-14 01:18:03', + 'flag' => true, + 'wikiDataId' => 'Q5253767', + ], + [ + 'id' => 141268, + 'name' => 'Delphos', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '84338000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '34162000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:03', + 'updated_at' => '2019-11-14 01:18:03', + 'flag' => true, + 'wikiDataId' => 'Q768210', + ], + [ + 'id' => 141269, + 'name' => 'Delta', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '57366000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '00522000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:03', + 'updated_at' => '2019-11-14 01:18:03', + 'flag' => true, + 'wikiDataId' => 'Q2173847', + ], + [ + 'id' => 141270, + 'name' => 'Dennison', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '39340000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '33372000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:03', + 'updated_at' => '2019-11-14 01:18:03', + 'flag' => true, + 'wikiDataId' => 'Q2606427', + ], + [ + 'id' => 141271, + 'name' => 'Dent', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '18589000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '65134000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:03', + 'updated_at' => '2019-11-14 01:18:03', + 'flag' => true, + 'wikiDataId' => 'Q2090601', + ], + [ + 'id' => 141272, + 'name' => 'Deshler', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '20755000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '83'; + $this->fractionalPart = '89911000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:03', + 'updated_at' => '2019-11-14 01:18:03', + 'flag' => true, + 'wikiDataId' => 'Q2668753', + ], + [ + 'id' => 141273, + 'name' => 'Detroit-Shoreway', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '47772000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '72991000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:03', + 'updated_at' => '2019-11-14 01:18:03', + 'flag' => true, + 'wikiDataId' => 'Q5265832', + ], + [ + 'id' => 141274, + 'name' => 'Devola', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '47369000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '47901000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:03', + 'updated_at' => '2019-11-14 01:18:03', + 'flag' => true, + 'wikiDataId' => 'Q2482625', + ], + [ + 'id' => 141275, + 'name' => 'Dillonvale', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '21811000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '40216000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:03', + 'updated_at' => '2019-11-14 01:18:03', + 'flag' => true, + 'wikiDataId' => 'Q3451508', + ], + [ + 'id' => 141276, + 'name' => 'Dover', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '52062000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '47401000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:03', + 'updated_at' => '2019-11-14 01:18:03', + 'flag' => true, + 'wikiDataId' => 'Q990927', + ], + [ + 'id' => 141277, + 'name' => 'Doylestown', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '97005000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '69652000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:03', + 'updated_at' => '2019-11-14 01:18:03', + 'flag' => true, + 'wikiDataId' => 'Q2035196', + ], + [ + 'id' => 141278, + 'name' => 'Dresden', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '12146000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '82'; + $this->fractionalPart = '01069000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:03', + 'updated_at' => '2019-11-14 01:18:03', + 'flag' => true, + 'wikiDataId' => 'Q649432', + ], + [ + 'id' => 141279, + 'name' => 'Drexel', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '74645000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '28661000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:03', + 'updated_at' => '2019-11-14 01:18:03', + 'flag' => true, + 'wikiDataId' => 'Q2217999', + ], + [ + 'id' => 141280, + 'name' => 'Dry Ridge', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '25922000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '61911000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:03', + 'updated_at' => '2019-11-14 01:18:03', + 'flag' => true, + 'wikiDataId' => 'Q5309541', + ], + [ + 'id' => 141281, + 'name' => 'Dry Run', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '10423000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '33049000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:03', + 'updated_at' => '2019-11-14 01:18:03', + 'flag' => true, + 'wikiDataId' => 'Q2387773', + ], + [ + 'id' => 141282, + 'name' => 'Dublin', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '09923000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '83'; + $this->fractionalPart = '11408000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:03', + 'updated_at' => '2019-11-14 01:18:03', + 'flag' => true, + 'wikiDataId' => 'Q988937', + ], + [ + 'id' => 141283, + 'name' => 'Dunlap', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '29228000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '61800000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:03', + 'updated_at' => '2019-11-14 01:18:03', + 'flag' => true, + 'wikiDataId' => 'Q5315404', + ], + [ + 'id' => 141284, + 'name' => 'East Canton', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '78728000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '28261000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:04', + 'updated_at' => '2019-11-14 01:18:04', + 'flag' => true, + 'wikiDataId' => 'Q2668722', + ], + [ + 'id' => 141285, + 'name' => 'East Cleveland', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '53311000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '57901000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:04', + 'updated_at' => '2019-11-14 01:18:04', + 'flag' => true, + 'wikiDataId' => 'Q998878', + ], + [ + 'id' => 141286, + 'name' => 'East Liverpool', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '61868000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '80'; + $this->fractionalPart = '57729000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:04', + 'updated_at' => '2019-11-14 01:18:04', + 'flag' => true, + 'wikiDataId' => 'Q998893', + ], + [ + 'id' => 141287, + 'name' => 'East Palestine', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '83395000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '80'; + $this->fractionalPart = '54035000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:04', + 'updated_at' => '2019-11-14 01:18:04', + 'flag' => true, + 'wikiDataId' => 'Q1924957', + ], + [ + 'id' => 141288, + 'name' => 'Eastlake', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '65394000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '45039000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:04', + 'updated_at' => '2019-11-14 01:18:04', + 'flag' => true, + 'wikiDataId' => 'Q525588', + ], + [ + 'id' => 141289, + 'name' => 'Eaton', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '74394000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '63662000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:04', + 'updated_at' => '2019-11-14 01:18:04', + 'flag' => true, + 'wikiDataId' => 'Q1000148', + ], + [ + 'id' => 141290, + 'name' => 'Eaton Estates', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '30894000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '82'; + $this->fractionalPart = '00570000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:04', + 'updated_at' => '2019-11-14 01:18:04', + 'flag' => true, + 'wikiDataId' => 'Q2549110', + ], + [ + 'id' => 141291, + 'name' => 'Edgerton', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '44866000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '74801000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:04', + 'updated_at' => '2019-11-14 01:18:04', + 'flag' => true, + 'wikiDataId' => 'Q2666993', + ], + [ + 'id' => 141292, + 'name' => 'Edgewood', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '87283000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '80'; + $this->fractionalPart = '77286000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:04', + 'updated_at' => '2019-11-14 01:18:04', + 'flag' => true, + 'wikiDataId' => 'Q2221831', + ], + [ + 'id' => 141293, + 'name' => 'Elida', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '78866000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '20384000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:04', + 'updated_at' => '2019-11-14 01:18:04', + 'flag' => true, + 'wikiDataId' => 'Q2482637', + ], + [ + 'id' => 141294, + 'name' => 'Elmore', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '47616000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '83'; + $this->fractionalPart = '29576000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:04', + 'updated_at' => '2019-11-14 01:18:04', + 'flag' => true, + 'wikiDataId' => 'Q2289399', + ], + [ + 'id' => 141295, + 'name' => 'Elmwood Place', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '18728000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '48800000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:04', + 'updated_at' => '2019-11-14 01:18:04', + 'flag' => true, + 'wikiDataId' => 'Q2668788', + ], + [ + 'id' => 141296, + 'name' => 'Elyria', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '36838000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '82'; + $this->fractionalPart = '10765000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:04', + 'updated_at' => '2019-11-14 01:18:04', + 'flag' => true, + 'wikiDataId' => 'Q932561', + ], + [ + 'id' => 141297, + 'name' => 'Englewood', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '87756000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '30217000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:04', + 'updated_at' => '2019-11-14 01:18:04', + 'flag' => true, + 'wikiDataId' => 'Q2232881', + ], + [ + 'id' => 141298, + 'name' => 'Enon', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '87812000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '83'; + $this->fractionalPart = '93688000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:04', + 'updated_at' => '2019-11-14 01:18:04', + 'flag' => true, + 'wikiDataId' => 'Q2666913', + ], + [ + 'id' => 141299, + 'name' => 'Erie County', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '43209000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '82'; + $this->fractionalPart = '69958000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:04', + 'updated_at' => '2019-11-14 01:18:04', + 'flag' => true, + 'wikiDataId' => 'Q111310', + ], + [ + 'id' => 141300, + 'name' => 'Etna', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '95729000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '82'; + $this->fractionalPart = '68183000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:04', + 'updated_at' => '2019-11-14 01:18:04', + 'flag' => true, + 'wikiDataId' => 'Q5404670', + ], + [ + 'id' => 141301, + 'name' => 'Euclid', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '59310000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '52679000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:04', + 'updated_at' => '2019-11-14 01:18:04', + 'flag' => true, + 'wikiDataId' => 'Q983758', + ], + [ + 'id' => 141302, + 'name' => 'Evendale', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '25617000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '41800000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:04', + 'updated_at' => '2019-11-14 01:18:04', + 'flag' => true, + 'wikiDataId' => 'Q606839', + ], + [ + 'id' => 141303, + 'name' => 'Fairborn', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '82089000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '01938000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:04', + 'updated_at' => '2019-11-14 01:18:04', + 'flag' => true, + 'wikiDataId' => 'Q1018317', + ], + [ + 'id' => 141304, + 'name' => 'Fairfax', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '14534000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '39327000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:04', + 'updated_at' => '2019-11-14 01:18:04', + 'flag' => true, + 'wikiDataId' => 'Q2489074', + ], + [ + 'id' => 141305, + 'name' => 'Fairfield', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '34589000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '56050000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:04', + 'updated_at' => '2019-11-14 01:18:04', + 'flag' => true, + 'wikiDataId' => 'Q1002506', + ], + [ + 'id' => 141306, + 'name' => 'Fairfield Beach', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '91590000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '82'; + $this->fractionalPart = '47516000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:04', + 'updated_at' => '2019-11-14 01:18:04', + 'flag' => true, + 'wikiDataId' => 'Q3280491', + ], + [ + 'id' => 141307, + 'name' => 'Fairfield County', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '75160000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '82'; + $this->fractionalPart = '63059000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:04', + 'updated_at' => '2019-11-14 01:18:04', + 'flag' => true, + 'wikiDataId' => 'Q490157', + ], + [ + 'id' => 141308, + 'name' => 'Fairlawn', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '12783000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '60984000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:04', + 'updated_at' => '2019-11-14 01:18:04', + 'flag' => true, + 'wikiDataId' => 'Q2372620', + ], + [ + 'id' => 141309, + 'name' => 'Fairport Harbor', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '75004000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '27399000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:04', + 'updated_at' => '2019-11-14 01:18:04', + 'flag' => true, + 'wikiDataId' => 'Q995641', + ], + [ + 'id' => 141310, + 'name' => 'Fairview Park', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '44144000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '86430000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:04', + 'updated_at' => '2019-11-14 01:18:04', + 'flag' => true, + 'wikiDataId' => 'Q1004747', + ], + [ + 'id' => 141311, + 'name' => 'Farmersville', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '67950000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '42911000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:04', + 'updated_at' => '2019-11-14 01:18:04', + 'flag' => true, + 'wikiDataId' => 'Q2369476', + ], + [ + 'id' => 141312, + 'name' => 'Fayette', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '67338000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '32689000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:04', + 'updated_at' => '2019-11-14 01:18:04', + 'flag' => true, + 'wikiDataId' => 'Q2395291', + ], + [ + 'id' => 141313, + 'name' => 'Fayette County', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '55988000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '83'; + $this->fractionalPart = '45610000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:04', + 'updated_at' => '2019-11-14 01:18:04', + 'flag' => true, + 'wikiDataId' => 'Q490161', + ], + [ + 'id' => 141314, + 'name' => 'Findlay', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '04422000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '83'; + $this->fractionalPart = '64993000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:04', + 'updated_at' => '2019-11-14 01:18:04', + 'flag' => true, + 'wikiDataId' => 'Q590191', + ], + [ + 'id' => 141315, + 'name' => 'Finneytown', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '20034000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '52050000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:04', + 'updated_at' => '2019-11-14 01:18:04', + 'flag' => true, + 'wikiDataId' => 'Q2328852', + ], + [ + 'id' => 141316, + 'name' => 'Five Points', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '56867000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '19299000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:04', + 'updated_at' => '2019-11-14 01:18:04', + 'flag' => true, + 'wikiDataId' => 'Q2786519', + ], + [ + 'id' => 141317, + 'name' => 'Forest', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '80172000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '83'; + $this->fractionalPart = '51048000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:04', + 'updated_at' => '2019-11-14 01:18:04', + 'flag' => true, + 'wikiDataId' => 'Q2668796', + ], + [ + 'id' => 141318, + 'name' => 'Forest Park', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '29034000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '50411000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:04', + 'updated_at' => '2019-11-14 01:18:04', + 'flag' => true, + 'wikiDataId' => 'Q2233899', + ], + [ + 'id' => 141319, + 'name' => 'Forestville', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '07506000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '34494000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:04', + 'updated_at' => '2019-11-14 01:18:04', + 'flag' => true, + 'wikiDataId' => 'Q2346255', + ], + [ + 'id' => 141320, + 'name' => 'Fort Loramie', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '35144000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '37384000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:04', + 'updated_at' => '2019-11-14 01:18:04', + 'flag' => true, + 'wikiDataId' => 'Q2668736', + ], + [ + 'id' => 141321, + 'name' => 'Fort McKinley', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '79756000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '25355000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:04', + 'updated_at' => '2019-11-14 01:18:04', + 'flag' => true, + 'wikiDataId' => 'Q2519449', + ], + [ + 'id' => 141322, + 'name' => 'Fort Recovery', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '41282000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '77635000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:04', + 'updated_at' => '2019-11-14 01:18:04', + 'flag' => true, + 'wikiDataId' => 'Q1861739', + ], + [ + 'id' => 141323, + 'name' => 'Fort Shawnee', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '68672000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '13773000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:04', + 'updated_at' => '2019-11-14 01:18:04', + 'flag' => true, + 'wikiDataId' => 'Q2668772', + ], + [ + 'id' => 141324, + 'name' => 'Fostoria', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '15700000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '83'; + $this->fractionalPart = '41687000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:04', + 'updated_at' => '2019-11-14 01:18:04', + 'flag' => true, + 'wikiDataId' => 'Q998633', + ], + [ + 'id' => 141325, + 'name' => 'Frankfort', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '40145000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '83'; + $this->fractionalPart = '18074000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:04', + 'updated_at' => '2019-11-14 01:18:04', + 'flag' => true, + 'wikiDataId' => 'Q2414606', + ], + [ + 'id' => 141326, + 'name' => 'Franklin', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '55895000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '30411000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:04', + 'updated_at' => '2019-11-14 01:18:04', + 'flag' => true, + 'wikiDataId' => 'Q998459', + ], + [ + 'id' => 141327, + 'name' => 'Franklin County', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '96952000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '83'; + $this->fractionalPart = '00935000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:04', + 'updated_at' => '2019-11-14 01:18:04', + 'flag' => true, + 'wikiDataId' => 'Q113237', + ], + [ + 'id' => 141328, + 'name' => 'Franklin Furnace', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '64508000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '82'; + $this->fractionalPart = '84878000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:04', + 'updated_at' => '2019-11-14 01:18:04', + 'flag' => true, + 'wikiDataId' => 'Q2041370', + ], + [ + 'id' => 141329, + 'name' => 'Frazeysburg', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '11729000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '82'; + $this->fractionalPart = '11931000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:04', + 'updated_at' => '2019-11-14 01:18:04', + 'flag' => true, + 'wikiDataId' => 'Q2608161', + ], + [ + 'id' => 141330, + 'name' => 'Fredericktown', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '48117000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '82'; + $this->fractionalPart = '54072000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:04', + 'updated_at' => '2019-11-14 01:18:04', + 'flag' => true, + 'wikiDataId' => 'Q2666999', + ], + [ + 'id' => 141331, + 'name' => 'Fremont', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '35033000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '83'; + $this->fractionalPart = '12186000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:04', + 'updated_at' => '2019-11-14 01:18:04', + 'flag' => true, + 'wikiDataId' => 'Q934308', + ], + [ + 'id' => 141332, + 'name' => 'Fruit Hill', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '07562000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '36438000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:04', + 'updated_at' => '2019-11-14 01:18:04', + 'flag' => true, + 'wikiDataId' => 'Q1920299', + ], + [ + 'id' => 141333, + 'name' => 'Fulton County', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '60180000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '13007000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:04', + 'updated_at' => '2019-11-14 01:18:04', + 'flag' => true, + 'wikiDataId' => 'Q485539', + ], + [ + 'id' => 141334, + 'name' => 'Gahanna', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '01923000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '82'; + $this->fractionalPart = '87934000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:04', + 'updated_at' => '2019-11-14 01:18:04', + 'flag' => true, + 'wikiDataId' => 'Q1924937', + ], + [ + 'id' => 141335, + 'name' => 'Galion', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '73367000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '82'; + $this->fractionalPart = '78990000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:04', + 'updated_at' => '2019-11-14 01:18:04', + 'flag' => true, + 'wikiDataId' => 'Q679057', + ], + [ + 'id' => 141336, + 'name' => 'Gallia County', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '82467000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '82'; + $this->fractionalPart = '31691000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:04', + 'updated_at' => '2019-11-14 01:18:04', + 'flag' => true, + 'wikiDataId' => 'Q499302', + ], + [ + 'id' => 141337, + 'name' => 'Gallipolis', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '80980000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '82'; + $this->fractionalPart = '20237000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:04', + 'updated_at' => '2019-11-14 01:18:04', + 'flag' => true, + 'wikiDataId' => 'Q176684', + ], + [ + 'id' => 141338, + 'name' => 'Gambier', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '37562000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '82'; + $this->fractionalPart = '39710000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:04', + 'updated_at' => '2019-11-14 01:18:04', + 'flag' => true, + 'wikiDataId' => 'Q2093658', + ], + [ + 'id' => 141339, + 'name' => 'Garfield Heights', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '41700000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '60596000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:04', + 'updated_at' => '2019-11-14 01:18:04', + 'flag' => true, + 'wikiDataId' => 'Q1007032', + ], + [ + 'id' => 141340, + 'name' => 'Garrettsville', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '28422000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '09649000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:04', + 'updated_at' => '2019-11-14 01:18:04', + 'flag' => true, + 'wikiDataId' => 'Q1494483', + ], + [ + 'id' => 141341, + 'name' => 'Gates Mills', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '51755000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '40345000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:04', + 'updated_at' => '2019-11-14 01:18:04', + 'flag' => true, + 'wikiDataId' => 'Q2666663', + ], + [ + 'id' => 141342, + 'name' => 'Geauga County', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '49954000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '17865000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:04', + 'updated_at' => '2019-11-14 01:18:04', + 'flag' => true, + 'wikiDataId' => 'Q288592', + ], + [ + 'id' => 141343, + 'name' => 'Geneva', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '80505000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '80'; + $this->fractionalPart = '94815000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:04', + 'updated_at' => '2019-11-14 01:18:04', + 'flag' => true, + 'wikiDataId' => 'Q1005715', + ], + [ + 'id' => 141344, + 'name' => 'Geneva-on-the-Lake', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '85950000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '80'; + $this->fractionalPart = '95398000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:04', + 'updated_at' => '2019-11-14 01:18:04', + 'flag' => true, + 'wikiDataId' => 'Q2496958', + ], + [ + 'id' => 141345, + 'name' => 'Genoa', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '51811000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '83'; + $this->fractionalPart = '35909000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:04', + 'updated_at' => '2019-11-14 01:18:04', + 'flag' => true, + 'wikiDataId' => 'Q2666644', + ], + [ + 'id' => 141346, + 'name' => 'Georgetown', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '86451000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '83'; + $this->fractionalPart = '90409000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:04', + 'updated_at' => '2019-11-14 01:18:04', + 'flag' => true, + 'wikiDataId' => 'Q1023488', + ], + [ + 'id' => 141347, + 'name' => 'Germantown', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '62617000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '36939000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:04', + 'updated_at' => '2019-11-14 01:18:04', + 'flag' => true, + 'wikiDataId' => 'Q2014152', + ], + [ + 'id' => 141348, + 'name' => 'Gibsonburg', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '38450000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '83'; + $this->fractionalPart = '32048000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:04', + 'updated_at' => '2019-11-14 01:18:04', + 'flag' => true, + 'wikiDataId' => 'Q2184376', + ], + [ + 'id' => 141349, + 'name' => 'Girard', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '15395000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '80'; + $this->fractionalPart = '70147000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:04', + 'updated_at' => '2019-11-14 01:18:04', + 'flag' => true, + 'wikiDataId' => 'Q2208045', + ], + [ + 'id' => 141350, + 'name' => 'Glandorf', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '02894000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '07911000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:04', + 'updated_at' => '2019-11-14 01:18:04', + 'flag' => true, + 'wikiDataId' => 'Q1529184', + ], + [ + 'id' => 141351, + 'name' => 'Glendale', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '27061000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '45939000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:04', + 'updated_at' => '2019-11-14 01:18:04', + 'flag' => true, + 'wikiDataId' => 'Q2667009', + ], + [ + 'id' => 141352, + 'name' => 'Glenmoor', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '66617000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '80'; + $this->fractionalPart = '62313000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:04', + 'updated_at' => '2019-11-14 01:18:04', + 'flag' => true, + 'wikiDataId' => 'Q2256948', + ], + [ + 'id' => 141353, + 'name' => 'Glenville', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '53338000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '61735000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:04', + 'updated_at' => '2019-11-14 01:18:04', + 'flag' => true, + 'wikiDataId' => 'Q2256948', + ], + [ + 'id' => 141354, + 'name' => 'Glouster', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '50313000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '82'; + $this->fractionalPart = '08459000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:04', + 'updated_at' => '2019-11-14 01:18:04', + 'flag' => true, + 'wikiDataId' => 'Q2286656', + ], + [ + 'id' => 141355, + 'name' => 'Gnadenhutten', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '35840000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '43428000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:04', + 'updated_at' => '2019-11-14 01:18:04', + 'flag' => true, + 'wikiDataId' => 'Q1428061', + ], + [ + 'id' => 141356, + 'name' => 'Golf Manor', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '18728000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '44633000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:04', + 'updated_at' => '2019-11-14 01:18:04', + 'flag' => true, + 'wikiDataId' => 'Q2510660', + ], + [ + 'id' => 141357, + 'name' => 'Goshen', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '23339000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '16132000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:04', + 'updated_at' => '2019-11-14 01:18:04', + 'flag' => true, + 'wikiDataId' => 'Q5587251', + ], + [ + 'id' => 141358, + 'name' => 'Grafton', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '27255000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '82'; + $this->fractionalPart = '05459000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:04', + 'updated_at' => '2019-11-14 01:18:04', + 'flag' => true, + 'wikiDataId' => 'Q1028075', + ], + [ + 'id' => 141359, + 'name' => 'Grandview', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '19422000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '72439000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:04', + 'updated_at' => '2019-11-14 01:18:04', + 'flag' => true, + 'wikiDataId' => 'Q2532805', + ], + [ + 'id' => 141360, + 'name' => 'Grandview Heights', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '97979000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '83'; + $this->fractionalPart = '04074000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:05', + 'updated_at' => '2019-11-14 01:18:05', + 'flag' => true, + 'wikiDataId' => 'Q2122847', + ], + [ + 'id' => 141361, + 'name' => 'Granville', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '06812000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '82'; + $this->fractionalPart = '51960000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:05', + 'updated_at' => '2019-11-14 01:18:05', + 'flag' => true, + 'wikiDataId' => 'Q2485187', + ], + [ + 'id' => 141362, + 'name' => 'Granville South', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '05207000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '82'; + $this->fractionalPart = '54166000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:05', + 'updated_at' => '2019-11-14 01:18:05', + 'flag' => true, + 'wikiDataId' => 'Q2669440', + ], + [ + 'id' => 141363, + 'name' => 'Green', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '94589000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '48317000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:05', + 'updated_at' => '2019-11-14 01:18:05', + 'flag' => true, + 'wikiDataId' => 'Q2652788', + ], + [ + 'id' => 141364, + 'name' => 'Green Meadows', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '86895000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '83'; + $this->fractionalPart = '94438000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:05', + 'updated_at' => '2019-11-14 01:18:05', + 'flag' => true, + 'wikiDataId' => 'Q1910864', + ], + [ + 'id' => 141365, + 'name' => 'Green Springs', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '25616000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '83'; + $this->fractionalPart = '05158000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:05', + 'updated_at' => '2019-11-14 01:18:05', + 'flag' => true, + 'wikiDataId' => 'Q1544663', + ], + [ + 'id' => 141366, + 'name' => 'Greene County', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '69148000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '83'; + $this->fractionalPart = '88989000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:05', + 'updated_at' => '2019-11-14 01:18:05', + 'flag' => true, + 'wikiDataId' => 'Q825807', + ], + [ + 'id' => 141367, + 'name' => 'Greenfield', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '35201000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '83'; + $this->fractionalPart = '38269000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:05', + 'updated_at' => '2019-11-14 01:18:05', + 'flag' => true, + 'wikiDataId' => 'Q1544743', + ], + [ + 'id' => 141368, + 'name' => 'Greenhills', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '26811000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '52300000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:05', + 'updated_at' => '2019-11-14 01:18:05', + 'flag' => true, + 'wikiDataId' => 'Q2361579', + ], + [ + 'id' => 141369, + 'name' => 'Greensburg', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '93172000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '46484000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:05', + 'updated_at' => '2019-11-14 01:18:05', + 'flag' => true, + 'wikiDataId' => 'Q22695763', + ], + [ + 'id' => 141370, + 'name' => 'Greentown', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '92756000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '40261000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:05', + 'updated_at' => '2019-11-14 01:18:05', + 'flag' => true, + 'wikiDataId' => 'Q2503361', + ], + [ + 'id' => 141371, + 'name' => 'Greenville', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '10283000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '63301000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:05', + 'updated_at' => '2019-11-14 01:18:05', + 'flag' => true, + 'wikiDataId' => 'Q763080', + ], + [ + 'id' => 141372, + 'name' => 'Greenwich', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '03005000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '82'; + $this->fractionalPart = '51573000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:05', + 'updated_at' => '2019-11-14 01:18:05', + 'flag' => true, + 'wikiDataId' => 'Q2246925', + ], + [ + 'id' => 141373, + 'name' => 'Groesbeck', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '22311000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '58689000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:05', + 'updated_at' => '2019-11-14 01:18:05', + 'flag' => true, + 'wikiDataId' => 'Q1810656', + ], + [ + 'id' => 141374, + 'name' => 'Grove City', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '88145000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '83'; + $this->fractionalPart = '09296000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:05', + 'updated_at' => '2019-11-14 01:18:05', + 'flag' => true, + 'wikiDataId' => 'Q590713', + ], + [ + 'id' => 141375, + 'name' => 'Groveport', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '87840000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '82'; + $this->fractionalPart = '88379000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:05', + 'updated_at' => '2019-11-14 01:18:05', + 'flag' => true, + 'wikiDataId' => 'Q1025986', + ], + [ + 'id' => 141376, + 'name' => 'Guernsey County', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '05205000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '49426000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:05', + 'updated_at' => '2019-11-14 01:18:05', + 'flag' => true, + 'wikiDataId' => 'Q490168', + ], + [ + 'id' => 141377, + 'name' => 'Hamilton', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '39950000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '56134000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:05', + 'updated_at' => '2019-11-14 01:18:05', + 'flag' => true, + 'wikiDataId' => 'Q852673', + ], + [ + 'id' => 141378, + 'name' => 'Hamilton County', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '19553000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '54277000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:05', + 'updated_at' => '2019-11-14 01:18:05', + 'flag' => true, + 'wikiDataId' => 'Q152891', + ], + [ + 'id' => 141379, + 'name' => 'Hancock County', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '00194000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '83'; + $this->fractionalPart = '66654000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:05', + 'updated_at' => '2019-11-14 01:18:05', + 'flag' => true, + 'wikiDataId' => 'Q402938', + ], + [ + 'id' => 141380, + 'name' => 'Hanover', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '07979000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '82'; + $this->fractionalPart = '26098000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:05', + 'updated_at' => '2019-11-14 01:18:05', + 'flag' => true, + 'wikiDataId' => 'Q2261011', + ], + [ + 'id' => 141381, + 'name' => 'Harbor Hills', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '93673000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '82'; + $this->fractionalPart = '43515000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:05', + 'updated_at' => '2019-11-14 01:18:05', + 'flag' => true, + 'wikiDataId' => 'Q2261011', + ], + [ + 'id' => 141382, + 'name' => 'Hardin County', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '66151000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '83'; + $this->fractionalPart = '65944000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:05', + 'updated_at' => '2019-11-14 01:18:05', + 'flag' => true, + 'wikiDataId' => 'Q490184', + ], + [ + 'id' => 141383, + 'name' => 'Harrison', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '26200000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '81995000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:05', + 'updated_at' => '2019-11-14 01:18:05', + 'flag' => true, + 'wikiDataId' => 'Q2371766', + ], + [ + 'id' => 141384, + 'name' => 'Harrison County', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '29384000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '09114000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:05', + 'updated_at' => '2019-11-14 01:18:05', + 'flag' => true, + 'wikiDataId' => 'Q421956', + ], + [ + 'id' => 141385, + 'name' => 'Hartville', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '96367000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '33122000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:05', + 'updated_at' => '2019-11-14 01:18:05', + 'flag' => true, + 'wikiDataId' => 'Q1026016', + ], + [ + 'id' => 141386, + 'name' => 'Haskins', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '46477000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '83'; + $this->fractionalPart = '70605000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:05', + 'updated_at' => '2019-11-14 01:18:05', + 'flag' => true, + 'wikiDataId' => 'Q2668777', + ], + [ + 'id' => 141387, + 'name' => 'Heath', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '02284000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '82'; + $this->fractionalPart = '44460000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:05', + 'updated_at' => '2019-11-14 01:18:05', + 'flag' => true, + 'wikiDataId' => 'Q1008645', + ], + [ + 'id' => 141388, + 'name' => 'Hebron', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '96173000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '82'; + $this->fractionalPart = '49127000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:05', + 'updated_at' => '2019-11-14 01:18:05', + 'flag' => true, + 'wikiDataId' => 'Q1592869', + ], + [ + 'id' => 141389, + 'name' => 'Henry County', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '33389000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '06823000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:05', + 'updated_at' => '2019-11-14 01:18:05', + 'flag' => true, + 'wikiDataId' => 'Q113220', + ], + [ + 'id' => 141390, + 'name' => 'Hicksville', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '29311000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '76190000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:05', + 'updated_at' => '2019-11-14 01:18:05', + 'flag' => true, + 'wikiDataId' => 'Q2165400', + ], + [ + 'id' => 141391, + 'name' => 'Highland County', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '18474000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '83'; + $this->fractionalPart = '60097000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:05', + 'updated_at' => '2019-11-14 01:18:05', + 'flag' => true, + 'wikiDataId' => 'Q490144', + ], + [ + 'id' => 141392, + 'name' => 'Highland Heights', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '55200000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '47845000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:05', + 'updated_at' => '2019-11-14 01:18:05', + 'flag' => true, + 'wikiDataId' => 'Q1018245', + ], + [ + 'id' => 141393, + 'name' => 'Highpoint', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '28839000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '35022000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:05', + 'updated_at' => '2019-11-14 01:18:05', + 'flag' => true, + 'wikiDataId' => 'Q5759599', + ], + [ + 'id' => 141394, + 'name' => 'Hilliard', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '03340000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '83'; + $this->fractionalPart = '15825000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:05', + 'updated_at' => '2019-11-14 01:18:05', + 'flag' => true, + 'wikiDataId' => 'Q630874', + ], + [ + 'id' => 141395, + 'name' => 'Hillsboro', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '20229000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '83'; + $this->fractionalPart = '61159000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:05', + 'updated_at' => '2019-11-14 01:18:05', + 'flag' => true, + 'wikiDataId' => 'Q2159033', + ], + [ + 'id' => 141396, + 'name' => 'Hiram', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '31256000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '14371000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:05', + 'updated_at' => '2019-11-14 01:18:05', + 'flag' => true, + 'wikiDataId' => 'Q1620123', + ], + [ + 'id' => 141397, + 'name' => 'Hocking County', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '49702000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '82'; + $this->fractionalPart = '47925000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:05', + 'updated_at' => '2019-11-14 01:18:05', + 'flag' => true, + 'wikiDataId' => 'Q499295', + ], + [ + 'id' => 141398, + 'name' => 'Holgate', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '24894000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '13300000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:05', + 'updated_at' => '2019-11-14 01:18:05', + 'flag' => true, + 'wikiDataId' => 'Q1021002', + ], + [ + 'id' => 141399, + 'name' => 'Holiday Valley', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '85617000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '83'; + $this->fractionalPart = '96854000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:05', + 'updated_at' => '2019-11-14 01:18:05', + 'flag' => true, + 'wikiDataId' => 'Q2183555', + ], + [ + 'id' => 141400, + 'name' => 'Holland', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '62172000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '83'; + $this->fractionalPart = '71160000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:05', + 'updated_at' => '2019-11-14 01:18:05', + 'flag' => true, + 'wikiDataId' => 'Q1025979', + ], + [ + 'id' => 141401, + 'name' => 'Holmes County', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '56120000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '92936000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:05', + 'updated_at' => '2019-11-14 01:18:05', + 'flag' => true, + 'wikiDataId' => 'Q485650', + ], + [ + 'id' => 141402, + 'name' => 'Hough', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '51200000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '63652000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:05', + 'updated_at' => '2019-11-14 01:18:05', + 'flag' => true, + 'wikiDataId' => 'Q485650', + ], + [ + 'id' => 141403, + 'name' => 'Howland Center', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '25117000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '80'; + $this->fractionalPart = '74536000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:05', + 'updated_at' => '2019-11-14 01:18:05', + 'flag' => true, + 'wikiDataId' => 'Q2001853', + ], + [ + 'id' => 141404, + 'name' => 'Hubbard', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '15645000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '80'; + $this->fractionalPart = '56924000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:05', + 'updated_at' => '2019-11-14 01:18:05', + 'flag' => true, + 'wikiDataId' => 'Q1009987', + ], + [ + 'id' => 141405, + 'name' => 'Huber Heights', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '84395000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '12466000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:05', + 'updated_at' => '2019-11-14 01:18:05', + 'flag' => true, + 'wikiDataId' => 'Q2033307', + ], + [ + 'id' => 141406, + 'name' => 'Huber Ridge', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '08867000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '82'; + $this->fractionalPart = '91657000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:05', + 'updated_at' => '2019-11-14 01:18:05', + 'flag' => true, + 'wikiDataId' => 'Q3313519', + ], + [ + 'id' => 141407, + 'name' => 'Hudson', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '24006000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '44067000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:05', + 'updated_at' => '2019-11-14 01:18:05', + 'flag' => true, + 'wikiDataId' => 'Q579848', + ], + [ + 'id' => 141408, + 'name' => 'Hunter', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '49284000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '28966000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:05', + 'updated_at' => '2019-11-14 01:18:05', + 'flag' => true, + 'wikiDataId' => 'Q2468454', + ], + [ + 'id' => 141409, + 'name' => 'Huron', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '39505000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '82'; + $this->fractionalPart = '55517000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:05', + 'updated_at' => '2019-11-14 01:18:05', + 'flag' => true, + 'wikiDataId' => 'Q507637', + ], + [ + 'id' => 141410, + 'name' => 'Huron County', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '14615000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '82'; + $this->fractionalPart = '59841000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:05', + 'updated_at' => '2019-11-14 01:18:05', + 'flag' => true, + 'wikiDataId' => 'Q336167', + ], + [ + 'id' => 141411, + 'name' => 'Independence', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '36866000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '63790000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:05', + 'updated_at' => '2019-11-14 01:18:05', + 'flag' => true, + 'wikiDataId' => 'Q1942086', + ], + [ + 'id' => 141412, + 'name' => 'Ironton', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '53675000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '82'; + $this->fractionalPart = '68294000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:05', + 'updated_at' => '2019-11-14 01:18:05', + 'flag' => true, + 'wikiDataId' => 'Q1004236', + ], + [ + 'id' => 141413, + 'name' => 'Jackson', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '05202000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '82'; + $this->fractionalPart = '63655000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:05', + 'updated_at' => '2019-11-14 01:18:05', + 'flag' => true, + 'wikiDataId' => 'Q1903275', + ], + [ + 'id' => 141414, + 'name' => 'Jackson Center', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '43949000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '04022000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:05', + 'updated_at' => '2019-11-14 01:18:05', + 'flag' => true, + 'wikiDataId' => 'Q1677332', + ], + [ + 'id' => 141415, + 'name' => 'Jackson County', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '01967000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '82'; + $this->fractionalPart = '61838000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:05', + 'updated_at' => '2019-11-14 01:18:05', + 'flag' => true, + 'wikiDataId' => 'Q738043', + ], + [ + 'id' => 141416, + 'name' => 'Jamestown', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '65812000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '83'; + $this->fractionalPart = '73492000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:05', + 'updated_at' => '2019-11-14 01:18:05', + 'flag' => true, + 'wikiDataId' => 'Q1959208', + ], + [ + 'id' => 141417, + 'name' => 'Jefferson', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '73867000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '80'; + $this->fractionalPart = '76981000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:05', + 'updated_at' => '2019-11-14 01:18:05', + 'flag' => true, + 'wikiDataId' => 'Q1014189', + ], + [ + 'id' => 141418, + 'name' => 'Jefferson County', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '38502000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '80'; + $this->fractionalPart = '76097000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:05', + 'updated_at' => '2019-11-14 01:18:05', + 'flag' => true, + 'wikiDataId' => 'Q114140', + ], + [ + 'id' => 141419, + 'name' => 'Jeffersonville', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '65367000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '83'; + $this->fractionalPart = '56381000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:05', + 'updated_at' => '2019-11-14 01:18:05', + 'flag' => true, + 'wikiDataId' => 'Q2664587', + ], + [ + 'id' => 141420, + 'name' => 'Johnstown', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '15367000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '82'; + $this->fractionalPart = '68517000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:05', + 'updated_at' => '2019-11-14 01:18:05', + 'flag' => true, + 'wikiDataId' => 'Q2666471', + ], + [ + 'id' => 141421, + 'name' => 'Kalida', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '98283000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '19939000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:05', + 'updated_at' => '2019-11-14 01:18:05', + 'flag' => true, + 'wikiDataId' => 'Q1722234', + ], + [ + 'id' => 141422, + 'name' => 'Kent', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '15367000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '35789000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:05', + 'updated_at' => '2019-11-14 01:18:05', + 'flag' => true, + 'wikiDataId' => 'Q989949', + ], + [ + 'id' => 141423, + 'name' => 'Kenton', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '64700000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '83'; + $this->fractionalPart = '60965000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:05', + 'updated_at' => '2019-11-14 01:18:05', + 'flag' => true, + 'wikiDataId' => 'Q1007046', + ], + [ + 'id' => 141424, + 'name' => 'Kenwood', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '21061000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '36716000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:05', + 'updated_at' => '2019-11-14 01:18:05', + 'flag' => true, + 'wikiDataId' => 'Q2502864', + ], + [ + 'id' => 141425, + 'name' => 'Kettering', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '68950000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '16883000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:05', + 'updated_at' => '2019-11-14 01:18:05', + 'flag' => true, + 'wikiDataId' => 'Q866307', + ], + [ + 'id' => 141426, + 'name' => 'Kings Mills', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '35561000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '24855000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:05', + 'updated_at' => '2019-11-14 01:18:05', + 'flag' => true, + 'wikiDataId' => 'Q3472692', + ], + [ + 'id' => 141427, + 'name' => 'Kingston', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '47395000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '82'; + $this->fractionalPart = '91073000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:05', + 'updated_at' => '2019-11-14 01:18:05', + 'flag' => true, + 'wikiDataId' => 'Q1819555', + ], + [ + 'id' => 141428, + 'name' => 'Kirtland', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '62894000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '36150000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:05', + 'updated_at' => '2019-11-14 01:18:05', + 'flag' => true, + 'wikiDataId' => 'Q932039', + ], + [ + 'id' => 141429, + 'name' => 'Knox County', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '39877000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '82'; + $this->fractionalPart = '42153000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:05', + 'updated_at' => '2019-11-14 01:18:05', + 'flag' => true, + 'wikiDataId' => 'Q490181', + ], + [ + 'id' => 141430, + 'name' => 'La Croft', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '64590000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '80'; + $this->fractionalPart = '59785000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:05', + 'updated_at' => '2019-11-14 01:18:05', + 'flag' => true, + 'wikiDataId' => 'Q733419', + ], + [ + 'id' => 141431, + 'name' => 'Lagrange', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '23728000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '82'; + $this->fractionalPart = '11987000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:05', + 'updated_at' => '2019-11-14 01:18:05', + 'flag' => true, + 'wikiDataId' => 'Q2191469', + ], + [ + 'id' => 141432, + 'name' => 'Lake County', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '71393000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '24527000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:05', + 'updated_at' => '2019-11-14 01:18:05', + 'flag' => true, + 'wikiDataId' => 'Q288606', + ], + [ + 'id' => 141433, + 'name' => 'Lake Darby', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '95728000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '83'; + $this->fractionalPart = '22880000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:05', + 'updated_at' => '2019-11-14 01:18:05', + 'flag' => true, + 'wikiDataId' => 'Q2764085', + ], + [ + 'id' => 141434, + 'name' => 'Lake Lakengren', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '68843000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '69347000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:05', + 'updated_at' => '2019-11-14 01:18:05', + 'flag' => true, + 'wikiDataId' => 'Q2764085', + ], + [ + 'id' => 141435, + 'name' => 'Lake Mohawk', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '66673000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '19927000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:05', + 'updated_at' => '2019-11-14 01:18:05', + 'flag' => true, + 'wikiDataId' => 'Q22328399', + ], + [ + 'id' => 141436, + 'name' => 'Lakemore', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '02089000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '43595000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:05', + 'updated_at' => '2019-11-14 01:18:05', + 'flag' => true, + 'wikiDataId' => 'Q2083346', + ], + [ + 'id' => 141437, + 'name' => 'Lakeview', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '48477000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '83'; + $this->fractionalPart = '92300000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:05', + 'updated_at' => '2019-11-14 01:18:05', + 'flag' => true, + 'wikiDataId' => 'Q2162101', + ], + [ + 'id' => 141438, + 'name' => 'Lakewood', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '48199000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '79819000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:05', + 'updated_at' => '2019-11-14 01:18:05', + 'flag' => true, + 'wikiDataId' => 'Q570990', + ], + [ + 'id' => 141439, + 'name' => 'Lancaster', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '71368000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '82'; + $this->fractionalPart = '59933000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:05', + 'updated_at' => '2019-11-14 01:18:05', + 'flag' => true, + 'wikiDataId' => 'Q986005', + ], + [ + 'id' => 141440, + 'name' => 'Landen', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '31200000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '28299000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:06', + 'updated_at' => '2019-11-14 01:18:06', + 'flag' => true, + 'wikiDataId' => 'Q2690763', + ], + [ + 'id' => 141441, + 'name' => 'Lawrence County', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '59847000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '82'; + $this->fractionalPart = '53675000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:06', + 'updated_at' => '2019-11-14 01:18:06', + 'flag' => true, + 'wikiDataId' => 'Q485615', + ], + [ + 'id' => 141442, + 'name' => 'Leavittsburg', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '24783000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '80'; + $this->fractionalPart = '87703000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:06', + 'updated_at' => '2019-11-14 01:18:06', + 'flag' => true, + 'wikiDataId' => 'Q1810800', + ], + [ + 'id' => 141443, + 'name' => 'Lebanon', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '43534000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '20299000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:06', + 'updated_at' => '2019-11-14 01:18:06', + 'flag' => true, + 'wikiDataId' => 'Q986776', + ], + [ + 'id' => 141444, + 'name' => 'Leesburg', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '34506000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '83'; + $this->fractionalPart = '55297000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:06', + 'updated_at' => '2019-11-14 01:18:06', + 'flag' => true, + 'wikiDataId' => 'Q1023486', + ], + [ + 'id' => 141445, + 'name' => 'Leetonia', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '87728000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '80'; + $this->fractionalPart = '75536000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:06', + 'updated_at' => '2019-11-14 01:18:06', + 'flag' => true, + 'wikiDataId' => 'Q1924362', + ], + [ + 'id' => 141446, + 'name' => 'Leipsic', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '09838000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '83'; + $this->fractionalPart = '98467000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:06', + 'updated_at' => '2019-11-14 01:18:06', + 'flag' => true, + 'wikiDataId' => 'Q1026003', + ], + [ + 'id' => 141447, + 'name' => 'Lewis Center', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '19840000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '83'; + $this->fractionalPart = '01018000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:06', + 'updated_at' => '2019-11-14 01:18:06', + 'flag' => true, + 'wikiDataId' => 'Q6536409', + ], + [ + 'id' => 141448, + 'name' => 'Lewisburg', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '84616000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '53967000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:06', + 'updated_at' => '2019-11-14 01:18:06', + 'flag' => true, + 'wikiDataId' => 'Q953188', + ], + [ + 'id' => 141449, + 'name' => 'Lexington', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '67867000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '82'; + $this->fractionalPart = '58239000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:06', + 'updated_at' => '2019-11-14 01:18:06', + 'flag' => true, + 'wikiDataId' => 'Q1759463', + ], + [ + 'id' => 141450, + 'name' => 'Liberty Center', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '44338000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '00883000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:06', + 'updated_at' => '2019-11-14 01:18:06', + 'flag' => true, + 'wikiDataId' => 'Q2668701', + ], + [ + 'id' => 141451, + 'name' => 'Licking County', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '09161000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '82'; + $this->fractionalPart = '48315000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:06', + 'updated_at' => '2019-11-14 01:18:06', + 'flag' => true, + 'wikiDataId' => 'Q490150', + ], + [ + 'id' => 141452, + 'name' => 'Lima', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '74255000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '10523000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:06', + 'updated_at' => '2019-11-14 01:18:06', + 'flag' => true, + 'wikiDataId' => 'Q983974', + ], + [ + 'id' => 141453, + 'name' => 'Lincoln Heights', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '23895000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '45550000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:06', + 'updated_at' => '2019-11-14 01:18:06', + 'flag' => true, + 'wikiDataId' => 'Q2512882', + ], + [ + 'id' => 141454, + 'name' => 'Lincoln Village', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '95479000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '83'; + $this->fractionalPart = '13074000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:06', + 'updated_at' => '2019-11-14 01:18:06', + 'flag' => true, + 'wikiDataId' => 'Q2114221', + ], + [ + 'id' => 141455, + 'name' => 'Lisbon', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '86089000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '83'; + $this->fractionalPart = '63520000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:06', + 'updated_at' => '2019-11-14 01:18:06', + 'flag' => true, + 'wikiDataId' => 'Q16894220', + ], + [ + 'id' => 141456, + 'name' => 'Lithopolis', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '80284000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '82'; + $this->fractionalPart = '80628000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:06', + 'updated_at' => '2019-11-14 01:18:06', + 'flag' => true, + 'wikiDataId' => 'Q2358133', + ], + [ + 'id' => 141457, + 'name' => 'Lockland', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '22922000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '45772000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:06', + 'updated_at' => '2019-11-14 01:18:06', + 'flag' => true, + 'wikiDataId' => 'Q1026014', + ], + [ + 'id' => 141458, + 'name' => 'Lodi', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '03339000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '82'; + $this->fractionalPart = '01209000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:06', + 'updated_at' => '2019-11-14 01:18:06', + 'flag' => true, + 'wikiDataId' => 'Q2054265', + ], + [ + 'id' => 141459, + 'name' => 'Logan', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '54007000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '82'; + $this->fractionalPart = '40710000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:06', + 'updated_at' => '2019-11-14 01:18:06', + 'flag' => true, + 'wikiDataId' => 'Q1004066', + ], + [ + 'id' => 141460, + 'name' => 'Logan County', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '38845000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '83'; + $this->fractionalPart = '76587000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:06', + 'updated_at' => '2019-11-14 01:18:06', + 'flag' => true, + 'wikiDataId' => 'Q490190', + ], + [ + 'id' => 141461, + 'name' => 'Logan Elm Village', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '56978000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '82'; + $this->fractionalPart = '95185000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:06', + 'updated_at' => '2019-11-14 01:18:06', + 'flag' => true, + 'wikiDataId' => 'Q304993', + ], + [ + 'id' => 141462, + 'name' => 'London', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '88645000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '83'; + $this->fractionalPart = '44825000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:06', + 'updated_at' => '2019-11-14 01:18:06', + 'flag' => true, + 'wikiDataId' => 'Q1001456', + ], + [ + 'id' => 141463, + 'name' => 'Lorain', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '45282000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '82'; + $this->fractionalPart = '18237000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:06', + 'updated_at' => '2019-11-14 01:18:06', + 'flag' => true, + 'wikiDataId' => 'Q609698', + ], + [ + 'id' => 141464, + 'name' => 'Lorain County', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '45252000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '82'; + $this->fractionalPart = '15147000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:06', + 'updated_at' => '2019-11-14 01:18:06', + 'flag' => true, + 'wikiDataId' => 'Q251277', + ], + [ + 'id' => 141465, + 'name' => 'Lordstown', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '16561000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '80'; + $this->fractionalPart = '85758000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:06', + 'updated_at' => '2019-11-14 01:18:06', + 'flag' => true, + 'wikiDataId' => 'Q1816711', + ], + [ + 'id' => 141466, + 'name' => 'Loudonville', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '63534000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '82'; + $this->fractionalPart = '23321000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:06', + 'updated_at' => '2019-11-14 01:18:06', + 'flag' => true, + 'wikiDataId' => 'Q925581', + ], + [ + 'id' => 141467, + 'name' => 'Louisville', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '83728000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '25955000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:06', + 'updated_at' => '2019-11-14 01:18:06', + 'flag' => true, + 'wikiDataId' => 'Q1007057', + ], + [ + 'id' => 141468, + 'name' => 'Loveland', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '26895000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '26383000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:06', + 'updated_at' => '2019-11-14 01:18:06', + 'flag' => true, + 'wikiDataId' => 'Q843993', + ], + [ + 'id' => 141469, + 'name' => 'Loveland Park', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '29978000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '26327000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:06', + 'updated_at' => '2019-11-14 01:18:06', + 'flag' => true, + 'wikiDataId' => 'Q2324114', + ], + [ + 'id' => 141470, + 'name' => 'Lowellville', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '03534000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '80'; + $this->fractionalPart = '53646000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:06', + 'updated_at' => '2019-11-14 01:18:06', + 'flag' => true, + 'wikiDataId' => 'Q2460456', + ], + [ + 'id' => 141471, + 'name' => 'Lucas County', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '68419000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '83'; + $this->fractionalPart = '46826000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:06', + 'updated_at' => '2019-11-14 01:18:06', + 'flag' => true, + 'wikiDataId' => 'Q112107', + ], + [ + 'id' => 141472, + 'name' => 'Lucasville', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '87952000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '82'; + $this->fractionalPart = '99684000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:06', + 'updated_at' => '2019-11-14 01:18:06', + 'flag' => true, + 'wikiDataId' => 'Q2207260', + ], + [ + 'id' => 141473, + 'name' => 'Luckey', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '45061000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '83'; + $this->fractionalPart = '48743000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:06', + 'updated_at' => '2019-11-14 01:18:06', + 'flag' => true, + 'wikiDataId' => 'Q2653457', + ], + [ + 'id' => 141474, + 'name' => 'Lynchburg', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '24173000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '83'; + $this->fractionalPart = '79131000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:06', + 'updated_at' => '2019-11-14 01:18:06', + 'flag' => true, + 'wikiDataId' => 'Q2122922', + ], + [ + 'id' => 141475, + 'name' => 'Lyndhurst', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '52005000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '48873000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:06', + 'updated_at' => '2019-11-14 01:18:06', + 'flag' => true, + 'wikiDataId' => 'Q2372606', + ], + [ + 'id' => 141476, + 'name' => 'Macedonia', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '31367000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '50845000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:06', + 'updated_at' => '2019-11-14 01:18:06', + 'flag' => true, + 'wikiDataId' => 'Q975216', + ], + [ + 'id' => 141477, + 'name' => 'Mack', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '15811000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '64967000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:06', + 'updated_at' => '2019-11-14 01:18:06', + 'flag' => true, + 'wikiDataId' => 'Q6724168', + ], + [ + 'id' => 141478, + 'name' => 'Madeira', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '19089000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '36355000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:06', + 'updated_at' => '2019-11-14 01:18:06', + 'flag' => true, + 'wikiDataId' => 'Q1937317', + ], + [ + 'id' => 141479, + 'name' => 'Madison', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '77116000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '04982000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:06', + 'updated_at' => '2019-11-14 01:18:06', + 'flag' => true, + 'wikiDataId' => 'Q1883378', + ], + [ + 'id' => 141480, + 'name' => 'Madison County', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '89403000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '83'; + $this->fractionalPart = '40020000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:06', + 'updated_at' => '2019-11-14 01:18:06', + 'flag' => true, + 'wikiDataId' => 'Q485526', + ], + [ + 'id' => 141481, + 'name' => 'Mahoning County', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '01464000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '80'; + $this->fractionalPart = '77629000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:06', + 'updated_at' => '2019-11-14 01:18:06', + 'flag' => true, + 'wikiDataId' => 'Q485502', + ], + [ + 'id' => 141482, + 'name' => 'Malvern', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '69173000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '18121000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:06', + 'updated_at' => '2019-11-14 01:18:06', + 'flag' => true, + 'wikiDataId' => 'Q1816675', + ], + [ + 'id' => 141483, + 'name' => 'Manchester', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '68813000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '83'; + $this->fractionalPart = '60936000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:06', + 'updated_at' => '2019-11-14 01:18:06', + 'flag' => true, + 'wikiDataId' => 'Q2668469', + ], + [ + 'id' => 141484, + 'name' => 'Mansfield', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '75839000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '82'; + $this->fractionalPart = '51545000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:06', + 'updated_at' => '2019-11-14 01:18:06', + 'flag' => true, + 'wikiDataId' => 'Q983698', + ], + [ + 'id' => 141485, + 'name' => 'Mantua', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '28394000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '22399000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:06', + 'updated_at' => '2019-11-14 01:18:06', + 'flag' => true, + 'wikiDataId' => 'Q2131270', + ], + [ + 'id' => 141486, + 'name' => 'Maple Heights', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '41533000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '56596000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:06', + 'updated_at' => '2019-11-14 01:18:06', + 'flag' => true, + 'wikiDataId' => 'Q1007064', + ], + [ + 'id' => 141487, + 'name' => 'Mariemont', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '14506000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '37438000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:06', + 'updated_at' => '2019-11-14 01:18:06', + 'flag' => true, + 'wikiDataId' => 'Q1816729', + ], + [ + 'id' => 141488, + 'name' => 'Marietta', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '41535000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '45484000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:06', + 'updated_at' => '2019-11-14 01:18:06', + 'flag' => true, + 'wikiDataId' => 'Q985482', + ], + [ + 'id' => 141489, + 'name' => 'Marion', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '58867000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '83'; + $this->fractionalPart = '12852000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:06', + 'updated_at' => '2019-11-14 01:18:06', + 'flag' => true, + 'wikiDataId' => 'Q985636', + ], + [ + 'id' => 141490, + 'name' => 'Marion County', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '58719000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '83'; + $this->fractionalPart = '16087000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:06', + 'updated_at' => '2019-11-14 01:18:06', + 'flag' => true, + 'wikiDataId' => 'Q489553', + ], + [ + 'id' => 141491, + 'name' => 'Martins Ferry', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '09591000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '80'; + $this->fractionalPart = '72453000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:06', + 'updated_at' => '2019-11-14 01:18:06', + 'flag' => true, + 'wikiDataId' => 'Q1018313', + ], + [ + 'id' => 141492, + 'name' => 'Marysville', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '23645000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '83'; + $this->fractionalPart = '36714000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:06', + 'updated_at' => '2019-11-14 01:18:06', + 'flag' => true, + 'wikiDataId' => 'Q990973', + ], + [ + 'id' => 141493, + 'name' => 'Mason', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '36006000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '30994000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:06', + 'updated_at' => '2019-11-14 01:18:06', + 'flag' => true, + 'wikiDataId' => 'Q986779', + ], + [ + 'id' => 141494, + 'name' => 'Massillon', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '79672000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '52151000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:06', + 'updated_at' => '2019-11-14 01:18:06', + 'flag' => true, + 'wikiDataId' => 'Q992289', + ], + [ + 'id' => 141495, + 'name' => 'Masury', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '21117000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '80'; + $this->fractionalPart = '53785000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:06', + 'updated_at' => '2019-11-14 01:18:06', + 'flag' => true, + 'wikiDataId' => 'Q283999', + ], + [ + 'id' => 141496, + 'name' => 'Maumee', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '56283000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '83'; + $this->fractionalPart = '65382000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:06', + 'updated_at' => '2019-11-14 01:18:06', + 'flag' => true, + 'wikiDataId' => 'Q1004755', + ], + [ + 'id' => 141497, + 'name' => 'Mayfield', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '55200000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '43928000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:06', + 'updated_at' => '2019-11-14 01:18:06', + 'flag' => true, + 'wikiDataId' => 'Q2604968', + ], + [ + 'id' => 141498, + 'name' => 'Mayfield Heights', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '51922000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '45790000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:06', + 'updated_at' => '2019-11-14 01:18:06', + 'flag' => true, + 'wikiDataId' => 'Q2372404', + ], + [ + 'id' => 141499, + 'name' => 'McArthur', + 'state_id' => 4851, + 'state_code' => 'OH', + 'country_id' => 233, + 'country_code' => 'US', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '24646000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '82'; + $this->fractionalPart = '47849000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-14 01:18:06', + 'updated_at' => '2019-11-14 01:18:06', + 'flag' => true, + 'wikiDataId' => 'Q1812530', + ], + ]; + parent::init(); + } +} diff --git a/tests/Fixture/CountriesFixture.php b/tests/Fixture/CountriesFixture.php new file mode 100644 index 0000000..be14c1a --- /dev/null +++ b/tests/Fixture/CountriesFixture.php @@ -0,0 +1,344 @@ +records = [ + [ + 'id' => 25, + 'name' => 'Bermuda', + 'iso3' => 'BMU', + 'numeric_code' => '060', + 'iso2' => 'BM', + 'phonecode' => '+1-441', + 'capital' => 'Hamilton', + 'currency' => 'BMD', + 'currency_name' => 'Bermudian dollar', + 'currency_symbol' => '$', + 'tld' => '.bm', + 'native' => 'Bermuda', + 'region' => 'Americas', + 'region_id' => 2, + 'subregion' => 'Northern America', + 'subregion_id' => 6, + 'nationality' => 'Bermudian, Bermudan', + 'timezones' => '[{"zoneName":"Atlantic/Bermuda","gmtOffset":-14400,"gmtOffsetName":"UTC-04:00","abbreviation":"AST","tzName":"Atlantic Standard Time"}]', + 'translations' => '{"kr":"버뮤다","pt-BR":"Bermudas","pt":"Bermudas","nl":"Bermuda","hr":"Bermudi","fa":"برمودا","de":"Bermuda","es":"Bermudas","fr":"Bermudes","ja":"バミューダ","it":"Bermuda","cn":"百慕大","tr":"Bermuda"}', + 'latitude' => (static function() { + $class = new ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '32'; + $this->fractionalPart = '33333333'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '64'; + $this->fractionalPart = '75000000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'emoji' => '🇧🇲', + 'emojiU' => 'U+1F1E7 U+1F1F2', + 'created_at' => '2018-07-21 16:11:03', + 'updated_at' => '2023-08-09 06:04:58', + 'flag' => true, + 'wikiDataId' => null, + ], + [ + 'id' => 39, + 'name' => 'Canada', + 'iso3' => 'CAN', + 'numeric_code' => '124', + 'iso2' => 'CA', + 'phonecode' => '1', + 'capital' => 'Ottawa', + 'currency' => 'CAD', + 'currency_name' => 'Canadian dollar', + 'currency_symbol' => '$', + 'tld' => '.ca', + 'native' => 'Canada', + 'region' => 'Americas', + 'region_id' => 2, + 'subregion' => 'Northern America', + 'subregion_id' => 6, + 'nationality' => 'Canadian', + 'timezones' => '[{"zoneName":"America/Atikokan","gmtOffset":-18000,"gmtOffsetName":"UTC-05:00","abbreviation":"EST","tzName":"Eastern Standard Time (North America)"},{"zoneName":"America/Blanc-Sablon","gmtOffset":-14400,"gmtOffsetName":"UTC-04:00","abbreviation":"AST","tzName":"Atlantic Standard Time"},{"zoneName":"America/Cambridge_Bay","gmtOffset":-25200,"gmtOffsetName":"UTC-07:00","abbreviation":"MST","tzName":"Mountain Standard Time (North America)"},{"zoneName":"America/Creston","gmtOffset":-25200,"gmtOffsetName":"UTC-07:00","abbreviation":"MST","tzName":"Mountain Standard Time (North America)"},{"zoneName":"America/Dawson","gmtOffset":-25200,"gmtOffsetName":"UTC-07:00","abbreviation":"MST","tzName":"Mountain Standard Time (North America)"},{"zoneName":"America/Dawson_Creek","gmtOffset":-25200,"gmtOffsetName":"UTC-07:00","abbreviation":"MST","tzName":"Mountain Standard Time (North America)"},{"zoneName":"America/Edmonton","gmtOffset":-25200,"gmtOffsetName":"UTC-07:00","abbreviation":"MST","tzName":"Mountain Standard Time (North America)"},{"zoneName":"America/Fort_Nelson","gmtOffset":-25200,"gmtOffsetName":"UTC-07:00","abbreviation":"MST","tzName":"Mountain Standard Time (North America)"},{"zoneName":"America/Glace_Bay","gmtOffset":-14400,"gmtOffsetName":"UTC-04:00","abbreviation":"AST","tzName":"Atlantic Standard Time"},{"zoneName":"America/Goose_Bay","gmtOffset":-14400,"gmtOffsetName":"UTC-04:00","abbreviation":"AST","tzName":"Atlantic Standard Time"},{"zoneName":"America/Halifax","gmtOffset":-14400,"gmtOffsetName":"UTC-04:00","abbreviation":"AST","tzName":"Atlantic Standard Time"},{"zoneName":"America/Inuvik","gmtOffset":-25200,"gmtOffsetName":"UTC-07:00","abbreviation":"MST","tzName":"Mountain Standard Time (North America"},{"zoneName":"America/Iqaluit","gmtOffset":-18000,"gmtOffsetName":"UTC-05:00","abbreviation":"EST","tzName":"Eastern Standard Time (North America"},{"zoneName":"America/Moncton","gmtOffset":-14400,"gmtOffsetName":"UTC-04:00","abbreviation":"AST","tzName":"Atlantic Standard Time"},{"zoneName":"America/Nipigon","gmtOffset":-18000,"gmtOffsetName":"UTC-05:00","abbreviation":"EST","tzName":"Eastern Standard Time (North America"},{"zoneName":"America/Pangnirtung","gmtOffset":-18000,"gmtOffsetName":"UTC-05:00","abbreviation":"EST","tzName":"Eastern Standard Time (North America"},{"zoneName":"America/Rainy_River","gmtOffset":-21600,"gmtOffsetName":"UTC-06:00","abbreviation":"CST","tzName":"Central Standard Time (North America"},{"zoneName":"America/Rankin_Inlet","gmtOffset":-21600,"gmtOffsetName":"UTC-06:00","abbreviation":"CST","tzName":"Central Standard Time (North America"},{"zoneName":"America/Regina","gmtOffset":-21600,"gmtOffsetName":"UTC-06:00","abbreviation":"CST","tzName":"Central Standard Time (North America"},{"zoneName":"America/Resolute","gmtOffset":-21600,"gmtOffsetName":"UTC-06:00","abbreviation":"CST","tzName":"Central Standard Time (North America"},{"zoneName":"America/St_Johns","gmtOffset":-12600,"gmtOffsetName":"UTC-03:30","abbreviation":"NST","tzName":"Newfoundland Standard Time"},{"zoneName":"America/Swift_Current","gmtOffset":-21600,"gmtOffsetName":"UTC-06:00","abbreviation":"CST","tzName":"Central Standard Time (North America"},{"zoneName":"America/Thunder_Bay","gmtOffset":-18000,"gmtOffsetName":"UTC-05:00","abbreviation":"EST","tzName":"Eastern Standard Time (North America"},{"zoneName":"America/Toronto","gmtOffset":-18000,"gmtOffsetName":"UTC-05:00","abbreviation":"EST","tzName":"Eastern Standard Time (North America"},{"zoneName":"America/Vancouver","gmtOffset":-28800,"gmtOffsetName":"UTC-08:00","abbreviation":"PST","tzName":"Pacific Standard Time (North America"},{"zoneName":"America/Whitehorse","gmtOffset":-25200,"gmtOffsetName":"UTC-07:00","abbreviation":"MST","tzName":"Mountain Standard Time (North America"},{"zoneName":"America/Winnipeg","gmtOffset":-21600,"gmtOffsetName":"UTC-06:00","abbreviation":"CST","tzName":"Central Standard Time (North America"},{"zoneName":"America/Yellowknife","gmtOffset":-25200,"gmtOffsetName":"UTC-07:00","abbreviation":"MST","tzName":"Mountain Standard Time (North America"}]', + 'translations' => '{"kr":"캐나다","pt-BR":"Canadá","pt":"Canadá","nl":"Canada","hr":"Kanada","fa":"کانادا","de":"Kanada","es":"Canadá","fr":"Canada","ja":"カナダ","it":"Canada","cn":"加拿大","tr":"Kanada"}', + 'latitude' => (static function() { + $class = new ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '60'; + $this->fractionalPart = '00000000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '95'; + $this->fractionalPart = '00000000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'emoji' => '🇨🇦', + 'emojiU' => 'U+1F1E8 U+1F1E6', + 'created_at' => '2018-07-21 16:11:03', + 'updated_at' => '2023-08-09 06:04:58', + 'flag' => true, + 'wikiDataId' => 'Q16', + ], + [ + 'id' => 86, + 'name' => 'Greenland', + 'iso3' => 'GRL', + 'numeric_code' => '304', + 'iso2' => 'GL', + 'phonecode' => '299', + 'capital' => 'Nuuk', + 'currency' => 'DKK', + 'currency_name' => 'Danish krone', + 'currency_symbol' => 'Kr.', + 'tld' => '.gl', + 'native' => 'Kalaallit Nunaat', + 'region' => 'Americas', + 'region_id' => 2, + 'subregion' => 'Northern America', + 'subregion_id' => 6, + 'nationality' => 'Greenlandic', + 'timezones' => '[{"zoneName":"America/Danmarkshavn","gmtOffset":0,"gmtOffsetName":"UTC±00","abbreviation":"GMT","tzName":"Greenwich Mean Time"},{"zoneName":"America/Nuuk","gmtOffset":-10800,"gmtOffsetName":"UTC-03:00","abbreviation":"WGT","tzName":"West Greenland Time"},{"zoneName":"America/Scoresbysund","gmtOffset":-3600,"gmtOffsetName":"UTC-01:00","abbreviation":"EGT","tzName":"Eastern Greenland Time"},{"zoneName":"America/Thule","gmtOffset":-14400,"gmtOffsetName":"UTC-04:00","abbreviation":"AST","tzName":"Atlantic Standard Time"}]', + 'translations' => '{"kr":"그린란드","pt-BR":"Groelândia","pt":"Gronelândia","nl":"Groenland","hr":"Grenland","fa":"گرینلند","de":"Grönland","es":"Groenlandia","fr":"Groenland","ja":"グリーンランド","it":"Groenlandia","cn":"格陵兰岛","tr":"Grönland"}', + 'latitude' => (static function() { + $class = new ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '72'; + $this->fractionalPart = '00000000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '00000000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'emoji' => '🇬🇱', + 'emojiU' => 'U+1F1EC U+1F1F1', + 'created_at' => '2018-07-21 16:11:03', + 'updated_at' => '2023-08-09 06:04:58', + 'flag' => true, + 'wikiDataId' => null, + ], + [ + 'id' => 187, + 'name' => 'Saint Pierre and Miquelon', + 'iso3' => 'SPM', + 'numeric_code' => '666', + 'iso2' => 'PM', + 'phonecode' => '508', + 'capital' => 'Saint-Pierre', + 'currency' => 'EUR', + 'currency_name' => 'Euro', + 'currency_symbol' => '€', + 'tld' => '.pm', + 'native' => 'Saint-Pierre-et-Miquelon', + 'region' => 'Americas', + 'region_id' => 2, + 'subregion' => 'Northern America', + 'subregion_id' => 6, + 'nationality' => 'Saint-Pierrais or Miquelonnais', + 'timezones' => '[{"zoneName":"America/Miquelon","gmtOffset":-10800,"gmtOffsetName":"UTC-03:00","abbreviation":"PMDT","tzName":"Pierre & Miquelon Daylight Time"}]', + 'translations' => '{"kr":"생피에르 미클롱","pt-BR":"Saint-Pierre e Miquelon","pt":"São Pedro e Miquelon","nl":"Saint Pierre en Miquelon","hr":"Sveti Petar i Mikelon","fa":"سن پیر و میکلن","de":"Saint-Pierre und Miquelon","es":"San Pedro y Miquelón","fr":"Saint-Pierre-et-Miquelon","ja":"サンピエール島・ミクロン島","it":"Saint-Pierre e Miquelon","cn":"圣皮埃尔和密克隆","tr":"Saint Pierre Ve Miquelon"}', + 'latitude' => (static function() { + $class = new ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '83333333'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '56'; + $this->fractionalPart = '33333333'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'emoji' => '🇵🇲', + 'emojiU' => 'U+1F1F5 U+1F1F2', + 'created_at' => '2018-07-21 16:11:03', + 'updated_at' => '2023-08-10 04:23:19', + 'flag' => true, + 'wikiDataId' => null, + ], + [ + 'id' => 233, + 'name' => 'United States', + 'iso3' => 'USA', + 'numeric_code' => '840', + 'iso2' => 'US', + 'phonecode' => '1', + 'capital' => 'Washington', + 'currency' => 'USD', + 'currency_name' => 'United States dollar', + 'currency_symbol' => '$', + 'tld' => '.us', + 'native' => 'United States', + 'region' => 'Americas', + 'region_id' => 2, + 'subregion' => 'Northern America', + 'subregion_id' => 6, + 'nationality' => 'American', + 'timezones' => '[{"zoneName":"America/Adak","gmtOffset":-36000,"gmtOffsetName":"UTC-10:00","abbreviation":"HST","tzName":"Hawaii–Aleutian Standard Time"},{"zoneName":"America/Anchorage","gmtOffset":-32400,"gmtOffsetName":"UTC-09:00","abbreviation":"AKST","tzName":"Alaska Standard Time"},{"zoneName":"America/Boise","gmtOffset":-25200,"gmtOffsetName":"UTC-07:00","abbreviation":"MST","tzName":"Mountain Standard Time (North America"},{"zoneName":"America/Chicago","gmtOffset":-21600,"gmtOffsetName":"UTC-06:00","abbreviation":"CST","tzName":"Central Standard Time (North America"},{"zoneName":"America/Denver","gmtOffset":-25200,"gmtOffsetName":"UTC-07:00","abbreviation":"MST","tzName":"Mountain Standard Time (North America"},{"zoneName":"America/Detroit","gmtOffset":-18000,"gmtOffsetName":"UTC-05:00","abbreviation":"EST","tzName":"Eastern Standard Time (North America"},{"zoneName":"America/Indiana/Indianapolis","gmtOffset":-18000,"gmtOffsetName":"UTC-05:00","abbreviation":"EST","tzName":"Eastern Standard Time (North America"},{"zoneName":"America/Indiana/Knox","gmtOffset":-21600,"gmtOffsetName":"UTC-06:00","abbreviation":"CST","tzName":"Central Standard Time (North America"},{"zoneName":"America/Indiana/Marengo","gmtOffset":-18000,"gmtOffsetName":"UTC-05:00","abbreviation":"EST","tzName":"Eastern Standard Time (North America"},{"zoneName":"America/Indiana/Petersburg","gmtOffset":-18000,"gmtOffsetName":"UTC-05:00","abbreviation":"EST","tzName":"Eastern Standard Time (North America"},{"zoneName":"America/Indiana/Tell_City","gmtOffset":-21600,"gmtOffsetName":"UTC-06:00","abbreviation":"CST","tzName":"Central Standard Time (North America"},{"zoneName":"America/Indiana/Vevay","gmtOffset":-18000,"gmtOffsetName":"UTC-05:00","abbreviation":"EST","tzName":"Eastern Standard Time (North America"},{"zoneName":"America/Indiana/Vincennes","gmtOffset":-18000,"gmtOffsetName":"UTC-05:00","abbreviation":"EST","tzName":"Eastern Standard Time (North America"},{"zoneName":"America/Indiana/Winamac","gmtOffset":-18000,"gmtOffsetName":"UTC-05:00","abbreviation":"EST","tzName":"Eastern Standard Time (North America"},{"zoneName":"America/Juneau","gmtOffset":-32400,"gmtOffsetName":"UTC-09:00","abbreviation":"AKST","tzName":"Alaska Standard Time"},{"zoneName":"America/Kentucky/Louisville","gmtOffset":-18000,"gmtOffsetName":"UTC-05:00","abbreviation":"EST","tzName":"Eastern Standard Time (North America"},{"zoneName":"America/Kentucky/Monticello","gmtOffset":-18000,"gmtOffsetName":"UTC-05:00","abbreviation":"EST","tzName":"Eastern Standard Time (North America"},{"zoneName":"America/Los_Angeles","gmtOffset":-28800,"gmtOffsetName":"UTC-08:00","abbreviation":"PST","tzName":"Pacific Standard Time (North America"},{"zoneName":"America/Menominee","gmtOffset":-21600,"gmtOffsetName":"UTC-06:00","abbreviation":"CST","tzName":"Central Standard Time (North America"},{"zoneName":"America/Metlakatla","gmtOffset":-32400,"gmtOffsetName":"UTC-09:00","abbreviation":"AKST","tzName":"Alaska Standard Time"},{"zoneName":"America/New_York","gmtOffset":-18000,"gmtOffsetName":"UTC-05:00","abbreviation":"EST","tzName":"Eastern Standard Time (North America"},{"zoneName":"America/Nome","gmtOffset":-32400,"gmtOffsetName":"UTC-09:00","abbreviation":"AKST","tzName":"Alaska Standard Time"},{"zoneName":"America/North_Dakota/Beulah","gmtOffset":-21600,"gmtOffsetName":"UTC-06:00","abbreviation":"CST","tzName":"Central Standard Time (North America"},{"zoneName":"America/North_Dakota/Center","gmtOffset":-21600,"gmtOffsetName":"UTC-06:00","abbreviation":"CST","tzName":"Central Standard Time (North America"},{"zoneName":"America/North_Dakota/New_Salem","gmtOffset":-21600,"gmtOffsetName":"UTC-06:00","abbreviation":"CST","tzName":"Central Standard Time (North America"},{"zoneName":"America/Phoenix","gmtOffset":-25200,"gmtOffsetName":"UTC-07:00","abbreviation":"MST","tzName":"Mountain Standard Time (North America"},{"zoneName":"America/Sitka","gmtOffset":-32400,"gmtOffsetName":"UTC-09:00","abbreviation":"AKST","tzName":"Alaska Standard Time"},{"zoneName":"America/Yakutat","gmtOffset":-32400,"gmtOffsetName":"UTC-09:00","abbreviation":"AKST","tzName":"Alaska Standard Time"},{"zoneName":"Pacific/Honolulu","gmtOffset":-36000,"gmtOffsetName":"UTC-10:00","abbreviation":"HST","tzName":"Hawaii–Aleutian Standard Time"}]', + 'translations' => '{"kr":"미국","pt-BR":"Estados Unidos","pt":"Estados Unidos","nl":"Verenigde Staten","hr":"Sjedinjene Američke Države","fa":"ایالات متحده آمریکا","de":"Vereinigte Staaten von Amerika","es":"Estados Unidos","fr":"États-Unis","ja":"アメリカ合衆国","it":"Stati Uniti D\'America","cn":"美国","tr":"Amerika"}', + 'latitude' => (static function() { + $class = new ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '00000000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '97'; + $this->fractionalPart = '00000000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'emoji' => '🇺🇸', + 'emojiU' => 'U+1F1FA U+1F1F8', + 'created_at' => '2018-07-21 16:11:03', + 'updated_at' => '2023-08-10 04:23:19', + 'flag' => true, + 'wikiDataId' => 'Q30', + ], + [ + 'id' => 234, + 'name' => 'United States Minor Outlying Islands', + 'iso3' => 'UMI', + 'numeric_code' => '581', + 'iso2' => 'UM', + 'phonecode' => '1', + 'capital' => '', + 'currency' => 'USD', + 'currency_name' => 'United States dollar', + 'currency_symbol' => '$', + 'tld' => '.us', + 'native' => 'United States Minor Outlying Islands', + 'region' => 'Americas', + 'region_id' => 2, + 'subregion' => 'Northern America', + 'subregion_id' => 6, + 'nationality' => 'American', + 'timezones' => '[{"zoneName":"Pacific/Midway","gmtOffset":-39600,"gmtOffsetName":"UTC-11:00","abbreviation":"SST","tzName":"Samoa Standard Time"},{"zoneName":"Pacific/Wake","gmtOffset":43200,"gmtOffsetName":"UTC+12:00","abbreviation":"WAKT","tzName":"Wake Island Time"}]', + 'translations' => '{"kr":"미국령 군소 제도","pt-BR":"Ilhas Menores Distantes dos Estados Unidos","pt":"Ilhas Menores Distantes dos Estados Unidos","nl":"Kleine afgelegen eilanden van de Verenigde Staten","hr":"Mali udaljeni otoci SAD-a","fa":"جزایر کوچک حاشیه‌ای ایالات متحده آمریکا","de":"Kleinere Inselbesitzungen der Vereinigten Staaten","es":"Islas Ultramarinas Menores de Estados Unidos","fr":"Îles mineures éloignées des États-Unis","ja":"合衆国領有小離島","it":"Isole minori esterne degli Stati Uniti d\'America","cn":"美国本土外小岛屿","tr":"Abd Küçük Harici Adalari"}', + 'latitude' => (static function() { + $class = new ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '0'; + $this->fractionalPart = '00000000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '0'; + $this->fractionalPart = '00000000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'emoji' => '🇺🇲', + 'emojiU' => 'U+1F1FA U+1F1F2', + 'created_at' => '2018-07-21 16:11:03', + 'updated_at' => '2023-08-10 04:23:19', + 'flag' => true, + 'wikiDataId' => null, + ], + ]; + parent::init(); + } +} diff --git a/tests/Fixture/RegionsFixture.php b/tests/Fixture/RegionsFixture.php new file mode 100644 index 0000000..2c61ea5 --- /dev/null +++ b/tests/Fixture/RegionsFixture.php @@ -0,0 +1,84 @@ +records = [ + [ + 'id' => 1, + 'name' => 'Africa', +// 'translations' => '{"kr":"아프리카","pt-BR":"África","pt":"África","nl":"Afrika","hr":"Afrika","fa":"آفریقا","de":"Afrika","es":"África","fr":"Afrique","ja":"アフリカ","it":"Africa","cn":"非洲","tr":"Afrika"}', + 'translations' => '', + 'created_at' => '2023-08-14 14:11:03', + 'updated_at' => '2023-08-14 14:11:03', + 'flag' => true, + 'wikiDataId' => 'Q15', + ], + [ + 'id' => 2, + 'name' => 'Americas', +// 'translations' => '{"kr":"아메리카","pt-BR":"América","pt":"América","nl":"Amerika","hr":"Amerika","fa":"قاره آمریکا","de":"Amerika","es":"América","fr":"Amérique","ja":"アメリカ州","it":"America","cn":"美洲","tr":"Amerika"}', + 'translations' => '', + 'created_at' => '2023-08-14 14:11:03', + 'updated_at' => '2023-08-14 14:11:03', + 'flag' => true, + 'wikiDataId' => 'Q828', + ], + [ + 'id' => 3, + 'name' => 'Asia', +// 'translations' => '{"kr":"아시아","pt-BR":"Ásia","pt":"Ásia","nl":"Azië","hr":"Ázsia","fa":"آسیا","de":"Asien","es":"Asia","fr":"Asie","ja":"アジア","it":"Asia","cn":"亚洲","tr":"Asya"}', + 'translations' => '', + 'created_at' => '2023-08-14 14:11:03', + 'updated_at' => '2023-08-14 14:11:03', + 'flag' => true, + 'wikiDataId' => 'Q48', + ], + [ + 'id' => 4, + 'name' => 'Europe', +// 'translations' => '{"kr":"유럽","pt-BR":"Europa","pt":"Europa","nl":"Europa","hr":"Európa","fa":"اروپا","de":"Europa","es":"Europa","fr":"Europe","ja":"ヨーロッパ","it":"Europa","cn":"欧洲","tr":"Avrupa"}', + 'translations' => '', + 'created_at' => '2023-08-14 14:11:03', + 'updated_at' => '2023-08-14 14:11:03', + 'flag' => true, + 'wikiDataId' => 'Q46', + ], + [ + 'id' => 5, + 'name' => 'Oceania', +// 'translations' => '{"kr":"오세아니아","pt-BR":"Oceania","pt":"Oceania","nl":"Oceanië en Australië","hr":"Óceánia és Ausztrália","fa":"اقیانوسیه","de":"Ozeanien und Australien","es":"Oceanía","fr":"Océanie","ja":"オセアニア","it":"Oceania","cn":"大洋洲","tr":"Okyanusya"}', + 'translations' => '', + 'created_at' => '2023-08-14 14:11:03', + 'updated_at' => '2023-08-14 14:11:03', + 'flag' => true, + 'wikiDataId' => 'Q55643', + ], + [ + 'id' => 6, + 'name' => 'Polar', +// 'translations' => '{"kr":"남극","pt-BR":"Antártida","pt":"Antártida","nl":"Antarctica","hr":"Antarktika","fa":"جنوبگان","de":"Antarktika","es":"Antártida","fr":"Antarctique","ja":"南極大陸","it":"Antartide","cn":"南極洲","tr":"Antarktika"}', + 'translations' => '', + 'created_at' => '2023-08-14 14:11:03', + 'updated_at' => '2023-08-14 14:11:03', + 'flag' => true, + 'wikiDataId' => 'Q51', + ], + ]; + parent::init(); + } +} diff --git a/tests/Fixture/StatesFixture.php b/tests/Fixture/StatesFixture.php new file mode 100644 index 0000000..5272229 --- /dev/null +++ b/tests/Fixture/StatesFixture.php @@ -0,0 +1,3807 @@ +records = [ + [ + 'id' => 4860, + 'name' => 'Devonshire', + 'country_id' => 25, + 'country_code' => 'BM', + 'fips_code' => '01', + 'iso2' => 'DEV', + 'type' => 'municipality', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '32'; + $this->fractionalPart = '30380620'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '64'; + $this->fractionalPart = '76069540'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2020-07-22 22:26:00', + 'updated_at' => '2023-05-21 03:20:55', + 'flag' => true, + 'wikiDataId' => 'Q1207018', + ], + [ + 'id' => 4861, + 'name' => 'Hamilton', + 'country_id' => 25, + 'country_code' => 'BM', + 'fips_code' => '02', + 'iso2' => 'HA', + 'type' => 'municipality', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '32'; + $this->fractionalPart = '34494320'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '64'; + $this->fractionalPart = '72365000'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2020-07-22 22:26:00', + 'updated_at' => '2023-05-21 03:20:55', + 'flag' => true, + 'wikiDataId' => 'Q289876', + ], + [ + 'id' => 4863, + 'name' => 'Paget', + 'country_id' => 25, + 'country_code' => 'BM', + 'fips_code' => '04', + 'iso2' => 'PAG', + 'type' => 'municipality', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '32'; + $this->fractionalPart = '28107400'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '64'; + $this->fractionalPart = '77847870'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2020-07-22 22:26:00', + 'updated_at' => '2023-05-21 03:20:55', + 'flag' => true, + 'wikiDataId' => 'Q2046204', + ], + [ + 'id' => 4864, + 'name' => 'Pembroke', + 'country_id' => 25, + 'country_code' => 'BM', + 'fips_code' => '05', + 'iso2' => 'PEM', + 'type' => 'municipality', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '32'; + $this->fractionalPart = '30076720'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '64'; + $this->fractionalPart = '79626300'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2020-07-22 22:26:00', + 'updated_at' => '2023-05-21 03:20:55', + 'flag' => true, + 'wikiDataId' => 'Q1756036', + ], + [ + 'id' => 4866, + 'name' => 'Saint George\'s', + 'country_id' => 25, + 'country_code' => 'BM', + 'fips_code' => '07', + 'iso2' => 'SGE', + 'type' => 'municipality', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '17'; + $this->fractionalPart = '12577590'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '62'; + $this->fractionalPart = '56198110'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2020-07-22 22:26:00', + 'updated_at' => '2023-05-21 03:20:55', + 'flag' => true, + 'wikiDataId' => 'Q1521745', + ], + [ + 'id' => 4867, + 'name' => 'Sandys', + 'country_id' => 25, + 'country_code' => 'BM', + 'fips_code' => '08', + 'iso2' => 'SAN', + 'type' => 'municipality', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '32'; + $this->fractionalPart = '29995280'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '64'; + $this->fractionalPart = '86741030'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2020-07-22 22:26:00', + 'updated_at' => '2023-05-21 03:20:55', + 'flag' => true, + 'wikiDataId' => 'Q121782', + ], + [ + 'id' => 4868, + 'name' => 'Smith\'s', + 'country_id' => 25, + 'country_code' => 'BM', + 'fips_code' => '09', + 'iso2' => 'SMI', + 'type' => 'municipality', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '32'; + $this->fractionalPart = '31339660'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '64'; + $this->fractionalPart = '73105880'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2020-07-22 22:26:00', + 'updated_at' => '2023-05-21 03:20:55', + 'flag' => true, + 'wikiDataId' => 'Q1735847', + ], + [ + 'id' => 4869, + 'name' => 'Southampton', + 'country_id' => 25, + 'country_code' => 'BM', + 'fips_code' => '10', + 'iso2' => 'SOU', + 'type' => 'municipality', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '32'; + $this->fractionalPart = '25400950'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '64'; + $this->fractionalPart = '82590580'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2020-07-22 22:26:00', + 'updated_at' => '2023-05-21 03:20:55', + 'flag' => true, + 'wikiDataId' => 'Q1323054', + ], + [ + 'id' => 4870, + 'name' => 'Warwick', + 'country_id' => 25, + 'country_code' => 'BM', + 'fips_code' => '11', + 'iso2' => 'WAR', + 'type' => 'municipality', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '32'; + $this->fractionalPart = '26615340'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '64'; + $this->fractionalPart = '80811980'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2020-07-22 22:26:00', + 'updated_at' => '2023-05-21 03:20:55', + 'flag' => true, + 'wikiDataId' => 'Q1468860', + ], + [ + 'id' => 866, + 'name' => 'Ontario', + 'country_id' => 39, + 'country_code' => 'CA', + 'fips_code' => '08', + 'iso2' => 'ON', + 'type' => 'province', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '51'; + $this->fractionalPart = '25377500'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '85'; + $this->fractionalPart = '32321400'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 06:18:39', + 'updated_at' => '2022-01-16 19:58:39', + 'flag' => true, + 'wikiDataId' => 'Q1904', + ], + [ + 'id' => 867, + 'name' => 'Manitoba', + 'country_id' => 39, + 'country_code' => 'CA', + 'fips_code' => '03', + 'iso2' => 'MB', + 'type' => 'province', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '53'; + $this->fractionalPart = '76086080'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '98'; + $this->fractionalPart = '81387620'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 06:18:39', + 'updated_at' => '2022-01-16 19:58:16', + 'flag' => true, + 'wikiDataId' => 'Q1948', + ], + [ + 'id' => 868, + 'name' => 'New Brunswick', + 'country_id' => 39, + 'country_code' => 'CA', + 'fips_code' => '04', + 'iso2' => 'NB', + 'type' => 'province', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '56531630'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '66'; + $this->fractionalPart = '46191640'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 06:18:39', + 'updated_at' => '2022-01-16 19:58:17', + 'flag' => true, + 'wikiDataId' => 'Q1965', + ], + [ + 'id' => 869, + 'name' => 'Yukon', + 'country_id' => 39, + 'country_code' => 'CA', + 'fips_code' => '12', + 'iso2' => 'YT', + 'type' => 'territory', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '35'; + $this->fractionalPart = '50672150'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '97'; + $this->fractionalPart = '76254410'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 06:18:39', + 'updated_at' => '2022-01-16 19:58:51', + 'flag' => true, + 'wikiDataId' => 'Q2009', + ], + [ + 'id' => 870, + 'name' => 'Saskatchewan', + 'country_id' => 39, + 'country_code' => 'CA', + 'fips_code' => '11', + 'iso2' => 'SK', + 'type' => 'province', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '52'; + $this->fractionalPart = '93991590'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '106'; + $this->fractionalPart = '45086390'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 06:18:39', + 'updated_at' => '2022-01-16 19:58:50', + 'flag' => true, + 'wikiDataId' => 'Q1989', + ], + [ + 'id' => 871, + 'name' => 'Prince Edward Island', + 'country_id' => 39, + 'country_code' => 'CA', + 'fips_code' => '09', + 'iso2' => 'PE', + 'type' => 'province', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '51071200'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '63'; + $this->fractionalPart = '41681360'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 06:18:39', + 'updated_at' => '2022-01-16 19:58:48', + 'flag' => true, + 'wikiDataId' => 'Q1979', + ], + [ + 'id' => 872, + 'name' => 'Alberta', + 'country_id' => 39, + 'country_code' => 'CA', + 'fips_code' => '01', + 'iso2' => 'AB', + 'type' => 'province', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '53'; + $this->fractionalPart = '93327060'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '116'; + $this->fractionalPart = '57650350'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 06:18:39', + 'updated_at' => '2022-01-16 19:58:09', + 'flag' => true, + 'wikiDataId' => 'Q1951', + ], + [ + 'id' => 873, + 'name' => 'Quebec', + 'country_id' => 39, + 'country_code' => 'CA', + 'fips_code' => '10', + 'iso2' => 'QC', + 'type' => 'province', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '52'; + $this->fractionalPart = '93991590'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '73'; + $this->fractionalPart = '54913610'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 06:18:39', + 'updated_at' => '2022-01-16 19:58:48', + 'flag' => true, + 'wikiDataId' => 'Q176', + ], + [ + 'id' => 874, + 'name' => 'Nova Scotia', + 'country_id' => 39, + 'country_code' => 'CA', + 'fips_code' => '07', + 'iso2' => 'NS', + 'type' => 'province', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '44'; + $this->fractionalPart = '68198660'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '63'; + $this->fractionalPart = '74431100'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 06:18:39', + 'updated_at' => '2022-01-16 19:58:28', + 'flag' => true, + 'wikiDataId' => 'Q1952', + ], + [ + 'id' => 875, + 'name' => 'British Columbia', + 'country_id' => 39, + 'country_code' => 'CA', + 'fips_code' => '02', + 'iso2' => 'BC', + 'type' => 'province', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '53'; + $this->fractionalPart = '72666830'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '127'; + $this->fractionalPart = '64762050'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 06:18:39', + 'updated_at' => '2022-01-16 19:58:15', + 'flag' => true, + 'wikiDataId' => 'Q1974', + ], + [ + 'id' => 876, + 'name' => 'Nunavut', + 'country_id' => 39, + 'country_code' => 'CA', + 'fips_code' => '14', + 'iso2' => 'NU', + 'type' => 'territory', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '70'; + $this->fractionalPart = '29977110'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '83'; + $this->fractionalPart = '10757700'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 06:18:39', + 'updated_at' => '2022-01-16 19:58:40', + 'flag' => true, + 'wikiDataId' => 'Q2023', + ], + [ + 'id' => 877, + 'name' => 'Newfoundland and Labrador', + 'country_id' => 39, + 'country_code' => 'CA', + 'fips_code' => '05', + 'iso2' => 'NL', + 'type' => 'province', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '53'; + $this->fractionalPart = '13550910'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '57'; + $this->fractionalPart = '66043640'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 06:18:39', + 'updated_at' => '2022-01-16 19:58:18', + 'flag' => true, + 'wikiDataId' => 'Q2003', + ], + [ + 'id' => 878, + 'name' => 'Northwest Territories', + 'country_id' => 39, + 'country_code' => 'CA', + 'fips_code' => '13', + 'iso2' => 'NT', + 'type' => 'territory', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '64'; + $this->fractionalPart = '82554410'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '124'; + $this->fractionalPart = '84573340'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 06:18:39', + 'updated_at' => '2022-01-16 19:58:27', + 'flag' => true, + 'wikiDataId' => 'Q2007', + ], + [ + 'id' => 1398, + 'name' => 'Howland Island', + 'country_id' => 233, + 'country_code' => 'US', + 'fips_code' => 'HQ', + 'iso2' => 'UM-84', + 'type' => 'islands / groups of islands', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '0'; + $this->fractionalPart = '81132190'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '176'; + $this->fractionalPart = '61827360'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 06:18:41', + 'updated_at' => '2022-03-13 23:01:27', + 'flag' => true, + 'wikiDataId' => 'Q131305', + ], + [ + 'id' => 1399, + 'name' => 'Delaware', + 'country_id' => 233, + 'country_code' => 'US', + 'fips_code' => '10', + 'iso2' => 'DE', + 'type' => 'state', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '91083250'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '75'; + $this->fractionalPart = '52766990'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 06:18:41', + 'updated_at' => '2022-03-13 22:59:55', + 'flag' => true, + 'wikiDataId' => 'Q1393', + ], + [ + 'id' => 1400, + 'name' => 'Alaska', + 'country_id' => 233, + 'country_code' => 'US', + 'fips_code' => '02', + 'iso2' => 'AK', + 'type' => 'state', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '64'; + $this->fractionalPart = '20084130'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '149'; + $this->fractionalPart = '49367330'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 06:18:41', + 'updated_at' => '2022-03-13 22:59:55', + 'flag' => true, + 'wikiDataId' => 'Q797', + ], + [ + 'id' => 1401, + 'name' => 'Maryland', + 'country_id' => 233, + 'country_code' => 'US', + 'fips_code' => '24', + 'iso2' => 'MD', + 'type' => 'state', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '04575490'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '76'; + $this->fractionalPart = '64127120'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 06:18:41', + 'updated_at' => '2022-03-13 22:59:55', + 'flag' => true, + 'wikiDataId' => 'Q1391', + ], + [ + 'id' => 1402, + 'name' => 'Baker Island', + 'country_id' => 233, + 'country_code' => 'US', + 'fips_code' => 'FQ', + 'iso2' => 'UM-81', + 'type' => 'islands / groups of islands', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '0'; + $this->fractionalPart = '19362660'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '176'; + $this->fractionalPart = '47690800'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 06:18:41', + 'updated_at' => '2022-03-13 23:01:27', + 'flag' => true, + 'wikiDataId' => 'Q46879', + ], + [ + 'id' => 1403, + 'name' => 'Kingman Reef', + 'country_id' => 233, + 'country_code' => 'US', + 'fips_code' => 'KQ', + 'iso2' => 'UM-89', + 'type' => 'islands / groups of islands', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '6'; + $this->fractionalPart = '38333300'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '162'; + $this->fractionalPart = '41666700'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 06:18:41', + 'updated_at' => '2022-03-13 23:01:27', + 'flag' => true, + 'wikiDataId' => 'Q130895', + ], + [ + 'id' => 1404, + 'name' => 'New Hampshire', + 'country_id' => 233, + 'country_code' => 'US', + 'fips_code' => '33', + 'iso2' => 'NH', + 'type' => 'state', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '43'; + $this->fractionalPart = '19385160'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '71'; + $this->fractionalPart = '57239530'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 06:18:41', + 'updated_at' => '2022-03-13 22:59:55', + 'flag' => true, + 'wikiDataId' => 'Q759', + ], + [ + 'id' => 1405, + 'name' => 'Wake Island', + 'country_id' => 233, + 'country_code' => 'US', + 'fips_code' => 'WQ', + 'iso2' => 'UM-79', + 'type' => 'islands / groups of islands', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '19'; + $this->fractionalPart = '27961900'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '166'; + $this->fractionalPart = '64993480'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 06:18:41', + 'updated_at' => '2022-03-13 23:01:27', + 'flag' => true, + 'wikiDataId' => 'Q43296', + ], + [ + 'id' => 1406, + 'name' => 'Kansas', + 'country_id' => 233, + 'country_code' => 'US', + 'fips_code' => '20', + 'iso2' => 'KS', + 'type' => 'state', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '01190200'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '98'; + $this->fractionalPart = '48424650'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 06:18:41', + 'updated_at' => '2022-03-13 22:59:55', + 'flag' => true, + 'wikiDataId' => 'Q1558', + ], + [ + 'id' => 1407, + 'name' => 'Texas', + 'country_id' => 233, + 'country_code' => 'US', + 'fips_code' => '48', + 'iso2' => 'TX', + 'type' => 'state', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '31'; + $this->fractionalPart = '96859880'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '99'; + $this->fractionalPart = '90181310'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 06:18:41', + 'updated_at' => '2022-03-13 22:59:55', + 'flag' => true, + 'wikiDataId' => 'Q1439', + ], + [ + 'id' => 1408, + 'name' => 'Nebraska', + 'country_id' => 233, + 'country_code' => 'US', + 'fips_code' => '31', + 'iso2' => 'NE', + 'type' => 'state', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '49253740'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '99'; + $this->fractionalPart = '90181310'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 06:18:41', + 'updated_at' => '2022-03-13 22:59:55', + 'flag' => true, + 'wikiDataId' => 'Q1553', + ], + [ + 'id' => 1409, + 'name' => 'Vermont', + 'country_id' => 233, + 'country_code' => 'US', + 'fips_code' => '50', + 'iso2' => 'VT', + 'type' => 'state', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '44'; + $this->fractionalPart = '55880280'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '72'; + $this->fractionalPart = '57784150'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 06:18:41', + 'updated_at' => '2022-03-13 22:59:55', + 'flag' => true, + 'wikiDataId' => 'Q16551', + ], + [ + 'id' => 1410, + 'name' => 'Jarvis Island', + 'country_id' => 233, + 'country_code' => 'US', + 'fips_code' => 'DQ', + 'iso2' => 'UM-86', + 'type' => 'islands / groups of islands', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '0'; + $this->fractionalPart = '37435030'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '159'; + $this->fractionalPart = '99672060'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 06:18:41', + 'updated_at' => '2022-03-13 23:01:27', + 'flag' => true, + 'wikiDataId' => 'Q62218', + ], + [ + 'id' => 1411, + 'name' => 'Hawaii', + 'country_id' => 233, + 'country_code' => 'US', + 'fips_code' => '15', + 'iso2' => 'HI', + 'type' => 'state', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '19'; + $this->fractionalPart = '89676620'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '155'; + $this->fractionalPart = '58278180'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 06:18:41', + 'updated_at' => '2022-03-13 22:59:55', + 'flag' => true, + 'wikiDataId' => 'Q782', + ], + [ + 'id' => 1412, + 'name' => 'Guam', + 'country_id' => 233, + 'country_code' => 'US', + 'fips_code' => 'GQ', + 'iso2' => 'GU', + 'type' => 'outlying area', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '13'; + $this->fractionalPart = '44430400'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '144'; + $this->fractionalPart = '79373100'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 06:18:41', + 'updated_at' => '2022-03-13 22:59:55', + 'flag' => true, + 'wikiDataId' => 'Q16635', + ], + [ + 'id' => 1413, + 'name' => 'United States Virgin Islands', + 'country_id' => 233, + 'country_code' => 'US', + 'fips_code' => 'VQ', + 'iso2' => 'VI', + 'type' => 'outlying area', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '18'; + $this->fractionalPart = '33576500'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '64'; + $this->fractionalPart = '89633500'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 06:18:41', + 'updated_at' => '2022-03-13 22:59:55', + 'flag' => true, + 'wikiDataId' => 'Q11703', + ], + [ + 'id' => 1414, + 'name' => 'Utah', + 'country_id' => 233, + 'country_code' => 'US', + 'fips_code' => '49', + 'iso2' => 'UT', + 'type' => 'state', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '32098010'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '111'; + $this->fractionalPart = '09373110'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 06:18:41', + 'updated_at' => '2022-03-13 22:59:55', + 'flag' => true, + 'wikiDataId' => 'Q829', + ], + [ + 'id' => 1415, + 'name' => 'Oregon', + 'country_id' => 233, + 'country_code' => 'US', + 'fips_code' => '41', + 'iso2' => 'OR', + 'type' => 'state', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '43'; + $this->fractionalPart = '80413340'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '55420120'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 06:18:41', + 'updated_at' => '2022-03-13 22:59:55', + 'flag' => true, + 'wikiDataId' => 'Q824', + ], + [ + 'id' => 1416, + 'name' => 'California', + 'country_id' => 233, + 'country_code' => 'US', + 'fips_code' => '06', + 'iso2' => 'CA', + 'type' => 'state', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '36'; + $this->fractionalPart = '77826100'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '119'; + $this->fractionalPart = '41793240'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 06:18:42', + 'updated_at' => '2022-03-13 22:59:55', + 'flag' => true, + 'wikiDataId' => 'Q99', + ], + [ + 'id' => 1417, + 'name' => 'New Jersey', + 'country_id' => 233, + 'country_code' => 'US', + 'fips_code' => '34', + 'iso2' => 'NJ', + 'type' => 'state', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '05832380'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '74'; + $this->fractionalPart = '40566120'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 06:18:42', + 'updated_at' => '2022-03-13 22:59:55', + 'flag' => true, + 'wikiDataId' => 'Q1408', + ], + [ + 'id' => 1418, + 'name' => 'North Dakota', + 'country_id' => 233, + 'country_code' => 'US', + 'fips_code' => '38', + 'iso2' => 'ND', + 'type' => 'state', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '55149260'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '101'; + $this->fractionalPart = '00201190'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 06:18:42', + 'updated_at' => '2022-03-13 22:59:55', + 'flag' => true, + 'wikiDataId' => 'Q1207', + ], + [ + 'id' => 1419, + 'name' => 'Kentucky', + 'country_id' => 233, + 'country_code' => 'US', + 'fips_code' => '21', + 'iso2' => 'KY', + 'type' => 'state', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '83933320'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '84'; + $this->fractionalPart = '27001790'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 06:18:42', + 'updated_at' => '2022-03-13 22:59:55', + 'flag' => true, + 'wikiDataId' => 'Q1603', + ], + [ + 'id' => 1420, + 'name' => 'Minnesota', + 'country_id' => 233, + 'country_code' => 'US', + 'fips_code' => '27', + 'iso2' => 'MN', + 'type' => 'state', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '72955300'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '94'; + $this->fractionalPart = '68589980'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 06:18:42', + 'updated_at' => '2022-03-13 22:59:55', + 'flag' => true, + 'wikiDataId' => 'Q1527', + ], + [ + 'id' => 1421, + 'name' => 'Oklahoma', + 'country_id' => 233, + 'country_code' => 'US', + 'fips_code' => '40', + 'iso2' => 'OK', + 'type' => 'state', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '35'; + $this->fractionalPart = '46756020'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '97'; + $this->fractionalPart = '51642760'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 06:18:42', + 'updated_at' => '2022-03-13 22:59:55', + 'flag' => true, + 'wikiDataId' => 'Q1649', + ], + [ + 'id' => 1422, + 'name' => 'Pennsylvania', + 'country_id' => 233, + 'country_code' => 'US', + 'fips_code' => '42', + 'iso2' => 'PA', + 'type' => 'state', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '20332160'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '77'; + $this->fractionalPart = '19452470'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 06:18:42', + 'updated_at' => '2022-03-13 22:59:55', + 'flag' => true, + 'wikiDataId' => 'Q1400', + ], + [ + 'id' => 1423, + 'name' => 'New Mexico', + 'country_id' => 233, + 'country_code' => 'US', + 'fips_code' => '35', + 'iso2' => 'NM', + 'type' => 'state', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '51994020'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '105'; + $this->fractionalPart = '87009010'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 06:18:42', + 'updated_at' => '2022-03-13 22:59:55', + 'flag' => true, + 'wikiDataId' => 'Q1522', + ], + [ + 'id' => 1424, + 'name' => 'American Samoa', + 'country_id' => 233, + 'country_code' => 'US', + 'fips_code' => 'AQ', + 'iso2' => 'AS', + 'type' => 'outlying area', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '14'; + $this->fractionalPart = '27097200'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '170'; + $this->fractionalPart = '13221700'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 06:18:42', + 'updated_at' => '2022-03-13 22:59:55', + 'flag' => true, + 'wikiDataId' => 'Q16641', + ], + [ + 'id' => 1425, + 'name' => 'Illinois', + 'country_id' => 233, + 'country_code' => 'US', + 'fips_code' => '17', + 'iso2' => 'IL', + 'type' => 'state', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '63312490'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '89'; + $this->fractionalPart = '39852830'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 06:18:42', + 'updated_at' => '2022-03-13 22:59:55', + 'flag' => true, + 'wikiDataId' => 'Q1204', + ], + [ + 'id' => 1426, + 'name' => 'Michigan', + 'country_id' => 233, + 'country_code' => 'US', + 'fips_code' => '26', + 'iso2' => 'MI', + 'type' => 'state', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '44'; + $this->fractionalPart = '31484430'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '85'; + $this->fractionalPart = '60236430'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 06:18:42', + 'updated_at' => '2022-03-13 22:59:55', + 'flag' => true, + 'wikiDataId' => 'Q1166', + ], + [ + 'id' => 1427, + 'name' => 'Virginia', + 'country_id' => 233, + 'country_code' => 'US', + 'fips_code' => '51', + 'iso2' => 'VA', + 'type' => 'state', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '43157340'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '78'; + $this->fractionalPart = '65689420'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 06:18:42', + 'updated_at' => '2022-03-13 22:59:55', + 'flag' => true, + 'wikiDataId' => 'Q1370', + ], + [ + 'id' => 1428, + 'name' => 'Johnston Atoll', + 'country_id' => 233, + 'country_code' => 'US', + 'fips_code' => 'JQ', + 'iso2' => 'UM-67', + 'type' => 'islands / groups of islands', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '16'; + $this->fractionalPart = '72950350'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '169'; + $this->fractionalPart = '53364770'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 06:18:42', + 'updated_at' => '2022-03-13 23:01:27', + 'flag' => true, + 'wikiDataId' => 'Q131008', + ], + [ + 'id' => 1429, + 'name' => 'West Virginia', + 'country_id' => 233, + 'country_code' => 'US', + 'fips_code' => '54', + 'iso2' => 'WV', + 'type' => 'state', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '59762620'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '80'; + $this->fractionalPart = '45490260'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 06:18:42', + 'updated_at' => '2022-03-13 22:59:55', + 'flag' => true, + 'wikiDataId' => 'Q1371', + ], + [ + 'id' => 1430, + 'name' => 'Mississippi', + 'country_id' => 233, + 'country_code' => 'US', + 'fips_code' => '28', + 'iso2' => 'MS', + 'type' => 'state', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '32'; + $this->fractionalPart = '35466790'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '89'; + $this->fractionalPart = '39852830'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 06:18:42', + 'updated_at' => '2022-03-13 22:59:55', + 'flag' => true, + 'wikiDataId' => 'Q1494', + ], + [ + 'id' => 1431, + 'name' => 'Northern Mariana Islands', + 'country_id' => 233, + 'country_code' => 'US', + 'fips_code' => 'CQ', + 'iso2' => 'MP', + 'type' => 'outlying area', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '15'; + $this->fractionalPart = '09790000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '145'; + $this->fractionalPart = '67390000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 06:18:42', + 'updated_at' => '2022-03-13 22:59:55', + 'flag' => true, + 'wikiDataId' => 'Q16644', + ], + [ + 'id' => 1432, + 'name' => 'United States Minor Outlying Islands', + 'country_id' => 233, + 'country_code' => 'US', + 'fips_code' => 'CQ', + 'iso2' => 'UM', + 'type' => 'outlying area', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '19'; + $this->fractionalPart = '28231920'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '166'; + $this->fractionalPart = '64704700'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 06:18:42', + 'updated_at' => '2022-03-13 22:59:55', + 'flag' => true, + 'wikiDataId' => 'Q16645', + ], + [ + 'id' => 1433, + 'name' => 'Massachusetts', + 'country_id' => 233, + 'country_code' => 'US', + 'fips_code' => '25', + 'iso2' => 'MA', + 'type' => 'state', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '42'; + $this->fractionalPart = '40721070'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '71'; + $this->fractionalPart = '38243740'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 06:18:42', + 'updated_at' => '2022-03-13 22:59:55', + 'flag' => true, + 'wikiDataId' => 'Q771', + ], + [ + 'id' => 1434, + 'name' => 'Arizona', + 'country_id' => 233, + 'country_code' => 'US', + 'fips_code' => '04', + 'iso2' => 'AZ', + 'type' => 'state', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '34'; + $this->fractionalPart = '04892810'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '111'; + $this->fractionalPart = '09373110'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 06:18:42', + 'updated_at' => '2022-03-13 22:59:55', + 'flag' => true, + 'wikiDataId' => 'Q816', + ], + [ + 'id' => 1435, + 'name' => 'Connecticut', + 'country_id' => 233, + 'country_code' => 'US', + 'fips_code' => '09', + 'iso2' => 'CT', + 'type' => 'state', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '60322070'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '73'; + $this->fractionalPart = '08774900'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 06:18:42', + 'updated_at' => '2022-03-13 22:59:55', + 'flag' => true, + 'wikiDataId' => 'Q779', + ], + [ + 'id' => 1436, + 'name' => 'Florida', + 'country_id' => 233, + 'country_code' => 'US', + 'fips_code' => '12', + 'iso2' => 'FL', + 'type' => 'state', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '27'; + $this->fractionalPart = '66482740'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '51575350'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 06:18:42', + 'updated_at' => '2022-03-13 22:59:55', + 'flag' => true, + 'wikiDataId' => 'Q812', + ], + [ + 'id' => 1437, + 'name' => 'District of Columbia', + 'country_id' => 233, + 'country_code' => 'US', + 'fips_code' => '11', + 'iso2' => 'DC', + 'type' => 'district', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '90719230'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '77'; + $this->fractionalPart = '03687070'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 06:18:42', + 'updated_at' => '2022-03-13 22:59:55', + 'flag' => true, + 'wikiDataId' => 'Q3551781', + ], + [ + 'id' => 1438, + 'name' => 'Midway Atoll', + 'country_id' => 233, + 'country_code' => 'US', + 'fips_code' => 'MQ', + 'iso2' => 'UM-71', + 'type' => 'islands / groups of islands', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '28'; + $this->fractionalPart = '20721680'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '177'; + $this->fractionalPart = '37349260'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 06:18:42', + 'updated_at' => '2022-03-13 23:01:27', + 'flag' => true, + 'wikiDataId' => 'Q47863', + ], + [ + 'id' => 1439, + 'name' => 'Navassa Island', + 'country_id' => 233, + 'country_code' => 'US', + 'fips_code' => 'BQ', + 'iso2' => 'UM-76', + 'type' => 'islands / groups of islands', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '18'; + $this->fractionalPart = '41006890'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '75'; + $this->fractionalPart = '01146120'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 06:18:42', + 'updated_at' => '2022-03-13 23:01:27', + 'flag' => true, + 'wikiDataId' => 'Q25359', + ], + [ + 'id' => 1440, + 'name' => 'Indiana', + 'country_id' => 233, + 'country_code' => 'US', + 'fips_code' => '18', + 'iso2' => 'IN', + 'type' => 'state', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '26719410'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '86'; + $this->fractionalPart = '13490190'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 06:18:42', + 'updated_at' => '2022-03-13 22:59:55', + 'flag' => true, + 'wikiDataId' => 'Q1415', + ], + [ + 'id' => 1441, + 'name' => 'Wisconsin', + 'country_id' => 233, + 'country_code' => 'US', + 'fips_code' => '55', + 'iso2' => 'WI', + 'type' => 'state', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '43'; + $this->fractionalPart = '78443970'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '88'; + $this->fractionalPart = '78786780'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 06:18:42', + 'updated_at' => '2022-03-13 22:59:55', + 'flag' => true, + 'wikiDataId' => 'Q1537', + ], + [ + 'id' => 1442, + 'name' => 'Wyoming', + 'country_id' => 233, + 'country_code' => 'US', + 'fips_code' => '56', + 'iso2' => 'WY', + 'type' => 'state', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '43'; + $this->fractionalPart = '07596780'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '107'; + $this->fractionalPart = '29028390'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 06:18:42', + 'updated_at' => '2022-03-13 22:59:55', + 'flag' => true, + 'wikiDataId' => 'Q1214', + ], + [ + 'id' => 1443, + 'name' => 'South Carolina', + 'country_id' => 233, + 'country_code' => 'US', + 'fips_code' => '45', + 'iso2' => 'SC', + 'type' => 'state', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '33'; + $this->fractionalPart = '83608100'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '81'; + $this->fractionalPart = '16372450'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 06:18:42', + 'updated_at' => '2022-03-13 22:59:55', + 'flag' => true, + 'wikiDataId' => 'Q1456', + ], + [ + 'id' => 1444, + 'name' => 'Arkansas', + 'country_id' => 233, + 'country_code' => 'US', + 'fips_code' => '05', + 'iso2' => 'AR', + 'type' => 'state', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '35'; + $this->fractionalPart = '20105000'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '91'; + $this->fractionalPart = '83183340'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 06:18:42', + 'updated_at' => '2022-03-13 22:59:55', + 'flag' => true, + 'wikiDataId' => 'Q1612', + ], + [ + 'id' => 1445, + 'name' => 'South Dakota', + 'country_id' => 233, + 'country_code' => 'US', + 'fips_code' => '46', + 'iso2' => 'SD', + 'type' => 'state', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '43'; + $this->fractionalPart = '96951480'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '99'; + $this->fractionalPart = '90181310'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 06:18:42', + 'updated_at' => '2022-03-13 22:59:55', + 'flag' => true, + 'wikiDataId' => 'Q1211', + ], + [ + 'id' => 1446, + 'name' => 'Montana', + 'country_id' => 233, + 'country_code' => 'US', + 'fips_code' => '30', + 'iso2' => 'MT', + 'type' => 'state', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '46'; + $this->fractionalPart = '87968220'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '110'; + $this->fractionalPart = '36256580'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 06:18:42', + 'updated_at' => '2022-03-13 22:59:55', + 'flag' => true, + 'wikiDataId' => 'Q1212', + ], + [ + 'id' => 1447, + 'name' => 'North Carolina', + 'country_id' => 233, + 'country_code' => 'US', + 'fips_code' => '37', + 'iso2' => 'NC', + 'type' => 'state', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '35'; + $this->fractionalPart = '75957310'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '79'; + $this->fractionalPart = '01929970'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 06:18:42', + 'updated_at' => '2022-03-13 22:59:55', + 'flag' => true, + 'wikiDataId' => 'Q1454', + ], + [ + 'id' => 1448, + 'name' => 'Palmyra Atoll', + 'country_id' => 233, + 'country_code' => 'US', + 'fips_code' => 'LQ', + 'iso2' => 'UM-95', + 'type' => 'islands / groups of islands', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '5'; + $this->fractionalPart = '88850260'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '162'; + $this->fractionalPart = '07866560'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 06:18:42', + 'updated_at' => '2022-03-13 23:01:27', + 'flag' => true, + 'wikiDataId' => 'Q123076', + ], + [ + 'id' => 1449, + 'name' => 'Puerto Rico', + 'country_id' => 233, + 'country_code' => 'US', + 'fips_code' => 'RQ', + 'iso2' => 'PR', + 'type' => 'outlying area', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '18'; + $this->fractionalPart = '22083300'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '66'; + $this->fractionalPart = '59014900'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 06:18:42', + 'updated_at' => '2022-03-13 22:59:55', + 'flag' => true, + 'wikiDataId' => 'Q1183', + ], + [ + 'id' => 1450, + 'name' => 'Colorado', + 'country_id' => 233, + 'country_code' => 'US', + 'fips_code' => '08', + 'iso2' => 'CO', + 'type' => 'state', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '39'; + $this->fractionalPart = '55005070'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '105'; + $this->fractionalPart = '78206740'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 06:18:42', + 'updated_at' => '2022-03-13 22:59:55', + 'flag' => true, + 'wikiDataId' => 'Q1261', + ], + [ + 'id' => 1451, + 'name' => 'Missouri', + 'country_id' => 233, + 'country_code' => 'US', + 'fips_code' => '29', + 'iso2' => 'MO', + 'type' => 'state', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '37'; + $this->fractionalPart = '96425290'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '91'; + $this->fractionalPart = '83183340'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 06:18:42', + 'updated_at' => '2022-03-13 22:59:55', + 'flag' => true, + 'wikiDataId' => 'Q1581', + ], + [ + 'id' => 1452, + 'name' => 'New York', + 'country_id' => 233, + 'country_code' => 'US', + 'fips_code' => '36', + 'iso2' => 'NY', + 'type' => 'state', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '71277530'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '74'; + $this->fractionalPart = '00597280'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 06:18:42', + 'updated_at' => '2022-03-13 22:59:55', + 'flag' => true, + 'wikiDataId' => 'Q1384', + ], + [ + 'id' => 1453, + 'name' => 'Maine', + 'country_id' => 233, + 'country_code' => 'US', + 'fips_code' => '23', + 'iso2' => 'ME', + 'type' => 'state', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '45'; + $this->fractionalPart = '25378300'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '69'; + $this->fractionalPart = '44546890'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 06:18:42', + 'updated_at' => '2022-03-13 22:59:55', + 'flag' => true, + 'wikiDataId' => 'Q724', + ], + [ + 'id' => 1454, + 'name' => 'Tennessee', + 'country_id' => 233, + 'country_code' => 'US', + 'fips_code' => '47', + 'iso2' => 'TN', + 'type' => 'state', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '35'; + $this->fractionalPart = '51749130'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '86'; + $this->fractionalPart = '58044730'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 06:18:42', + 'updated_at' => '2022-03-13 22:59:55', + 'flag' => true, + 'wikiDataId' => 'Q1509', + ], + [ + 'id' => 1455, + 'name' => 'Georgia', + 'country_id' => 233, + 'country_code' => 'US', + 'fips_code' => '13', + 'iso2' => 'GA', + 'type' => 'state', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '32'; + $this->fractionalPart = '16562210'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '82'; + $this->fractionalPart = '90007510'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 06:18:42', + 'updated_at' => '2022-03-13 22:59:55', + 'flag' => true, + 'wikiDataId' => 'Q1428', + ], + [ + 'id' => 1456, + 'name' => 'Alabama', + 'country_id' => 233, + 'country_code' => 'US', + 'fips_code' => '01', + 'iso2' => 'AL', + 'type' => 'state', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '32'; + $this->fractionalPart = '31823140'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '86'; + $this->fractionalPart = '90229800'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 06:18:42', + 'updated_at' => '2022-03-13 22:59:55', + 'flag' => true, + 'wikiDataId' => 'Q173', + ], + [ + 'id' => 1457, + 'name' => 'Louisiana', + 'country_id' => 233, + 'country_code' => 'US', + 'fips_code' => '22', + 'iso2' => 'LA', + 'type' => 'state', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '30'; + $this->fractionalPart = '98429770'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '91'; + $this->fractionalPart = '96233270'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 06:18:42', + 'updated_at' => '2022-03-13 22:59:55', + 'flag' => true, + 'wikiDataId' => 'Q1588', + ], + [ + 'id' => 1458, + 'name' => 'Nevada', + 'country_id' => 233, + 'country_code' => 'US', + 'fips_code' => '32', + 'iso2' => 'NV', + 'type' => 'state', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '38'; + $this->fractionalPart = '80260970'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '116'; + $this->fractionalPart = '41938900'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 06:18:42', + 'updated_at' => '2022-03-13 22:59:55', + 'flag' => true, + 'wikiDataId' => 'Q1227', + ], + [ + 'id' => 1459, + 'name' => 'Iowa', + 'country_id' => 233, + 'country_code' => 'US', + 'fips_code' => '19', + 'iso2' => 'IA', + 'type' => 'state', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '87800250'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '93'; + $this->fractionalPart = '09770200'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 06:18:42', + 'updated_at' => '2022-03-13 22:59:55', + 'flag' => true, + 'wikiDataId' => 'Q1546', + ], + [ + 'id' => 1460, + 'name' => 'Idaho', + 'country_id' => 233, + 'country_code' => 'US', + 'fips_code' => '16', + 'iso2' => 'ID', + 'type' => 'state', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '44'; + $this->fractionalPart = '06820190'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '114'; + $this->fractionalPart = '74204080'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 06:18:42', + 'updated_at' => '2022-03-13 22:59:55', + 'flag' => true, + 'wikiDataId' => 'Q1221', + ], + [ + 'id' => 1461, + 'name' => 'Rhode Island', + 'country_id' => 233, + 'country_code' => 'US', + 'fips_code' => '44', + 'iso2' => 'RI', + 'type' => 'state', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '41'; + $this->fractionalPart = '58009450'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '71'; + $this->fractionalPart = '47742910'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 06:18:42', + 'updated_at' => '2022-03-13 22:59:55', + 'flag' => true, + 'wikiDataId' => 'Q1387', + ], + [ + 'id' => 1462, + 'name' => 'Washington', + 'country_id' => 233, + 'country_code' => 'US', + 'fips_code' => '53', + 'iso2' => 'WA', + 'type' => 'state', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '47'; + $this->fractionalPart = '75107410'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '120'; + $this->fractionalPart = '74013850'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-10-06 06:18:42', + 'updated_at' => '2022-03-13 22:59:55', + 'flag' => true, + 'wikiDataId' => 'Q1223', + ], + [ + 'id' => 4851, + 'name' => 'Ohio', + 'country_id' => 233, + 'country_code' => 'US', + 'fips_code' => '39', + 'iso2' => 'OH', + 'type' => 'state', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '40'; + $this->fractionalPart = '41728710'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '82'; + $this->fractionalPart = '90712300'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2019-11-13 13:30:00', + 'updated_at' => '2022-03-13 22:59:55', + 'flag' => true, + 'wikiDataId' => 'Q1397', + ], + [ + 'id' => 5212, + 'name' => 'Baker Island', + 'country_id' => 234, + 'country_code' => 'UM', + 'fips_code' => null, + 'iso2' => '81', + 'type' => 'island', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '0'; + $this->fractionalPart = '19362660'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '176'; + $this->fractionalPart = '47690800'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2023-03-26 03:08:55', + 'updated_at' => '2023-03-26 03:08:55', + 'flag' => true, + 'wikiDataId' => 'Q46879', + ], + [ + 'id' => 5213, + 'name' => 'Howland Island', + 'country_id' => 234, + 'country_code' => 'UM', + 'fips_code' => null, + 'iso2' => '84', + 'type' => 'island', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '0'; + $this->fractionalPart = '81132190'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '176'; + $this->fractionalPart = '61827360'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2023-03-26 03:08:55', + 'updated_at' => '2023-03-26 03:08:55', + 'flag' => true, + 'wikiDataId' => 'Q131305', + ], + [ + 'id' => 5214, + 'name' => 'Jarvis Island', + 'country_id' => 234, + 'country_code' => 'UM', + 'fips_code' => null, + 'iso2' => '86', + 'type' => 'island', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '0'; + $this->fractionalPart = '37435030'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '159'; + $this->fractionalPart = '99672060'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2023-03-26 03:08:55', + 'updated_at' => '2023-03-26 03:08:55', + 'flag' => true, + 'wikiDataId' => 'Q62218', + ], + [ + 'id' => 5215, + 'name' => 'Johnston Atoll', + 'country_id' => 234, + 'country_code' => 'UM', + 'fips_code' => null, + 'iso2' => '67', + 'type' => 'island', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '16'; + $this->fractionalPart = '72950350'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '169'; + $this->fractionalPart = '53364770'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2023-03-26 03:08:55', + 'updated_at' => '2023-03-26 03:08:55', + 'flag' => true, + 'wikiDataId' => 'Q131008', + ], + [ + 'id' => 5216, + 'name' => 'Kingman Reef', + 'country_id' => 234, + 'country_code' => 'UM', + 'fips_code' => null, + 'iso2' => '89', + 'type' => 'island', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '6'; + $this->fractionalPart = '38333300'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '162'; + $this->fractionalPart = '41666700'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2023-03-26 03:08:55', + 'updated_at' => '2023-03-26 03:08:55', + 'flag' => true, + 'wikiDataId' => 'Q130895', + ], + [ + 'id' => 5217, + 'name' => 'Midway Islands', + 'country_id' => 234, + 'country_code' => 'UM', + 'fips_code' => null, + 'iso2' => '71', + 'type' => 'island', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '28'; + $this->fractionalPart = '20721680'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '177'; + $this->fractionalPart = '37349260'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2023-03-26 03:08:55', + 'updated_at' => '2023-03-26 03:08:55', + 'flag' => true, + 'wikiDataId' => 'Q47863', + ], + [ + 'id' => 5218, + 'name' => 'Navassa Island', + 'country_id' => 234, + 'country_code' => 'UM', + 'fips_code' => null, + 'iso2' => '76', + 'type' => 'island', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '18'; + $this->fractionalPart = '41006890'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '75'; + $this->fractionalPart = '01146120'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2023-03-26 03:08:55', + 'updated_at' => '2023-03-26 03:08:55', + 'flag' => true, + 'wikiDataId' => 'Q25359', + ], + [ + 'id' => 5219, + 'name' => 'Palmyra Atoll', + 'country_id' => 234, + 'country_code' => 'UM', + 'fips_code' => null, + 'iso2' => '95', + 'type' => 'island', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '5'; + $this->fractionalPart = '88850260'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '162'; + $this->fractionalPart = '07866560'; + $this->negative = true; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2023-03-26 03:08:55', + 'updated_at' => '2023-03-26 03:08:55', + 'flag' => true, + 'wikiDataId' => 'Q123076', + ], + [ + 'id' => 5220, + 'name' => 'Wake Island', + 'country_id' => 234, + 'country_code' => 'UM', + 'fips_code' => null, + 'iso2' => '79', + 'type' => 'island', + 'latitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '19'; + $this->fractionalPart = '27961900'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'longitude' => (static function() { + $class = new \ReflectionClass(Decimal::class); + $object = $class->newInstanceWithoutConstructor(); + + (function() { + $this->integralPart = '166'; + $this->fractionalPart = '64993480'; + $this->negative = false; + $this->scale = 8; + })->bindTo($object, Decimal::class)(); + + return $object; + })(), + 'created_at' => '2023-03-26 03:08:55', + 'updated_at' => '2023-03-26 03:08:55', + 'flag' => true, + 'wikiDataId' => 'Q43296', + ], + ]; + parent::init(); + } +} diff --git a/tests/Fixture/SubregionsFixture.php b/tests/Fixture/SubregionsFixture.php new file mode 100644 index 0000000..0f6e892 --- /dev/null +++ b/tests/Fixture/SubregionsFixture.php @@ -0,0 +1,244 @@ +records = [ + [ + 'id' => 1, + 'name' => 'Northern Africa', + 'translations' => '{"korean":"북아프리카","portuguese":"Norte de África","dutch":"Noord-Afrika","croatian":"Sjeverna Afrika","persian":"شمال آفریقا","german":"Nordafrika","spanish":"Norte de África","french":"Afrique du Nord","japanese":"北アフリカ","italian":"Nordafrica","chinese":"北部非洲"}', + 'region_id' => 1, + 'created_at' => '2023-08-14 14:11:03', + 'updated_at' => '2023-08-25 03:10:23', + 'flag' => true, + 'wikiDataId' => 'Q27381', + ], + [ + 'id' => 2, + 'name' => 'Middle Africa', + 'translations' => '{"korean":"중앙아프리카","portuguese":"África Central","dutch":"Centraal-Afrika","croatian":"Srednja Afrika","persian":"مرکز آفریقا","german":"Zentralafrika","spanish":"África Central","french":"Afrique centrale","japanese":"中部アフリカ","italian":"Africa centrale","chinese":"中部非洲"}', + 'region_id' => 1, + 'created_at' => '2023-08-14 14:11:03', + 'updated_at' => '2023-08-25 03:22:09', + 'flag' => true, + 'wikiDataId' => 'Q27433', + ], + [ + 'id' => 3, + 'name' => 'Western Africa', + 'translations' => '{"korean":"서아프리카","portuguese":"África Ocidental","dutch":"West-Afrika","croatian":"Zapadna Afrika","persian":"غرب آفریقا","german":"Westafrika","spanish":"África Occidental","french":"Afrique de l\'Ouest","japanese":"西アフリカ","italian":"Africa occidentale","chinese":"西非"}', + 'region_id' => 1, + 'created_at' => '2023-08-14 14:11:03', + 'updated_at' => '2023-08-25 03:22:09', + 'flag' => true, + 'wikiDataId' => 'Q4412', + ], + [ + 'id' => 4, + 'name' => 'Eastern Africa', + 'translations' => '{"korean":"동아프리카","portuguese":"África Oriental","dutch":"Oost-Afrika","croatian":"Istočna Afrika","persian":"شرق آفریقا","german":"Ostafrika","spanish":"África Oriental","french":"Afrique de l\'Est","japanese":"東アフリカ","italian":"Africa orientale","chinese":"东部非洲"}', + 'region_id' => 1, + 'created_at' => '2023-08-14 14:11:03', + 'updated_at' => '2023-08-25 03:22:10', + 'flag' => true, + 'wikiDataId' => 'Q27407', + ], + [ + 'id' => 5, + 'name' => 'Southern Africa', + 'translations' => '{"korean":"남아프리카","portuguese":"África Austral","dutch":"Zuidelijk Afrika","croatian":"Južna Afrika","persian":"جنوب آفریقا","german":"Südafrika","spanish":"África austral","french":"Afrique australe","japanese":"南部アフリカ","italian":"Africa australe","chinese":"南部非洲"}', + 'region_id' => 1, + 'created_at' => '2023-08-14 14:11:03', + 'updated_at' => '2023-08-25 03:22:10', + 'flag' => true, + 'wikiDataId' => 'Q27394', + ], + [ + 'id' => 6, + 'name' => 'Northern America', + 'translations' => '{"korean":"북미","portuguese":"América Setentrional","dutch":"Noord-Amerika","persian":"شمال آمریکا","german":"Nordamerika","spanish":"América Norteña","french":"Amérique septentrionale","japanese":"北部アメリカ","italian":"America settentrionale","chinese":"北美地區"}', + 'region_id' => 2, + 'created_at' => '2023-08-14 14:11:03', + 'updated_at' => '2023-08-25 03:22:10', + 'flag' => true, + 'wikiDataId' => 'Q2017699', + ], + [ + 'id' => 7, + 'name' => 'Caribbean', + 'translations' => '{"korean":"카리브","portuguese":"Caraíbas","dutch":"Caraïben","croatian":"Karibi","persian":"کارائیب","german":"Karibik","spanish":"Caribe","french":"Caraïbes","japanese":"カリブ海地域","italian":"Caraibi","chinese":"加勒比地区"}', + 'region_id' => 2, + 'created_at' => '2023-08-14 14:11:03', + 'updated_at' => '2023-08-25 03:22:10', + 'flag' => true, + 'wikiDataId' => 'Q664609', + ], + [ + 'id' => 8, + 'name' => 'South America', + 'translations' => '{"korean":"남아메리카","portuguese":"América do Sul","dutch":"Zuid-Amerika","croatian":"Južna Amerika","persian":"آمریکای جنوبی","german":"Südamerika","spanish":"América del Sur","french":"Amérique du Sud","japanese":"南アメリカ","italian":"America meridionale","chinese":"南美洲"}', + 'region_id' => 2, + 'created_at' => '2023-08-14 14:11:03', + 'updated_at' => '2023-08-25 03:22:10', + 'flag' => true, + 'wikiDataId' => 'Q18', + ], + [ + 'id' => 9, + 'name' => 'Central America', + 'translations' => '{"korean":"중앙아메리카","portuguese":"América Central","dutch":"Centraal-Amerika","croatian":"Srednja Amerika","persian":"آمریکای مرکزی","german":"Zentralamerika","spanish":"América Central","french":"Amérique centrale","japanese":"中央アメリカ","italian":"America centrale","chinese":"中美洲"}', + 'region_id' => 2, + 'created_at' => '2023-08-14 14:11:03', + 'updated_at' => '2023-08-25 03:22:11', + 'flag' => true, + 'wikiDataId' => 'Q27611', + ], + [ + 'id' => 10, + 'name' => 'Central Asia', + 'translations' => '{"korean":"중앙아시아","portuguese":"Ásia Central","dutch":"Centraal-Azië","croatian":"Srednja Azija","persian":"آسیای میانه","german":"Zentralasien","spanish":"Asia Central","french":"Asie centrale","japanese":"中央アジア","italian":"Asia centrale","chinese":"中亚"}', + 'region_id' => 3, + 'created_at' => '2023-08-14 14:11:03', + 'updated_at' => '2023-08-25 03:22:11', + 'flag' => true, + 'wikiDataId' => 'Q27275', + ], + [ + 'id' => 11, + 'name' => 'Western Asia', + 'translations' => '{"korean":"서아시아","portuguese":"Sudoeste Asiático","dutch":"Zuidwest-Azië","croatian":"Jugozapadna Azija","persian":"غرب آسیا","german":"Vorderasien","spanish":"Asia Occidental","french":"Asie de l\'Ouest","japanese":"西アジア","italian":"Asia occidentale","chinese":"西亚"}', + 'region_id' => 3, + 'created_at' => '2023-08-14 14:11:03', + 'updated_at' => '2023-08-25 03:22:11', + 'flag' => true, + 'wikiDataId' => 'Q27293', + ], + [ + 'id' => 12, + 'name' => 'Eastern Asia', + 'translations' => '{"korean":"동아시아","portuguese":"Ásia Oriental","dutch":"Oost-Azië","croatian":"Istočna Azija","persian":"شرق آسیا","german":"Ostasien","spanish":"Asia Oriental","french":"Asie de l\'Est","japanese":"東アジア","italian":"Asia orientale","chinese":"東亞"}', + 'region_id' => 3, + 'created_at' => '2023-08-14 14:11:03', + 'updated_at' => '2023-08-25 03:22:11', + 'flag' => true, + 'wikiDataId' => 'Q27231', + ], + [ + 'id' => 13, + 'name' => 'South-Eastern Asia', + 'translations' => '{"korean":"동남아시아","portuguese":"Sudeste Asiático","dutch":"Zuidoost-Azië","croatian":"Jugoistočna Azija","persian":"جنوب شرق آسیا","german":"Südostasien","spanish":"Sudeste Asiático","french":"Asie du Sud-Est","japanese":"東南アジア","italian":"Sud-est asiatico","chinese":"东南亚"}', + 'region_id' => 3, + 'created_at' => '2023-08-14 14:11:03', + 'updated_at' => '2023-08-25 03:22:12', + 'flag' => true, + 'wikiDataId' => 'Q11708', + ], + [ + 'id' => 14, + 'name' => 'Southern Asia', + 'translations' => '{"korean":"남아시아","portuguese":"Ásia Meridional","dutch":"Zuid-Azië","croatian":"Južna Azija","persian":"جنوب آسیا","german":"Südasien","spanish":"Asia del Sur","french":"Asie du Sud","japanese":"南アジア","italian":"Asia meridionale","chinese":"南亚"}', + 'region_id' => 3, + 'created_at' => '2023-08-14 14:11:03', + 'updated_at' => '2023-08-25 03:22:12', + 'flag' => true, + 'wikiDataId' => 'Q771405', + ], + [ + 'id' => 15, + 'name' => 'Eastern Europe', + 'translations' => '{"korean":"동유럽","portuguese":"Europa de Leste","dutch":"Oost-Europa","croatian":"Istočna Europa","persian":"شرق اروپا","german":"Osteuropa","spanish":"Europa Oriental","french":"Europe de l\'Est","japanese":"東ヨーロッパ","italian":"Europa orientale","chinese":"东欧"}', + 'region_id' => 4, + 'created_at' => '2023-08-14 14:11:03', + 'updated_at' => '2023-08-25 03:22:12', + 'flag' => true, + 'wikiDataId' => 'Q27468', + ], + [ + 'id' => 16, + 'name' => 'Southern Europe', + 'translations' => '{"korean":"남유럽","portuguese":"Europa meridional","dutch":"Zuid-Europa","croatian":"Južna Europa","persian":"جنوب اروپا","german":"Südeuropa","spanish":"Europa del Sur","french":"Europe du Sud","japanese":"南ヨーロッパ","italian":"Europa meridionale","chinese":"南欧"}', + 'region_id' => 4, + 'created_at' => '2023-08-14 14:11:03', + 'updated_at' => '2023-08-25 03:22:12', + 'flag' => true, + 'wikiDataId' => 'Q27449', + ], + [ + 'id' => 17, + 'name' => 'Western Europe', + 'translations' => '{"korean":"서유럽","portuguese":"Europa Ocidental","dutch":"West-Europa","croatian":"Zapadna Europa","persian":"غرب اروپا","german":"Westeuropa","spanish":"Europa Occidental","french":"Europe de l\'Ouest","japanese":"西ヨーロッパ","italian":"Europa occidentale","chinese":"西欧"}', + 'region_id' => 4, + 'created_at' => '2023-08-14 14:11:03', + 'updated_at' => '2023-08-25 03:22:12', + 'flag' => true, + 'wikiDataId' => 'Q27496', + ], + [ + 'id' => 18, + 'name' => 'Northern Europe', + 'translations' => '{"korean":"북유럽","portuguese":"Europa Setentrional","dutch":"Noord-Europa","croatian":"Sjeverna Europa","persian":"شمال اروپا","german":"Nordeuropa","spanish":"Europa del Norte","french":"Europe du Nord","japanese":"北ヨーロッパ","italian":"Europa settentrionale","chinese":"北歐"}', + 'region_id' => 4, + 'created_at' => '2023-08-14 14:11:03', + 'updated_at' => '2023-08-25 03:22:13', + 'flag' => true, + 'wikiDataId' => 'Q27479', + ], + [ + 'id' => 19, + 'name' => 'Australia and New Zealand', + 'translations' => '{"korean":"오스트랄라시아","portuguese":"Australásia","dutch":"Australazië","croatian":"Australazija","persian":"استرالزی","german":"Australasien","spanish":"Australasia","french":"Australasie","japanese":"オーストララシア","italian":"Australasia","chinese":"澳大拉西亞"}', + 'region_id' => 5, + 'created_at' => '2023-08-14 14:11:03', + 'updated_at' => '2023-08-25 03:22:13', + 'flag' => true, + 'wikiDataId' => 'Q45256', + ], + [ + 'id' => 20, + 'name' => 'Melanesia', + 'translations' => '{"korean":"멜라네시아","portuguese":"Melanésia","dutch":"Melanesië","croatian":"Melanezija","persian":"ملانزی","german":"Melanesien","spanish":"Melanesia","french":"Mélanésie","japanese":"メラネシア","italian":"Melanesia","chinese":"美拉尼西亚"}', + 'region_id' => 5, + 'created_at' => '2023-08-14 14:11:03', + 'updated_at' => '2023-08-25 03:22:13', + 'flag' => true, + 'wikiDataId' => 'Q37394', + ], + [ + 'id' => 21, + 'name' => 'Micronesia', + 'translations' => '{"korean":"미크로네시아","portuguese":"Micronésia","dutch":"Micronesië","croatian":"Mikronezija","persian":"میکرونزی","german":"Mikronesien","spanish":"Micronesia","french":"Micronésie","japanese":"ミクロネシア","italian":"Micronesia","chinese":"密克罗尼西亚群岛"}', + 'region_id' => 5, + 'created_at' => '2023-08-14 14:11:03', + 'updated_at' => '2023-08-25 03:22:13', + 'flag' => true, + 'wikiDataId' => 'Q3359409', + ], + [ + 'id' => 22, + 'name' => 'Polynesia', + 'translations' => '{"korean":"폴리네시아","portuguese":"Polinésia","dutch":"Polynesië","croatian":"Polinezija","persian":"پلی‌نزی","german":"Polynesien","spanish":"Polinesia","french":"Polynésie","japanese":"ポリネシア","italian":"Polinesia","chinese":"玻里尼西亞"}', + 'region_id' => 5, + 'created_at' => '2023-08-14 14:11:03', + 'updated_at' => '2023-08-25 03:22:13', + 'flag' => true, + 'wikiDataId' => 'Q35942', + ], + ]; + parent::init(); + } +} diff --git a/tests/TestCase/Controller/AddressesControllerTest.php b/tests/TestCase/Controller/AddressesControllerTest.php new file mode 100644 index 0000000..819c694 --- /dev/null +++ b/tests/TestCase/Controller/AddressesControllerTest.php @@ -0,0 +1,481 @@ + + */ + protected array $fixtures = [ + 'plugin.CakeAddresses.Addresses', +// 'plugin.CakeAddresses.Cities', + 'plugin.CakeAddresses.Countries', +// 'plugin.CakeAddresses.Regions', + 'plugin.CakeAddresses.States', +// 'plugin.CakeAddresses.Subregions', + ]; + + /** + * setUp method + * + * @return void + */ + protected function setUp(): void + { + parent::setUp(); + $this->Addresses = $this->getTableLocator()->get('CakeAddresses.Addresses'); + $this->enableCsrfToken(); + } + + /** + * tearDown method + * + * @return void + */ + protected function tearDown(): void + { + unset($this->Addresses); + + parent::tearDown(); + } + + /** + * Test index method + * + * Tests the index action with an unauthenticated user (not logged in) + * + * @uses \CakeAddresses\Controller\AddressesController::index() + * @throws Exception + * + * @return void + */ + public function testIndexGetUnauthenticated(): void + { + $url = [ + 'plugin' => 'CakeAddresses', + 'controller' => 'Addresses', + 'action' => 'index', + ]; + $this->get($url); + $this->assertResponseCode(302); + $this->assertRedirectContains('login'); + } + + /** + * Test index method + * + * Tests the index action with a logged in user + * + * @uses \CakeAddresses\Controller\AddressesController::index() + * @throws Exception + * + * @return void + */ + public function testIndexGetLoggedIn(): void + { + $this->loginUserByRole(); + $url = [ + 'plugin' => 'CakeAddresses', + 'controller' => 'Addresses', + 'action' => 'index', + ]; + $this->get($url); + $this->assertResponseCode(200); + } + + /** + * Test view method + * + * Tests the view action with an unauthenticated user (not logged in) + * + * @uses \CakeAddresses\Controller\AddressesController::view() + * @throws Exception + * + * @return void + */ + public function testViewGetUnauthenticated(): void + { + $id = 1; + $url = [ + 'plugin' => 'CakeAddresses', + 'controller' => 'Addresses', + 'action' => 'view', + $id, + ]; + $this->get($url); + $this->assertResponseCode(302); + $this->assertRedirectContains('login'); + } + + /** + * Test view method + * + * Tests the view action with a logged in user + * + * @uses \CakeAddresses\Controller\AddressesController::view() + * @throws Exception + * + * @return void + */ + public function testViewGetLoggedIn(): void + { + $id = 1; + $this->loginUserByRole(); + $url = [ + 'plugin' => 'CakeAddresses', + 'controller' => 'Addresses', + 'action' => 'view', + $id, + ]; + $this->get($url); + $this->assertResponseCode(200); + } + + /** + * Test add method + * + * Tests the add action with an unauthenticated user (not logged in) + * + * @uses \CakeAddresses\Controller\AddressesController::add() + * @throws Exception + * + * @return void + */ + public function testAddGetUnauthenticated(): void + { + $cntBefore = $this->Addresses->find()->count(); + $url = [ + 'plugin' => 'CakeAddresses', + 'controller' => 'Addresses', + 'action' => 'add', + ]; + $this->get($url); + $this->assertResponseCode(302); + $this->assertRedirectContains('login'); + + $cntAfter = $this->Addresses->find()->count(); + $this->assertEquals($cntBefore, $cntAfter); + } + + /** + * Test add method + * + * Tests the add action with a logged in user + * + * @uses \CakeAddresses\Controller\AddressesController::add() + * @throws Exception + * + * @return void + */ + public function testAddGetLoggedIn(): void + { + $cntBefore = $this->Addresses->find()->count(); + + $this->loginUserByRole(); + $url = [ + 'plugin' => 'CakeAddresses', + 'controller' => 'Addresses', + 'action' => 'add', + ]; + $this->get($url); + $this->assertResponseCode(200); + + $cntAfter = $this->Addresses->find()->count(); + $this->assertEquals($cntBefore, $cntAfter); + } + + /** + * Test add method + * + * Tests a POST request to the add action with a logged in user + * + * @uses \CakeAddresses\Controller\AddressesController::add() + * @throws Exception + * + * @return void + */ + public function testAddPostLoggedInSuccess(): void + { + $cntBefore = $this->Addresses->find()->count(); + + $this->loginUserByRole(); + $url = [ + 'plugin' => 'CakeAddresses', + 'controller' => 'Addresses', + 'action' => 'add', + ]; + $data = [ + 'address_name' => 'new address', + 'contact_name' => 'john doe', + 'address_line1' => '123 Test ST', + 'address_line2' => '', + 'city' => 'Seattle', + 'city_id' => '', + 'state_id' => 1462, + 'postal_code' => '98056', + 'country_id' => 233, + 'phone_number' => '', + 'email' => '', + 'notes' => '', + ]; + $this->post($url, $data); + $this->assertResponseCode(302); + $this->assertRedirectContains('addresses'); + + $cntAfter = $this->Addresses->find()->count(); + $this->assertEquals($cntBefore + 1, $cntAfter); + } + + /** + * Test add method + * + * Tests a POST request to the add action with a logged in user + * + * @uses \CakeAddresses\Controller\AddressesController::add() + * @throws Exception + * + * @return void + */ + public function testAddPostLoggedInFailure(): void + { + $cntBefore = $this->Addresses->find()->count(); + + $this->loginUserByRole(); + $url = [ + 'plugin' => 'CakeAddresses', + 'controller' => 'Addresses', + 'action' => 'add', + ]; + $data = [ + 'address_name' => '', + 'contact_name' => '', + 'address_line1' => '', + 'address_line2' => '', + 'city' => 'Seattle', + 'city_id' => '', + 'state_id' => 1462, + 'postal_code' => '98056', + 'country_id' => 233, + 'phone_number' => '', + 'email' => '', + 'notes' => '', + ]; + $this->post($url, $data); + $this->assertResponseCode(200); + + $cntAfter = $this->Addresses->find()->count(); + $this->assertEquals($cntBefore, $cntAfter); + } + + /** + * Test edit method + * + * Tests the edit action with an unauthenticated user (not logged in) + * + * @uses \CakeAddresses\Controller\AddressesController::edit() + * @throws Exception + * + * @return void + */ + public function testEditGetUnauthenticated(): void + { + $id = 1; + $url = [ + 'plugin' => 'CakeAddresses', + 'controller' => 'Addresses', + 'action' => 'edit', + $id, + ]; + $this->get($url); + $this->assertResponseCode(302); + $this->assertRedirectContains('login'); + } + + /** + * Test edit method + * + * Tests the edit action with a logged in user + * + * @uses \CakeAddresses\Controller\AddressesController::edit() + * @throws Exception + * + * @return void + */ + public function testEditGetLoggedIn(): void + { + $id = 1; + $this->loginUserByRole(); + $url = [ + 'plugin' => 'CakeAddresses', + 'controller' => 'Addresses', + 'action' => 'edit', + $id, + ]; + $this->get($url); + $this->assertResponseCode(200); + } + + /** + * Test edit method + * + * Tests a PUT request to the edit action with a logged in user + * + * @uses \CakeAddresses\Controller\AddressesController::edit() + * @throws Exception + * + * @return void + */ + public function testEditPutLoggedInSuccess(): void + { + $this->loginUserByRole(); + $id = 1; + $before = $this->Addresses->get($id); + $url = [ + 'plugin' => 'CakeAddresses', + 'controller' => 'Addresses', + 'action' => 'edit', + $id, + ]; + $data = [ + // test new data here + 'address_name' => 'new address', + 'contact_name' => 'john doe', + 'address_line1' => '123 Test ST', + 'address_line2' => '', + 'city' => 'Seattle', + 'city_id' => '', + 'state_id' => 1462, + 'postal_code' => '98056', + 'country_id' => 233, + 'phone_number' => '', + 'email' => '', + 'notes' => '', + ]; + $this->put($url, $data); + + $this->assertResponseCode(302); + $this->assertRedirectContains('addresses'); + + $after = $this->Addresses->get($id); + // assert saved properly below + } + + /** + * Test edit method + * + * Tests a PUT request to the edit action with a logged in user + * + * @uses \CakeAddresses\Controller\AddressesController::edit() + * @throws Exception + * + * @return void + */ + public function testEditPutLoggedInFailure(): void + { + $this->loginUserByRole(); + $id = 1; + $before = $this->Addresses->get($id); + $url = [ + 'plugin' => 'CakeAddresses', + 'controller' => 'Addresses', + 'action' => 'edit', + $id, + ]; + $data = [ + 'address_name' => '', + 'contact_name' => '', + 'address_line1' => '', + 'address_line2' => '', + 'city' => 'Seattle', + 'city_id' => '', + 'state_id' => 1462, + 'postal_code' => '98056', + 'country_id' => 233, + 'phone_number' => '', + 'email' => '', + 'notes' => '', + ]; + $this->put($url, $data); + $this->assertResponseCode(200); + $after = $this->Addresses->get($id); + + // assert save failed below + } + + /** + * Test delete method + * + * Tests the delete action with an unauthenticated user (not logged in) + * + * @uses \CakeAddresses\Controller\AddressesController::delete() + * @throws Exception + * + * @return void + */ + public function testDeleteUnauthenticated(): void + { + $cntBefore = $this->Addresses->find()->count(); + + $url = [ + 'plugin' => 'CakeAddresses', + 'controller' => 'Addresses', + 'action' => 'delete', + 1, + ]; + $this->delete($url); + $this->assertResponseCode(302); + $this->assertRedirectContains('login'); + + $cntAfter = $this->Addresses->find()->count(); + $this->assertEquals($cntBefore, $cntAfter); + } + + /** + * Test delete method + * + * Tests the delete action with a logged in user + * + * @uses \CakeAddresses\Controller\AddressesController::delete() + * @throws Exception + * + * @return void + */ + public function testDeleteLoggedIn(): void + { + $cntBefore = $this->Addresses->find()->count(); + + $this->loginUserByRole(); + $url = [ + 'plugin' => 'CakeAddresses', + 'controller' => 'Addresses', + 'action' => 'delete', + 1, + ]; + $this->delete($url); + $this->assertResponseCode(302); + $this->assertRedirectContains('addresses'); + + $cntAfter = $this->Addresses->find()->count(); + $this->assertEquals($cntBefore - 1, $cntAfter); + } +} diff --git a/tests/TestCase/Controller/BaseControllerTest.php b/tests/TestCase/Controller/BaseControllerTest.php new file mode 100644 index 0000000..14d4011 --- /dev/null +++ b/tests/TestCase/Controller/BaseControllerTest.php @@ -0,0 +1,25 @@ +session(['Auth.User.id' => 1]); + $this->session(['Auth.id' => 1]); + } + + /** + * @return void + */ + public function testTest() + { + $this->assertEquals(1, 1); + } +} diff --git a/tests/TestCase/Controller/CitiesControllerTest.php b/tests/TestCase/Controller/CitiesControllerTest.php new file mode 100644 index 0000000..f5737e2 --- /dev/null +++ b/tests/TestCase/Controller/CitiesControllerTest.php @@ -0,0 +1,103 @@ + + */ + protected array $fixtures = [ +// 'plugin.CakeAddresses.Regions', +// 'plugin.CakeAddresses.Subregions', + 'plugin.CakeAddresses.Countries', + 'plugin.CakeAddresses.States', + 'plugin.CakeAddresses.Cities', + ]; + + /** + * setUp method + * + * @return void + */ + protected function setUp(): void + { + parent::setUp(); + $this->Cities = $this->getTableLocator()->get('Cities'); + $this->enableCsrfToken(); + } + + /** + * tearDown method + * + * @return void + */ + protected function tearDown(): void + { + unset($this->Cities); + + parent::tearDown(); + } + + /** + * Test select method + * + * Tests the select action with an unauthenticated user (not logged in) + * + * @uses \CakeAddresses\Controller\CitiesController::select() + * @throws Exception + * + * @return void + */ + public function testSelectGetUnauthenticated(): void + { + $url = [ + 'plugin' => 'CakeAddresses', + 'controller' => 'Cities', + 'action' => 'select', + ]; + $this->get($url); + $this->assertResponseCode(302); + $this->assertRedirectContains('login'); + } + + /** + * Test select method + * + * Tests the select action with a logged in user + * + * @uses \CakeAddresses\Controller\CitiesController::select() + * @throws Exception + * + * @return void + */ + public function testSelectGetLoggedIn(): void + { + $this->loginUserByRole(); + $url = [ + 'plugin' => 'CakeAddresses', + 'controller' => 'Cities', + 'action' => 'select', + ]; + $this->get($url); + $this->assertResponseCode(200); + } +} diff --git a/tests/TestCase/Controller/CountriesControllerTest.php b/tests/TestCase/Controller/CountriesControllerTest.php new file mode 100644 index 0000000..47f67c4 --- /dev/null +++ b/tests/TestCase/Controller/CountriesControllerTest.php @@ -0,0 +1,151 @@ + + */ + protected array $fixtures = [ + 'plugin.CakeAddresses.Regions', + 'plugin.CakeAddresses.Subregions', + 'plugin.CakeAddresses.Countries', + 'plugin.CakeAddresses.States', +// 'plugin.CakeAddresses.Cities', + ]; + + /** + * setUp method + * + * @return void + */ + protected function setUp(): void + { + parent::setUp(); + $this->Countries = $this->getTableLocator()->get('Countries'); + $this->enableCsrfToken(); + } + + /** + * tearDown method + * + * @return void + */ + protected function tearDown(): void + { + unset($this->Countries); + + parent::tearDown(); + } + + /** + * Test index method + * + * Tests the index action with an unauthenticated user (not logged in) + * + * @uses \CakeAddresses\Controller\CountriesController::index() + * @throws Exception + * + * @return void + */ + public function testIndexGetUnauthenticated(): void + { + $url = [ + 'plugin' => 'CakeAddresses', + 'controller' => 'Countries', + 'action' => 'index', + ]; + $this->get($url); + $this->assertResponseCode(302); + $this->assertRedirectContains('login'); + } + + /** + * Test index method + * + * Tests the index action with a logged in user + * + * @uses \CakeAddresses\Controller\CountriesController::index() + * @throws Exception + * + * @return void + */ + public function testIndexGetLoggedIn(): void + { + $this->loginUserByRole(); + $url = [ + 'plugin' => 'CakeAddresses', + 'controller' => 'Countries', + 'action' => 'index', + ]; + $this->get($url); + $this->assertResponseCode(200); + } + + /** + * Test view method + * + * Tests the view action with an unauthenticated user (not logged in) + * + * @uses \CakeAddresses\Controller\CountriesController::view() + * @throws Exception + * + * @return void + */ + public function testViewGetUnauthenticated(): void + { + $id = 233; + $url = [ + 'plugin' => 'CakeAddresses', + 'controller' => 'Countries', + 'action' => 'view', + $id, + ]; + $this->get($url); + $this->assertResponseCode(302); + $this->assertRedirectContains('login'); + } + + /** + * Test view method + * + * Tests the view action with a logged in user + * + * @uses \CakeAddresses\Controller\CountriesController::view() + * @throws Exception + * + * @return void + */ + public function testViewGetLoggedIn(): void + { + $id = 233; + $this->loginUserByRole(); + $url = [ + 'plugin' => 'CakeAddresses', + 'controller' => 'Countries', + 'action' => 'view', + $id, + ]; + $this->get($url); + $this->assertResponseCode(200); + } +} diff --git a/tests/TestCase/Controller/RegionsControllerTest.php b/tests/TestCase/Controller/RegionsControllerTest.php new file mode 100644 index 0000000..044b105 --- /dev/null +++ b/tests/TestCase/Controller/RegionsControllerTest.php @@ -0,0 +1,154 @@ + + */ + protected array $fixtures = [ + 'plugin.CakeAddresses.Regions', +// 'plugin.CakeAddresses.Subregions', +// 'plugin.CakeAddresses.Countries', +// 'plugin.CakeAddresses.States', +// 'plugin.CakeAddresses.Cities', + ]; + + /** + * setUp method + * + * @return void + */ + protected function setUp(): void + { + parent::setUp(); + $this->Regions = $this->getTableLocator()->get('Regions'); + $this->enableCsrfToken(); + } + + /** + * tearDown method + * + * @return void + */ + protected function tearDown(): void + { + unset($this->Regions); + + parent::tearDown(); + } + + /** + * Test index method + * + * Tests the index action with an unauthenticated user (not logged in) + * + * @uses \CakeAddresses\Controller\RegionsController::index() + * @throws Exception + * + * @return void + */ + public function testIndexGetUnauthenticated(): void + { + $url = [ + 'plugin' => 'CakeAddresses', + 'controller' => 'Regions', + 'action' => 'index', + ]; + $this->get($url); + $this->assertResponseCode(302); + $this->assertRedirectContains('login'); + } + + /** + * Test index method + * + * Tests the index action with a logged in user + * + * @uses \CakeAddresses\Controller\RegionsController::index() + * @throws Exception + * + * @return void + */ + public function testIndexGetLoggedIn(): void + { + $this->loginUserByRole(); + $url = [ + 'plugin' => 'CakeAddresses', + 'controller' => 'Regions', + 'action' => 'index', + ]; + $this->get($url); + $this->assertResponseCode(200); + } + + /** + * Test view method + * + * Tests the view action with an unauthenticated user (not logged in) + * + * @uses \CakeAddresses\Controller\RegionsController::view() + * @throws Exception + * + * @return void + */ + public function testViewGetUnauthenticated(): void + { + $id = 1; + $url = [ + 'plugin' => 'CakeAddresses', + 'controller' => 'Regions', + 'action' => 'view', + $id, + ]; + $this->get($url); + $this->assertResponseCode(302); + $this->assertRedirectContains('login'); + } + + /** + * Test view method + * + * Tests the view action with a logged in user + * + * @uses \CakeAddresses\Controller\RegionsController::view() + * @throws Exception + * + * @return void + */ + public function testViewGetLoggedIn(): void + { + $id = 1; + + $this->loginUserByRole(); + $url = [ + 'plugin' => 'CakeAddresses', + 'controller' => 'Regions', + 'action' => 'view', + $id, + ]; + $this->get($url); + $this->assertResponseCode(200); + } +} diff --git a/tests/TestCase/Controller/StatesControllerTest.php b/tests/TestCase/Controller/StatesControllerTest.php new file mode 100644 index 0000000..0af1f9c --- /dev/null +++ b/tests/TestCase/Controller/StatesControllerTest.php @@ -0,0 +1,150 @@ + + */ + protected array $fixtures = [ +// 'plugin.CakeAddresses.Regions', +// 'plugin.CakeAddresses.Subregions', + 'plugin.CakeAddresses.Countries', + 'plugin.CakeAddresses.States', +// 'plugin.CakeAddresses.Cities', + ]; + + /** + * setUp method + * + * @return void + */ + protected function setUp(): void + { + parent::setUp(); + $this->States = $this->getTableLocator()->get('States'); + $this->enableCsrfToken(); + } + + /** + * tearDown method + * + * @return void + */ + protected function tearDown(): void + { + unset($this->States); + + parent::tearDown(); + } + + /** + * Test index method + * + * Tests the index action with an unauthenticated user (not logged in) + * + * @uses \CakeAddresses\Controller\StatesController::index() + * @throws Exception + * + * @return void + */ + public function testIndexGetUnauthenticated(): void + { + $url = [ + 'plugin' => 'CakeAddresses', + 'controller' => 'States', + 'action' => 'index', + ]; + $this->get($url); + $this->assertResponseCode(302); + $this->assertRedirectContains('login'); + } + + /** + * Test index method + * + * Tests the index action with a logged in user + * + * @uses \CakeAddresses\Controller\StatesController::index() + * @throws Exception + * + * @return void + */ + public function testIndexGetLoggedIn(): void + { + $this->loginUserByRole(); + $url = [ + 'plugin' => 'CakeAddresses', + 'controller' => 'States', + 'action' => 'index', + ]; + $this->get($url); + $this->assertResponseCode(200); + } + + /** + * Test view method + * + * Tests the view action with an unauthenticated user (not logged in) + * + * @uses \CakeAddresses\Controller\StatesController::view() + * @throws Exception + * + * @return void + */ + public function testViewGetUnauthenticated(): void + { + $id = 1462; + $url = [ + 'plugin' => 'CakeAddresses', + 'controller' => 'States', + 'action' => 'view', + $id, + ]; + $this->get($url); + $this->assertResponseCode(302); + $this->assertRedirectContains('login'); + } + + /** + * Test view method + * + * Tests the view action with a logged in user + * + * @uses \CakeAddresses\Controller\StatesController::view() + * @throws Exception + * + * @return void + */ + public function testViewGetLoggedIn(): void + { + $id = 1462; + $this->loginUserByRole(); + $url = [ + 'plugin' => 'CakeAddresses', + 'controller' => 'States', + 'action' => 'view', + $id, + ]; + $this->get($url); + $this->assertResponseCode(200); + } +} diff --git a/tests/TestCase/Controller/SubregionsControllerTest.php b/tests/TestCase/Controller/SubregionsControllerTest.php new file mode 100644 index 0000000..c2aea2e --- /dev/null +++ b/tests/TestCase/Controller/SubregionsControllerTest.php @@ -0,0 +1,154 @@ + + */ + protected array $fixtures = [ + 'plugin.CakeAddresses.Regions', + 'plugin.CakeAddresses.Subregions', + 'plugin.CakeAddresses.Countries', +// 'plugin.CakeAddresses.States', +// 'plugin.CakeAddresses.Cities', + ]; + + /** + * setUp method + * + * @return void + */ + protected function setUp(): void + { + parent::setUp(); + $this->Subregions = $this->getTableLocator()->get('Subregions'); + $this->enableCsrfToken(); + } + + /** + * tearDown method + * + * @return void + */ + protected function tearDown(): void + { + unset($this->Subregions); + + parent::tearDown(); + } + + /** + * Test index method + * + * Tests the index action with an unauthenticated user (not logged in) + * + * @uses \CakeAddresses\Controller\SubregionsController::index() + * @throws Exception + * + * @return void + */ + public function testIndexGetUnauthenticated(): void + { + $url = [ + 'plugin' => 'CakeAddresses', + 'controller' => 'Subregions', + 'action' => 'index', + ]; + $this->get($url); + $this->assertResponseCode(302); + $this->assertRedirectContains('login'); + } + + /** + * Test index method + * + * Tests the index action with a logged in user + * + * @uses \CakeAddresses\Controller\SubregionsController::index() + * @throws Exception + * + * @return void + */ + public function testIndexGetLoggedIn(): void + { + $this->loginUserByRole(); + $url = [ + 'plugin' => 'CakeAddresses', + 'controller' => 'Subregions', + 'action' => 'index', + ]; + $this->get($url); + $this->assertResponseCode(200); + } + + /** + * Test view method + * + * Tests the view action with an unauthenticated user (not logged in) + * + * @uses \CakeAddresses\Controller\SubregionsController::view() + * @throws Exception + * + * @return void + */ + public function testViewGetUnauthenticated(): void + { + $id = 1; + $url = [ + 'plugin' => 'CakeAddresses', + 'controller' => 'Subregions', + 'action' => 'view', + $id, + ]; + $this->get($url); + $this->assertResponseCode(302); + $this->assertRedirectContains('login'); + } + + /** + * Test view method + * + * Tests the view action with a logged in user + * + * @uses \CakeAddresses\Controller\SubregionsController::view() + * @throws Exception + * + * @return void + */ + public function testViewGetLoggedIn(): void + { + $id = 1; + + $this->loginUserByRole(); + $url = [ + 'plugin' => 'CakeAddresses', + 'controller' => 'Subregions', + 'action' => 'view', + $id, + ]; + $this->get($url); + $this->assertResponseCode(200); + } +} diff --git a/tests/TestCase/Model/Table/AddressesTableTest.php b/tests/TestCase/Model/Table/AddressesTableTest.php new file mode 100644 index 0000000..36f3452 --- /dev/null +++ b/tests/TestCase/Model/Table/AddressesTableTest.php @@ -0,0 +1,111 @@ + + */ + protected array $fixtures = [ + 'plugin.CakeAddresses.Addresses', + 'plugin.CakeAddresses.Cities', + 'plugin.CakeAddresses.States', + 'plugin.CakeAddresses.Countries', + ]; + + /** + * setUp method + * + * @return void + */ + protected function setUp(): void + { + parent::setUp(); + $config = $this->getTableLocator()->exists('Addresses') ? [] : ['className' => AddressesTable::class]; + $this->Addresses = $this->getTableLocator()->get('Addresses', $config); + } + + /** + * TestInitialize method + * + * @return void + * @uses \CakeAddresses\Model\Table\AddressesTable::initialize() + */ + public function testInitialize(): void + { + // verify all associations loaded + $expectedAssociations = [ + 'Cities', + 'States', + 'Countries', + ]; + $associations = $this->Addresses->associations(); + + $this->assertCount(count($expectedAssociations), $associations); + foreach ($expectedAssociations as $expectedAssociation) { + $this->assertTrue($this->Addresses->hasAssociation($expectedAssociation), 'Failed asserting Addresses has the association: ' . $expectedAssociation); + } + + // verify all behaviors loaded + $expectedBehaviors = [ + ]; + $behaviors = $this->Addresses->behaviors(); + + $this->assertCount(count($expectedBehaviors), $behaviors); + foreach ($expectedBehaviors as $expectedBehavior) { + $this->assertTrue($this->Addresses->hasBehavior($expectedBehavior)); + } + } + + + /** + * tearDown method + * + * @return void + */ + protected function tearDown(): void + { + unset($this->Addresses); + + parent::tearDown(); + } + + /** + * Test validationDefault method + * + * @return void + * @uses \CakeAddresses\Model\Table\AddressesTable::validationDefault() + */ + public function testValidationDefault(): void + { + $this->markTestIncomplete('Not implemented yet.'); + } + + /** + * Test buildRules method + * + * @return void + * @uses \CakeAddresses\Model\Table\AddressesTable::buildRules() + */ + public function testBuildRules(): void + { + $this->markTestIncomplete('Not implemented yet.'); + } +} diff --git a/tests/TestCase/Model/Table/CitiesTableTest.php b/tests/TestCase/Model/Table/CitiesTableTest.php new file mode 100644 index 0000000..bd5431a --- /dev/null +++ b/tests/TestCase/Model/Table/CitiesTableTest.php @@ -0,0 +1,111 @@ + + */ + protected array $fixtures = [ + 'plugin.CakeAddresses.Cities', + 'plugin.CakeAddresses.States', + 'plugin.CakeAddresses.Countries', + 'plugin.CakeAddresses.Addresses', + ]; + + /** + * setUp method + * + * @return void + */ + protected function setUp(): void + { + parent::setUp(); + $config = $this->getTableLocator()->exists('Cities') ? [] : ['className' => CitiesTable::class]; + $this->Cities = $this->getTableLocator()->get('Cities', $config); + } + + /** + * tearDown method + * + * @return void + */ + protected function tearDown(): void + { + unset($this->Cities); + + parent::tearDown(); + } + + /** + * TestInitialize method + * + * @return void + * @uses \CakeAddresses\Model\Table\CitiesTable::initialize() + */ + public function testInitialize(): void + { + // verify all associations loaded + $expectedAssociations = [ + 'States', + 'Countries', + 'Addresses', + ]; + $associations = $this->Cities->associations(); + + $this->assertCount(count($expectedAssociations), $associations); + foreach ($expectedAssociations as $expectedAssociation) { + $this->assertTrue($this->Cities->hasAssociation($expectedAssociation), 'Failed asserting Cities has the association: ' . $expectedAssociation); + } + + // verify all behaviors loaded + $expectedBehaviors = [ + ]; + $behaviors = $this->Cities->behaviors(); + + $this->assertCount(count($expectedBehaviors), $behaviors); + foreach ($expectedBehaviors as $expectedBehavior) { + $this->assertTrue($this->Cities->hasBehavior($expectedBehavior)); + } + } + + + /** + * Test validationDefault method + * + * @return void + * @uses \CakeAddresses\Model\Table\CitiesTable::validationDefault() + */ + public function testValidationDefault(): void + { + $this->markTestIncomplete('Not implemented yet.'); + } + + /** + * Test buildRules method + * + * @return void + * @uses \CakeAddresses\Model\Table\CitiesTable::buildRules() + */ + public function testBuildRules(): void + { + $this->markTestIncomplete('Not implemented yet.'); + } +} diff --git a/tests/TestCase/Model/Table/CountriesTableTest.php b/tests/TestCase/Model/Table/CountriesTableTest.php new file mode 100644 index 0000000..494d721 --- /dev/null +++ b/tests/TestCase/Model/Table/CountriesTableTest.php @@ -0,0 +1,80 @@ + + */ + protected array $fixtures = [ + 'plugin.CakeAddresses.Countries', + 'plugin.CakeAddresses.Regions', + 'plugin.CakeAddresses.Subregions', + 'plugin.CakeAddresses.Addresses', + 'plugin.CakeAddresses.Cities', + 'plugin.CakeAddresses.States', + ]; + + /** + * setUp method + * + * @return void + */ + protected function setUp(): void + { + parent::setUp(); + $config = $this->getTableLocator()->exists('Countries') ? [] : ['className' => CountriesTable::class]; + $this->Countries = $this->getTableLocator()->get('Countries', $config); + } + + /** + * tearDown method + * + * @return void + */ + protected function tearDown(): void + { + unset($this->Countries); + + parent::tearDown(); + } + + /** + * Test validationDefault method + * + * @return void + * @uses \CakeAddresses\Model\Table\CountriesTable::validationDefault() + */ + public function testValidationDefault(): void + { + $this->markTestIncomplete('Not implemented yet.'); + } + + /** + * Test buildRules method + * + * @return void + * @uses \CakeAddresses\Model\Table\CountriesTable::buildRules() + */ + public function testBuildRules(): void + { + $this->markTestIncomplete('Not implemented yet.'); + } +} diff --git a/tests/TestCase/Model/Table/RegionsTableTest.php b/tests/TestCase/Model/Table/RegionsTableTest.php new file mode 100644 index 0000000..979f57b --- /dev/null +++ b/tests/TestCase/Model/Table/RegionsTableTest.php @@ -0,0 +1,97 @@ + + */ + protected array $fixtures = [ + 'plugin.CakeAddresses.Regions', + 'plugin.CakeAddresses.Countries', + 'plugin.CakeAddresses.Subregions', + ]; + + /** + * setUp method + * + * @return void + */ + protected function setUp(): void + { + parent::setUp(); + $config = $this->getTableLocator()->exists('Regions') ? [] : ['className' => RegionsTable::class]; + $this->Regions = $this->getTableLocator()->get('Regions', $config); + } + + /** + * tearDown method + * + * @return void + */ + protected function tearDown(): void + { + unset($this->Regions); + + parent::tearDown(); + } + + /** + * TestInitialize method + * + * @return void + * @uses \CakeAddresses\Model\Table\RegionsTable::initialize() + */ + public function testInitialize(): void + { + // verify all associations loaded + $expectedAssociations = [ + 'Countries', + 'Subregions', +// 'States', + ]; + $associations = $this->Regions->associations(); + + $this->assertCount(count($expectedAssociations), $associations); + foreach ($expectedAssociations as $expectedAssociation) { + $this->assertTrue($this->Regions->hasAssociation($expectedAssociation)); + } + + // verify all behaviors loaded + $expectedBehaviors = []; + $behaviors = $this->Regions->behaviors(); + + $this->assertCount(count($expectedBehaviors), $behaviors); + foreach ($expectedBehaviors as $expectedBehavior) { + $this->assertTrue($this->Regions->hasBehavior($expectedBehavior)); + } + } + + /** + * Test validationDefault method + * + * @return void + * @uses \CakeAddresses\Model\Table\RegionsTable::validationDefault() + */ + public function testValidationDefault(): void + { + $this->markTestIncomplete('Not implemented yet.'); + } +} diff --git a/tests/TestCase/Model/Table/StatesTableTest.php b/tests/TestCase/Model/Table/StatesTableTest.php new file mode 100644 index 0000000..4f09153 --- /dev/null +++ b/tests/TestCase/Model/Table/StatesTableTest.php @@ -0,0 +1,78 @@ + + */ + protected array $fixtures = [ + 'plugin.CakeAddresses.States', + 'plugin.CakeAddresses.Countries', + 'plugin.CakeAddresses.Addresses', + 'plugin.CakeAddresses.Cities', + ]; + + /** + * setUp method + * + * @return void + */ + protected function setUp(): void + { + parent::setUp(); + $config = $this->getTableLocator()->exists('States') ? [] : ['className' => StatesTable::class]; + $this->States = $this->getTableLocator()->get('States', $config); + } + + /** + * tearDown method + * + * @return void + */ + protected function tearDown(): void + { + unset($this->States); + + parent::tearDown(); + } + + /** + * Test validationDefault method + * + * @return void + * @uses \CakeAddresses\Model\Table\StatesTable::validationDefault() + */ + public function testValidationDefault(): void + { + $this->markTestIncomplete('Not implemented yet.'); + } + + /** + * Test buildRules method + * + * @return void + * @uses \CakeAddresses\Model\Table\StatesTable::buildRules() + */ + public function testBuildRules(): void + { + $this->markTestIncomplete('Not implemented yet.'); + } +} diff --git a/tests/TestCase/Model/Table/SubregionsTableTest.php b/tests/TestCase/Model/Table/SubregionsTableTest.php new file mode 100644 index 0000000..8973324 --- /dev/null +++ b/tests/TestCase/Model/Table/SubregionsTableTest.php @@ -0,0 +1,77 @@ + + */ + protected array $fixtures = [ + 'plugin.CakeAddresses.Subregions', + 'plugin.CakeAddresses.Regions', + 'plugin.CakeAddresses.Countries', + ]; + + /** + * setUp method + * + * @return void + */ + protected function setUp(): void + { + parent::setUp(); + $config = $this->getTableLocator()->exists('Subregions') ? [] : ['className' => SubregionsTable::class]; + $this->Subregions = $this->getTableLocator()->get('Subregions', $config); + } + + /** + * tearDown method + * + * @return void + */ + protected function tearDown(): void + { + unset($this->Subregions); + + parent::tearDown(); + } + + /** + * Test validationDefault method + * + * @return void + * @uses \CakeAddresses\Model\Table\SubregionsTable::validationDefault() + */ + public function testValidationDefault(): void + { + $this->markTestIncomplete('Not implemented yet.'); + } + + /** + * Test buildRules method + * + * @return void + * @uses \CakeAddresses\Model\Table\SubregionsTable::buildRules() + */ + public function testBuildRules(): void + { + $this->markTestIncomplete('Not implemented yet.'); + } +} diff --git a/tests/bootstrap.php b/tests/bootstrap.php new file mode 100644 index 0000000..31b3827 --- /dev/null +++ b/tests/bootstrap.php @@ -0,0 +1,119 @@ + 'TestApp', + 'encoding' => 'UTF-8', + 'paths' => [ + 'testWebroot' => PLUGIN_ROOT . DS . 'tests' . DS . 'test_app' . DS . 'webroot' . DS, + 'webroot' => PLUGIN_ROOT . DS . 'webroot' . DS, + 'templates' => [ + PLUGIN_ROOT . DS . 'tests' . DS . 'test_app' . DS . 'templates' . DS, + ], + ], +]); + +Configure::write('debug', true); +Configure::write('CakeAddresses', []); + +$cache = [ + 'default' => [ + 'engine' => 'File', + 'path' => CACHE, + ], + '_cake_translations_' => [ + 'className' => 'File', + 'prefix' => 'crud_myapp_cake_core_', + 'path' => CACHE . 'persistent/', + 'serialize' => true, + 'duration' => '+10 seconds', + ], + '_cake_model_' => [ + 'className' => 'File', + 'prefix' => 'crud_my_app_cake_model_', + 'path' => CACHE . 'models/', + 'serialize' => 'File', + 'duration' => '+10 seconds', + ], +]; + +Cache::setConfig($cache); + +class_alias(AppController::class, 'App\Controller\AppController'); + +Plugin::getCollection()->add(new CakeAddressesPlugin()); + +Chronos::setTestNow(Chronos::now()); + +if (!getenv('DB_URL')) { + putenv('DB_URL=sqlite:///:memory:'); +} + +ConnectionManager::setConfig('test', [ + 'className' => Connection::class, + 'url' => getenv('DB_URL') ?: null, + 'timezone' => 'UTC', + 'quoteIdentifiers' => false, + 'cacheMetadata' => true, +]); + +/** + * Load schema from a SQL dump file. + * + * If your plugin does not use database fixtures you can + * safely delete this. + * + * If you want to support multiple databases, consider + * using migrations to provide schema for your plugin, + * and using \Migrations\TestSuite\Migrator to load schema. + */ +// Load a schema dump file. +//(new SchemaLoader())->loadSqlFiles('tests/schema.sql', 'test'); + + +$migrator = new Migrator(); +$migrator->run(['plugin' => 'CakeAddresses']); diff --git a/tests/config/bootstrap.php b/tests/config/bootstrap.php new file mode 100644 index 0000000..b3d9bbc --- /dev/null +++ b/tests/config/bootstrap.php @@ -0,0 +1 @@ + $iterator + */ +$iterator = new DirectoryIterator(__DIR__ . DS . 'Fixture'); +foreach ($iterator as $file) { + if (!preg_match('/(\w+)Fixture.php$/', (string)$file, $matches)) { + continue; + } + + $name = $matches[1]; + $tableName = Inflector::underscore($name); + $class = 'CakeAddresses\\Test\\Fixture\\' . $name . 'Fixture'; + try { + $object = (new ReflectionClass($class))->getProperty('fields'); + } catch (ReflectionException $e) { + continue; + } + + $array = $object->getDefaultValue(); + $constraints = $array['_constraints'] ?? []; + $indexes = $array['_indexes'] ?? []; + unset($array['_constraints'], $array['_indexes'], $array['_options']); + $table = [ + 'table' => $tableName, + 'columns' => $array, + 'constraints' => $constraints, + 'indexes' => $indexes, + ]; + $tables[$tableName] = $table; +} + +return $tables; diff --git a/tests/schema.sql b/tests/schema.sql new file mode 100644 index 0000000..a445093 --- /dev/null +++ b/tests/schema.sql @@ -0,0 +1 @@ +-- Test database schema for CakeAddresses diff --git a/tests/test_app/src/Application.php b/tests/test_app/src/Application.php new file mode 100644 index 0000000..4bbb577 --- /dev/null +++ b/tests/test_app/src/Application.php @@ -0,0 +1,39 @@ +addPlugin('CakeAddresses'); + } + + /** + * @inheritDoc + */ + public function middleware(MiddlewareQueue $middleware): MiddlewareQueue { + $middleware->add(new RoutingMiddleware($this)); + + return $middleware; + } + + public function routes(RouteBuilder $routes): void + { + parent::routes($routes); // TODO: Change the autogenerated stub + $routes->setRouteClass(DashedRoute::class); + + $routes->plugin('CakeAddresses', ['path' => '/cake-addresses'], function (RouteBuilder $pluginRoutes):void { + $pluginRoutes->fallbacks(); + }); + } + +} diff --git a/tests/test_app/src/Controller/AppController.php b/tests/test_app/src/Controller/AppController.php new file mode 100644 index 0000000..7387589 --- /dev/null +++ b/tests/test_app/src/Controller/AppController.php @@ -0,0 +1,16 @@ +loadComponent('Flash'); + } +} diff --git a/tests/test_app/src/View/AppView.php b/tests/test_app/src/View/AppView.php new file mode 100644 index 0000000..e885cc1 --- /dev/null +++ b/tests/test_app/src/View/AppView.php @@ -0,0 +1,11 @@ +layout = 'error'; + +if (Configure::read('debug')): + $this->layout = 'dev_error'; + + $this->assign('title', $message); + $this->assign('templateName', 'error500.ctp'); + + $this->start('file'); +?> +queryString)) : ?> +

+ SQL Query: + queryString) ?> +

+ +params)) : ?> + SQL Query Params: + params) ?> + + + Error in: + getFile()), $error->getLine()) ?> + +element('auto_table_warning'); + + if (extension_loaded('xdebug')): + xdebug_print_function_stack(); + endif; + + $this->end(); +endif; +?> +

+

+ : + +

diff --git a/tests/test_app/templates/layout/ajax.php b/tests/test_app/templates/layout/ajax.php new file mode 100644 index 0000000..13b3dea --- /dev/null +++ b/tests/test_app/templates/layout/ajax.php @@ -0,0 +1,6 @@ + +fetch('content') ?> diff --git a/tests/test_app/templates/layout/default.php b/tests/test_app/templates/layout/default.php new file mode 100644 index 0000000..13b3dea --- /dev/null +++ b/tests/test_app/templates/layout/default.php @@ -0,0 +1,6 @@ + +fetch('content') ?> diff --git a/tests/test_app/webroot/images/cake_icon.png b/tests/test_app/webroot/images/cake_icon.png new file mode 100644 index 0000000000000000000000000000000000000000..394fa42d5131cdc7b0b1246af93b92179f3c887e GIT binary patch literal 943 zcmV;g15o^lP)9q)cr7> zIGsQFGn3| zCzs2iP$-yfVPOGVTU&6sT(-5fwHb2tVsLP9#{Vr9Ct?R7q(rf?v2A5#W$OI=e1YUJ zQ1YRnA&iWSQ1XYAm__>aYb6XIhMiYVD+-z8_pYi6+CsH{*^m;vOjqvbr=H&DFkeqxHQBh$Scsoy0Glw(T zsaSG*ok62V;~yXYNgP*DUw;o98^+0@vGFb{HC+As}XJ=;xg=B7N_;-mKbHH{|lXs_o+aPcs5~J?s%^P2Odb)Uz z$GvY6^!N9(C2-h?28B$qx7%_yHnt2eU%nQ0qThbl6a_+b)EirjBgQ`g1_07Fr&6R? RzIgxu002ovPDHLkV1mdlwUYn< literal 0 HcmV?d00001