PHP 8.2.30
Preview: instantcms.sql Size: 1.85 MB
//var/softaculous/instantcms/instantcms.sql

SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";


/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;

--
-- Database: `instantcms2181`
--

-- --------------------------------------------------------

--
-- Table structure for table `[[dbprefix]]activity`
--

CREATE TABLE `[[dbprefix]]activity` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `type_id` int(11) unsigned DEFAULT NULL,
  `user_id` int(11) unsigned DEFAULT NULL,
  `group_id` int(11) unsigned DEFAULT NULL,
  `subject_title` varchar(140) DEFAULT NULL,
  `subject_id` int(11) unsigned DEFAULT NULL,
  `subject_url` varchar(250) DEFAULT NULL,
  `reply_url` varchar(250) DEFAULT NULL,
  `images` text,
  `images_count` int(11) unsigned DEFAULT NULL,
  `date_pub` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
  `is_private` tinyint(1) unsigned NOT NULL DEFAULT '0',
  `is_parent_hidden` tinyint(1) unsigned DEFAULT NULL,
  `is_pub` tinyint(1) unsigned DEFAULT '1',
  PRIMARY KEY (`id`),
  KEY `type_id` (`type_id`),
  KEY `user_id` (`user_id`),
  KEY `date_pub` (`date_pub`),
  KEY `is_private` (`is_private`),
  KEY `group_id` (`group_id`),
  KEY `is_parent_hidden` (`is_parent_hidden`),
  KEY `is_pub` (`is_pub`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Activity feed' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `[[dbprefix]]activity_types`
--

CREATE TABLE `[[dbprefix]]activity_types` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `is_enabled` tinyint(1) unsigned DEFAULT '1',
  `controller` varchar(32) NOT NULL,
  `name` varchar(32) NOT NULL,
  `title` varchar(100) NOT NULL,
  `description` varchar(200) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `is_enabled` (`is_enabled`),
  KEY `controller` (`controller`),
  KEY `name` (`name`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8mb4 COMMENT='Activity feed types' AUTO_INCREMENT=26 ;

--
-- Dumping data for table `[[dbprefix]]activity_types`
--

INSERT INTO `[[dbprefix]]activity_types` VALUES
(1, 1, 'content', 'add.pages', 'Adding pages', 'added the page %s'),
(7, 1, 'users', 'friendship', 'Friendship', 'and %s became friends'),
(8, 1, 'users', 'signup', 'New users', 'registered. Welcome!'),
(12, 1, 'users', 'status', 'Status changing', '→ %s'),
(19, 1, 'users', 'avatar', 'Avatar changing', 'changed avatar'),
(20, 1, 'comments', 'vote.comment', 'Rating comments', 'evaluate a comment on the %s page'),
(21, 1, 'groups', 'join', 'Group joining', 'joined the group %s'),
(22, 1, 'groups', 'leave', 'Group leaving', 'left the group %s'),
(23, 0, 'content', 'add.albums', 'Adding albums', 'added album %s'),
(24, 1, 'photos', 'add.photos', 'Photo uploading', 'uploaded photos to the album %s'),
(25, 1, 'subscriptions', 'subscribe', 'Subscription to content', 'subscribes to the %s list');

-- --------------------------------------------------------

--
-- Table structure for table `[[dbprefix]]billing_actions`
--

CREATE TABLE `[[dbprefix]]billing_actions` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `controller` varchar(32) DEFAULT NULL COMMENT 'Controller name',
  `name` varchar(64) DEFAULT NULL COMMENT 'Action name',
  `title` varchar(255) DEFAULT NULL COMMENT 'Title',
  `prices` text COMMENT 'YAML with prices by group',
  PRIMARY KEY (`id`),
  KEY `controller` (`controller`,`name`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8mb4 COMMENT='Paid actions' AUTO_INCREMENT=3 ;

--
-- Dumping data for table `[[dbprefix]]billing_actions`
--

INSERT INTO `[[dbprefix]]billing_actions` VALUES
(1, 'content', 'pages_add', 'Pages: adding', '---\n3: 0\n4: 0\n5: 0\n6: 0\n'),
(2, 'content', 'albums_add', 'Photo albums: adding', '---\n3: 0\n4: 0\n5: 0\n6: 0\n');

-- --------------------------------------------------------

--
-- Table structure for table `[[dbprefix]]billing_holds`
--

CREATE TABLE `[[dbprefix]]billing_holds` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `target` varchar(100) DEFAULT NULL COMMENT 'Operation identifier',
  `user_id` int(11) unsigned NOT NULL COMMENT 'User ID',
  `amount` decimal(10,2) unsigned NOT NULL DEFAULT '0.00' COMMENT 'Amount',
  `payload` text COMMENT 'JSON with operation parameters',
  PRIMARY KEY (`id`),
  UNIQUE KEY `user_id` (`user_id`,`target`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Pending balances' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `[[dbprefix]]billing_log`
--

CREATE TABLE `[[dbprefix]]billing_log` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `type` tinyint(1) unsigned DEFAULT NULL COMMENT 'Operation type: 1 - income, 0 - payment',
  `action_id` int(11) unsigned DEFAULT NULL COMMENT 'Paid action ID',
  `date_created` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Operation creation date',
  `date_done` timestamp NULL DEFAULT NULL COMMENT 'Operation completion date',
  `amount` decimal(11,2) DEFAULT NULL COMMENT 'Amount in internal currency',
  `summ` decimal(11,2) DEFAULT NULL COMMENT 'Amount in real currency',
  `user_id` int(11) unsigned DEFAULT NULL COMMENT 'User ID',
  `sender_id` int(11) unsigned DEFAULT NULL COMMENT 'User ID of the sender (for transfers)',
  `status` tinyint(1) unsigned DEFAULT NULL COMMENT 'Operation status: 0 - created, 1 - completed',
  `description` varchar(512) DEFAULT NULL COMMENT 'Operation description',
  `url` varchar(255) DEFAULT NULL COMMENT 'URL of the related purchase',
  `ref_link_id` int(11) unsigned DEFAULT NULL COMMENT 'Referral entry ID from billing_refs table',
  `plan_id` int(11) unsigned DEFAULT NULL COMMENT 'Tariff plan ID',
  `plan_period` tinyint(1) unsigned DEFAULT NULL COMMENT 'Tariff plan duration',
  `system_id` int(11) unsigned DEFAULT NULL COMMENT 'Payment system ID',
  PRIMARY KEY (`id`),
  KEY `type` (`type`),
  KEY `action_id` (`action_id`),
  KEY `date_created` (`date_created`),
  KEY `user_id` (`user_id`),
  KEY `sender_id` (`sender_id`),
  KEY `status` (`status`),
  KEY `ref_link_id` (`ref_link_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='List of all transactions' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `[[dbprefix]]billing_outs`
--

CREATE TABLE `[[dbprefix]]billing_outs` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `date_created` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Creation date',
  `date_done` timestamp NULL DEFAULT NULL COMMENT 'Completion date',
  `user_id` int(11) unsigned DEFAULT NULL COMMENT 'ID of the user who submitted the request',
  `amount` decimal(11,2) unsigned DEFAULT NULL COMMENT 'Amount in internal currency',
  `summ` decimal(11,2) unsigned DEFAULT NULL COMMENT 'Amount in real currency',
  `system` varchar(64) DEFAULT NULL COMMENT 'Destination of the withdrawal',
  `purse` varchar(32) DEFAULT NULL COMMENT 'Wallet/account number',
  `status` tinyint(1) unsigned DEFAULT '0' COMMENT 'Request status',
  `code` varchar(32) DEFAULT NULL COMMENT 'Withdrawal confirmation code',
  `done_code` varchar(32) DEFAULT NULL COMMENT 'Withdrawal completion code',
  PRIMARY KEY (`id`),
  KEY `date_created` (`date_created`),
  KEY `user_id` (`user_id`),
  KEY `code` (`code`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Withdrawal requests' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `[[dbprefix]]billing_paid_fields`
--

CREATE TABLE `[[dbprefix]]billing_paid_fields` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `ctype_id` int(11) unsigned DEFAULT NULL COMMENT 'Content type ID',
  `field` varchar(20) DEFAULT NULL COMMENT 'System name of the field',
  `price_field` varchar(20) DEFAULT NULL COMMENT 'Name of the field containing the price',
  `prices` text COMMENT 'YAML with prices by user group',
  `is_to_author` tinyint(1) unsigned DEFAULT NULL COMMENT 'Payment goes to the author',
  `is_notify_author` tinyint(1) unsigned DEFAULT NULL COMMENT 'Notify the author about the purchase',
  `notify_email` varchar(100) DEFAULT NULL COMMENT 'Email for field purchase notifications',
  `btn_titles` text COMMENT 'JSON with button titles',
  PRIMARY KEY (`id`),
  KEY `ctype_id` (`ctype_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Field sales' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `[[dbprefix]]billing_paid_fields_log`
--

CREATE TABLE `[[dbprefix]]billing_paid_fields_log` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `field_id` int(11) unsigned DEFAULT NULL COMMENT 'ID of the purchasable field from billing_paid_fields',
  `item_id` int(11) unsigned DEFAULT NULL COMMENT 'ID of the content item',
  `user_id` int(11) unsigned DEFAULT NULL COMMENT 'ID of the user who purchased the field',
  `date_sold` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Date of purchase',
  PRIMARY KEY (`id`),
  KEY `user_id` (`user_id`,`item_id`,`field_id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Field sale transactions' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `[[dbprefix]]billing_payouts`
--

CREATE TABLE `[[dbprefix]]billing_payouts` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `is_enabled` tinyint(1) unsigned DEFAULT NULL COMMENT 'Enabled?',
  `title` varchar(128) DEFAULT NULL COMMENT 'Payout title',
  `groups` text COMMENT 'User groups eligible for the payout',
  `user_id` int(11) unsigned DEFAULT NULL COMMENT 'User ID for the payout',
  `is_topup_balance` tinyint(1) unsigned DEFAULT NULL COMMENT 'Top up the balance up to the specified amount',
  `is_passed` tinyint(1) unsigned DEFAULT NULL COMMENT 'Restrict by time since registration',
  `is_rating` tinyint(1) unsigned DEFAULT NULL COMMENT 'Restrict by user rating',
  `is_karma` tinyint(1) unsigned DEFAULT NULL COMMENT 'Restrict by user reputation',
  `is_field` tinyint(1) unsigned DEFAULT NULL COMMENT 'Restrict by profile field value',
  `passed_days` int(11) unsigned DEFAULT NULL COMMENT 'Minimum days since registration',
  `rating` int(11) DEFAULT NULL COMMENT 'Minimum rating',
  `karma` int(11) DEFAULT NULL COMMENT 'Minimum reputation',
  `field` varchar(64) DEFAULT NULL COMMENT 'Profile field name',
  `field_value` varchar(128) DEFAULT NULL COMMENT 'Required value of the profile field',
  `amount` decimal(11,2) DEFAULT NULL COMMENT 'Fixed payout amount',
  `field_amount` varchar(64) DEFAULT NULL COMMENT 'Payout amount based on this profile field value',
  `period` int(11) unsigned DEFAULT NULL COMMENT 'Payout frequency (in days)',
  `date_last` timestamp NULL DEFAULT NULL COMMENT 'Date of last payout',
  PRIMARY KEY (`id`),
  KEY `is_enabled` (`is_enabled`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Scheduled payouts' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `[[dbprefix]]billing_plans`
--

CREATE TABLE `[[dbprefix]]billing_plans` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(128) DEFAULT NULL COMMENT 'Plan name',
  `description` text COMMENT 'Plan description',
  `is_enabled` tinyint(1) unsigned DEFAULT NULL COMMENT 'Enabled?',
  `is_real_price` tinyint(1) unsigned DEFAULT NULL COMMENT 'Purchase with real currency only',
  `is_subscribe_after_reg` tinyint(1) unsigned DEFAULT NULL COMMENT 'Subscribe to plan after user registration',
  `max_out` decimal(11,2) unsigned DEFAULT NULL COMMENT 'Maximum withdrawal amount',
  `groups` text COMMENT 'YAML with target user groups',
  `is_replace_groups` tinyint(1) unsigned DEFAULT NULL COMMENT 'Replace user groups',
  `prices` text COMMENT 'YAML with prices by group',
  `features` text COMMENT 'Plan Features',
  `users` int(11) unsigned NOT NULL DEFAULT '0' COMMENT 'Number of users subscribed to the plan',
  `ordering` int(11) unsigned DEFAULT NULL COMMENT 'Display order in list',
  PRIMARY KEY (`id`),
  KEY `is_enabled` (`is_enabled`),
  KEY `ordering` (`ordering`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Subscription plans' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `[[dbprefix]]billing_plans_log`
--

CREATE TABLE `[[dbprefix]]billing_plans_log` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` int(11) unsigned DEFAULT NULL COMMENT 'ID of the user who purchased the subscription',
  `plan_id` int(11) unsigned DEFAULT NULL COMMENT 'ID of the subscription plan',
  `old_groups` text COMMENT 'YAML of the user’s groups before the subscription',
  `date_until` timestamp NULL DEFAULT NULL COMMENT 'Subscription expiration date',
  `is_paused` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT 'Inactive plan?',
  PRIMARY KEY (`id`),
  KEY `user_id` (`user_id`),
  KEY `date_until` (`date_until`),
  KEY `plan_id` (`plan_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Active subscriptions' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `[[dbprefix]]billing_refs`
--

CREATE TABLE `[[dbprefix]]billing_refs` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` int(11) unsigned DEFAULT NULL COMMENT 'ID of the user who registered',
  `ref_id` int(11) unsigned DEFAULT NULL COMMENT 'ID of the user whose referral link was used',
  `level` tinyint(1) unsigned DEFAULT NULL COMMENT 'Referral level',
  `date_reg` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Registration date',
  PRIMARY KEY (`id`),
  KEY `user_id` (`user_id`),
  KEY `ref_id` (`ref_id`),
  KEY `level` (`level`),
  KEY `date_reg` (`date_reg`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Referrals' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `[[dbprefix]]billing_systems`
--

CREATE TABLE `[[dbprefix]]billing_systems` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(32) DEFAULT NULL COMMENT 'Internal system name of the payment system',
  `title` varchar(64) DEFAULT NULL COMMENT 'Display name of the payment system',
  `payment_url` varchar(255) DEFAULT NULL COMMENT 'External URL of the payment form',
  `rate` decimal(8,4) unsigned DEFAULT '1.0000' COMMENT 'Exchange rate of the payment system currency',
  `options` text COMMENT 'YAML with configuration options',
  `is_enabled` tinyint(1) unsigned DEFAULT NULL COMMENT 'Enabled?',
  `is_enabled_admin` tinyint(1) unsigned DEFAULT NULL COMMENT 'Enabled only for administrators',
  `ordering` int(11) unsigned DEFAULT NULL COMMENT 'Sort order in the list',
  PRIMARY KEY (`id`),
  KEY `name` (`name`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8mb4 COMMENT='Payment systems' AUTO_INCREMENT=17 ;

--
-- Dumping data for table `[[dbprefix]]billing_systems`
--

INSERT INTO `[[dbprefix]]billing_systems` VALUES
(2, 'wmz', 'Webmoney WMZ', 'https://merchant.webmoney.ru/lmi/payment.asp', '1.0000', '---\npurse: ""\nsecret_key: ""\ntest_mode: "0"\n', NULL, NULL, 2),
(3, 'robokassa', 'E-money, cards, terminals (Robokassa)', 'billing/prepare/robokassa', '1.0000', '---\nmerchant_login: ""\npassword1: ""\npassword2: ""\nfiscal_on: null\nfiscal_sno: osn\nfiscal_method: full_payment\nfiscal_object: service\nfiscal_name: ""\nfiscal_tax: none\n', NULL, NULL, 6),
(4, 'interkassa', 'E-money, cards, terminals (Interkassa)', 'https://sci.interkassa.com', '1.0000', '---\nik_co_id: ""\nik_secret_key: ""\n', NULL, NULL, 7),
(8, 'w1', 'E-money, cards, terminals (W1)', 'https://wl.walletone.com/checkout/checkout/Index', '1.0000', '---\nmerchant_id: ""\nkey: ""\ncurrency_id: ""\n', NULL, NULL, 8),
(9, 'test', 'Test (instant top-up)', 'billing/prepare/test', '0.1000', NULL, 1, NULL, 1),
(10, 'yandex', 'ЮMoney', 'https://yoomoney.ru/quickpay/confirm.xml', '1.0000', '---\nreceiver: ""\nsecret_key: ""\n', 0, NULL, 12),
(11, 'yakassa', 'ЮKassa', 'billing/prepare/yakassa', '1.0000', '---\nshop_id: ""\nkey: ""\n', NULL, NULL, 13),
(14, 'paypal', 'PayPal', 'https://api.sandbox.paypal.com', '1.0000', '---\naccount: ""\ncurrency: USD\nclient_id: ""\nsecret: ""\n', 0, NULL, 10),
(16, 'payeer', 'PAYEER', 'https://payeer.com/merchant/', '1.0000', '---\nshop_id: ""\nsecret_key: ""\nsig_key: ""\ncurr: USD\n', NULL, NULL, 16);

-- --------------------------------------------------------

--
-- Table structure for table `[[dbprefix]]billing_terms`
--

CREATE TABLE `[[dbprefix]]billing_terms` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `ctype_id` int(11) unsigned DEFAULT NULL COMMENT 'Content type ID',
  `prices` text COMMENT 'YAML with prices by group',
  PRIMARY KEY (`id`),
  KEY `ctype_id` (`ctype_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Prices for one day publication' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `[[dbprefix]]billing_transfers`
--

CREATE TABLE `[[dbprefix]]billing_transfers` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `from_id` int(11) unsigned DEFAULT NULL COMMENT 'User ID, from whom the transfer is from',
  `to_id` int(11) unsigned DEFAULT NULL COMMENT 'User ID to whom the transfer is to',
  `amount` decimal(11,2) unsigned DEFAULT NULL COMMENT 'Transfer amount',
  `description` varchar(255) DEFAULT NULL COMMENT 'Operation description',
  `code` varchar(32) DEFAULT NULL COMMENT 'Transfer Confirmation Code',
  `status` tinyint(1) DEFAULT '0' COMMENT 'Transfer status',
  PRIMARY KEY (`id`),
  UNIQUE KEY `code` (`code`) USING BTREE,
  KEY `from_id` (`from_id`),
  KEY `to_id` (`to_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Transfers between users' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `[[dbprefix]]billing_vip_fields`
--

CREATE TABLE `[[dbprefix]]billing_vip_fields` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `ctype_id` int(11) unsigned DEFAULT NULL COMMENT 'Content type ID',
  `field` varchar(40) DEFAULT NULL COMMENT 'System field name',
  `prices` text COMMENT 'YAML with prices by group',
  `description` varchar(255) DEFAULT NULL COMMENT 'Description for transaction history',
  PRIMARY KEY (`id`),
  KEY `ctype_id` (`ctype_id`),
  KEY `field` (`field`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Fields for sale when filling out' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `[[dbprefix]]billing_vip_fields_log`
--

CREATE TABLE `[[dbprefix]]billing_vip_fields_log` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `field_id` int(11) unsigned DEFAULT NULL COMMENT 'Field ID from the billing_vip_fields table',
  `item_id` int(11) unsigned DEFAULT NULL COMMENT 'Content type ID',
  `user_id` int(11) unsigned DEFAULT NULL COMMENT 'User ID of the user who purchased the field filling',
  `date_sold` timestamp NULL DEFAULT NULL COMMENT 'The date of sale',
  PRIMARY KEY (`id`),
  KEY `user_id` (`user_id`,`item_id`,`field_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Purchases to fill out fields' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `[[dbprefix]]comments`
--

CREATE TABLE `[[dbprefix]]comments` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `parent_id` int(11) unsigned DEFAULT NULL COMMENT 'Parent comment ID',
  `level` tinyint(4) unsigned DEFAULT NULL,
  `ordering` int(11) unsigned DEFAULT NULL COMMENT 'Order number in the tree',
  `user_id` int(11) unsigned DEFAULT NULL COMMENT 'Author ID',
  `date_pub` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Publication date',
  `date_last_modified` timestamp NULL DEFAULT NULL COMMENT 'Last modified date',
  `target_controller` varchar(32) DEFAULT NULL COMMENT 'Commented content controller',
  `target_subject` varchar(32) DEFAULT NULL COMMENT 'Commented object',
  `target_id` int(11) unsigned DEFAULT NULL COMMENT 'Commented object ID',
  `target_url` varchar(250) DEFAULT NULL COMMENT 'Commented object URL',
  `target_title` varchar(100) DEFAULT NULL COMMENT 'Commented object title',
  `author_name` varchar(100) DEFAULT NULL COMMENT 'Author (guest) name',
  `author_email` varchar(100) DEFAULT NULL COMMENT 'Author (guest) E-mail',
  `author_ip` varbinary(16) DEFAULT NULL COMMENT 'Author ip',
  `content` text COMMENT 'Comment text',
  `content_html` text COMMENT 'Sanitized text',
  `is_deleted` tinyint(1) unsigned DEFAULT NULL COMMENT 'Comment deleted?',
  `is_private` tinyint(1) unsigned DEFAULT '0' COMMENT 'Only for friends?',
  `rating` int(11) NOT NULL DEFAULT '0',
  `is_approved` tinyint(1) unsigned DEFAULT '1',
  PRIMARY KEY (`id`),
  KEY `user_id` (`user_id`),
  KEY `target_id` (`target_id`,`target_controller`,`target_subject`,`ordering`),
  KEY `author_ip` (`author_ip`),
  KEY `is_approved` (`is_approved`,`is_deleted`,`date_pub`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='User comments' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `[[dbprefix]]comments_rating`
--

CREATE TABLE `[[dbprefix]]comments_rating` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `comment_id` int(11) unsigned DEFAULT NULL,
  `user_id` int(11) unsigned DEFAULT NULL,
  `score` tinyint(4) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `comment_id` (`comment_id`),
  KEY `user_id` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `[[dbprefix]]comments_tracks`
--

CREATE TABLE `[[dbprefix]]comments_tracks` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` int(11) unsigned DEFAULT NULL,
  `target_controller` varchar(32) DEFAULT NULL,
  `target_subject` varchar(32) DEFAULT NULL,
  `target_id` int(11) unsigned DEFAULT NULL,
  `target_url` varchar(250) DEFAULT NULL,
  `target_title` varchar(100) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `user_id` (`user_id`),
  KEY `target_id` (`target_id`,`target_controller`,`target_subject`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='User subscriptions to new comments' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `[[dbprefix]]content_datasets`
--

CREATE TABLE `[[dbprefix]]content_datasets` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `ctype_id` int(11) unsigned DEFAULT NULL COMMENT 'Content typpe ID',
  `name` varchar(32) NOT NULL COMMENT 'Dataset title',
  `title` varchar(100) DEFAULT NULL COMMENT 'Dataset heading',
  `description` text COMMENT 'Dataset description',
  `ordering` int(11) unsigned DEFAULT NULL COMMENT 'Order number',
  `is_visible` tinyint(1) unsigned DEFAULT NULL COMMENT 'Show dataset on site?',
  `filters` text COMMENT 'Dataset filters array',
  `sorting` text COMMENT 'Sorting rules array',
  `index` varchar(40) DEFAULT NULL COMMENT 'Index title',
  `groups_view` text COMMENT 'Show to groups',
  `groups_hide` text COMMENT 'Hide from groups',
  `seo_keys` varchar(256) DEFAULT NULL,
  `seo_desc` varchar(256) DEFAULT NULL,
  `seo_title` varchar(256) DEFAULT NULL,
  `seo_h1` varchar(256) DEFAULT NULL,
  `cats_view` text COMMENT 'Show to cats',
  `cats_hide` text COMMENT 'Hide from cats',
  `max_count` smallint(5) unsigned NOT NULL DEFAULT '0',
  `target_controller` varchar(32) DEFAULT NULL,
  `list` text,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `ctype_id` (`ctype_id`,`ordering`),
  KEY `index` (`index`),
  KEY `target_controller` (`target_controller`,`ordering`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Content type datasets' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `[[dbprefix]]content_folders`
--

CREATE TABLE `[[dbprefix]]content_folders` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `ctype_id` int(11) unsigned DEFAULT NULL,
  `user_id` int(11) unsigned DEFAULT NULL,
  `title` varchar(128) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `user_id` (`user_id`,`ctype_id`,`title`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `[[dbprefix]]content_relations`
--

CREATE TABLE `[[dbprefix]]content_relations` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(256) DEFAULT NULL,
  `target_controller` varchar(32) NOT NULL DEFAULT 'content',
  `ctype_id` int(11) unsigned DEFAULT NULL,
  `child_ctype_id` int(11) unsigned DEFAULT NULL,
  `layout` varchar(32) DEFAULT NULL,
  `options` text,
  `seo_keys` varchar(256) DEFAULT NULL,
  `seo_desc` varchar(256) DEFAULT NULL,
  `seo_title` varchar(256) DEFAULT NULL,
  `ordering` int(11) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `ctype_id` (`ctype_id`,`ordering`),
  KEY `child_ctype_id` (`child_ctype_id`,`target_controller`,`ordering`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `[[dbprefix]]content_relations_bind`
--

CREATE TABLE `[[dbprefix]]content_relations_bind` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `parent_ctype_id` int(11) unsigned DEFAULT NULL,
  `parent_item_id` int(11) unsigned DEFAULT NULL,
  `child_ctype_id` int(11) unsigned DEFAULT NULL,
  `child_item_id` int(11) unsigned DEFAULT NULL,
  `target_controller` varchar(32) NOT NULL DEFAULT 'content',
  PRIMARY KEY (`id`),
  KEY `parent_ctype_id` (`parent_ctype_id`),
  KEY `child_ctype_id` (`child_ctype_id`),
  KEY `parent_item_id` (`parent_item_id`,`target_controller`),
  KEY `child_item_id` (`child_item_id`,`target_controller`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `[[dbprefix]]content_types`
--

CREATE TABLE `[[dbprefix]]content_types` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(100) DEFAULT NULL,
  `name` varchar(32) NOT NULL COMMENT 'System name',
  `description` text COMMENT 'Description',
  `ordering` int(11) DEFAULT NULL,
  `is_enabled` tinyint(1) unsigned DEFAULT '1',
  `is_date_range` tinyint(1) unsigned DEFAULT NULL,
  `is_cats` tinyint(1) unsigned DEFAULT NULL COMMENT 'Enable categories?',
  `is_cats_recursive` tinyint(1) unsigned DEFAULT NULL COMMENT 'End-to-end view of categories?',
  `is_folders` tinyint(1) unsigned DEFAULT NULL,
  `is_in_groups` tinyint(1) unsigned DEFAULT NULL COMMENT 'Create in groups',
  `is_in_groups_only` tinyint(1) unsigned DEFAULT NULL COMMENT 'Create only in groups',
  `is_comments` tinyint(1) unsigned DEFAULT NULL COMMENT 'Comments enabled?',
  `is_rating` tinyint(1) unsigned DEFAULT NULL COMMENT 'Allow rating?',
  `is_tags` tinyint(1) unsigned DEFAULT NULL,
  `is_auto_keys` tinyint(1) unsigned DEFAULT NULL COMMENT 'Autogeneration of keywords?',
  `is_auto_desc` tinyint(1) unsigned DEFAULT NULL COMMENT 'Autogeneration of description?',
  `is_auto_url` tinyint(1) unsigned DEFAULT NULL COMMENT 'Generate URL from title?',
  `is_fixed_url` tinyint(1) unsigned DEFAULT NULL COMMENT 'Do not change URL when editing an item?',
  `url_pattern` varchar(255) DEFAULT '{id}-{title}',
  `options` text COMMENT 'Options array',
  `labels` text COMMENT 'Labels array',
  `seo_keys` varchar(256) DEFAULT NULL COMMENT 'Keywords',
  `seo_desc` varchar(256) DEFAULT NULL COMMENT 'Description',
  `seo_title` varchar(256) DEFAULT NULL,
  `item_append_html` text,
  `is_fixed` tinyint(1) unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `name` (`name`),
  KEY `ordering` (`ordering`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8mb4 COMMENT='Content types' AUTO_INCREMENT=8 ;

--
-- Dumping data for table `[[dbprefix]]content_types`
--

INSERT INTO `[[dbprefix]]content_types` VALUES
(1, 'Pages', 'pages', NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL, NULL, '{id}-{title}', '---\nis_cats_change: null\nis_cats_open_root: null\nis_cats_only_last: null\nis_show_cats: null\nis_tags_in_list: null\nis_tags_in_item: null\nis_rss: null\nlist_on: null\nprofile_on: null\nlist_show_filter: null\nlist_expand_filter: null\nlist_style:\nitem_on: 1\nis_cats_keys: null\nis_cats_desc: null\nis_cats_auto_url: 1\nseo_title_pattern:\nseo_keys_pattern: ''{content|string_get_meta_keywords}''\nseo_desc_pattern: ''{content|string_get_meta_description}''\n', '---\none: page\ntwo: pages\nmany: pages\ncreate: page\nlist:\nprofile:\n', NULL, NULL, NULL, NULL, 1),
(7, 'Photo albums', 'albums', '<p>User photo albums</p>', NULL, 1, NULL, NULL, NULL, NULL, 1, NULL, 1, 1, 1, 1, 1, 1, 1, '{id}-{title}', '---\nis_cats_change: null\nis_cats_open_root: null\nis_cats_only_last: null\nis_show_cats: null\nis_tags_in_list: null\nis_tags_in_item: 1\nis_rss: 1\nlist_on: 1\nprofile_on: 1\nlist_show_filter: null\nlist_expand_filter: null\nitem_on: 1\nis_cats_keys: null\nis_cats_desc: null\nis_cats_auto_url: 1\nseo_title_pattern:\nseo_keys_pattern: ''{content|string_get_meta_keywords}''\nseo_desc_pattern: ''{content|string_get_meta_description}''\n', '---\none: album\ntwo: albums\nmany: albums\ncreate: album\nlist:\nprofile:\n', NULL, NULL, NULL, NULL, 1);

-- --------------------------------------------------------

--
-- Table structure for table `[[dbprefix]]controllers`
--

CREATE TABLE `[[dbprefix]]controllers` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(64) NOT NULL,
  `name` varchar(32) NOT NULL COMMENT 'System name',
  `slug` varchar(64) DEFAULT NULL,
  `is_enabled` tinyint(1) unsigned DEFAULT '1' COMMENT 'Enabled?',
  `options` text COMMENT 'Settings array',
  `author` varchar(128) NOT NULL COMMENT 'Author name',
  `url` varchar(250) DEFAULT NULL COMMENT 'Author site',
  `version` varchar(8) NOT NULL COMMENT 'Version',
  `is_backend` tinyint(1) unsigned DEFAULT NULL COMMENT 'Admin panel?',
  `is_external` tinyint(1) unsigned DEFAULT NULL COMMENT 'Third-party component',
  `files` text COMMENT 'Controller files list (for third-party components)',
  `addon_id` int(11) unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8mb4 COMMENT='Components' AUTO_INCREMENT=44 ;

--
-- Dumping data for table `[[dbprefix]]controllers`
--

INSERT INTO `[[dbprefix]]controllers` VALUES
(1, 'Control Panel', 'admin', NULL, 1, '---\ndashboard_order:\n  stat: 0\n  activity: 1\n  news: 2\n  sysinfo: 3\n  resources: 4\n  users_online: 5\n', 'InstantCMS Team', 'https://instantcms.ru', '2.0', 0, NULL, NULL, NULL),
(2, 'Content', 'content', NULL, 1, NULL, 'InstantCMS Team', 'https://instantcms.ru', '2.0', 0, NULL, NULL, NULL),
(3, 'User Profiles', 'users', NULL, 1, '---\nis_ds_online: 1\nis_ds_rating: 1\nis_ds_popular: 1\nis_filter: 1\nis_auth_only: null\nis_status: 1\nis_wall: 1\nis_themes_on: 1\nmax_tabs: 7\nis_friends_on: 1\nis_karma: 1\nis_karma_comments: 1\nkarma_time: 30\nrestricted_slugs: |\n  *admin*\r\n  *moder*\nlimit: 15\nlist_allowed: [ ]\nshow_user_groups: 1\nshow_reg_data: 1\nshow_last_visit: 1\nprofile_max_friends_count: 10\nseo_keys: ""\nseo_desc: ''Site users list{page:, %s}''\ntag_title: ""\ntag_desc: ""\ntag_h1: ""\nseo_h1: Users\nseo_title: ''Users{page:, %s}''\n', 'InstantCMS Team', 'https://instantcms.ru', '2.0', 1, NULL, NULL, NULL),
(5, 'Private messages', 'messages', NULL, 1, '---\nlimit: 10\ngroups_allowed: [ ]\neditor: "2"\neditor_presets: null\ntime_delete_old: 0\nrealtime_mode: ajax\nrefresh_time: 15\nsocket_host: ""\nsocket_port: 3000\nuse_queue: null\nis_enable_pm: 1\nis_contact_first_select: null\ntypograph_id: "2"\nemail_template: ""\n', 'InstantCMS Team', 'https://instantcms.ru/', '2.0', 1, NULL, NULL, NULL),
(6, 'Authorization & Registration', 'auth', NULL, 1, '---\nis_reg_enabled: 1\nreg_reason: >\n  We apologize, but,\n  we do not accept\n  new users at the moment\nis_reg_invites: null\nreg_captcha: null\nverify_email: null\nverify_exp: 48\nauth_captcha: null\nrestricted_emails: |\n  *@shitmail.me\r\n  *@mailspeed.ru\r\n  *@temp-mail.ru\r\n  *@guerrillamail.com\r\n  *@12minutemail.com\r\n  *@mytempemail.com\r\n  *@spamobox.com\r\n  *@disposableinbox.com\r\n  *@filzmail.com\r\n  *@freemail.ms\r\n  *@anonymbox.com\r\n  *@lroid.com\r\n  *@yopmail.com\r\n  *@TempEmail.net\r\n  *@spambog.com\r\n  *@mailforspam.com\r\n  *@spam.su\r\n  *@no-spam.ws\r\n  *@mailinator.com\r\n  *@spamavert.com\r\n  *@trashcanmail.com\nrestricted_names: |\n  admin*\r\n  moderator\nrestricted_ips:\nis_invites: 1\nis_invites_strict: 1\ninvites_period: 7\ninvites_qty: 3\ninvites_min_karma: 0\ninvites_min_rating: 0\ninvites_min_days: 0\nreg_auto_auth: 1\nfirst_auth_redirect: profileedit\nauth_redirect: none\ndef_groups:\n  - 3\nis_site_only_auth_users: null\nguests_allow_controllers:\n  - auth\n  - geo\nseo_keys:\nseo_desc:\n', 'InstantCMS Team', 'https://instantcms.ru', '2.0', 1, NULL, NULL, NULL),
(13, 'Moderation Panel', 'moderation', NULL, 1, NULL, 'InstantCMS Team', 'https://instantcms.ru', '2.0', 1, NULL, NULL, NULL),
(19, 'Image Upload', 'images', NULL, 1, NULL, 'InstantCMS Team', 'https://instantcms.ru', '2.0', 1, NULL, NULL, NULL),
(23, 'Wysiwyg editors', 'wysiwygs', NULL, 1, NULL, 'InstantCMS Team', 'https://instantcms.ru', '2.0', 1, NULL, NULL, NULL),
(25, 'Multilinguality', 'languages', NULL, 1, '---\nservice: google\n', 'InstantCMS Team', 'https://instantcms.ru', '2.0', 1, NULL, NULL, NULL),
(26, 'Typograph', 'typograph', NULL, 1, NULL, 'InstantCMS Team', 'https://instantcms.ru', '2.0', 1, NULL, NULL, NULL),
(27, 'Activity Feed', 'activity', NULL, 1, '---\ntypes:\n  - "25"\n  - "26"\n  - "27"\n  - "23"\n  - "22"\n  - "21"\n  - "20"\n  - "1"\n  - "28"\n  - "7"\n  - "19"\n  - "12"\n  - "24"\n  - "29"\n  - "8"\nsubject_max_title_len: 50\nlimit: 15\nseo_h1: ""\nseo_title: ""\nseo_keys: ""\nseo_desc: ""\n', 'InstantCMS Team', 'https://instantcms.ru', '2.0', 1, NULL, NULL, NULL),
(28, 'Billing', 'billing', NULL, 1, '---\ncurrency_title: points\ncurrency: point|points|points\ncurrency_real: usd\nmin_pack: 0\nreg_bonus: 0\nin_mode: enabled\nprices:\n  - \n    amount: 1\n    price: 1\nis_plans: 1\nplan_remind_days: 3\nis_transfers: 1\nis_transfers_mail: null\nis_transfers_notify: null\nrtp_groups: [ ]\nis_rtp: null\nrtp_rate: 0.5\nis_ptr: 1\nptr_rate: 1\nis_out: null\nout_groups: [ ]\nis_out_mail: 1\nout_period_days: 0\nout_min: 1\nout_rate: 0.5\nout_systems: |\n  Stripe\r\n  PayPal\nout_email: ""\nis_refs: 1\nref_days: 100\nref_url: ""\nref_terms: ""\nref_bonus: 0\nref_mode: all\nref_type: linear\nref_scale: 2\nref_levels:\n  - \n    percent: 1\ncur_real_symb: $\nis_refs_as_invite: 1\npay_field_html: ''<a class="btn btn-primary billing-buy-field" href="{url}">{solid%coins} {title}</a>''\nlimit_log: 15\nlimit_out: 15\nlimit_refs: 15\nbtn_titles:\n  guest: ''Buying from {price}''\n  user: ''Buy for {price}''\nplan_features:\n  - \n    name: comments_add\n    title: >\n      Addition\n      comments\n    type: bool\n  - \n    name: news_count\n    title: >\n      Maximum\n      news count\n    type: value\n  - \n    name: support\n    title: Support 24/7\n    type: bool\nrefs_groups: [ ]\n', 'InstantCMS Team', 'https://instantcms.io', '2.1.0', 1, NULL, NULL, NULL),
(29, 'Comments', 'comments', NULL, 1, '---\ndisable_icms_comments: null\nis_guests: 1\nguest_ip_delay: 1\nrestricted_ips: ""\ndim_negative: 1\nupdate_user_rating: 1\nlimit: 20\nseo_keys: ""\nseo_desc: ""\nis_guests_moderate: 1\nrestricted_emails: ""\nrestricted_names: ""\nlimit_nesting: 5\nshow_author_email: 1\neditor: "4"\neditor_presets: null\nshow_list:\n  - "0"\ntypograph_id: "1"\n', 'InstantCMS Team', 'https://instantcms.ru', '2.0', 1, NULL, NULL, NULL),
(30, 'Content Security Policy', 'csp', NULL, 1, '---\nenable_csp: null\ncsp_str: "default-src ''self''; script-src ''unsafe-eval'' ''nonce-{nonce}'' ''strict-dynamic''; style-src ''self'' data: ''unsafe-inline'' https://fonts.googleapis.com; img-src ''self'' data: https://instantcms.ru; font-src ''self'' data: https://fonts.gstatic.com"\nis_report_only: 1\nenable_report: 1\n', 'InstantCMS Team', 'https://instantcms.ru', '2.0', 1, NULL, NULL, NULL),
(31, 'Form constructor', 'forms', NULL, 1, '---\nsend_text: >\n  Thanks! Form\n sent successfully.\nallow_embed: null\nallow_embed_domain:\ndenied_embed_domain:\nletter: |\n  [subject:Form: {form_title} - {site}]\r\n  \r\n  Hello.\r\n  \r\n  The form <b>{form_title}</b> has been sent from the site {site}.\r\n  \r\n  Form data:\r\n  \r\n  {form_data}\r\n  \r\n  --\r\n   Best regards, {site}\r\n   <small>This letter is sent automatically, please do not reply.</small>\nnotify_text: ''<p>Hello.</p><p>Form <strong>{form_title}</strong> submitted.</p><p><strong>Form data:</strong></p><p>{form_data}</p>''\n', 'InstantCMS Team', 'https://instantcms.ru', '2.0', 1, NULL, NULL, NULL),
(32, 'Geobase', 'geo', NULL, 1, '---\nauto_detect: 1\nauto_detect_provider: geoiplookup\ndefault_country_id: null\ndefault_country_id_cache: null\ndefault_region_id: null\ndefault_region_id_cache: null\n', 'InstantCMS Team', 'https://instantcms.ru', '2.0', 1, NULL, NULL, NULL),
(33, 'Groups', 'groups', NULL, 1, '---\nis_ds_rating: 1\nis_ds_popular: 1\nis_wall: 1\n', 'InstantCMS Team', 'https://instantcms.ru', '2.0', 1, NULL, NULL, NULL),
(34, 'Photos', 'photos', NULL, 1, '---\nsizes:\n  - normal\n  - small\n  - big\nis_origs: 1\npreset: big\npreset_small: normal\ntypes: |\n  1 | Фото\n  2 | Векторы\n  3 | Иллюстрации\nordering: date_pub\norderto: desc\nlimit: 20\ndownload_view:\n  normal: [ ]\n  micro: [ ]\n  small: [ ]\n  content_list_small: [ ]\n  content_list: [ ]\n  big: [ ]\n  content_item: [ ]\n  original: [ ]\ndownload_hide:\n  normal: null\n  micro: null\n  small: null\n  content_list_small: null\n  content_list: null\n  big: null\n  content_item: null\n  original:\n    - "1"\n    - "3"\n    - "4"\nurl_pattern: ''{id}-{title}''\npreset_related: normal\nrelated_limit: 0\neditor: "1"\neditor_presets: null\nseo_keys: ""\nseo_desc: ""\nallow_add_public_albums: null\nallow_download: 1\nhide_photo_item_info: null\ntypograph_id: "3"\n', 'InstantCMS Team', 'https://instantcms.ru', '2.0', 1, NULL, NULL, NULL),
(35, 'Rating', 'rating', NULL, 1, '---\nis_hidden: 1\nis_show: 1\nallow_guest_vote: null\ntemplate: widget\n', 'InstantCMS Team', 'https://instantcms.ru', '2.0', 1, NULL, NULL, NULL),
(36, 'reCAPTCHA', 'recaptcha', NULL, 1, '---\npublic_key:\nprivate_key:\ntheme: light\nlang: en\nsize: normal\n', 'InstantCMS Team', 'https://instantcms.ru', '2.0', 1, NULL, NULL, NULL),
(37, 'Redirects', 'redirect', NULL, 1, '---\nno_redirect_list:\nblack_list:\nis_check_link: null\nwhite_list:\nredirect_time: 10\nis_check_refer: 1\n', 'InstantCMS Team', 'https://instantcms.ru', '2.0', 1, NULL, NULL, NULL),
(38, 'RSS feeds', 'rss', NULL, 1, NULL, 'InstantCMS Team', 'https://instantcms.ru', '2.0', 1, NULL, NULL, NULL),
(39, 'Search', 'search', NULL, 1, '---\nperpage: 15\ntypes:\n  - pages\n  - articles\n  - posts\n  - albums\n  - board\n  - news\n  - groups\n  - photos\nis_hash_tag: null\norder_by: fsort\nseo_h1: ''{query?|Search}{query?Search results for «%s»}''\nseo_title: ''{query?|Search}{query?Search results for «%s»}''\nseo_keys: ""\nseo_desc: ''{target_title}: {query?|Search}{query?Search results for «%s»}''\nlist_type_as_original: "0"\nshow_search_params: 1\n', 'InstantCMS Team', 'https://instantcms.ru', '2.0', 1, NULL, NULL, NULL),
(40, 'Sitemap and robots.txt generator', 'sitemap', NULL, 1, '---\nsources:\n  content|pages: 1\n  content|albums: 1\n  content|articles: 1\n  content|posts: 1\n  content|board: 1\n  content|news: 1\n  frontpage|root: 1\n  groups|profiles: 1\n  users|profiles: 1\nshow_lastmod: 1\nshow_changefreq: 1\ndefault_changefreq: daily\nshow_priority: 1\nrobots: |\n  User-agent: *\r\n  Disallow:\ngenerate_html_sitemap: null\nchangefreq:\n  content:\n    pages:\n    albums:\n    articles:\n    posts:\n    board:\n    news:\n  frontpage:\n    root:\n  groups:\n    profiles:\n  users:\n    profiles:\npriority:\n  content:\n    pages:\n    albums:\n    articles:\n    posts:\n    board:\n    news:\n  frontpage:\n    root: 1.0\n  groups:\n    profiles: 0.8\n  users:\n    profiles: 0.8\n', 'InstantCMS Team', 'https://instantcms.ru', '2.0', 1, NULL, NULL, NULL),
(41, 'Subscriptions', 'subscriptions', NULL, 1, '---\nguest_email_confirmation: 1\nneed_auth: null\nverify_exp: 24\nupdate_user_rating: 1\nrating_value: 1\nadmin_email:\nlimit: 20\n', 'InstantCMS Team', 'https://instantcms.ru', '2.0', 1, NULL, NULL, NULL),
(42, 'Tags', 'tags', NULL, 1, '---\nordering: frequency\nstyle: cloud\nmax_fs: 22\nmin_fs: 12\nmin_freq: 0\nmin_len: 0\nlimit: 10\ncolors:\nshuffle: 1\nseo_keys:\nseo_desc:\nseo_title_pattern:\nseo_desc_pattern:\nseo_h1_pattern:\n', 'InstantCMS Team', 'https://instantcms.ru', '2.0', 1, NULL, NULL, NULL),
(43, 'Wall', 'wall', NULL, 1, '---\nlimit: 15\norder_by: date_last_reply\nshow_entries: 5\neditor: "4"\neditor_presets: null\ntypograph_id: "1"\n', 'InstantCMS Team', 'https://instantcms.ru', '2.0', 1, NULL, NULL, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `[[dbprefix]]con_albums`
--

CREATE TABLE `[[dbprefix]]con_albums` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(100) DEFAULT NULL,
  `content` text,
  `slug` varchar(100) DEFAULT NULL,
  `seo_keys` varchar(256) DEFAULT NULL,
  `seo_desc` varchar(256) DEFAULT NULL,
  `seo_title` varchar(256) DEFAULT NULL,
  `tags` varchar(1000) DEFAULT NULL,
  `template` varchar(150) DEFAULT NULL,
  `date_pub` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `date_last_modified` timestamp NULL DEFAULT NULL,
  `date_pub_end` timestamp NULL DEFAULT NULL,
  `is_pub` tinyint(1) NOT NULL DEFAULT '1',
  `hits_count` int(11) DEFAULT '0',
  `user_id` int(11) unsigned DEFAULT NULL,
  `parent_id` int(11) unsigned DEFAULT NULL,
  `parent_type` varchar(32) DEFAULT NULL,
  `parent_title` varchar(100) DEFAULT NULL,
  `parent_url` varchar(255) DEFAULT NULL,
  `is_parent_hidden` tinyint(1) DEFAULT NULL,
  `category_id` int(11) unsigned NOT NULL DEFAULT '1',
  `folder_id` int(11) unsigned DEFAULT NULL,
  `is_comments_on` tinyint(1) unsigned DEFAULT '1',
  `comments` int(11) NOT NULL DEFAULT '0',
  `rating` int(11) NOT NULL DEFAULT '0',
  `is_deleted` tinyint(1) unsigned DEFAULT NULL,
  `is_approved` tinyint(1) DEFAULT '1',
  `approved_by` int(11) DEFAULT NULL,
  `date_approved` timestamp NULL DEFAULT NULL,
  `is_private` tinyint(1) NOT NULL DEFAULT '0',
  `cover_image` text,
  `photos_count` int(11) NOT NULL DEFAULT '0',
  `is_public` tinyint(1) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `category_id` (`category_id`),
  KEY `folder_id` (`folder_id`),
  KEY `slug` (`slug`),
  KEY `date_pub` (`is_pub`,`is_parent_hidden`,`is_deleted`,`is_approved`,`date_pub`),
  KEY `parent_id` (`parent_id`,`parent_type`,`date_pub`),
  KEY `user_id` (`user_id`,`date_pub`),
  KEY `date_pub_end` (`date_pub_end`),
  FULLTEXT KEY `fulltext_search` (`title`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `[[dbprefix]]con_albums_cats`
--

CREATE TABLE `[[dbprefix]]con_albums_cats` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `parent_id` int(11) unsigned DEFAULT NULL,
  `title` varchar(200) DEFAULT NULL,
  `description` text,
  `slug` varchar(255) DEFAULT NULL,
  `slug_key` varchar(255) DEFAULT NULL,
  `seo_keys` varchar(256) DEFAULT NULL,
  `seo_desc` varchar(256) DEFAULT NULL,
  `seo_title` varchar(256) DEFAULT NULL,
  `seo_h1` varchar(256) DEFAULT NULL,
  `ordering` int(11) DEFAULT NULL,
  `ns_left` int(11) DEFAULT NULL,
  `ns_right` int(11) DEFAULT NULL,
  `ns_level` int(11) DEFAULT NULL,
  `ns_differ` varchar(32) NOT NULL DEFAULT '',
  `ns_ignore` tinyint(4) NOT NULL DEFAULT '0',
  `allow_add` text,
  `is_hidden` tinyint(1) unsigned DEFAULT NULL,
  `cover` text,
  PRIMARY KEY (`id`),
  KEY `ordering` (`ordering`),
  KEY `slug` (`slug`),
  KEY `ns_left` (`ns_level`,`ns_right`,`ns_left`),
  KEY `parent_id` (`parent_id`,`ns_left`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8mb4 AUTO_INCREMENT=2 ;

--
-- Dumping data for table `[[dbprefix]]con_albums_cats`
--

INSERT INTO `[[dbprefix]]con_albums_cats` VALUES
(1, 0, '---', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 2, 0, '', 0, NULL, NULL, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `[[dbprefix]]con_albums_cats_bind`
--

CREATE TABLE `[[dbprefix]]con_albums_cats_bind` (
  `item_id` int(11) DEFAULT NULL,
  `category_id` int(11) DEFAULT NULL,
  KEY `item_id` (`item_id`),
  KEY `category_id` (`category_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;

-- --------------------------------------------------------

--
-- Table structure for table `[[dbprefix]]con_albums_fields`
--

CREATE TABLE `[[dbprefix]]con_albums_fields` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `ctype_id` int(11) DEFAULT NULL,
  `name` varchar(40) DEFAULT NULL,
  `title` varchar(100) DEFAULT NULL,
  `hint` varchar(200) DEFAULT NULL,
  `ordering` int(11) DEFAULT NULL,
  `is_enabled` tinyint(1) unsigned DEFAULT '1',
  `fieldset` varchar(32) DEFAULT NULL,
  `type` varchar(16) DEFAULT NULL,
  `is_in_list` tinyint(1) DEFAULT NULL,
  `is_in_item` tinyint(1) DEFAULT NULL,
  `is_in_filter` tinyint(1) DEFAULT NULL,
  `is_private` tinyint(1) DEFAULT NULL,
  `is_fixed` tinyint(1) DEFAULT NULL,
  `is_fixed_type` tinyint(1) DEFAULT NULL,
  `is_system` tinyint(1) DEFAULT NULL,
  `values` text,
  `options` text,
  `groups_read` text,
  `groups_add` text,
  `groups_edit` text,
  `filter_view` text,
  PRIMARY KEY (`id`),
  KEY `is_enabled` (`is_enabled`,`ordering`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8mb4 AUTO_INCREMENT=7 ;

--
-- Dumping data for table `[[dbprefix]]con_albums_fields`
--

INSERT INTO `[[dbprefix]]con_albums_fields` VALUES
(1, 7, 'title', 'Album title', NULL, 1, 1, NULL, 'caption', 1, 1, 1, NULL, 1, 1, 0, NULL, '---\nlabel_in_list: none\nlabel_in_item: none\nis_required: 1\nis_digits: null\nis_alphanumeric: null\nis_email: null\nis_unique: null\nprofile_value:\n', '---\n- 0\n', NULL, '---\n- 0\n', NULL),
(2, 7, 'date_pub', 'Publication date', NULL, 2, 1, NULL, 'date', 1, 1, 1, NULL, 1, 1, 1, NULL, '---\nlabel_in_list: none\nlabel_in_item: left\nis_required: null\nis_digits: null\nis_alphanumeric: null\nis_email: null\nis_unique: null\nprofile_value:\n', '---\n- 0\n', NULL, '---\n- 0\n', NULL),
(3, 7, 'user', 'Author', NULL, 3, 1, NULL, 'user', 1, 1, NULL, NULL, 1, 1, 1, NULL, '---\nlabel_in_list: none\nlabel_in_item: left\nis_required: null\nis_digits: null\nis_alphanumeric: null\nis_email: null\nis_unique: null\nprofile_value:\n', '---\n- 0\n', NULL, '---\n- 0\n', NULL),
(4, 7, 'content', 'Album description', NULL, 4, 1, NULL, 'text', 1, 1, NULL, NULL, 1, NULL, NULL, NULL, '---\nmin_length: 0\nmax_length: 2048\nis_html_filter: null\nlabel_in_list: none\nlabel_in_item: none\nis_required: null\nis_digits: null\nis_alphanumeric: null\nis_email: null\nis_unique: null\nprofile_value:\n', '---\n- 0\n', NULL, '---\n- 0\n', NULL),
(5, 7, 'cover_image', 'Album cover image', NULL, 5, 1, NULL, 'image', 1, NULL, NULL, NULL, 1, 1, 1, NULL, '---\nlabel_in_list: left\nlabel_in_item: left\nis_required: null\nis_digits: null\nis_alphanumeric: null\nis_email: null\nis_unique: null\nprofile_value:\n', '---\n- 0\n', NULL, '---\n- 0\n', NULL),
(6, 7, 'is_public', 'Public photo album', 'Other users will be able to upload photos in this album', 6, 1, NULL, 'checkbox', 0, 0, NULL, NULL, 1, NULL, NULL, NULL, '---\nlabel_in_list: none\nlabel_in_item: none\n', NULL, NULL, NULL, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `[[dbprefix]]con_albums_props`
--

CREATE TABLE `[[dbprefix]]con_albums_props` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(100) DEFAULT NULL,
  `fieldset` varchar(32) DEFAULT NULL,
  `type` varchar(16) DEFAULT NULL,
  `is_in_filter` tinyint(1) DEFAULT NULL,
  `values` text,
  `options` text,
  PRIMARY KEY (`id`),
  KEY `is_active` (`is_in_filter`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `[[dbprefix]]con_albums_props_bind`
--

CREATE TABLE `[[dbprefix]]con_albums_props_bind` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `prop_id` int(11) DEFAULT NULL,
  `cat_id` int(11) DEFAULT NULL,
  `ordering` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `prop_id` (`prop_id`),
  KEY `ordering` (`cat_id`,`ordering`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `[[dbprefix]]con_albums_props_values`
--

CREATE TABLE `[[dbprefix]]con_albums_props_values` (
  `prop_id` int(11) DEFAULT NULL,
  `item_id` int(11) DEFAULT NULL,
  `value` varchar(255) DEFAULT NULL,
  KEY `prop_id` (`prop_id`),
  KEY `item_id` (`item_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;

-- --------------------------------------------------------

--
-- Table structure for table `[[dbprefix]]con_pages`
--

CREATE TABLE `[[dbprefix]]con_pages` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(100) DEFAULT NULL,
  `content` text,
  `slug` varchar(100) DEFAULT NULL,
  `seo_keys` varchar(256) DEFAULT NULL,
  `seo_desc` varchar(256) DEFAULT NULL,
  `seo_title` varchar(256) DEFAULT NULL,
  `tags` varchar(1000) DEFAULT NULL,
  `template` varchar(150) DEFAULT NULL,
  `date_pub` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `date_last_modified` timestamp NULL DEFAULT NULL,
  `date_pub_end` timestamp NULL DEFAULT NULL,
  `is_pub` tinyint(1) NOT NULL DEFAULT '1',
  `hits_count` int(11) DEFAULT '0',
  `user_id` int(11) unsigned DEFAULT NULL,
  `parent_id` int(11) unsigned DEFAULT NULL,
  `parent_type` varchar(32) DEFAULT NULL,
  `parent_title` varchar(100) DEFAULT NULL,
  `parent_url` varchar(255) DEFAULT NULL,
  `is_parent_hidden` tinyint(1) DEFAULT NULL,
  `category_id` int(11) unsigned NOT NULL DEFAULT '1',
  `folder_id` int(11) unsigned DEFAULT NULL,
  `is_comments_on` tinyint(1) unsigned DEFAULT '1',
  `comments` int(11) NOT NULL DEFAULT '0',
  `rating` int(11) NOT NULL DEFAULT '0',
  `is_deleted` tinyint(1) unsigned DEFAULT NULL,
  `is_approved` tinyint(1) DEFAULT '1',
  `approved_by` int(11) DEFAULT NULL,
  `date_approved` timestamp NULL DEFAULT NULL,
  `is_private` tinyint(1) NOT NULL DEFAULT '0',
  `attach` text,
  PRIMARY KEY (`id`),
  KEY `category_id` (`category_id`),
  KEY `folder_id` (`folder_id`),
  KEY `slug` (`slug`),
  KEY `date_pub` (`is_pub`,`is_parent_hidden`,`is_deleted`,`is_approved`,`date_pub`),
  KEY `parent_id` (`parent_id`,`parent_type`,`date_pub`),
  KEY `user_id` (`user_id`,`date_pub`),
  KEY `date_pub_end` (`date_pub_end`),
  FULLTEXT KEY `fulltext_search` (`title`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `[[dbprefix]]con_pages_cats`
--

CREATE TABLE `[[dbprefix]]con_pages_cats` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `parent_id` int(11) unsigned DEFAULT NULL,
  `title` varchar(200) DEFAULT NULL,
  `description` text,
  `slug` varchar(255) DEFAULT NULL,
  `slug_key` varchar(255) DEFAULT NULL,
  `seo_keys` varchar(256) DEFAULT NULL,
  `seo_desc` varchar(256) DEFAULT NULL,
  `seo_title` varchar(256) DEFAULT NULL,
  `seo_h1` varchar(256) DEFAULT NULL,
  `ordering` int(11) DEFAULT NULL,
  `ns_left` int(11) DEFAULT NULL,
  `ns_right` int(11) DEFAULT NULL,
  `ns_level` int(11) DEFAULT NULL,
  `ns_differ` varchar(32) NOT NULL DEFAULT '',
  `ns_ignore` tinyint(4) NOT NULL DEFAULT '0',
  `allow_add` text,
  `is_hidden` tinyint(1) unsigned DEFAULT NULL,
  `cover` text,
  PRIMARY KEY (`id`),
  KEY `ordering` (`ordering`),
  KEY `slug` (`slug`),
  KEY `ns_left` (`ns_level`,`ns_right`,`ns_left`),
  KEY `parent_id` (`parent_id`,`ns_left`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8mb4 AUTO_INCREMENT=2 ;

--
-- Dumping data for table `[[dbprefix]]con_pages_cats`
--

INSERT INTO `[[dbprefix]]con_pages_cats` VALUES
(1, 0, '---', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 2, 0, '', 0, NULL, NULL, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `[[dbprefix]]con_pages_cats_bind`
--

CREATE TABLE `[[dbprefix]]con_pages_cats_bind` (
  `item_id` int(11) DEFAULT NULL,
  `category_id` int(11) DEFAULT NULL,
  KEY `item_id` (`item_id`),
  KEY `category_id` (`category_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;

-- --------------------------------------------------------

--
-- Table structure for table `[[dbprefix]]con_pages_fields`
--

CREATE TABLE `[[dbprefix]]con_pages_fields` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `ctype_id` int(11) DEFAULT NULL,
  `name` varchar(40) DEFAULT NULL,
  `title` varchar(100) DEFAULT NULL,
  `hint` varchar(200) DEFAULT NULL,
  `ordering` int(11) DEFAULT NULL,
  `is_enabled` tinyint(1) unsigned DEFAULT '1',
  `fieldset` varchar(32) DEFAULT NULL,
  `type` varchar(16) DEFAULT NULL,
  `is_in_list` tinyint(1) DEFAULT NULL,
  `is_in_item` tinyint(1) DEFAULT NULL,
  `is_in_filter` tinyint(1) DEFAULT NULL,
  `is_private` tinyint(1) DEFAULT NULL,
  `is_fixed` tinyint(1) DEFAULT NULL,
  `is_fixed_type` tinyint(1) DEFAULT NULL,
  `is_system` tinyint(1) DEFAULT NULL,
  `values` text,
  `options` text,
  `groups_read` text,
  `groups_add` text,
  `groups_edit` text,
  `filter_view` text,
  PRIMARY KEY (`id`),
  KEY `is_enabled` (`is_enabled`,`ordering`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8mb4 AUTO_INCREMENT=6 ;

--
-- Dumping data for table `[[dbprefix]]con_pages_fields`
--

INSERT INTO `[[dbprefix]]con_pages_fields` VALUES
(1, 1, 'title', 'Title', NULL, 1, 1, NULL, 'caption', 1, 1, 1, NULL, 1, 1, NULL, NULL, '---\nlabel_in_list: none\nlabel_in_item: none\nis_required: 1\nis_digits: null\nis_alphanumeric: null\nis_email: null\nis_unique: null\nprofile_value:\n', '---\n- 0\n', NULL, '---\n- 0\n', NULL),
(2, 1, 'date_pub', 'Publication date', NULL, 2, 1, NULL, 'date', NULL, NULL, NULL, NULL, 1, NULL, 1, NULL, '---\nlabel_in_list: none\nlabel_in_item: left\nis_required: null\nis_digits: null\nis_alphanumeric: null\nis_email: null\nis_unique: null\nprofile_value:\n', '---\n- 0\n', NULL, '---\n- 0\n', NULL),
(3, 1, 'user', 'Author', NULL, 3, 1, NULL, 'user', NULL, NULL, NULL, NULL, 1, NULL, 1, NULL, '---\nlabel_in_list: none\nlabel_in_item: left\nis_required: null\nis_digits: null\nis_alphanumeric: null\nis_email: null\nis_unique: null\nprofile_value:\n', '---\n- 0\n', NULL, '---\n- 0\n', NULL),
(4, 1, 'content', 'Page content', NULL, 4, 1, NULL, 'html', NULL, 1, NULL, NULL, 1, NULL, NULL, NULL, '---\neditor: 3\nis_html_filter: 1\nteaser_len:\nlabel_in_list: none\nlabel_in_item: none\nis_required: 1\nis_digits: null\nis_alphanumeric: null\nis_email: null\nis_unique: null\nprofile_value:\n', '---\n- 0\n', NULL, '---\n- 0\n', NULL),
(5, 1, 'attach', 'Download', 'Attach a file to the page', 5, 1, NULL, 'file', NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, '---\nshow_name: 0\nextensions: jpg, gif, png\nmax_size_mb: 2\nshow_size: 1\nlabel_in_list: none\nlabel_in_item: none\nis_required: null\nis_digits: null\nis_alphanumeric: null\nis_email: null\nis_unique: null\nprofile_value:\n', '---\n- 0\n', NULL, '---\n- 0\n', NULL);

-- --------------------------------------------------------

--
-- Table structure for table `[[dbprefix]]con_pages_props`
--

CREATE TABLE `[[dbprefix]]con_pages_props` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(100) DEFAULT NULL,
  `fieldset` varchar(32) DEFAULT NULL,
  `type` varchar(16) DEFAULT NULL,
  `is_in_filter` tinyint(1) DEFAULT NULL,
  `values` text,
  `options` text,
  PRIMARY KEY (`id`),
  KEY `is_active` (`is_in_filter`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `[[dbprefix]]con_pages_props_bind`
--

CREATE TABLE `[[dbprefix]]con_pages_props_bind` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `prop_id` int(11) DEFAULT NULL,
  `cat_id` int(11) DEFAULT NULL,
  `ordering` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `prop_id` (`prop_id`),
  KEY `ordering` (`cat_id`,`ordering`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `[[dbprefix]]con_pages_props_values`
--

CREATE TABLE `[[dbprefix]]con_pages_props_values` (
  `prop_id` int(11) DEFAULT NULL,
  `item_id` int(11) DEFAULT NULL,
  `value` varchar(255) DEFAULT NULL,
  KEY `prop_id` (`prop_id`),
  KEY `item_id` (`item_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;

-- --------------------------------------------------------

--
-- Table structure for table `[[dbprefix]]csp_logs`
--

CREATE TABLE `[[dbprefix]]csp_logs` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `date_pub` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `blocked_uri` varchar(255) DEFAULT NULL,
  `referrer` varchar(255) DEFAULT NULL,
  `line_number` smallint(6) DEFAULT NULL,
  `document_uri` varchar(255) DEFAULT NULL,
  `violated_directive` varchar(64) DEFAULT NULL,
  `effective_directive` varchar(64) DEFAULT NULL,
  `status_code` smallint(6) DEFAULT NULL,
  `ip` varbinary(16) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `date_pub` (`date_pub`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='CSP Logs' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `[[dbprefix]]events`
--

CREATE TABLE `[[dbprefix]]events` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `event` varchar(64) DEFAULT NULL COMMENT 'Event',
  `listener` varchar(32) DEFAULT NULL COMMENT 'Listener (component)',
  `ordering` int(5) unsigned DEFAULT NULL COMMENT 'Order number',
  `is_enabled` tinyint(1) unsigned DEFAULT '1' COMMENT 'Activity`',
  PRIMARY KEY (`id`),
  KEY `hook` (`event`),
  KEY `listener` (`listener`),
  KEY `is_enabled` (`is_enabled`,`ordering`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8mb4 COMMENT='Binding hooks to events' AUTO_INCREMENT=412 ;

--
-- Dumping data for table `[[dbprefix]]events`
--

INSERT INTO `[[dbprefix]]events` VALUES
(6, 'widget_content_list_before_update_bind', 'content', 6, 1),
(7, 'menu_admin', 'admin', 7, 1),
(8, 'user_login', 'admin', 8, 1),
(9, 'admin_confirm_login', 'admin', 9, 1),
(10, 'user_profile_update', 'auth', 10, 1),
(11, 'frontpage', 'auth', 11, 1),
(12, 'page_is_allowed', 'auth', 12, 1),
(13, 'frontpage_types', 'auth', 13, 1),
(23, 'fulltext_search', 'content', 23, 1),
(24, 'admin_dashboard_chart', 'content', 24, 1),
(25, 'menu_content', 'content', 25, 1),
(26, 'user_delete', 'content', 26, 1),
(27, 'user_privacy_types', 'content', 27, 1),
(28, 'sitemap_sources', 'content', 28, 1),
(30, 'rss_content_controller_form', 'content', 30, 1),
(31, 'rss_content_controller_after_update', 'content', 31, 1),
(32, 'frontpage', 'content', 32, 1),
(33, 'frontpage_types', 'content', 33, 1),
(34, 'ctype_relation_childs', 'content', 34, 1),
(35, 'admin_content_dataset_fields_list', 'content', 35, 1),
(36, 'moderation_list', 'content', 36, 1),
(37, 'ctype_lists_context', 'content', 37, 1),
(38, 'ctype_after_update', 'frontpage', 38, 1),
(39, 'ctype_after_delete', 'frontpage', 39, 1),
(62, 'user_delete', 'images', 62, 1),
(63, 'admin_dashboard_chart', 'messages', 63, 1),
(64, 'menu_messages', 'messages', 64, 1),
(65, 'users_profile_view', 'messages', 65, 1),
(66, 'user_privacy_types', 'messages', 66, 1),
(67, 'user_delete', 'messages', 67, 1),
(68, 'user_notify_types', 'messages', 68, 1),
(69, 'admin_dashboard_block', 'moderation', 69, 1),
(70, 'content_after_trash_put', 'moderation', 70, 1),
(71, 'content_after_restore', 'moderation', 71, 1),
(72, 'content_before_delete', 'moderation', 72, 1),
(73, 'menu_moderation', 'moderation', 73, 1),
(99, 'html_filter', 'typograph', 99, 1),
(100, 'admin_dashboard_chart', 'users', 100, 1),
(101, 'menu_users', 'users', 101, 1),
(102, 'rating_vote', 'users', 102, 1),
(103, 'user_notify_types', 'users', 103, 1),
(104, 'user_privacy_types', 'users', 104, 1),
(105, 'user_tab_info', 'users', 105, 1),
(106, 'auth_login', 'users', 106, 1),
(107, 'user_preloaded', 'users', 107, 1),
(108, 'wall_permissions', 'users', 108, 1),
(109, 'wall_after_add', 'users', 109, 1),
(110, 'wall_after_delete', 'users', 110, 1),
(111, 'content_privacy_types', 'users', 111, 1),
(112, 'content_view_hidden', 'users', 112, 1),
(113, 'sitemap_sources', 'users', 113, 1),
(114, 'content_before_childs', 'users', 114, 1),
(115, 'ctype_relation_childs', 'users', 115, 1),
(119, 'page_is_allowed', 'widgets', 119, 1),
(123, 'content_groups_before_delete', 'moderation', 123, 1),
(124, 'comments_after_refuse', 'moderation', 124, 1),
(127, 'admin_subscriptions_list', 'content', 127, 1),
(140, 'admin_dashboard_block', 'users', 140, 1),
(142, 'sitemap_sources', 'frontpage', 142, 1),
(150, 'tags_search_subjects', 'content', 150, 1),
(151, 'images_before_upload', 'typograph', 151, 1),
(152, 'engine_start', 'content', 152, 1),
(164, 'comments_targets', 'content', 164, 1),
(167, 'admin_dashboard_block', 'admin', 167, 1),
(169, 'user_notify_types', 'content', 169, 1),
(170, 'form_users_password_2fa', 'authga', 170, 1),
(171, 'controller_auth_after_save_options', 'authga', 171, 1),
(172, 'form_users_password', 'auth', 172, 1),
(173, 'auth_twofactor_list', 'authga', 173, 1),
(174, 'users_before_edit_password', 'authga', 174, 1),
(176, 'admin_col_scheme_options', 'bootstrap4', 176, 1),
(178, 'admin_row_scheme_options', 'bootstrap4', 178, 1),
(186, 'ctype_field_users_after_update', 'bootstrap4', 186, 1),
(187, 'widget_menu_form', 'bootstrap4', 187, 1),
(190, 'db_nested_tables', 'content', 190, 1),
(191, 'widget_content_list_form', 'content', 191, 1),
(214, 'render_widget_menu_menu', 'bootstrap4', 214, 1),
(218, 'comments_after_delete_list', 'moderation', 218, 1),
(219, 'form_get', 'languages', 219, 1),
(220, 'widget_options_full_form', 'languages', 220, 1),
(221, 'languages_forms', 'admin', 221, 1),
(222, 'languages_forms', 'widgets', 222, 1),
(223, 'languages_forms', 'content', 223, 1),
(224, 'form_make', 'languages', 224, 1),
(225, 'languages_forms', 'users', 225, 1),
(228, 'grid_activity_types', 'languages', 228, 1),
(229, 'content_form_field', 'languages', 229, 1),
(230, 'ctype_field_after_add', 'languages', 230, 1),
(231, 'ctype_field_after_update', 'languages', 231, 1),
(232, 'engine_start', 'languages', 232, 1),
(234, 'ctype_basic_form', 'languages', 234, 1),
(235, 'frontpage_action_index', 'languages', 235, 1),
(236, 'content_before_item', 'languages', 236, 1),
(237, 'content_before_list', 'languages', 237, 1),
(238, 'content_item_form', 'languages', 238, 1),
(239, 'content_after_add_approve', 'activity', 1, 1),
(240, 'content_after_update_approve', 'activity', 2, 1),
(241, 'publish_delayed_content', 'activity', 3, 1),
(242, 'user_delete', 'activity', 4, 1),
(243, 'user_tab_info', 'activity', 5, 1),
(244, 'user_tab_show', 'activity', 6, 1),
(245, 'subscribe', 'activity', 125, 1),
(246, 'unsubscribe', 'activity', 126, 1),
(247, 'admin_dashboard_block', 'activity', 168, 1),
(248, 'admin_inline_save_subscriptions', 'activity', 175, 1),
(249, 'user_add_status_after', 'activity', 181, 1),
(250, 'users_add_friendship_mutual', 'activity', 188, 1),
(251, 'user_registered', 'activity', 189, 1),
(252, 'users_after_update', 'activity', 193, 1),
(253, 'ctype_labels_after_update', 'activity', 195, 1),
(254, 'ctype_after_delete', 'activity', 196, 1),
(255, 'comments_rate_after', 'activity', 197, 1),
(256, 'content_albums_after_delete', 'activity', 198, 1),
(257, 'content_photos_after_add', 'activity', 199, 1),
(258, 'comments_after_delete_list', 'activity', 200, 1),
(259, 'content_after_delete', 'activity', 201, 1),
(260, 'content_after_restore', 'activity', 205, 1),
(261, 'content_after_trash_put', 'activity', 206, 1),
(262, 'content_groups_after_delete', 'activity', 209, 1),
(263, 'group_after_join', 'activity', 210, 1),
(264, 'group_after_leave', 'activity', 211, 1),
(265, 'groups_after_accept_request', 'activity', 212, 1),
(266, 'groups_after_update', 'activity', 213, 1),
(267, 'languages_forms', 'activity', 227, 1),
(268, 'admin_users_filter', 'billing', 244, 1),
(269, 'content_add', 'billing', 245, 1),
(270, 'content_after_add_approve', 'billing', 246, 1),
(271, 'content_after_update_approve', 'billing', 247, 1),
(272, 'content_before_item', 'billing', 249, 1),
(273, 'content_edit', 'billing', 250, 1),
(274, 'content_validate', 'billing', 251, 1),
(275, 'cron_payouts', 'billing', 252, 1),
(276, 'cron_relegation', 'billing', 253, 1),
(277, 'ctype_after_add', 'billing', 254, 1),
(278, 'ctype_after_delete', 'billing', 255, 1),
(279, 'grid_admin_users', 'billing', 257, 1),
(280, 'menu_billing', 'billing', 258, 1),
(281, 'user_delete', 'billing', 259, 1),
(282, 'user_profile_buttons', 'billing', 260, 1),
(283, 'user_registered', 'billing', 261, 1),
(284, 'user_tab_info', 'billing', 262, 1),
(285, 'user_tab_show', 'billing', 263, 1),
(286, 'engine_start', 'billing', 264, 1),
(287, 'content_after_add', 'billing', 265, 1),
(288, 'content_after_update', 'billing', 266, 1),
(289, 'content_after_delete', 'billing', 267, 1),
(290, 'moderation_cancel', 'billing', 268, 1),
(291, 'moderation_rework', 'billing', 269, 1),
(292, 'content_after_update', 'comments', 14, 1),
(293, 'admin_dashboard_chart', 'comments', 16, 1),
(294, 'user_privacy_types', 'comments', 17, 1),
(295, 'user_login', 'comments', 18, 1),
(296, 'user_notify_types', 'comments', 19, 1),
(297, 'user_delete', 'comments', 20, 1),
(298, 'user_tab_info', 'comments', 21, 1),
(299, 'user_tab_show', 'comments', 22, 1),
(300, 'moderation_list', 'comments', 122, 1),
(301, 'content_before_item', 'comments', 156, 1),
(302, 'content_item_form', 'comments', 158, 1),
(303, 'ctype_basic_form', 'comments', 159, 1),
(304, 'photos_before_item', 'comments', 163, 1),
(305, 'content_before_list', 'comments', 166, 1),
(306, 'content_after_delete', 'comments', 202, 1),
(307, 'content_after_restore', 'comments', 207, 1),
(308, 'content_after_trash_put', 'comments', 208, 1),
(309, 'restore_user', 'comments', 216, 1),
(310, 'set_user_is_deleted', 'comments', 217, 1),
(311, 'photos_after_delete_list', 'comments', 239, 1),
(312, 'admin_content_filter', 'comments', 240, 1),
(313, 'admin_content_dataset_fields_list', 'comments', 241, 1),
(314, 'engine_start', 'csp', 239, 1),
(315, 'content_before_item', 'forms', 192, 1),
(316, 'languages_forms', 'forms', 233, 1),
(317, 'form_admin_widgets_page', 'geo', 243, 1),
(318, 'admin_dashboard_chart', 'groups', 40, 1),
(319, 'content_view_hidden', 'groups', 41, 1),
(320, 'content_before_list', 'groups', 42, 1),
(321, 'rating_vote', 'groups', 43, 1),
(322, 'user_privacy_types', 'groups', 44, 1),
(323, 'user_profile_buttons', 'groups', 45, 1),
(324, 'user_notify_types', 'groups', 46, 1),
(325, 'user_delete', 'groups', 47, 1),
(326, 'user_tab_info', 'groups', 48, 1),
(327, 'user_tab_show', 'groups', 49, 1),
(328, 'menu_groups', 'groups', 50, 1),
(329, 'sitemap_sources', 'groups', 51, 1),
(330, 'sitemap_urls', 'groups', 52, 1),
(331, 'content_privacy_types', 'groups', 53, 1),
(332, 'content_add_permissions', 'groups', 54, 1),
(333, 'fulltext_search', 'groups', 55, 1),
(334, 'content_before_childs', 'groups', 56, 1),
(335, 'ctype_relation_childs', 'groups', 57, 1),
(336, 'admin_groups_dataset_fields_list', 'groups', 58, 1),
(337, 'content_validate', 'groups', 59, 1),
(338, 'moderation_list', 'groups', 60, 1),
(339, 'content_before_item', 'groups', 61, 1),
(340, 'ctype_lists_context', 'groups', 120, 1),
(341, 'ctype_basic_form', 'groups', 161, 1),
(342, 'content_item_form_context', 'groups', 194, 1),
(343, 'languages_forms', 'groups', 226, 1),
(344, 'content_albums_items_html', 'photos', 74, 1),
(345, 'fulltext_search', 'photos', 75, 1),
(346, 'admin_albums_ctype_menu', 'photos', 76, 1),
(347, 'content_albums_after_add', 'photos', 77, 1),
(348, 'content_albums_after_delete', 'photos', 78, 1),
(349, 'content_albums_item_html', 'photos', 79, 1),
(350, 'content_albums_before_item', 'photos', 80, 1),
(351, 'content_albums_before_list', 'photos', 81, 1),
(352, 'user_delete', 'photos', 82, 1),
(353, 'admin_subscriptions_list', 'photos', 128, 1),
(354, 'sitemap_sources', 'photos', 143, 1),
(355, 'comments_targets', 'photos', 165, 1),
(356, 'user_delete', 'rating', 83, 1),
(357, 'content_before_list', 'rating', 84, 1),
(358, 'user_notify_types', 'rating', 155, 1),
(359, 'content_before_item', 'rating', 157, 1),
(360, 'ctype_basic_form', 'rating', 160, 1),
(361, 'photos_before_item', 'rating', 162, 1),
(362, 'content_after_delete', 'rating', 203, 1),
(363, 'photos_after_delete_list', 'rating', 240, 1),
(364, 'admin_content_filter', 'rating', 241, 1),
(365, 'admin_content_dataset_fields_list', 'rating', 242, 1),
(366, 'captcha_html', 'recaptcha', 85, 1),
(367, 'captcha_validate', 'recaptcha', 86, 1),
(368, 'captcha_list', 'recaptcha', 87, 1),
(369, 'engine_start', 'redirect', 215, 1),
(370, 'ctype_basic_form', 'rss', 87, 1),
(371, 'ctype_before_add', 'rss', 88, 1),
(372, 'ctype_after_add', 'rss', 89, 1),
(373, 'ctype_before_edit', 'rss', 90, 1),
(374, 'ctype_before_update', 'rss', 91, 1),
(375, 'ctype_after_delete', 'rss', 92, 1),
(376, 'content_before_category', 'rss', 93, 1),
(377, 'content_before_profile', 'rss', 94, 1),
(378, 'photos_before_item', 'search', 95, 1),
(379, 'content_before_list', 'search', 96, 1),
(380, 'content_before_item', 'search', 97, 1),
(381, 'before_print_head', 'search', 98, 1),
(382, 'engine_start', 'sitemap', 141, 1),
(383, 'user_delete', 'subscriptions', 129, 1),
(384, 'content_toolbar_html', 'subscriptions', 130, 1),
(385, 'photos_toolbar_html', 'subscriptions', 131, 1),
(386, 'content_filter_buttons_html', 'subscriptions', 132, 1),
(387, 'user_tab_info', 'subscriptions', 133, 1),
(388, 'content_photos_after_add', 'subscriptions', 134, 1),
(389, 'user_notify_types', 'subscriptions', 135, 1),
(390, 'user_tab_show', 'subscriptions', 136, 1),
(391, 'content_after_add_approve', 'subscriptions', 137, 1),
(392, 'publish_delayed_content', 'subscriptions', 138, 1),
(393, 'ctype_basic_form', 'subscriptions', 139, 1),
(394, 'content_category_after_update', 'subscriptions', 153, 1),
(395, 'ctype_lists_context', 'tags', 121, 1),
(396, 'ctype_basic_form', 'tags', 144, 1),
(397, 'content_after_add', 'tags', 145, 1),
(398, 'content_before_update', 'tags', 146, 1),
(399, 'content_item_form', 'tags', 147, 1),
(400, 'content_before_item', 'tags', 148, 1),
(401, 'content_before_list', 'tags', 149, 1),
(402, 'content_after_delete', 'tags', 204, 1),
(403, 'admin_dashboard_chart', 'wall', 116, 1),
(404, 'user_notify_types', 'wall', 117, 1),
(405, 'user_delete', 'wall', 118, 1),
(406, 'process_render_users_profile_view', 'wall', 179, 1),
(407, 'process_render_groups_group_view', 'wall', 180, 1),
(408, 'user_add_status', 'wall', 182, 1),
(409, 'form_groups_options', 'wall', 183, 1),
(410, 'form_users_options', 'wall', 184, 1),
(411, 'user_privacy_types', 'wall', 185, 1);

-- --------------------------------------------------------

--
-- Table structure for table `[[dbprefix]]forms`
--

CREATE TABLE `[[dbprefix]]forms` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(32) DEFAULT NULL,
  `title` varchar(255) DEFAULT NULL,
  `description` text,
  `options` text,
  `tpl_form` varchar(100) DEFAULT NULL,
  `hash` varchar(128) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `hash` (`hash`),
  KEY `name` (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Form designer fields' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `[[dbprefix]]forms_fields`
--

CREATE TABLE `[[dbprefix]]forms_fields` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `form_id` int(11) DEFAULT NULL,
  `name` varchar(40) DEFAULT NULL,
  `title` varchar(100) DEFAULT NULL,
  `hint` varchar(200) DEFAULT NULL,
  `ordering` int(11) DEFAULT NULL,
  `is_enabled` tinyint(3) unsigned DEFAULT '1',
  `fieldset` varchar(32) DEFAULT NULL,
  `type` varchar(16) DEFAULT NULL,
  `values` text,
  `options` text,
  PRIMARY KEY (`id`),
  KEY `form_id` (`form_id`,`is_enabled`,`ordering`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Поля конструктора форм' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `[[dbprefix]]geo_cities`
--

CREATE TABLE `[[dbprefix]]geo_cities` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `country_id` int(10) unsigned NOT NULL DEFAULT '0',
  `region_id` int(10) unsigned NOT NULL DEFAULT '0',
  `name` varchar(128) NOT NULL DEFAULT '',
  `ordering` int(11) unsigned NOT NULL DEFAULT '10000',
  `is_enabled` tinyint(1) unsigned DEFAULT '1',
  PRIMARY KEY (`id`),
  KEY `country_id` (`country_id`),
  KEY `region_id` (`region_id`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8mb4 AUTO_INCREMENT=47910 ;

--
-- Dumping data for table `[[dbprefix]]geo_cities`
--

INSERT INTO `[[dbprefix]]geo_cities` VALUES
(10, 254, 122, 'Mobile', 10000, 1),
(277, 254, 127, 'Eagle', 10000, 1),
(429, 254, 135, 'Macomb', 10000, 1),
(616, 254, 145, 'Redwood Falls', 10000, 1),
(687, 254, 149, 'Burwell', 10000, 1),
(1153, 254, 172, 'Burlington', 10000, 1),
(1154, 254, 172, 'Montpelier', 10000, 1),
(1155, 254, 172, 'Newport', 10000, 1),
(1156, 254, 172, 'Rutland', 10000, 1),
(1157, 254, 172, 'Saint Johnsbury', 10000, 1),
(1158, 254, 172, 'Wilmington', 10000, 1),
(1163, 165, 76, 'Ulaangom', 10000, 1),
(1165, 33, 8, 'Rio Branco', 10000, 1),
(1166, 33, 1219, 'Bel', 10000, 1),
(1171, 114, 49, 'Denpasar', 10000, 1),
(1172, 33, 10, 'Macap', 10000, 1),
(1173, 33, 11, 'Salvador', 10000, 1),
(1175, 33, 13, 'Teresina', 10000, 1),
(1180, 254, 166, 'Salt Lake City', 10000, 1),
(1181, 33, 15, 'Foz do Igua', 10000, 1),
(1182, 43, 35, 'Montreal', 10000, 1),
(1185, 203, 3544, 'Ulan-Ude', 10000, 1),
(1189, 203, 3608, 'Izhevsk', 10000, 1),
(1190, 203, 3617, 'Birobidzhan', 10000, 1),
(1191, 159, 56, 'Hermosillo', 10000, 1),
(1193, 159, 2891, 'Tepic', 10000, 1),
(1196, 165, 2738, 'Ondorhaan', 10000, 1),
(1197, 165, 80, 'Choibalsan', 10000, 1),
(1201, 33, 16, 'Macei', 10000, 1),
(1202, 33, 17, 'Jo', 10000, 1),
(1203, 33, 18, 'Boa Vista', 10000, 1),
(1204, 33, 19, 'Aracaju', 10000, 1),
(1205, 43, 36, 'Edmonton', 10000, 1),
(1206, 43, 37, 'Toronto', 10000, 1),
(1211, 159, 59, 'Guadalajara', 10000, 1),
(1212, 159, 60, 'Pachuca', 10000, 1),
(1213, 159, 61, 'Cuernavaca', 10000, 1),
(1214, 159, 62, 'Tuxtla Gutierrez', 10000, 1),
(1215, 159, 63, 'Villahermosa', 10000, 1),
(1216, 159, 2896, 'Merida', 10000, 1),
(1217, 165, 81, 'Moron', 10000, 1),
(1218, 165, 82, 'Suhbaatar', 10000, 1),
(1221, 254, 133, 'Honolulu', 10000, 1),
(1222, 254, 138, 'Kansas City', 10000, 1),
(1225, 14, 1, 'Melbourne', 10000, 1),
(1226, 14, 2, 'Hobart', 10000, 1),
(1227, 33, 20, 'Man', 10000, 1),
(1228, 33, 21, 'S', 10000, 1),
(1229, 33, 22, 'Porto Velho', 10000, 1),
(1230, 43, 38, 'Winnipeg', 10000, 1),
(1231, 203, 105, 'Makhachkala', 10000, 1),
(1232, 203, 106, 'Yoshkar-Ola', 10000, 1),
(1235, 114, 2160, 'Ujung Pandang', 10000, 1),
(1236, 159, 2887, 'Saltillo', 10000, 1),
(1237, 159, 66, 'Acapulco', 10000, 1),
(1238, 165, 2729, 'Tsetserleg', 10000, 1),
(1242, 254, 131, 'Miami', 10000, 1),
(1249, 33, 1220, 'Recife', 10000, 1),
(1250, 33, 24, 'S', 10000, 1),
(1251, 33, 25, 'Palmas', 10000, 1),
(1253, 203, 110, 'Kazan', 10000, 1),
(1254, 159, 2893, 'Queretaro', 10000, 1),
(1255, 159, 2890, 'Morelia', 10000, 1),
(1265, 254, 149, 'Omaha', 10000, 1),
(1267, 254, 158, 'Oklahoma City', 10000, 1),
(1268, 14, 3, 'Brisbane', 10000, 1),
(1275, 159, 69, 'Monterrey', 10000, 1),
(1276, 159, 70, 'Ciudad Victoria', 10000, 1),
(1277, 159, 71, 'Leon', 10000, 1),
(1278, 165, 2737, 'Altai', 10000, 1),
(1283, 33, 26, 'Cuiab', 10000, 1),
(1284, 43, 39, 'Halifax', 10000, 1),
(1285, 165, 2731, 'Olgii', 10000, 1),
(1288, 254, 152, 'Newark', 10000, 1),
(1291, 33, 27, 'Belo Horizonte', 10000, 1),
(1292, 43, 40, 'Regina', 10000, 1),
(1293, 43, 41, 'St. John''s', 10000, 1),
(1295, 159, 72, 'Chetumal', 10000, 1),
(1298, 43, 42, 'Fredericton', 10000, 1),
(1303, 254, 161, 'Newport', 10000, 1),
(1306, 33, 28, 'Vit', 10000, 1),
(1307, 33, 29, 'Rio de Janeiro', 10000, 1),
(1308, 33, 30, 'Florian', 10000, 1),
(1311, 14, 4, 'Sydney', 10000, 1),
(1312, 14, 5, 'Adelaide', 10000, 1),
(1314, 114, 2151, 'Pontianak', 10000, 1),
(1315, 114, 2154, 'Samarinda', 10000, 1),
(1316, 159, 73, 'Mexicali', 10000, 1),
(1317, 254, 155, 'Raleigh', 10000, 1),
(1319, 33, 1217, 'Bras', 10000, 1),
(1320, 43, 43, 'Vancouver', 10000, 1),
(1323, 14, 6, 'Perth', 10000, 1),
(1324, 33, 32, 'Porto Alegre', 10000, 1),
(1327, 14, 7, 'Darwin', 10000, 1),
(1328, 33, 33, 'Campo Grande', 10000, 1),
(1329, 33, 34, 'Natal', 10000, 1),
(1331, 159, 74, 'La Paz', 10000, 1),
(1332, 43, 45, 'Charlottetown', 10000, 1),
(1333, 43, 46, 'Yellowknife', 10000, 1),
(1336, 14, 174, 'Canberra', 10000, 1),
(1342, 165, 193, 'Bulgan', 10000, 1),
(1343, 165, 194, 'Hovd', 10000, 1),
(1344, 159, 2886, 'Campeche', 10000, 1),
(1345, 159, 196, 'Chihuahua', 10000, 1),
(1346, 159, 197, 'Colima', 10000, 1),
(1347, 159, 198, 'Durango', 10000, 1),
(1348, 159, 2889, 'Estado De Mexico', 10000, 1),
(1350, 159, 201, 'Oaxaca', 10000, 1),
(1353, 159, 204, 'Tlaxcala', 10000, 1),
(1355, 159, 206, 'Zacatecas', 10000, 1),
(1362, 203, 3546, 'Chelyabinsk', 10000, 1),
(1364, 203, 3548, 'Chukchi', 10000, 1),
(1367, 203, 3552, 'Irkutsk', 10000, 1),
(1368, 203, 3553, 'Ivanovo', 10000, 1),
(1371, 203, 3561, 'Kemerovo', 10000, 1),
(1384, 203, 3578, 'Moscow', 10000, 1),
(1386, 203, 3582, 'Novgorod', 10000, 1),
(1387, 203, 3583, 'Novosibirsk', 10000, 1),
(1388, 203, 3584, 'Omsk', 10000, 1),
(1390, 203, 3585, 'Orenburg', 10000, 1),
(1392, 203, 3588, 'Perm''', 10000, 1),
(1396, 203, 3596, 'Saint Petersburg', 10000, 1),
(1398, 203, 3597, 'Saratov', 10000, 1),
(1400, 203, 3599, 'Smolensk', 10000, 1),
(1402, 203, 3602, 'Tambov', 10000, 1),
(1410, 203, 3612, 'Volgograd', 10000, 1),
(1416, 56, 1322, 'Kinsasa', 10000, 1),
(3332, 39, 1192, 'Moulmein', 10000, 1),
(3333, 11, 1018, 'Gyumri', 10000, 1),
(3334, 11, 1018, 'Spitak', 10000, 1),
(3335, 11, 1017, 'Vanadzor', 10000, 1),
(3336, 11, 1022, 'Yerevan', 10000, 1),
(3338, 10, 1051, 'Bahia Blanca', 10000, 1),
(3340, 10, 1055, 'Cordoba', 10000, 1),
(3341, 10, 1058, 'Crespo', 10000, 1),
(3342, 10, 1066, 'General Roca', 10000, 1),
(3343, 10, 1051, 'La Plata', 10000, 1),
(3344, 10, 1063, 'Luj', 10000, 1),
(3345, 10, 1065, 'Neuquen', 10000, 1),
(3346, 10, 1058, 'Paran', 10000, 1),
(3347, 10, 1051, 'Pinamar', 10000, 1),
(3348, 10, 1070, 'Rio Cuarto', 10000, 1),
(3349, 10, 1051, 'San Clemente del Tuy', 10000, 1),
(3350, 10, 1074, 'San Miguel de Tucuman', 10000, 1),
(3351, 10, 1071, 'Santa Fe', 10000, 1),
(3352, 15, 1083, 'Abtenau', 10000, 1),
(3353, 15, 1080, 'Graz', 10000, 1),
(3354, 15, 1081, 'Kitzbuhel', 10000, 1),
(3355, 15, 1077, 'Lilienfeld', 10000, 1),
(3356, 15, 1078, 'Linz', 10000, 1),
(3357, 15, 1079, 'Salzburg', 10000, 1),
(3358, 15, 1081, 'Solden', 10000, 1),
(3361, 15, 1075, 'Stegersbach', 10000, 1),
(3362, 15, 1078, 'Steyr', 10000, 1),
(3364, 14, 4, 'Albury', 10000, 1),
(3365, 14, 5, 'Beachport', 10000, 1),
(3366, 14, 4, 'Bega', 10000, 1),
(3367, 14, 1, 'Berwick', 10000, 1),
(3368, 14, 3, 'Blue Mountain', 10000, 1),
(3369, 14, 4, 'Bowral', 10000, 1),
(3370, 14, 3, 'Cairns', 10000, 1),
(3371, 14, 2, 'Campbell Town', 10000, 1),
(3372, 14, 1, 'Chelsea', 10000, 1),
(3374, 14, 3, 'Cooktown', 10000, 1),
(3375, 14, 4, 'Cootamundra', 10000, 1),
(3376, 14, 3, 'Croydon', 10000, 1),
(3377, 14, 4, 'Dubbo', 10000, 1),
(3378, 14, 5, 'Elizabeth', 10000, 1),
(3379, 14, 3, 'Gold Coast', 10000, 1),
(3380, 14, 4, 'Goulburn', 10000, 1),
(3381, 14, 4, 'Grafton', 10000, 1),
(3383, 14, 4, 'Inverell', 10000, 1),
(3384, 14, 4, 'Kempsey', 10000, 1),
(3386, 14, 4, 'Lithgow', 10000, 1),
(3387, 14, 3, 'Mackay', 10000, 1),
(3388, 14, 4, 'Maitland', 10000, 1),
(3389, 14, 3, 'Manly', 10000, 1),
(3390, 14, 1, 'Mildura', 10000, 1),
(3391, 14, 5, 'Millicent', 10000, 1),
(3392, 14, 1, 'Moe', 10000, 1),
(3393, 14, 4, 'Mona Vale', 10000, 1),
(3394, 14, 4, 'Newcastle', 10000, 1),
(3395, 14, 4, 'Orange', 10000, 1),
(3396, 14, 1, 'Shepparton', 10000, 1),
(3397, 14, 4, 'Srtoud', 10000, 1),
(3399, 14, 4, 'Tamworth', 10000, 1),
(3400, 14, 4, 'Wagga Wagga', 10000, 1),
(3401, 14, 4, 'Warringa', 10000, 1),
(3402, 14, 4, 'Wauchope', 10000, 1),
(3403, 14, 4, 'Wyong', 10000, 1),
(3404, 14, 4, 'Young', 10000, 1),
(3405, 16, 904, 'Baku', 10000, 1),
(3406, 24, 5051, 'Brussels', 10000, 1),
(3407, 24, 1131, 'Charleroi', 10000, 1),
(3408, 24, 1137, 'Diksmuide', 10000, 1),
(3409, 24, 5306, 'Dilbeek', 10000, 1),
(3410, 24, 1131, 'Frameries', 10000, 1),
(3411, 24, 5305, 'Genappe', 10000, 1),
(3412, 24, 1133, 'Hasselt', 10000, 1),
(3413, 24, 1137, 'Kortrijk', 10000, 1),
(3415, 24, 1129, 'Malines', 10000, 1),
(3416, 24, 1129, 'Mechelen', 10000, 1),
(3417, 24, 1135, 'Namur', 10000, 1),
(3418, 24, 1137, 'Pittem', 10000, 1),
(3419, 38, 5352, 'Bousse', 10000, 1),
(3420, 38, 4486, 'Ouahigouya', 10000, 1),
(3421, 38, 4477, 'Yako', 10000, 1),
(3422, 37, 1244, 'Plovdiv', 10000, 1),
(3423, 37, 1246, 'Sofia', 10000, 1),
(3424, 37, 1247, 'Varna', 10000, 1),
(3426, 29, 1172, 'Cochabamba', 10000, 1),
(3428, 29, 1175, 'Oruro', 10000, 1),
(3429, 29, 1178, 'Santa Cruz', 10000, 1),
(3430, 33, 24, '', 10000, 1),
(3431, 33, 27, 'Barbacena', 10000, 1),
(3432, 33, 24, 'Campinas', 10000, 1),
(3433, 33, 14, 'Fortaleza', 10000, 1),
(3434, 33, 1220, 'Garanhuns', 10000, 1),
(3435, 33, 11, 'Itapetinga', 10000, 1),
(3436, 33, 24, 'Jundia', 10000, 1),
(3437, 33, 15, 'Londrina', 10000, 1),
(3438, 33, 27, 'Nepomuceno', 10000, 1),
(3440, 33, 24, 'S', 10000, 1),
(3441, 31, 1116, 'Gaborone', 10000, 1),
(3442, 23, 1207, 'Minsk', 10000, 1),
(3443, 23, 1208, 'Molodechno', 10000, 1),
(3444, 23, 1206, 'Minsk', 10000, 1),
(3445, 25, 1165, 'Belize', 10000, 1),
(3446, 25, 1166, 'Belmopan', 10000, 1),
(3447, 25, 1170, 'Punta Gorda', 10000, 1),
(3448, 25, 1168, 'Orange Walk', 10000, 1),
(3449, 43, 38, 'Brandon', 10000, 1),
(3450, 43, 37, 'Brockville', 10000, 1),
(3451, 43, 37, 'Brussels', 10000, 1),
(3452, 43, 37, 'Burlington', 10000, 1),
(3453, 43, 37, 'Collingwood', 10000, 1),
(3454, 43, 43, 'Courtenay', 10000, 1),
(3455, 43, 43, 'Cranbrook', 10000, 1),
(3456, 43, 43, 'Dawson Creek', 10000, 1),
(3457, 43, 37, 'Georgina', 10000, 1),
(3459, 43, 35, 'Granby', 10000, 1),
(3460, 43, 37, 'Hamilton', 10000, 1),
(3461, 43, 43, 'Kamloops', 10000, 1),
(3462, 43, 37, 'Kingston', 10000, 1),
(3463, 43, 35, 'La Salle', 10000, 1),
(3464, 43, 37, 'Leamington', 10000, 1),
(3468, 43, 37, 'Markham', 10000, 1),
(3469, 43, 42, 'Moncton', 10000, 1),
(3470, 43, 37, 'Orillia', 10000, 1),
(3473, 43, 37, 'Owen Sound', 10000, 1),
(3474, 43, 37, 'Peterborough', 10000, 1),
(3476, 43, 43, 'Prince Rupert', 10000, 1),
(3477, 43, 35, 'Quebec', 10000, 1),
(3479, 43, 37, 'Sarnia', 10000, 1),
(3480, 43, 37, 'Scarborough', 10000, 1),
(3483, 43, 42, 'Saint John', 10000, 1),
(3484, 43, 37, 'Stratford', 10000, 1),
(3486, 43, 37, 'Thunder Bay', 10000, 1),
(3487, 43, 43, 'Vernon', 10000, 1),
(3488, 43, 37, 'Waterloo', 10000, 1),
(3489, 43, 37, 'Wawa', 10000, 1),
(3492, 43, 37, 'Woodstock', 10000, 1),
(3493, 234, 4029, 'Bern', 10000, 1),
(3494, 234, 4033, 'Chur', 10000, 1),
(3496, 234, 4033, 'Davos', 10000, 1),
(3497, 234, 4027, 'Liestal', 10000, 1),
(3498, 234, 4044, 'Locarno', 10000, 1),
(3499, 234, 4029, 'Saas Fee', 10000, 1),
(3500, 234, 4033, 'Saint Moritz', 10000, 1),
(3501, 234, 4035, 'Sursee', 10000, 1),
(3502, 234, 4039, 'Winterthur', 10000, 1),
(3503, 60, 2283, 'Abidjan', 10000, 1),
(3504, 48, 1370, 'La Serena', 10000, 1),
(3506, 48, 1367, 'Pucon', 10000, 1),
(3507, 48, 1373, 'Punta Arenas', 10000, 1),
(3508, 48, 1375, 'Santiago', 10000, 1),
(3509, 48, 1368, 'Talca', 10000, 1),
(3510, 48, 1372, 'Valdivia', 10000, 1),
(3511, 48, 1364, 'Valparaiso', 10000, 1),
(3513, 42, 1386, 'Douala', 10000, 1),
(3514, 42, 1389, 'Limbe', 10000, 1),
(3515, 42, 1387, 'Mankon Bamenda', 10000, 1),
(3516, 49, 1342, 'Baoding', 10000, 1),
(3517, 49, 1348, 'Beihai', 10000, 1),
(3518, 49, 1353, 'Beijing', 10000, 1),
(3519, 49, 1353, 'Changchun', 10000, 1),
(3520, 49, 1341, 'Changhua City', 10000, 1),
(3521, 49, 1347, 'Changhua', 10000, 1),
(3522, 49, 1343, 'Changsha', 10000, 1),
(3523, 49, 1336, 'Changshu', 10000, 1),
(3524, 49, 1355, 'Changzhi', 10000, 1),
(3525, 49, 1358, 'Chengdu', 10000, 1),
(3529, 49, 1363, 'Chongqing', 10000, 1),
(3532, 49, 1350, 'Dalian', 10000, 1),
(3533, 49, 1349, 'Dandong', 10000, 1),
(3534, 49, 1342, 'Dongying', 10000, 1),
(3537, 49, 1361, 'Foshan', 10000, 1),
(3538, 49, 1339, 'Fuzhou', 10000, 1),
(3539, 49, 1361, 'Guangzhou', 10000, 1),
(3540, 49, 1348, 'Guilin', 10000, 1),
(3543, 49, 1334, 'Hangzhou', 10000, 1),
(3544, 49, 1340, 'Harbin', 10000, 1),
(3545, 49, 1333, 'Hefei', 10000, 1),
(3549, 49, 586, 'Hsin Tien', 10000, 1),
(3550, 49, 586, 'Hsin-Chu County', 10000, 1),
(3551, 49, 1357, 'Hsin-Chu', 10000, 1),
(3552, 49, 586, 'Hsintien City', 10000, 1),
(3553, 49, 1343, 'Hua-Lien City', 10000, 1),
(3554, 49, 586, 'Hua-Lien County', 10000, 1),
(3555, 49, 586, 'I-Lan County', 10000, 1),
(3556, 49, 1337, 'Jilin', 10000, 1),
(3557, 49, 1356, 'Jinan', 10000, 1),
(3558, 49, 1358, 'Kaifeng', 10000, 1),
(3559, 49, 1361, 'Kaiping', 10000, 1),
(3560, 236, 4273, 'Kaohsiung County', 10000, 1),
(3561, 236, 4273, 'Kaohsiung Municipality', 10000, 1),
(3562, 49, 586, 'Keelung City', 10000, 1),
(3563, 49, 1349, 'Kunming', 10000, 1),
(3565, 49, 1350, 'Liaoyang', 10000, 1),
(3566, 49, 1348, 'Liuzhou', 10000, 1),
(3567, 49, 586, 'Luchou Township', 10000, 1),
(3568, 49, 1341, 'Luoyang', 10000, 1),
(3569, 49, 586, 'Miao-Li County', 10000, 1),
(3570, 49, 586, 'Mucha District', 10000, 1),
(3571, 49, 1336, 'Nanjing', 10000, 1),
(3572, 49, 586, 'Nantou County', 10000, 1),
(3573, 49, 586, 'Neipu Hsiang', 10000, 1),
(3574, 49, 1334, 'Ningbo', 10000, 1),
(3575, 49, 586, 'Pei-Kang Township', 10000, 1),
(3576, 49, 1356, 'Qingdao', 10000, 1),
(3577, 49, 1342, 'Qinhuangdao', 10000, 1),
(3578, 49, 1339, 'Quanzhou', 10000, 1),
(3579, 49, 1356, 'Qufu', 10000, 1),
(3580, 49, 1334, 'Quzhou', 10000, 1),
(3581, 49, 1354, 'Shanghai', 10000, 1),
(3582, 49, 1350, 'Shenyang', 10000, 1),
(3583, 49, 1361, 'Shenzhen', 10000, 1),
(3584, 49, 1342, 'Shijiazhuang', 10000, 1),
(3585, 49, 586, 'Shin Lin District', 10000, 1),
(3586, 49, 1334, 'Shiyan', 10000, 1),
(3587, 49, 1336, 'Suzhou', 10000, 1),
(3588, 49, 586, 'Taichung City', 10000, 1),
(3589, 49, 586, 'Tai-Nan City', 10000, 1),
(3592, 49, 586, 'Tamsui Township', 10000, 1),
(3594, 49, 1359, 'TIANJIN', 10000, 1),
(3595, 49, 586, 'Wuchi Town', 10000, 1),
(3596, 49, 1344, 'WUHAN', 10000, 1),
(3597, 49, 1336, 'WUXI', 10000, 1),
(3598, 49, 1339, 'XIAMEN', 10000, 1),
(3599, 49, 1336, 'YANGZHOU', 10000, 1),
(3600, 49, 1356, 'YANTAI', 10000, 1),
(3601, 49, 1350, 'YINGKOU', 10000, 1),
(3602, 49, 1343, 'YUEYANG', 10000, 1),
(3603, 49, 586, 'Yungho City', 10000, 1),
(3604, 49, 1344, 'YUSHU', 10000, 1),
(3605, 49, 1341, 'ZHENGZHOU', 10000, 1),
(3606, 49, 1349, 'ZHENJIANG', 10000, 1),
(3607, 49, 1334, 'ZHOUSHAN', 10000, 1),
(3608, 49, 1361, 'ZHUHAI', 10000, 1),
(3609, 49, 1356, 'ZIBO', 10000, 1),
(3610, 49, 1358, 'ZIGONG', 10000, 1),
(3611, 53, 1401, 'Armenia', 10000, 1),
(3612, 53, 1401, 'Barranquilla', 10000, 1),
(3614, 53, 1419, 'Bucaramanga', 10000, 1),
(3615, 53, 1422, 'Cali', 10000, 1),
(3617, 53, 1398, 'Cartagena', 10000, 1),
(3619, 53, 1403, 'Honda', 10000, 1),
(3620, 53, 1421, 'Ibague', 10000, 1),
(3621, 53, 1430, 'Manizales', 10000, 1),
(3622, 53, 1399, 'Medellin', 10000, 1),
(3623, 53, 1403, 'Popayan', 10000, 1),
(3624, 53, 1431, 'Santa Marta', 10000, 1),
(3625, 53, 1411, 'Sincelejo', 10000, 1),
(3626, 53, 1414, 'Tunja', 10000, 1),
(3627, 59, 1433, 'Cartago', 10000, 1),
(3628, 59, 1434, 'Ciudad Quesada', 10000, 1),
(3629, 59, 1438, 'Escazu', 10000, 1),
(3630, 59, 1435, 'Heredia', 10000, 1),
(3631, 59, 1437, 'Jaco', 10000, 1),
(3632, 59, 1434, 'Liberia', 10000, 1),
(3634, 59, 1438, 'San Jose', 10000, 1),
(3635, 59, 1438, 'San Ramon', 10000, 1),
(3636, 59, 1433, 'Turrialba', 10000, 1),
(3637, 44, 1481, 'Mindelo', 10000, 1),
(3638, 44, 1476, 'Praia', 10000, 1),
(3639, 64, 5122, 'Brno', 10000, 1),
(3640, 64, 5125, 'Karlovy Vary', 10000, 1),
(3641, 64, 5129, 'Krnov', 10000, 1),
(3642, 64, 5128, 'Olomouc', 10000, 1),
(3643, 64, 1746, 'Prague', 10000, 1),
(3644, 64, 5130, 'Zamberk', 10000, 1),
(3645, 91, 1918, 'Aachen', 10000, 1),
(3646, 91, 1913, 'Ansbach', 10000, 1),
(3647, 91, 1926, 'Apolda', 10000, 1),
(3648, 91, 1913, 'Augsburg', 10000, 1),
(3649, 91, 1913, 'Bad Koenigshofen', 10000, 1),
(3650, 91, 1917, 'Bad Zwischenahn', 10000, 1),
(3651, 91, 1927, 'Berlin', 10000, 1),
(3652, 91, 1920, 'Bexbach', 10000, 1),
(3653, 91, 1917, 'Billerbeck', 10000, 1),
(3654, 91, 1919, 'Bingen Am Rhein', 10000, 1),
(3655, 91, 1916, 'Braunfels', 10000, 1),
(3656, 91, 1917, 'Braunschweig', 10000, 1),
(3657, 91, 1920, 'Budingen', 10000, 1),
(3658, 91, 1913, 'Coburg', 10000, 1),
(3659, 91, 1918, 'Cologne', 10000, 1),
(3660, 91, 1912, 'Crailsheim', 10000, 1),
(3661, 91, 1924, 'Cranzahl', 10000, 1),
(3662, 91, 1913, 'Dorfen', 10000, 1),
(3663, 91, 1918, 'Dortmund', 10000, 1),
(3664, 91, 1924, 'Dresden', 10000, 1),
(3665, 91, 1912, 'Eberbach', 10000, 1),
(3666, 91, 1913, 'Eichstatt', 10000, 1),
(3667, 91, 1926, 'Eisenach', 10000, 1),
(3668, 91, 1918, 'Emmerich', 10000, 1),
(3669, 91, 1926, 'Erfurt', 10000, 1),
(3670, 91, 1912, 'Esslingen', 10000, 1),
(3671, 91, 1921, 'Eutin', 10000, 1),
(3672, 91, 1912, 'Freiburg Im Breisgau', 10000, 1),
(3673, 91, 1912, 'Friedrichshafen', 10000, 1),
(3674, 91, 1912, 'Friolzheim', 10000, 1),
(3675, 91, 1913, 'Fussen', 10000, 1),
(3676, 91, 1917, 'Garbsen', 10000, 1),
(3679, 91, 1912, 'Gedern', 10000, 1),
(3680, 91, 1926, 'Gera', 10000, 1),
(3682, 91, 1921, 'Gluckstadt', 10000, 1),
(3683, 91, 1926, 'Gotha', 10000, 1),
(3684, 91, 1912, 'Gottelfingen', 10000, 1),
(3685, 91, 1923, 'Greifswald', 10000, 1),
(3686, 91, 1919, 'Grunstadt', 10000, 1),
(3687, 91, 1913, 'Gunzenhausen', 10000, 1),
(3688, 91, 1915, 'Hamburg', 10000, 1),
(3689, 91, 1918, 'Hamm', 10000, 1),
(3690, 91, 1917, 'Helmstedt', 10000, 1),
(3691, 91, 1918, 'Herford', 10000, 1),
(3692, 91, 1913, 'Hof', 10000, 1),
(3695, 91, 1919, 'Kaiserslautern', 10000, 1),
(3696, 91, 1918, 'Kleve', 10000, 1),
(3697, 91, 1919, 'Koblenz', 10000, 1),
(3698, 91, 1927, 'Koenigs Wusterhausen', 10000, 1),
(3699, 91, 1918, 'Krefeld', 10000, 1),
(3700, 91, 1913, 'Kubelstein Stadt Schesslitz', 10000, 1),
(3701, 91, 1919, 'Kusel', 10000, 1),
(3702, 91, 1912, 'Leinfelden-Echterdingen', 10000, 1),
(3703, 91, 1924, 'Leipzig', 10000, 1),
(3704, 91, 1918, 'Lengerich', 10000, 1),
(3705, 91, 1912, 'Leonberg', 10000, 1),
(3706, 91, 1913, 'Lichtenfels', 10000, 1),
(3707, 91, 1919, 'Linz Am Rhein', 10000, 1),
(3708, 91, 1921, 'Lubeck', 10000, 1),
(3709, 91, 1918, 'Ludinghausen', 10000, 1),
(3710, 91, 1919, 'Ludwigshafen Am Rhein', 10000, 1),
(3711, 91, 1925, 'Lutherstadt Wittenberg', 10000, 1),
(3712, 91, 1919, 'Mainz', 10000, 1),
(3713, 91, 1912, 'Malsch', 10000, 1),
(3714, 91, 1912, 'Mannheim', 10000, 1),
(3715, 91, 1912, 'Marbach Am Neckar', 10000, 1),
(3717, 91, 1918, 'Marl', 10000, 1),
(3718, 91, 1916, 'Melsungen', 10000, 1),
(3719, 91, 1913, 'Memmingen', 10000, 1),
(3720, 91, 1912, 'Me', 10000, 1),
(3721, 91, 1919, 'Morzheim', 10000, 1),
(3722, 91, 1913, 'Munich', 10000, 1),
(3723, 91, 1918, 'Munster', 10000, 1),
(3725, 91, 1913, 'Neu Ulm', 10000, 1),
(3727, 91, 1913, 'Neustadt An Der Waldnaab', 10000, 1),
(3728, 91, 1917, 'Nienburg', 10000, 1),
(3729, 91, 1912, 'Ofterdingen', 10000, 1),
(3730, 91, 1917, 'Osnabruck', 10000, 1),
(3731, 91, 1918, 'Paderborn', 10000, 1),
(3732, 91, 1913, 'Passau', 10000, 1),
(3733, 91, 1912, 'Pfaffenweiler', 10000, 1),
(3734, 91, 1921, 'Pinneberg', 10000, 1),
(3735, 91, 1918, 'Porta Westfalica', 10000, 1),
(3736, 91, 1922, 'Potsdam', 10000, 1),
(3737, 91, 1912, 'Rastatt', 10000, 1),
(3738, 91, 1918, 'Ratingen', 10000, 1),
(3739, 91, 1913, 'Regensburg', 10000, 1),
(3740, 91, 1922, 'Rheinsberg', 10000, 1),
(3741, 91, 1914, 'Rodental', 10000, 1),
(3742, 91, 1920, 'Saarbrucken', 10000, 1),
(3743, 91, 1919, 'Schaumburg', 10000, 1),
(3744, 91, 1919, 'Schifferstadt', 10000, 1),
(3745, 91, 1917, 'Schledehausen', 10000, 1),
(3746, 91, 1912, 'Schwabisch Gmund', 10000, 1),
(3747, 91, 1923, 'Schwerin', 10000, 1),
(3748, 91, 1912, 'Schwieberdingen', 10000, 1),
(3749, 91, 1917, 'Seevetal', 10000, 1),
(3750, 91, 1917, 'Soltau', 10000, 1),
(3752, 91, 1917, 'Stade', 10000, 1),
(3753, 91, 1912, 'Stuttgart', 10000, 1),
(3754, 91, 1912, 'Sulzfeld', 10000, 1),
(3755, 91, 1913, 'Tirschenreuth', 10000, 1),
(3756, 91, 1919, 'Trier', 10000, 1),
(3757, 91, 1912, 'Trossingen', 10000, 1),
(3758, 91, 1912, 'Tubingen', 10000, 1),
(3759, 91, 1912, 'Ulm', 10000, 1),
(3761, 91, 1912, 'Walldorf', 10000, 1),
(3762, 91, 1913, 'WASSERBURG', 10000, 1),
(3763, 91, 1926, 'Weimar', 10000, 1),
(3764, 91, 1918, 'Wesel', 10000, 1),
(3765, 91, 1912, 'Wiernsheim', 10000, 1),
(3766, 91, 1912, 'Wiesloch', 10000, 1),
(3767, 91, 1917, 'Wilhelmshaven', 10000, 1),
(3768, 91, 1912, 'Winterlingen', 10000, 1),
(3769, 91, 1917, 'Wittmund', 10000, 1),
(3770, 91, 1912, 'Wolfach', 10000, 1),
(3771, 91, 1917, 'Wolfenbuttel', 10000, 1),
(3772, 91, 1919, 'Worms', 10000, 1),
(3773, 91, 1913, 'WURZBURG', 10000, 1),
(3774, 91, 1924, 'Zittau', 10000, 1),
(3775, 91, 1919, 'Zweibrucken', 10000, 1),
(3776, 65, 1494, 'Aalborg', 10000, 1),
(3777, 65, 1489, 'Ebeltoft', 10000, 1),
(3778, 65, 1498, 'Haderslev', 10000, 1),
(3780, 65, 1492, 'Odense', 10000, 1),
(3781, 65, 1498, 'Rodding', 10000, 1),
(3782, 65, 1495, 'Varde', 10000, 1),
(3783, 68, 1529, 'La Romana', 10000, 1),
(3784, 68, 1540, 'Santiago', 10000, 1),
(3786, 3, 875, 'Mascara', 10000, 1),
(3787, 70, 1550, 'Cuenca', 10000, 1),
(3788, 70, 1551, 'Guaranda', 10000, 1),
(3789, 70, 1558, 'Guayaquil', 10000, 1),
(3790, 70, 1559, 'Ibarra', 10000, 1),
(3791, 70, 1555, 'Latacunga', 10000, 1),
(3792, 70, 1565, 'Quito', 10000, 1),
(3793, 70, 1554, 'Riobamba', 10000, 1),
(3794, 70, 1565, 'Santo Domingo De Los Colorados', 10000, 1),
(3795, 75, 1636, 'Parnu', 10000, 1),
(3796, 75, 1640, 'Tartu', 10000, 1),
(3797, 71, 1593, 'Alexandria', 10000, 1),
(3798, 71, 1580, 'Cairo', 10000, 1),
(3799, 71, 1577, 'Giza', 10000, 1),
(3800, 71, 1580, 'Heliopolis', 10000, 1),
(3801, 71, 1592, 'Luxor', 10000, 1),
(3803, 226, 3910, 'Aledo', 10000, 1),
(3804, 226, 3913, 'Aviles', 10000, 1),
(3805, 226, 3935, 'Balaguer', 10000, 1),
(3806, 226, 3936, 'Barcarrota', 10000, 1),
(3807, 226, 3935, 'Barcelona', 10000, 1),
(3808, 226, 3938, 'Bilbao', 10000, 1),
(3810, 226, 3930, 'Cadiz', 10000, 1),
(3811, 226, 3886, 'Ciudadela', 10000, 1),
(3812, 226, 3930, 'El Puerto De Santa Maria', 10000, 1),
(3814, 226, 3913, 'Gijon', 10000, 1),
(3815, 226, 3930, 'Granada', 10000, 1),
(3816, 226, 3930, 'Huelva', 10000, 1),
(3817, 226, 3932, 'Las Palmas de Gran Canaria', 10000, 1),
(3818, 226, 3908, 'Madrid', 10000, 1),
(3819, 226, 3930, 'Malaga', 10000, 1),
(3820, 226, 3910, 'Murcia', 10000, 1),
(3821, 226, 3913, 'Oviedo', 10000, 1),
(3822, 226, 3886, 'Palma de Mallorca', 10000, 1),
(3823, 226, 3886, 'Petra', 10000, 1),
(3826, 226, 3930, 'Santa Fe', 10000, 1),
(3828, 226, 3930, 'Sevilla ', 10000, 1),
(3829, 226, 3933, 'Toledo', 10000, 1),
(3830, 226, 3908, 'Tres Cantos', 10000, 1),
(3831, 226, 3910, 'Yecla', 10000, 1),
(3832, 76, 1691, 'Axum', 10000, 1),
(3833, 81, 5023, 'Alajarvi', 10000, 1),
(3834, 81, 4879, 'Heinola', 10000, 1),
(3835, 81, 5023, 'Jakobstad', 10000, 1),
(3836, 81, 1779, 'Jarvenpaa', 10000, 1),
(3837, 81, 5023, 'Kokkola', 10000, 1),
(3838, 81, 5022, 'Kuopio', 10000, 1),
(3839, 81, 4879, 'Lappeenranta', 10000, 1),
(3840, 81, 5023, 'Lapua', 10000, 1),
(3841, 81, 4879, 'Porvoo', 10000, 1),
(3842, 81, 1777, 'Rovaniemi', 10000, 1),
(3843, 81, 1779, 'Salo', 10000, 1),
(3844, 81, 5023, 'Seinajoki', 10000, 1),
(3845, 81, 4879, 'Tampere', 10000, 1),
(3846, 80, 1784, 'Nailuva', 10000, 1),
(3847, 82, 1813, 'Albertville', 10000, 1),
(3848, 82, 1807, 'Albi', 10000, 1),
(3849, 82, 1811, 'Angouleme', 10000, 1),
(3850, 82, 1812, 'Antibes', 10000, 1),
(3851, 82, 1793, 'Arcachon', 10000, 1),
(3852, 82, 1804, 'Arles', 10000, 1),
(3853, 82, 1798, 'Aubigny-sur-Nere', 10000, 1),
(3854, 82, 1812, 'Avignon', 10000, 1),
(3855, 82, 1808, 'Bar-sur-Loup', 10000, 1),
(3856, 82, 1793, 'Bayonne', 10000, 1),
(3857, 82, 1801, 'Belfort', 10000, 1),
(3858, 82, 1793, 'Biarritz', 10000, 1),
(3859, 82, 1794, 'Billom', 10000, 1),
(3860, 82, 1793, 'Bordeaux', 10000, 1),
(3861, 82, 1803, 'Boulogne-Billancourt', 10000, 1),
(3862, 82, 1797, 'Brest', 10000, 1),
(3863, 82, 1796, 'Bruyeres', 10000, 1),
(3864, 82, 1795, 'Caen', 10000, 1),
(3865, 82, 1808, 'Calais', 10000, 1),
(3866, 82, 1808, 'Cambrai', 10000, 1),
(3867, 82, 1812, 'Cannes', 10000, 1),
(3868, 82, 1812, 'Cavaliere Sur Mer', 10000, 1),
(3869, 82, 1803, 'Cergy-Pontoise', 10000, 1),
(3870, 82, 1796, 'Chambolle-Musigny', 10000, 1),
(3871, 82, 1808, 'Chamonix', 10000, 1),
(3872, 82, 1794, 'Chavaniac', 10000, 1),
(3873, 82, 1794, 'Clermont-Ferrand', 10000, 1),
(3874, 82, 1809, 'Coex', 10000, 1),
(3875, 82, 1805, 'Cognac', 10000, 1),
(3876, 82, 1814, 'Colmar', 10000, 1),
(3877, 82, 1810, 'Compiegne', 10000, 1),
(3878, 82, 1813, 'Courchevel', 10000, 1),
(3879, 82, 1795, 'Deauville', 10000, 1),
(3880, 82, 1796, 'Dijon', 10000, 1),
(3881, 82, 1808, 'Douai', 10000, 1),
(3883, 82, 1814, 'Eguisheim', 10000, 1),
(3884, 82, 1796, 'Entrains-Sur-Nohain', 10000, 1),
(3885, 82, 1808, 'Fourmies', 10000, 1),
(3886, 82, 1812, 'Frejus', 10000, 1),
(3887, 82, 1814, 'Geispolsheim', 10000, 1),
(3888, 82, 1813, 'Grenoble', 10000, 1),
(3889, 82, 1814, 'Henin-Beaumont', 10000, 1),
(3890, 82, 1812, 'La Garde-Freinet', 10000, 1),
(3891, 82, 1811, 'La Rochelle', 10000, 1),
(3892, 82, 1793, 'La Teste', 10000, 1),
(3893, 82, 1794, 'La Vergne', 10000, 1),
(3894, 82, 1813, 'La Verpilliere', 10000, 1),
(3895, 82, 1794, 'Langeac', 10000, 1),
(3896, 82, 1812, 'Le Cannet', 10000, 1),
(3897, 82, 1802, 'Le Havre', 10000, 1),
(3898, 82, 1810, 'Le Toquet', 10000, 1),
(3899, 82, 1803, 'Le Vesinet', 10000, 1),
(3900, 82, 1803, 'Le Bourget', 10000, 1),
(3901, 82, 1805, 'Limoges', 10000, 1),
(3902, 82, 1796, 'Longvic', 10000, 1),
(3903, 82, 1798, 'Luray', 10000, 1),
(3905, 82, 1796, 'Macon', 10000, 1),
(3906, 82, 1808, 'Marcq-En-Baroeul', 10000, 1),
(3907, 82, 1806, 'Metz', 10000, 1),
(3908, 82, 1793, 'Mimizan', 10000, 1),
(3909, 82, 1801, 'Montbeliard', 10000, 1),
(3910, 82, 1812, 'Montelimar', 10000, 1),
(3911, 82, 1803, 'Montgeron', 10000, 1),
(3912, 82, 1804, 'Montpellier', 10000, 1),
(3913, 82, 1806, 'Nancy', 10000, 1),
(3914, 82, 1809, 'Nantes', 10000, 1),
(3915, 82, 1803, 'Neuilly-Plaisance', 10000, 1),
(3916, 82, 1812, 'Nice', 10000, 1),
(3918, 82, 1812, 'Orange', 10000, 1),
(3919, 82, 1798, 'Orleans', 10000, 1),
(3920, 82, 1793, 'Pau', 10000, 1),
(3921, 82, 1795, 'Peronne', 10000, 1),
(3922, 82, 1804, 'Perpignan', 10000, 1),
(3923, 82, 1797, 'Pontivy', 10000, 1),
(3924, 82, 1797, 'Rennes', 10000, 1),
(3925, 82, 1806, 'Rombas', 10000, 1),
(3926, 82, 1798, 'Romorantin', 10000, 1),
(3927, 82, 1806, 'Saint Avold', 10000, 1),
(3928, 82, 1813, 'Saint Etienne', 10000, 1),
(3929, 82, 1803, 'Saint Mande', 10000, 1),
(3930, 82, 1807, 'Saint-Clar', 10000, 1),
(3932, 82, 1798, 'Senonches', 10000, 1),
(3933, 82, 1803, 'Saint Cloud', 10000, 1),
(3934, 82, 1798, 'Saint Cyr Sur Loire', 10000, 1),
(3935, 82, 1798, 'Saint-Germain-en-Laye', 10000, 1),
(3936, 82, 1814, 'Strasbourg', 10000, 1),
(3937, 82, 1811, 'Toulon', 10000, 1),
(3938, 82, 1807, 'Toulouse', 10000, 1),
(3939, 82, 1798, 'Tours', 10000, 1),
(3940, 82, 1811, 'Vendome', 10000, 1),
(3941, 82, 1796, 'Vichy', 10000, 1),
(3942, 82, 1803, 'Vincennes', 10000, 1),
(3943, 82, 1811, 'Vitre', 10000, 1),
(3944, 90, 1833, 'Bat''umi', 10000, 1),
(3945, 90, 5327, 'Mtskheta', 10000, 1),
(3946, 90, 5329, 'P''ot''I', 10000, 1),
(3947, 90, 1879, 'Tbilisi', 10000, 1),
(3948, 90, 5324, 'T''elavi', 10000, 1),
(3949, 92, 1893, 'Accra', 10000, 1),
(3950, 92, 1901, 'Bolgatanga', 10000, 1),
(3951, 92, 1896, 'Cape Coast', 10000, 1),
(3952, 92, 1901, 'Ga District', 10000, 1),
(3953, 92, 1894, 'Kumasi', 10000, 1),
(3954, 92, 1897, 'Oyoko', 10000, 1),
(3956, 92, 1898, 'Tamale', 10000, 1),
(3957, 92, 1893, 'Tema', 10000, 1),
(3958, 88, 1815, 'Banjul', 10000, 1),
(3959, 88, 1819, 'Kanifing', 10000, 1),
(3960, 102, 2004, 'Conakry', 10000, 1),
(3961, 98, 635, 'Lamentin', 10000, 1),
(3963, 95, 1962, 'Athens', 10000, 1),
(3964, 95, 1964, 'Corinth', 10000, 1),
(3965, 95, 1940, 'Kalamaria', 10000, 1),
(3966, 95, 1938, 'Kozani', 10000, 1),
(3967, 95, 1951, 'Lamia', 10000, 1),
(3969, 95, 1963, 'Navplion', 10000, 1),
(3970, 95, 1965, 'Patras', 10000, 1),
(3971, 95, 1962, 'Piraeus', 10000, 1),
(3972, 95, 1940, 'Thessaloniki', 10000, 1),
(3973, 95, 1949, 'Trikala', 10000, 1),
(3974, 95, 1933, 'Tripolis', 10000, 1),
(3975, 95, 1955, 'Zakinthos', 10000, 1),
(3976, 100, 1991, 'Antigua', 10000, 1),
(3977, 100, 1992, 'Chichicastenango', 10000, 1),
(3978, 100, 2000, 'Coban', 10000, 1),
(3979, 100, 1996, 'Cuilapa', 10000, 1),
(3980, 100, 1984, 'Escuintla', 10000, 1),
(3982, 100, 1988, 'Jalapa', 10000, 1),
(3983, 100, 1989, 'Jutiapa', 10000, 1),
(3984, 100, 1987, 'PUERTO BARRIOS', 10000, 1),
(3985, 100, 1991, 'Quezaltenango', 10000, 1),
(3986, 100, 1985, 'SAN JUAN SACATEPEQUEZ', 10000, 1),
(3987, 100, 1992, 'SANTA CRUZ DEL QUICHE', 10000, 1),
(3989, 100, 1997, 'SOLOLA', 10000, 1),
(3990, 100, 2000, 'ZACAPA', 10000, 1),
(3991, 104, 2032, 'Georgetown', 10000, 1),
(3992, 108, 2063, 'Juticalpa', 10000, 1),
(3993, 108, 2056, 'TEGUCIGALPA', 10000, 1),
(3994, 61, 5039, 'Karlovac', 10000, 1),
(3995, 61, 5039, 'Komiza', 10000, 1),
(3996, 61, 5039, 'Split', 10000, 1),
(3997, 61, 5045, 'Zagreb', 10000, 1),
(3998, 105, 2048, 'Jacmel', 10000, 1),
(3999, 105, 2046, 'PETIT GOAVE', 10000, 1),
(4000, 105, 2046, 'PORT-AU-PRINCE', 10000, 1),
(4001, 111, 2071, 'Budapest', 10000, 1),
(4002, 111, 2076, 'Debrecen', 10000, 1),
(4003, 111, 2086, 'Jaszbereny', 10000, 1),
(4004, 111, 2068, 'Pecs', 10000, 1),
(4005, 111, 2083, 'Siofok', 10000, 1),
(4006, 111, 2072, 'Szeged', 10000, 1),
(4007, 111, 2074, 'Szekesfehervar', 10000, 1),
(4008, 111, 2086, 'Szolnok', 10000, 1),
(4009, 114, 2147, 'Bandung', 10000, 1),
(4010, 114, 2145, 'Jakarta', 10000, 1),
(4011, 114, 2149, 'Surabaya', 10000, 1),
(4013, 117, 1599, 'Cork', 10000, 1),
(4015, 117, 1601, 'Dublin', 10000, 1),
(4016, 117, 1598, 'Ennis', 10000, 1),
(4017, 117, 1600, 'Enniscorthy', 10000, 1),
(4018, 117, 1602, 'Galway', 10000, 1),
(4019, 117, 1603, 'Killarney', 10000, 1),
(4020, 117, 1608, 'Limerick', 10000, 1),
(4021, 117, 1603, 'Listowel', 10000, 1),
(4022, 117, 1599, 'Longford', 10000, 1),
(4023, 117, 1620, 'New Ross', 10000, 1),
(4025, 117, 1616, 'Sligo', 10000, 1),
(4026, 117, 1603, 'Tralee', 10000, 1),
(4027, 117, 1618, 'Waterford', 10000, 1),
(4028, 118, 2234, 'Afula', 10000, 1),
(4029, 118, 2234, 'Akko', 10000, 1),
(4034, 118, 2235, 'Bethshemesh', 10000, 1),
(4035, 118, 2232, 'Eilat', 10000, 1),
(4036, 118, 2236, 'Givatayim', 10000, 1),
(4037, 118, 2235, 'Haifa', 10000, 1),
(4038, 118, 2235, 'Hatzor', 10000, 1),
(4039, 118, 2236, 'Herzliyya', 10000, 1),
(4041, 118, 2234, 'Karmi''el', 10000, 1),
(4044, 118, 2236, 'Kiryat Ekron', 10000, 1),
(4045, 118, 2235, 'Kiryat Motzkin', 10000, 1),
(4046, 118, 2233, 'Petah Tiqva', 10000, 1),
(4047, 118, 2233, 'Raanana', 10000, 1),
(4048, 118, 2236, 'Ramat Gan', 10000, 1),
(4049, 118, 2236, 'Ramat Hasharon', 10000, 1),
(4050, 118, 2233, 'Rehovot', 10000, 1),
(4051, 118, 2236, 'Rishon Le Zion', 10000, 1),
(4052, 118, 2234, 'Safed', 10000, 1),
(4054, 118, 2235, 'Tiberias', 10000, 1),
(4055, 118, 2237, 'Yavne', 10000, 1),
(4056, 118, 2233, 'Yehud', 10000, 1),
(4057, 118, 2232, 'Yeroham', 10000, 1),
(4058, 113, 2185, 'Bangalore', 10000, 1),
(4060, 113, 2190, 'Jaipur', 10000, 1),
(4062, 113, 2182, 'Pune', 10000, 1),
(4063, 113, 2191, 'Salem', 10000, 1),
(4064, 113, 2177, 'Simla', 10000, 1),
(4065, 113, 2169, 'Vijayawada', 10000, 1),
(4066, 115, 2223, 'Tehran', 10000, 1),
(4068, 112, 2129, 'Reykjav', 10000, 1),
(4069, 119, 2252, 'Agrigento', 10000, 1),
(4070, 119, 2249, 'Alba', 10000, 1),
(4071, 119, 2241, 'Amalfi', 10000, 1),
(4072, 119, 2255, 'Assisi', 10000, 1),
(4074, 119, 2249, 'Asti', 10000, 1),
(4075, 119, 2246, 'Bergamo', 10000, 1),
(4076, 119, 2242, 'Bologna', 10000, 1),
(4077, 119, 2252, 'Caltanissetta', 10000, 1),
(4078, 119, 2246, 'Cantu', 10000, 1),
(4079, 119, 2250, 'Capurso', 10000, 1),
(4081, 119, 2244, 'Cisterna', 10000, 1),
(4082, 119, 2240, 'Cosenza', 10000, 1),
(4083, 119, 2246, 'Cremona', 10000, 1),
(4085, 119, 2242, 'Ferrara', 10000, 1),
(4086, 119, 2253, 'Fiesole', 10000, 1),
(4088, 119, 2253, 'Florence', 10000, 1),
(4089, 119, 2252, 'Floridia', 10000, 1),
(4090, 119, 2241, 'Gaeta', 10000, 1),
(4091, 119, 2245, 'Genoa', 10000, 1),
(4092, 119, 2253, 'Greve', 10000, 1),
(4094, 119, 2245, 'Imperia', 10000, 1),
(4095, 119, 2249, 'Ivrea', 10000, 1),
(4096, 119, 2245, 'La Spezia', 10000, 1),
(4097, 119, 2246, 'Lodi', 10000, 1),
(4098, 119, 2246, 'Lonate Pozzolo', 10000, 1),
(4099, 119, 2253, 'Lucca', 10000, 1),
(4100, 119, 2244, 'Marino', 10000, 1),
(4102, 119, 2252, 'Milazzo', 10000, 1),
(4103, 119, 2242, 'Modena', 10000, 1),
(4105, 119, 2246, 'Monza', 10000, 1),
(4106, 119, 2242, 'Noceto', 10000, 1),
(4107, 119, 2251, 'Oristano', 10000, 1),
(4109, 119, 2240, 'Paterno', 10000, 1),
(4110, 119, 2257, 'Pedavena', 10000, 1),
(4111, 119, 2255, 'Perugia', 10000, 1),
(4112, 119, 2238, 'Pescara', 10000, 1),
(4114, 119, 2249, 'Pinerolo', 10000, 1),
(4115, 119, 2253, 'Pisa', 10000, 1),
(4116, 119, 2239, 'Potenza', 10000, 1),
(4117, 119, 2250, 'Putignano', 10000, 1),
(4118, 119, 2242, 'Reggio Emilia', 10000, 1),
(4119, 119, 2252, 'Ribera', 10000, 1),
(4120, 119, 2242, 'Rimini', 10000, 1),
(4121, 119, 2244, 'Rome', 10000, 1),
(4122, 119, 2247, 'San Benedetto Del Tronto', 10000, 1),
(4123, 119, 2245, 'Sestri Levante', 10000, 1),
(4124, 119, 2241, 'Sorrento', 10000, 1),
(4125, 119, 2255, 'Spoleto', 10000, 1),
(4126, 119, 2252, 'Terrasini', 10000, 1),
(4127, 119, 2249, 'Torre Pellice', 10000, 1),
(4128, 119, 2244, 'Viterbo', 10000, 1),
(4130, 120, 2381, 'Montego Bay', 10000, 1),
(4131, 120, 2383, 'Morant Bay', 10000, 1),
(4132, 120, 2378, 'Ocho Rios', 10000, 1),
(4134, 126, 2391, 'Amman', 10000, 1),
(4135, 126, 2387, 'Madaba', 10000, 1),
(4136, 122, 2338, 'Akashi', 10000, 1),
(4137, 122, 2326, 'Anjo', 10000, 1),
(4138, 122, 2358, 'Arita', 10000, 1),
(4140, 122, 2337, 'Asahikawa', 10000, 1),
(4141, 122, 2363, 'Ashikaga', 10000, 1),
(4142, 122, 2338, 'Ashiya', 10000, 1),
(4143, 122, 2335, 'Aso', 10000, 1),
(4144, 122, 2344, 'Atsugi', 10000, 1),
(4146, 122, 2328, 'Beppu', 10000, 1),
(4147, 122, 2329, 'Chiba', 10000, 1),
(4148, 122, 2359, 'Chichibu', 10000, 1),
(4149, 122, 2351, 'Chino', 10000, 1),
(4150, 122, 2337, 'Chitose', 10000, 1),
(4151, 122, 2329, 'Choshi', 10000, 1),
(4153, 122, 2337, 'Ebetsu', 10000, 1),
(4154, 122, 2362, 'Fuji', 10000, 1),
(4155, 122, 2362, 'Fujinomiya', 10000, 1),
(4156, 122, 2344, 'Fujisawa', 10000, 1),
(4157, 122, 2339, 'Fujishiro', 10000, 1),
(4161, 122, 2331, 'Fukui', 10000, 1),
(4162, 122, 2332, 'Fukuoka', 10000, 1),
(4163, 122, 2329, 'Futtsu', 10000, 1),
(4164, 122, 2334, 'Gifu', 10000, 1),
(4165, 122, 2362, 'Gotemba', 10000, 1),
(4167, 122, 2344, 'Hadano', 10000, 1),
(4168, 122, 2341, 'Hanamaki', 10000, 1),
(4169, 122, 2326, 'Handa', 10000, 1),
(4170, 122, 2359, 'Hanno', 10000, 1),
(4171, 122, 2368, 'Hashimoto', 10000, 1),
(4172, 122, 2326, 'Hekinan', 10000, 1),
(4173, 122, 2365, 'Higashimurayama', 10000, 1),
(4174, 122, 2357, 'Higashiosaka', 10000, 1),
(4175, 122, 2360, 'Hikone', 10000, 1),
(4176, 122, 2338, 'Himeji', 10000, 1),
(4177, 122, 2365, 'Hino', 10000, 1),
(4178, 122, 2372, 'Hirara', 10000, 1),
(4179, 122, 2344, 'Hiratsuka', 10000, 1),
(4180, 122, 2336, 'Hiroshima', 10000, 1),
(4182, 122, 2339, 'Hitachi', 10000, 1),
(4184, 122, 2346, 'Hondo', 10000, 1),
(4187, 122, 2329, 'Ichihara', 10000, 1),
(4188, 122, 2329, 'Ichikawa', 10000, 1),
(4189, 122, 2371, 'Ichikawadaimon', 10000, 1),
(4190, 122, 2329, 'Ikata', 10000, 1),
(4191, 122, 2362, 'Ikawa', 10000, 1),
(4192, 122, 2330, 'Imabari', 10000, 1),
(4193, 122, 2361, 'Imaichi', 10000, 1),
(4194, 122, 2336, 'Imazu', 10000, 1),
(4195, 122, 2352, 'Isahaya', 10000, 1),
(4197, 122, 2335, 'Isesaki', 10000, 1),
(4198, 122, 2328, 'Itayanagi', 10000, 1),
(4199, 122, 2348, 'Iwai', 10000, 1),
(4200, 122, 2333, 'Iwaki', 10000, 1),
(4201, 122, 2336, 'Iwakuni', 10000, 1),
(4202, 122, 2337, 'Iwamizawa', 10000, 1),
(4203, 122, 2349, 'Iwanuma', 10000, 1),
(4204, 122, 2362, 'Iwata', 10000, 1),
(4205, 122, 2368, 'Izumo', 10000, 1),
(4206, 122, 2343, 'Kagoshima', 10000, 1),
(4207, 122, 2338, 'Kaibara', 10000, 1),
(4208, 122, 2357, 'Kaizuka', 10000, 1),
(4209, 122, 2362, 'Kakegawa', 10000, 1),
(4212, 122, 2347, 'Kameoka', 10000, 1),
(4214, 122, 2334, 'Kanayama', 10000, 1),
(4215, 122, 2340, 'Kanazawa', 10000, 1),
(4218, 122, 2329, 'Kashiwa', 10000, 1),
(4219, 122, 2326, 'Kasugai', 10000, 1),
(4220, 122, 2359, 'Kawagoe', 10000, 1),
(4221, 122, 2338, 'Kawanishi', 10000, 1),
(4222, 122, 2344, 'Kawasaki', 10000, 1),
(4223, 122, 2365, 'Kijima', 10000, 1),
(4224, 122, 2335, 'Kiryu', 10000, 1),
(4225, 122, 2329, 'Kisarazu', 10000, 1),
(4226, 122, 2349, 'Kishiwada', 10000, 1),
(4227, 122, 2336, 'Kitakami', 10000, 1),
(4228, 122, 2332, 'Kitakyushu', 10000, 1),
(4229, 122, 2337, 'Kitami', 10000, 1),
(4230, 122, 2338, 'Kobe', 10000, 1),
(4231, 122, 2345, 'Kochi', 10000, 1),
(4232, 122, 2371, 'Kofu', 10000, 1),
(4234, 122, 2326, 'Komaki', 10000, 1),
(4236, 122, 2343, 'Kuji', 10000, 1),
(4237, 122, 2346, 'Kumamoto', 10000, 1),
(4238, 122, 2356, 'Kurashiki', 10000, 1),
(4239, 122, 2327, 'Kure', 10000, 1),
(4241, 122, 2328, 'Kuroishi', 10000, 1),
(4242, 122, 2332, 'Kurume', 10000, 1),
(4243, 122, 2360, 'Kusatsu', 10000, 1),
(4244, 122, 2343, 'Kushikino', 10000, 1),
(4245, 122, 2368, 'Kushimoto', 10000, 1),
(4246, 122, 2347, 'Kyoto', 10000, 1),
(4247, 122, 2360, 'Makino', 10000, 1),
(4248, 122, 2351, 'Matsumoto', 10000, 1),
(4249, 122, 2329, 'Matsuto Shi', 10000, 1),
(4250, 122, 2330, 'Matsuyama', 10000, 1),
(4251, 122, 2337, 'Memuro', 10000, 1),
(4254, 122, 2340, 'Mikawa', 10000, 1),
(4255, 122, 2338, 'Miki', 10000, 1),
(4256, 122, 2362, 'Mikkabi', 10000, 1),
(4258, 122, 2356, 'Minori', 10000, 1),
(4259, 122, 2328, 'Misawa', 10000, 1),
(4260, 122, 2345, 'Mishima', 10000, 1),
(4261, 122, 2339, 'Mito', 10000, 1),
(4262, 122, 2350, 'Miyazaki', 10000, 1),
(4263, 122, 2347, 'Miyazu', 10000, 1),
(4264, 122, 2337, 'Mombetsu', 10000, 1),
(4266, 122, 2330, 'Moriyama', 10000, 1),
(4267, 122, 2364, 'Motoyama', 10000, 1),
(4268, 122, 2347, 'Muko', 10000, 1),
(4269, 122, 2351, 'Mure', 10000, 1),
(4271, 122, 2355, 'Nagano', 10000, 1),
(4272, 122, 2335, 'Naganohara', 10000, 1),
(4273, 122, 2354, 'Nagaoka', 10000, 1),
(4275, 122, 2352, 'Nagasaki', 10000, 1),
(4276, 122, 2372, 'Nago', 10000, 1),
(4277, 122, 2326, 'Nagoya', 10000, 1),
(4278, 122, 2372, 'Naha', 10000, 1),
(4281, 122, 2329, 'Narashino', 10000, 1),
(4282, 122, 2365, 'Narita', 10000, 1),
(4283, 122, 2337, 'Nemuro', 10000, 1),
(4286, 122, 2354, 'Niigata', 10000, 1),
(4288, 122, 2371, 'Nirasaki', 10000, 1),
(4289, 122, 2338, 'Nishinomiya', 10000, 1),
(4290, 122, 2338, 'Nishiwaki', 10000, 1),
(4291, 122, 2350, 'Nobeoka', 10000, 1),
(4292, 122, 2327, 'Noshiro', 10000, 1),
(4293, 122, 2362, 'Numazu', 10000, 1),
(4294, 122, 2367, 'Nyuzen', 10000, 1),
(4295, 122, 2337, 'Obihiro', 10000, 1),
(4296, 122, 2344, 'Odawara', 10000, 1),
(4297, 122, 2360, 'Ohara', 10000, 1),
(4298, 122, 2362, 'Ohito', 10000, 1),
(4299, 122, 2344, 'Oiso', 10000, 1),
(4301, 122, 2351, 'Okaya', 10000, 1),
(4302, 122, 2356, 'Okayama', 10000, 1),
(4303, 122, 2326, 'Okazaki', 10000, 1),
(4305, 122, 2332, 'Omuta', 10000, 1),
(4306, 122, 2355, 'Ono', 10000, 1),
(4307, 122, 2357, 'Osaka', 10000, 1),
(4311, 122, 2365, 'Ota', 10000, 1),
(4312, 122, 2360, 'Otsu', 10000, 1),
(4314, 122, 2371, 'Ryuo', 10000, 1),
(4316, 122, 2359, 'Sakado', 10000, 1),
(4317, 122, 2337, 'Sakai', 10000, 1),
(4318, 122, 2338, 'Sanda', 10000, 1),
(4319, 122, 2337, 'Sapporo', 10000, 1),
(4320, 122, 2337, 'Saroma', 10000, 1),
(4321, 122, 2338, 'Sasayama', 10000, 1),
(4322, 122, 2352, 'Sasebo', 10000, 1),
(4323, 122, 2338, 'Sawara', 10000, 1),
(4324, 122, 2365, 'Sayama', 10000, 1),
(4325, 122, 2349, 'Sendai', 10000, 1),
(4328, 122, 2362, 'Shimada', 10000, 1),
(4330, 122, 2362, 'Shimizu', 10000, 1),
(4331, 122, 2362, 'Shimoda', 10000, 1),
(4332, 122, 2337, 'Shimukappu', 10000, 1),
(4334, 122, 2332, 'Shingu', 10000, 1),
(4335, 122, 2351, 'Shiojiri', 10000, 1),
(4336, 122, 2337, 'Shizunai', 10000, 1),
(4337, 122, 2362, 'Shizuoka', 10000, 1),
(4338, 122, 2359, 'Shobu', 10000, 1),
(4339, 122, 2359, 'Soka', 10000, 1),
(4340, 122, 2351, 'Suwa', 10000, 1),
(4341, 122, 2365, 'Tachikawa', 10000, 1),
(4342, 122, 2370, 'Tahara', 10000, 1),
(4343, 122, 2334, 'Tajimi', 10000, 1),
(4344, 122, 2339, 'Takahagi', 10000, 1),
(4345, 122, 2357, 'Takaishi', 10000, 1),
(4346, 122, 2342, 'Takamatsu', 10000, 1),
(4347, 122, 2367, 'Takaoka', 10000, 1),
(4348, 122, 2338, 'Takarazuka', 10000, 1),
(4349, 122, 2335, 'Takasaki', 10000, 1),
(4350, 122, 2330, 'Takayama', 10000, 1),
(4352, 122, 2338, 'Takino', 10000, 1),
(4354, 122, 2329, 'Tamana', 10000, 1),
(4356, 122, 2329, 'Tateyama', 10000, 1),
(4357, 122, 2338, 'Tatsuno', 10000, 1),
(4358, 122, 2337, 'Teshio', 10000, 1),
(4359, 122, 2366, 'Toba', 10000, 1),
(4360, 122, 2372, 'Tobaru', 10000, 1),
(4362, 122, 2359, 'Tokorozawa', 10000, 1),
(4363, 122, 2364, 'Tokushima', 10000, 1),
(4364, 122, 2365, 'Tokyo', 10000, 1),
(4365, 122, 2357, 'Tondabayashi', 10000, 1),
(4367, 122, 2367, 'Toyama', 10000, 1),
(4368, 122, 2326, 'Toyokawa', 10000, 1),
(4370, 122, 2357, 'Toyonaka', 10000, 1),
(4371, 122, 2359, 'Toyota', 10000, 1),
(4373, 122, 2353, 'Tsuru', 10000, 1),
(4374, 122, 2369, 'Tsuruoka', 10000, 1),
(4375, 122, 2343, 'Tsuruta', 10000, 1),
(4376, 122, 2364, 'Tsushima', 10000, 1),
(4377, 122, 2356, 'Tsuyama', 10000, 1),
(4378, 122, 2359, 'Urawa', 10000, 1),
(4379, 122, 2329, 'Urayasu', 10000, 1),
(4380, 122, 2363, 'Utsunomiya', 10000, 1),
(4381, 122, 2331, 'Wakayama', 10000, 1),
(4382, 122, 2359, 'Warabi', 10000, 1),
(4384, 122, 2371, 'Yamanouchi', 10000, 1),
(4385, 122, 2354, 'Yamauchi', 10000, 1),
(4386, 122, 2370, 'Yao', 10000, 1),
(4387, 122, 2338, 'Yashiro', 10000, 1),
(4388, 122, 2339, 'Yatabe', 10000, 1),
(4389, 122, 2356, 'Yokaichi', 10000, 1),
(4390, 122, 2355, 'Yokkaichi', 10000, 1),
(4391, 122, 2344, 'Yokohama', 10000, 1),
(4392, 122, 2344, 'Yokosuka', 10000, 1),
(4393, 122, 2369, 'Yonezawa', 10000, 1),
(4394, 122, 2329, 'Yotsukaido', 10000, 1),
(4397, 129, 2401, 'Eldoret', 10000, 1),
(4399, 129, 2402, 'Kakamega', 10000, 1),
(4400, 129, 2400, 'Kisumu', 10000, 1),
(4401, 129, 2397, 'Meru', 10000, 1),
(4402, 129, 2396, 'Mombasa', 10000, 1),
(4403, 129, 2398, 'Nairobi', 10000, 1),
(4404, 129, 2397, 'Nakuru', 10000, 1),
(4405, 129, 2395, 'Nyeri', 10000, 1),
(4406, 135, 2403, 'Bishkek', 10000, 1),
(4407, 135, 2409, 'Karakol', 10000, 1),
(4408, 128, 2445, 'Almaty', 10000, 1),
(4409, 128, 2459, 'Kokshetau', 10000, 1),
(4410, 128, 2460, 'Zhambyl', 10000, 1),
(4411, 228, 1306, 'Nuwara Eliya', 10000, 1),
(4412, 140, 2583, 'Clay-Ashland', 10000, 1),
(4413, 140, 2574, 'Gbarnga', 10000, 1),
(4414, 140, 2583, 'Monrovia', 10000, 1),
(4415, 139, 2617, 'Maseru', 10000, 1),
(4416, 143, 2531, 'Kaunas', 10000, 1),
(4417, 143, 2535, 'Klaipeda', 10000, 1),
(4418, 144, 2623, 'Diekirch', 10000, 1),
(4419, 144, 2625, 'Esch-Sur-Alzette', 10000, 1),
(4420, 144, 2623, 'Ettelbruck', 10000, 1),
(4421, 137, 2501, 'Liepaja', 10000, 1),
(4422, 137, 2510, 'RIGA', 10000, 1),
(4423, 168, 2813, 'Agadir', 10000, 1),
(4424, 168, 2787, 'Casablanca', 10000, 1),
(4425, 163, 2696, 'Chisinau', 10000, 1),
(4426, 151, 2770, 'Bamako', 10000, 1),
(4427, 151, 2773, 'Gao', 10000, 1),
(4428, 151, 2770, 'Tombouctou', 10000, 1),
(4429, 148, 2768, 'Blantyre', 10000, 1),
(4430, 148, 2755, 'Lilongwe', 10000, 1),
(4431, 159, 71, 'Acambaro', 10000, 1),
(4432, 159, 56, 'Agua Prieta', 10000, 1),
(4433, 159, 2885, 'Aguascalientes', 10000, 1),
(4434, 159, 59, 'Ajijic', 10000, 1),
(4435, 159, 203, 'Alamos', 10000, 1),
(4436, 159, 2887, 'Arizpe', 10000, 1),
(4437, 159, 2889, 'Atotonilco', 10000, 1),
(4438, 159, 59, 'Autlan De Navarro', 10000, 1),
(4439, 159, 74, 'Cabo San Lucas', 10000, 1),
(4440, 159, 56, 'Caborca', 10000, 1),
(4441, 159, 56, 'Cananea', 10000, 1),
(4442, 159, 72, 'Cancun', 10000, 1),
(4444, 159, 71, 'Celaya', 10000, 1),
(4445, 159, 2890, 'Chapala', 10000, 1),
(4446, 159, 2892, 'Chignahuapan', 10000, 1),
(4447, 159, 66, 'Chilpancingo', 10000, 1),
(4448, 159, 196, 'Ciudad Juarez', 10000, 1),
(4449, 159, 198, 'Ciudad Lerdo', 10000, 1),
(4450, 159, 2896, 'Ciudad Obregon', 10000, 1),
(4451, 159, 2895, 'Cordoba', 10000, 1),
(4452, 159, 2894, 'Cosala', 10000, 1),
(4453, 159, 72, 'Coyoacan', 10000, 1),
(4455, 159, 56, 'Cumpas', 10000, 1),
(4456, 159, 62, 'Delicias', 10000, 1),
(4457, 159, 2896, 'Dzidzantun', 10000, 1),
(4458, 159, 201, 'El Rosario', 10000, 1),
(4459, 159, 56, 'Empalme', 10000, 1),
(4460, 159, 73, 'Ensenada', 10000, 1),
(4461, 159, 69, 'Gomez Palacio', 10000, 1),
(4462, 159, 66, 'Guamuchil', 10000, 1),
(4463, 159, 71, 'Guanajuato', 10000, 1),
(4464, 159, 56, 'Guaymas', 10000, 1),
(4465, 159, 70, 'Hidalgo', 10000, 1),
(4466, 159, 2886, 'Huatabampo', 10000, 1),
(4467, 159, 71, 'Irapuato', 10000, 1),
(4468, 159, 2890, 'Jacona', 10000, 1),
(4469, 159, 59, 'La Barca', 10000, 1),
(4470, 159, 59, 'Lagos De Moreno', 10000, 1),
(4471, 159, 2891, 'Lazaro Cardenas', 10000, 1),
(4472, 159, 59, 'Loreto', 10000, 1),
(4473, 159, 2894, 'Los Mochis', 10000, 1),
(4475, 159, 73, 'Maneadero', 10000, 1),
(4476, 159, 197, 'Manzanillo', 10000, 1),
(4477, 159, 2894, 'Mazatlan', 10000, 1),
(4479, 159, 73, 'Mulege', 10000, 1),
(4481, 159, 56, 'Nacozari De Garcia', 10000, 1),
(4482, 159, 2889, 'Naucalpan', 10000, 1),
(4483, 159, 56, 'Navojoa', 10000, 1),
(4484, 159, 59, 'Ocotlan', 10000, 1),
(4485, 159, 2895, 'Orizaba', 10000, 1),
(4486, 159, 196, 'Parral', 10000, 1),
(4487, 159, 204, 'Piedras Negras', 10000, 1),
(4488, 159, 59, 'Poncitlan', 10000, 1),
(4489, 159, 2892, 'Puebla', 10000, 1),
(4490, 159, 56, 'Puerto Penasco', 10000, 1),
(4491, 159, 59, 'Puerto Vallarta', 10000, 1),
(4492, 159, 198, 'Rosario', 10000, 1),
(4493, 159, 56, 'Sahuaripa', 10000, 1),
(4494, 159, 71, 'Salamanca', 10000, 1),
(4495, 159, 62, 'Salvatierra', 10000, 1),
(4496, 159, 62, 'San Cristobal De Las Casas', 10000, 1),
(4497, 159, 201, 'San Felipe', 10000, 1),
(4498, 159, 74, 'San Jose Del Cabo', 10000, 1),
(4499, 159, 201, 'San Juan Del Rio', 10000, 1),
(4500, 159, 56, 'San Luis Rio Colorado', 10000, 1),
(4501, 159, 71, 'San Miguel De Allende', 10000, 1),
(4503, 159, 196, 'Santa Rosalia', 10000, 1),
(4504, 159, 2895, 'Sayula', 10000, 1),
(4505, 159, 66, 'Taxco', 10000, 1),
(4506, 159, 73, 'Tecate', 10000, 1),
(4507, 159, 2890, 'Tehuantepec', 10000, 1),
(4508, 159, 59, 'Tepatitlan', 10000, 1),
(4509, 159, 2889, 'Tijuana', 10000, 1),
(4510, 159, 66, 'Tixtla De Guerrero', 10000, 1),
(4512, 159, 59, 'Tlaquepaque', 10000, 1),
(4513, 159, 74, 'Todos Santos', 10000, 1),
(4514, 159, 2889, 'Toluca', 10000, 1),
(4515, 159, 2887, 'Torreon', 10000, 1),
(4516, 159, 60, 'Tula', 10000, 1),
(4517, 159, 60, 'Tulancingo', 10000, 1),
(4518, 159, 56, 'Ures', 10000, 1),
(4519, 159, 2890, 'Uruapan', 10000, 1),
(4520, 159, 2889, 'Valle De Bravo', 10000, 1),
(4522, 159, 2887, 'Valles', 10000, 1),
(4523, 159, 2895, 'Veracruz', 10000, 1),
(4524, 159, 2895, 'Xalapa', 10000, 1),
(4526, 159, 59, 'Zapopan', 10000, 1),
(4528, 171, 4647, 'Otjiwarongo', 10000, 1),
(4529, 181, 2967, 'Benin City', 10000, 1),
(4530, 181, 2962, 'Ibadan', 10000, 1),
(4531, 181, 2972, 'Ile-Ife', 10000, 1),
(4532, 181, 2953, 'Kaduna', 10000, 1),
(4533, 181, 2941, 'Lagos', 10000, 1),
(4534, 181, 718, 'Owerri', 10000, 1),
(4535, 181, 2943, 'Port Harcourt', 10000, 1),
(4536, 179, 3064, 'Bluefields', 10000, 1),
(4537, 179, 3056, 'Corinto', 10000, 1),
(4538, 179, 3048, 'Diriamba', 10000, 1),
(4539, 179, 3051, 'Esteli', 10000, 1),
(4540, 179, 3052, 'Granada', 10000, 1),
(4541, 179, 3059, 'Jalapa', 10000, 1),
(4542, 179, 3053, 'Jinotega', 10000, 1),
(4543, 179, 3048, 'Jinotepe', 10000, 1),
(4544, 179, 3050, 'Juigalpa', 10000, 1),
(4545, 179, 3063, 'Laguna De Perlas', 10000, 1),
(4546, 179, 3054, 'Leon', 10000, 1),
(4547, 179, 3056, 'Managua', 10000, 1),
(4549, 179, 3057, 'Masaya', 10000, 1),
(4550, 179, 3059, 'Ocotal', 10000, 1),
(4551, 179, 3049, 'Posoltega', 10000, 1),
(4552, 179, 3063, 'Puerto Cabezas', 10000, 1),
(4553, 179, 3064, 'Rama', 10000, 1),
(4554, 179, 3061, 'Rivas', 10000, 1),
(4555, 179, 3061, 'San Isidro', 10000, 1),
(4556, 179, 3061, 'San Jorge', 10000, 1),
(4557, 179, 3061, 'San Marcos', 10000, 1),
(4558, 179, 3056, 'San Rafael', 10000, 1),
(4559, 179, 3055, 'Santo Domingo', 10000, 1),
(4560, 179, 3055, 'Somoto', 10000, 1),
(4563, 179, 3063, 'Waspan', 10000, 1),
(4564, 175, 2985, 'Delft', 10000, 1),
(4565, 175, 2977, 'Dieren', 10000, 1),
(4566, 175, 2982, 'Enschede', 10000, 1),
(4568, 175, 2984, 'Kapelle', 10000, 1),
(4570, 175, 2975, 'Meppel', 10000, 1),
(4571, 175, 2977, 'Nijmegen', 10000, 1),
(4573, 175, 2983, 'Rhenen', 10000, 1),
(4574, 175, 2985, 'Rotterdam', 10000, 1),
(4575, 175, 2983, 'Soest', 10000, 1),
(4577, 185, 2995, 'Bergen', 10000, 1),
(4578, 185, 2990, 'Fagernes', 10000, 1),
(4579, 185, 3007, 'Flekkefjord', 10000, 1),
(4580, 185, 2999, 'Gjovik', 10000, 1),
(4581, 185, 2994, 'Hamar', 10000, 1),
(4582, 185, 2993, 'Hammerfest', 10000, 1),
(4583, 185, 2992, 'Kongsberg', 10000, 1),
(4585, 185, 2997, 'Mo', 10000, 1),
(4586, 185, 3001, 'Moss', 10000, 1),
(4587, 185, 3002, 'Stavanger', 10000, 1),
(4588, 185, 3003, 'Sunndal', 10000, 1),
(4590, 185, 3004, 'Trondheim', 10000, 1),
(4591, 185, 2995, 'Voss', 10000, 1),
(4592, 174, 3009, 'Kathmandu', 10000, 1),
(4593, 178, 4723, 'Ashburton', 10000, 1),
(4594, 178, 4706, 'Auckland', 10000, 1),
(4596, 178, 4723, 'Christchurch', 10000, 1),
(4597, 178, 4744, 'Dunedin', 10000, 1),
(4599, 178, 4814, 'Gisborne', 10000, 1),
(4600, 178, 3137, 'Hamilton', 10000, 1),
(4601, 178, 4741, 'Kaikohe', 10000, 1),
(4602, 178, 4721, 'Lower Hutt', 10000, 1),
(4604, 178, 5019, 'Palmerston North', 10000, 1),
(4605, 178, 4744, 'Queenstown', 10000, 1),
(4606, 178, 4729, 'Rotorua', 10000, 1),
(4607, 178, 4729, 'Tauranga', 10000, 1),
(4608, 178, 4729, 'Te Puke', 10000, 1),
(4609, 178, 4723, 'Timaru', 10000, 1),
(4610, 178, 3137, 'Tokoroa', 10000, 1),
(4611, 178, 4721, 'Upper Hutt', 10000, 1),
(4612, 178, 3129, 'Waitara', 10000, 1),
(4614, 178, 5019, 'Wanganui', 10000, 1),
(4615, 178, 4741, 'Whangarei', 10000, 1),
(4616, 190, 3292, 'Anton', 10000, 1),
(4617, 190, 3293, 'Colon', 10000, 1),
(4618, 190, 3291, 'David', 10000, 1),
(4619, 190, 3297, 'Panama City', 10000, 1),
(4620, 194, 3191, 'Arequipa', 10000, 1),
(4621, 194, 3194, 'Callao', 10000, 1),
(4622, 194, 3189, 'Caras', 10000, 1),
(4623, 194, 3189, 'Chimbote', 10000, 1),
(4624, 194, 3195, 'Cuzco', 10000, 1),
(4625, 194, 3202, 'Lima', 10000, 1),
(4626, 194, 3202, 'Miraflores', 10000, 1),
(4627, 194, 3202, 'Pucallpa', 10000, 1),
(4628, 194, 3200, 'Trujillo', 10000, 1),
(4629, 191, 3333, 'Lae', 10000, 1),
(4630, 195, 3426, 'Bacarra', 10000, 1),
(4631, 195, 3533, 'Bacolod', 10000, 1),
(4632, 195, 3473, 'Baguio', 10000, 1),
(4633, 195, 3469, 'Cagayan', 10000, 1),
(4634, 195, 3460, 'Camiling', 10000, 1),
(4635, 195, 3418, 'Cavite City', 10000, 1),
(4636, 195, 3485, 'Cebu', 10000, 1),
(4637, 195, 3490, 'Davao', 10000, 1),
(4638, 195, 3496, 'Iloilo', 10000, 1),
(4640, 195, 3467, 'Kalibo', 10000, 1),
(4641, 195, 3461, 'Laoag', 10000, 1),
(4642, 195, 3403, 'Legaspi', 10000, 1),
(4643, 195, 3502, 'Lipa City', 10000, 1),
(4644, 195, 3505, 'Makati', 10000, 1),
(4645, 195, 3505, 'Manila', 10000, 1),
(4646, 195, 3505, 'Marikina', 10000, 1),
(4647, 195, 3508, 'Olongapo', 10000, 1),
(4648, 195, 3435, 'Palo', 10000, 1),
(4649, 195, 3447, 'Puerto Princesa', 10000, 1),
(4650, 195, 3505, 'Quezon City', 10000, 1),
(4651, 195, 3416, 'Roxas', 10000, 1),
(4652, 195, 3463, 'San Pablo', 10000, 1),
(4654, 187, 3219, 'Lahore', 10000, 1),
(4655, 187, 3218, 'Peshawar', 10000, 1),
(4657, 197, 3285, 'Bielsko-Biala', 10000, 1),
(4659, 197, 3285, 'Czestochowa', 10000, 1),
(4660, 197, 3284, 'Gdansk', 10000, 1),
(4661, 197, 3284, 'Gdynia', 10000, 1),
(4662, 197, 3278, 'Gorzow Wielkopolski', 10000, 1),
(4663, 197, 3288, 'Gulcz', 10000, 1),
(4664, 197, 3274, 'Jelenia Gora', 10000, 1),
(4665, 197, 3285, 'Katowice', 10000, 1),
(4667, 197, 3280, 'Lomianki', 10000, 1),
(4668, 197, 3283, 'Lomza', 10000, 1),
(4669, 197, 3280, 'Milanowek', 10000, 1),
(4670, 197, 3285, 'Olsztyn', 10000, 1),
(4671, 197, 3280, 'Plock', 10000, 1),
(4672, 197, 3288, 'Poznan', 10000, 1),
(4673, 197, 3280, 'Pultusk', 10000, 1),
(4674, 197, 3282, 'Rzeszow', 10000, 1),
(4675, 197, 3279, 'Slomniki', 10000, 1),
(4676, 197, 3289, 'Szczecin', 10000, 1),
(4677, 197, 3277, 'Torun', 10000, 1),
(4680, 197, 3274, 'Wroclaw', 10000, 1),
(4681, 197, 3285, 'Zawiercie', 10000, 1),
(4682, 197, 3276, 'Zielona Gora', 10000, 1),
(4683, 198, 3319, 'Angra Do Heroismo', 10000, 1),
(4684, 198, 3305, 'Coimbra', 10000, 1),
(4685, 198, 3307, 'Faro', 10000, 1),
(4686, 198, 3308, 'Funchal', 10000, 1),
(4688, 198, 3319, 'Horta', 10000, 1),
(4689, 198, 3307, 'Lagoa', 10000, 1),
(4690, 198, 3308, 'Machico', 10000, 1),
(4691, 198, 3318, 'Mangualde', 10000, 1),
(4692, 198, 3319, 'Ponta Delgada', 10000, 1),
(4694, 198, 3319, 'Ribeira Grande', 10000, 1);
INSERT INTO `[[dbprefix]]geo_cities` VALUES
(4696, 198, 3305, 'Vila Do Porto', 10000, 1),
(4697, 198, 3319, 'Villa Franca Do Campo', 10000, 1),
(4698, 193, 3185, 'Asuncion', 10000, 1),
(4699, 193, 3185, 'Santa Maria', 10000, 1),
(4700, 202, 3366, 'Brasov', 10000, 1),
(4701, 202, 3367, 'Bucharest', 10000, 1),
(4702, 202, 3370, 'Cluj-Napoca', 10000, 1),
(4703, 202, 3389, 'Sibiu', 10000, 1),
(4704, 203, 3539, 'Archangelsk', 10000, 1),
(4705, 203, 3591, 'Azov', 10000, 1),
(4707, 203, 3537, 'Barnaul', 10000, 1),
(4708, 203, 3571, 'Borovichi', 10000, 1),
(4709, 203, 3606, 'Budennovsk', 10000, 1),
(4711, 203, 3612, 'Cherepovets', 10000, 1),
(4712, 203, 105, 'Derbent', 10000, 1),
(4713, 203, 3603, 'Dikson', 10000, 1),
(4714, 203, 3577, 'Dmitrov', 10000, 1),
(4715, 203, 3577, 'Dubna', 10000, 1),
(4716, 203, 3601, 'Ekaterinburg', 10000, 1),
(4717, 203, 3600, 'Georgievsk', 10000, 1),
(4718, 203, 3588, 'Ishim', 10000, 1),
(4719, 203, 3600, 'Kislovodsk', 10000, 1),
(4720, 203, 3577, 'Konakovo', 10000, 1),
(4721, 203, 3539, 'Kotlas', 10000, 1),
(4722, 203, 3569, 'Krasnodar', 10000, 1),
(4723, 203, 3569, 'Krasnogorsk', 10000, 1),
(4724, 203, 3582, 'Krestsy', 10000, 1),
(4726, 203, 3589, 'Vladivostok', 10000, 1),
(4727, 203, 3600, 'Lermontov', 10000, 1),
(4728, 203, 3578, 'Lomonosov', 10000, 1),
(4730, 203, 3589, 'Nakhodka', 10000, 1),
(4733, 203, 3600, 'Novopavlovsk', 10000, 1),
(4734, 203, 3570, 'Novorossiisk', 10000, 1),
(4735, 203, 3557, 'Obninsk', 10000, 1),
(4736, 203, 3539, 'Okha', 10000, 1),
(4737, 203, 3575, 'Palatka', 10000, 1),
(4738, 203, 3616, 'Pereslavl''-Zalesskiy', 10000, 1),
(4740, 203, 3558, 'Provideniya', 10000, 1),
(4741, 203, 3560, 'Pryazha', 10000, 1),
(4742, 203, 3591, 'Pushkin', 10000, 1),
(4743, 203, 3555, 'Pushkino', 10000, 1),
(4744, 203, 3600, 'Pyatigorsk', 10000, 1),
(4745, 203, 3591, 'Rostov-On-Don', 10000, 1),
(4747, 203, 3537, 'Rubtsovsk', 10000, 1),
(4748, 203, 3616, 'Rybinsk', 10000, 1),
(4749, 203, 3576, 'Sarov', 10000, 1),
(4750, 203, 3577, 'Serpukhov', 10000, 1),
(4752, 203, 3569, 'Sochi', 10000, 1),
(4753, 203, 3562, 'Sovetskaya Gavan''', 10000, 1),
(4755, 203, 3582, 'Staraya Russa', 10000, 1),
(4756, 203, 91, 'Syktyvkar', 10000, 1),
(4757, 203, 3582, 'Taldom', 10000, 1),
(4759, 203, 3595, 'Togliatti', 10000, 1),
(4760, 203, 3538, 'Tynda', 10000, 1),
(4763, 203, 3549, 'Vladikavkaz', 10000, 1),
(4767, 203, 3577, 'Zelenograd', 10000, 1),
(4771, 233, 4002, 'Eskilstuna', 10000, 1),
(4773, 233, 4010, 'Gothenburg', 10000, 1),
(4774, 233, 4009, 'Hammenh', 10000, 1),
(4775, 233, 4009, 'Helsingborg', 10000, 1),
(4776, 233, 3992, 'Jonkoping', 10000, 1),
(4778, 233, 4004, 'Karlskoga', 10000, 1),
(4779, 233, 3994, 'Leksand', 10000, 1),
(4782, 233, 4010, 'M', 10000, 1),
(4783, 233, 3994, 'Mora', 10000, 1),
(4784, 233, 4004, 'Munkfors', 10000, 1),
(4785, 233, 4009, 'Nybro', 10000, 1),
(4786, 233, 4002, 'Oxel', 10000, 1),
(4787, 233, 3986, 'Ronneby', 10000, 1),
(4788, 233, 4010, 'Skovde', 10000, 1),
(4789, 233, 4008, 'Solna', 10000, 1),
(4791, 233, 4004, 'Sunne', 10000, 1),
(4792, 233, 3996, 'Vaxjo', 10000, 1),
(4793, 233, 3993, 'Vimmerby', 10000, 1),
(4794, 221, 3763, 'Ljubljana', 10000, 1),
(4795, 220, 2592, 'Bardejov', 10000, 1),
(4796, 220, 2590, 'Kosice', 10000, 1),
(4797, 220, 2591, 'Nitra', 10000, 1),
(4798, 220, 2592, 'Spisska Nova Ves', 10000, 1),
(4799, 218, 3852, 'Bo', 10000, 1),
(4800, 218, 3853, 'Freetown', 10000, 1),
(4801, 211, 3860, 'San Marino', 10000, 1),
(4802, 214, 3697, 'Dakar', 10000, 1),
(4803, 214, 3697, 'Kaolack', 10000, 1),
(4804, 214, 3695, 'Linguere', 10000, 1),
(4806, 214, 3699, 'Ziguinchor', 10000, 1),
(4807, 72, 1646, 'Arcatao', 10000, 1),
(4809, 72, 1655, 'San Antonio Los Ranchos', 10000, 1),
(4810, 72, 1654, 'San Jose Las Flores', 10000, 1),
(4811, 72, 1654, 'San Miguel', 10000, 1),
(4812, 72, 1644, 'Santa Ana', 10000, 1),
(4813, 72, 1647, 'Tenancingo', 10000, 1),
(4814, 240, 5395, 'Lome', 10000, 1),
(4815, 239, 4102, 'Bangkok', 10000, 1),
(4817, 239, 776, 'Laem Chabang', 10000, 1),
(4819, 237, 4140, 'Dushanbe', 10000, 1),
(4820, 237, 4142, 'Khujand', 10000, 1),
(4821, 247, 5053, 'Ashgabat', 10000, 1),
(4822, 245, 4190, 'Carthage', 10000, 1),
(4823, 245, 4184, 'Gafsa', 10000, 1),
(4824, 246, 4225, 'Istanbul', 10000, 1),
(4825, 246, 4226, 'Izmir', 10000, 1),
(4826, 246, 4223, 'Mersin', 10000, 1),
(4827, 246, 4239, 'Mugla', 10000, 1),
(4829, 238, 4276, 'Arusha', 10000, 1),
(4830, 238, 4293, 'Bagamoyo', 10000, 1),
(4831, 238, 4277, 'Dar Es Salaam', 10000, 1),
(4832, 238, 4293, 'Morogoro', 10000, 1),
(4833, 238, 4290, 'Shinyanga', 10000, 1),
(4834, 251, 4441, 'Alushta', 10000, 1),
(4835, 251, 4437, 'Bogodukhov', 10000, 1),
(4836, 251, 4443, 'Brovary', 10000, 1),
(4837, 251, 4431, 'Cherkassy', 10000, 1),
(4838, 251, 4431, 'Chernivtsi', 10000, 1),
(4840, 251, 4434, 'Dnebrovsky', 10000, 1),
(4841, 251, 4435, 'Gorlovka', 10000, 1),
(4842, 251, 4431, 'Kaniv', 10000, 1),
(4843, 251, 4437, 'Kharkiv', 10000, 1),
(4844, 251, 4446, 'Kherson', 10000, 1),
(4846, 251, 4442, 'Kiev', 10000, 1),
(4848, 251, 4445, 'Lviv', 10000, 1),
(4849, 251, 4437, 'Merefa', 10000, 1),
(4850, 251, 4447, 'Odessa', 10000, 1),
(4851, 251, 4448, 'Poltava', 10000, 1),
(4852, 251, 4431, 'Shpola', 10000, 1),
(4854, 251, 4453, 'Smila', 10000, 1),
(4855, 251, 4452, 'Ternopil', 10000, 1),
(4857, 251, 4455, 'Uzhgorod', 10000, 1),
(4858, 251, 4447, 'Yalta', 10000, 1),
(4859, 259, 4535, 'Caracas', 10000, 1),
(4860, 259, 4527, 'Puerto la Cruz', 10000, 1),
(4861, 250, 4307, 'Jinja', 10000, 1),
(4862, 250, 4311, 'Kampala', 10000, 1),
(4863, 253, 5392, 'Andover', 10000, 1),
(4864, 253, 5392, 'Ashby-de-la-Zouch', 10000, 1),
(4865, 253, 5392, 'Ashford', 10000, 1),
(4866, 253, 5392, 'Barnet', 10000, 1),
(4868, 253, 5391, 'Belfast', 10000, 1),
(4869, 253, 5392, 'Belper', 10000, 1),
(4870, 253, 5392, 'Berwick Upon Tweed', 10000, 1),
(4871, 253, 5392, 'Billericay', 10000, 1),
(4872, 253, 5392, 'Birmingham', 10000, 1),
(4873, 253, 5390, 'Braemar', 10000, 1),
(4874, 253, 5389, 'Brecon', 10000, 1),
(4875, 253, 5392, 'Brentwood', 10000, 1),
(4876, 253, 5392, 'Broomfield', 10000, 1),
(4877, 253, 5392, 'Burton Upon Tren', 10000, 1),
(4878, 253, 5392, 'Cambridge', 10000, 1),
(4879, 253, 5392, 'Canterbury', 10000, 1),
(4880, 253, 5392, 'Cheltenham', 10000, 1),
(4881, 253, 5392, 'Chester', 10000, 1),
(4884, 253, 5392, 'Colchester', 10000, 1),
(4885, 253, 5392, 'Coventry', 10000, 1),
(4886, 253, 5390, 'Cumbernauld', 10000, 1),
(4887, 253, 5392, 'Dartmouth', 10000, 1),
(4889, 253, 5392, 'Doncaster', 10000, 1),
(4890, 253, 5390, 'Dunbar', 10000, 1),
(4891, 253, 5390, 'Dundee', 10000, 1),
(4892, 253, 5392, 'Durham', 10000, 1),
(4893, 253, 5390, 'Edinburgh', 10000, 1),
(4894, 253, 5390, 'Falkirk', 10000, 1),
(4895, 253, 5390, 'Forres', 10000, 1),
(4896, 253, 5392, 'Glastonbury', 10000, 1),
(4898, 253, 5390, 'Grangemouth', 10000, 1),
(4899, 253, 5392, 'Great Wilbraham', 10000, 1),
(4900, 253, 5390, 'Greenock', 10000, 1),
(4902, 253, 5392, 'Hartlepool', 10000, 1),
(4903, 253, 5392, 'Haverhill', 10000, 1),
(4904, 253, 5389, 'Hawarden', 10000, 1),
(4905, 253, 5390, 'Inverness', 10000, 1),
(4906, 253, 5392, 'Keighley', 10000, 1),
(4907, 253, 5390, 'Kelso', 10000, 1),
(4908, 253, 5390, 'Kennet', 10000, 1),
(4909, 253, 5392, 'Kettering', 10000, 1),
(4910, 253, 5392, 'Kingston Upon Hull', 10000, 1),
(4911, 253, 5392, 'Laughton', 10000, 1),
(4912, 253, 5392, 'Lewes', 10000, 1),
(4913, 253, 5389, 'Machynlleth', 10000, 1),
(4914, 253, 5392, 'Mansfield', 10000, 1),
(4915, 253, 5392, 'Margate', 10000, 1),
(4916, 253, 5392, 'Marlborough', 10000, 1),
(4917, 253, 5392, 'Merton', 10000, 1),
(4918, 253, 5390, 'Newark', 10000, 1),
(4919, 253, 5392, 'Newcastle Upon Tyne', 10000, 1),
(4922, 253, 5392, 'Northampton', 10000, 1),
(4923, 253, 5390, 'Oban', 10000, 1),
(4925, 253, 5392, 'Penzance', 10000, 1),
(4926, 253, 5390, 'Plains', 10000, 1),
(4927, 253, 5392, 'Plymouth', 10000, 1),
(4928, 253, 5392, 'Portsmouth', 10000, 1),
(4931, 253, 5392, 'Salisbury', 10000, 1),
(4932, 253, 5392, 'Scarborough', 10000, 1),
(4935, 253, 5392, 'Southampton', 10000, 1),
(4936, 253, 5392, 'Southborough', 10000, 1),
(4937, 253, 5392, 'Stoke On Trent', 10000, 1),
(4938, 253, 5392, 'Stratford-Upon-Avon', 10000, 1),
(4939, 253, 5392, 'Stroud', 10000, 1),
(4941, 253, 5392, 'Taunton', 10000, 1),
(4943, 253, 5392, 'Truro', 10000, 1),
(4945, 253, 5392, 'Wallingford', 10000, 1),
(4947, 253, 5392, 'Wareham', 10000, 1),
(4948, 253, 5392, 'Warwick', 10000, 1),
(4949, 253, 5392, 'Watford', 10000, 1),
(4950, 253, 5392, 'Whitby', 10000, 1),
(4952, 253, 5392, 'Wisbech', 10000, 1),
(4953, 253, 5392, 'Wisborough Green', 10000, 1),
(4954, 256, 4496, 'Maldonado', 10000, 1),
(4955, 256, 4497, 'Montevideo', 10000, 1),
(4956, 256, 4498, 'Paysandu', 10000, 1),
(4957, 257, 4508, 'Bukhara', 10000, 1),
(4958, 257, 4516, 'Samarkand', 10000, 1),
(4959, 257, 4519, 'Tashkent', 10000, 1),
(4960, 260, 4568, 'Ho Chi Minh City', 10000, 1),
(4961, 260, 4612, 'Hue', 10000, 1),
(4962, 4, 5309, 'Pago Pago', 10000, 1),
(4963, 273, 4681, 'Kitwe', 10000, 1),
(4964, 273, 4688, 'Lusaka', 10000, 1),
(4965, 274, 4693, 'Chinhoyi', 10000, 1),
(4966, 274, 4690, 'Gweru', 10000, 1),
(4967, 274, 4691, 'Harare', 10000, 1),
(4968, 274, 4689, 'Mutare', 10000, 1),
(4969, 17, 1150, 'Freeport', 10000, 1),
(4971, 17, 1148, 'Nassau', 10000, 1),
(4972, 56, 1316, 'Pointe Noire', 10000, 1),
(4973, 64, 5134, 'Uhersky Brod', 10000, 1),
(4974, 64, 601, 'Kladno', 10000, 1),
(4977, 133, 2435, 'Andong', 10000, 1),
(4978, 133, 2425, 'Anyang', 10000, 1),
(4979, 133, 2430, 'Bucheon City', 10000, 1),
(4981, 133, 2424, 'Jeju', 10000, 1),
(4982, 133, 2428, 'Chinju', 10000, 1),
(4983, 133, 2425, 'Chonju', 10000, 1),
(4985, 133, 2426, 'Chungju', 10000, 1),
(4987, 133, 2432, 'Inchon', 10000, 1),
(4989, 133, 2427, 'Kangnung', 10000, 1),
(4990, 133, 2425, 'Kunsan', 10000, 1),
(4991, 133, 2435, 'Kwangju', 10000, 1),
(4992, 133, 2429, 'Masan', 10000, 1),
(4993, 133, 2424, 'Pohang', 10000, 1),
(4994, 133, 2429, 'Pusan', 10000, 1),
(4996, 133, 2427, 'Sokch''o', 10000, 1),
(4998, 133, 2432, 'Suwon', 10000, 1),
(4999, 133, 2433, 'Taegu', 10000, 1),
(5000, 133, 2436, 'Taejon', 10000, 1),
(5001, 133, 2427, 'Tongdu-ch''on', 10000, 1),
(5002, 133, 2428, 'Ulsan', 10000, 1),
(5003, 133, 2427, 'Wonju', 10000, 1),
(5004, 91, 1915, 'Diekirch North', 10000, 1),
(5005, 146, 5135, 'Skopje', 10000, 1),
(5006, 146, 5239, 'Tetovo', 10000, 1),
(5009, 152, 689, 'Mosta', 10000, 1),
(5010, 253, 5390, 'Hamilton', 10000, 1),
(5011, 253, 5390, 'Prestwick', 10000, 1),
(5012, 253, 5390, 'Stirling', 10000, 1),
(5013, 220, 2589, 'Bratislava', 10000, 1),
(5015, 133, 2432, 'Songnam', 10000, 1),
(5017, 49, 586, 'Ping-Tung City', 10000, 1),
(5018, 49, 586, 'Ping-Tung County', 10000, 1),
(5020, 49, 586, 'Tai-Tung County', 10000, 1),
(5021, 49, 586, 'Xian', 10000, 1),
(5023, 118, 2233, 'B''nei Brak', 10000, 1),
(5024, 49, 586, 'Pan-Chiao City', 10000, 1),
(5028, 39, 1196, 'Yangon', 10000, 1),
(5030, 36, 1249, 'Bandar Seri Begawan', 10000, 1),
(5033, 29, 1172, 'Aiquile', 10000, 1),
(5034, 29, 1174, 'Apolo', 10000, 1),
(5035, 29, 1177, 'Atocha', 10000, 1),
(5036, 29, 1179, 'Bermejo', 10000, 1),
(5037, 29, 1175, 'Caracollo', 10000, 1),
(5038, 29, 1174, 'Chara', 10000, 1),
(5039, 29, 1172, 'Chimore', 10000, 1),
(5040, 29, 1173, 'Chulumani', 10000, 1),
(5042, 29, 1174, 'Corioco', 10000, 1),
(5043, 29, 1173, 'Cotoca', 10000, 1),
(5045, 29, 1173, 'Guayaramerin', 10000, 1),
(5046, 29, 1172, 'Lagunillas', 10000, 1),
(5047, 29, 1174, 'Machacamarca', 10000, 1),
(5048, 29, 1172, 'Mizque', 10000, 1),
(5050, 29, 1176, 'Portachuelo', 10000, 1),
(5051, 29, 1177, 'Potosi', 10000, 1),
(5052, 29, 1178, 'Puerto Grether', 10000, 1),
(5053, 29, 1172, 'Puerto Patino', 10000, 1),
(5054, 29, 1172, 'Puerto Villarroel', 10000, 1),
(5055, 29, 1172, 'Punata', 10000, 1),
(5057, 29, 1173, 'Riberalta', 10000, 1),
(5058, 29, 1173, 'San Borja', 10000, 1),
(5059, 29, 1178, 'San Jose de Chiquitos', 10000, 1),
(5060, 29, 1178, 'Santa Ana', 10000, 1),
(5061, 29, 1178, 'Santa Rosa del Sara', 10000, 1),
(5063, 29, 1171, 'Sucre', 10000, 1),
(5064, 29, 1179, 'Tarija', 10000, 1),
(5065, 29, 1176, 'Trinidad', 10000, 1),
(5066, 29, 1177, 'Tupiza', 10000, 1),
(5067, 29, 1174, 'Uyuni', 10000, 1),
(5070, 29, 1171, 'Villazon', 10000, 1),
(5071, 29, 1174, 'Vinto', 10000, 1),
(5072, 29, 1179, 'Yacuiba', 10000, 1),
(5073, 29, 1174, 'Yolosa', 10000, 1),
(5075, 17, 1139, 'Freetown', 10000, 1),
(5076, 17, 1156, 'Marsh Harbour', 10000, 1),
(5077, 17, 1148, 'Nassau City', 10000, 1),
(5080, 48, 1366, 'Antofagasta', 10000, 1),
(5081, 48, 1376, 'Arica', 10000, 1),
(5082, 48, 1371, 'Cerrillos', 10000, 1),
(5084, 48, 1369, 'Chiguayante', 10000, 1),
(5085, 48, 1369, 'Chillan', 10000, 1),
(5086, 48, 1369, 'Concepcion', 10000, 1),
(5087, 48, 1370, 'Conchali', 10000, 1),
(5088, 48, 1375, 'El Arrayan', 10000, 1),
(5089, 48, 1370, 'El Bosque', 10000, 1),
(5090, 48, 1376, 'Estacion Central', 10000, 1),
(5091, 48, 1369, 'Huachipato', 10000, 1),
(5094, 48, 1376, 'Iquique', 10000, 1),
(5095, 48, 1375, 'La Cisterna', 10000, 1),
(5096, 48, 1375, 'La Dehesa', 10000, 1),
(5097, 48, 1364, 'La Florida', 10000, 1),
(5098, 48, 1376, 'La Granja', 10000, 1),
(5100, 48, 1375, 'La Reina', 10000, 1),
(5101, 48, 1375, 'Las Condes', 10000, 1),
(5103, 48, 1375, 'Lo Espejo', 10000, 1),
(5105, 48, 1375, 'Macul', 10000, 1),
(5106, 48, 1375, 'Maipu', 10000, 1),
(5107, 48, 1375, 'Nunoa', 10000, 1),
(5109, 48, 1376, 'Pena Blanca', 10000, 1),
(5110, 48, 1375, 'Penalolen', 10000, 1),
(5111, 48, 1369, 'Penco', 10000, 1),
(5112, 48, 1375, 'Providencia', 10000, 1),
(5114, 48, 1375, 'Puente Alto', 10000, 1),
(5115, 48, 1375, 'Quilicura', 10000, 1),
(5116, 48, 1364, 'Quilpue', 10000, 1),
(5117, 48, 1375, 'Quinta Normal', 10000, 1),
(5118, 48, 1371, 'Rancagua', 10000, 1),
(5119, 48, 1370, 'Recoleta', 10000, 1),
(5120, 48, 1364, 'Renaca', 10000, 1),
(5121, 48, 1375, 'Renca', 10000, 1),
(5122, 48, 1370, 'San Bernardo', 10000, 1),
(5123, 48, 1375, 'San Joaquin', 10000, 1),
(5124, 48, 1370, 'San Miguel', 10000, 1),
(5125, 48, 1368, 'San Pedro', 10000, 1),
(5126, 48, 1366, 'San Ramon', 10000, 1),
(5127, 48, 1371, 'San Vicente', 10000, 1),
(5128, 48, 1375, 'Vitacura', 10000, 1),
(5129, 53, 1400, 'Arauca', 10000, 1),
(5130, 53, 1419, 'Barrancabermeja', 10000, 1),
(5131, 53, 1398, 'Barrancas', 10000, 1),
(5132, 53, 1413, 'Buga', 10000, 1),
(5133, 53, 1415, 'Chiquinquira', 10000, 1),
(5134, 53, 1414, 'Cucuta', 10000, 1),
(5136, 53, 1419, 'El Centro', 10000, 1),
(5137, 53, 1426, 'Engativa', 10000, 1),
(5138, 53, 1399, 'Envigado', 10000, 1),
(5139, 53, 1426, 'Facatativa', 10000, 1),
(5140, 53, 1413, 'Florencia', 10000, 1),
(5141, 53, 1426, 'Fontibon', 10000, 1),
(5142, 53, 1399, 'Fragua', 10000, 1),
(5143, 53, 1426, 'Funza', 10000, 1),
(5144, 53, 1426, 'Fusagasuga', 10000, 1),
(5146, 53, 1419, 'Galan', 10000, 1),
(5147, 53, 1419, 'Girardot', 10000, 1),
(5148, 53, 1413, 'Ipiales', 10000, 1),
(5149, 53, 1399, 'Itagui', 10000, 1),
(5150, 53, 1415, 'Junin', 10000, 1),
(5151, 53, 1421, 'La Calera', 10000, 1),
(5152, 53, 1413, 'La Victoria', 10000, 1),
(5153, 53, 1413, 'Las Cruces', 10000, 1),
(5154, 53, 1400, 'Las Delicias', 10000, 1),
(5155, 53, 1421, 'Laureles', 10000, 1),
(5156, 53, 1398, 'Leticia', 10000, 1),
(5157, 53, 1427, 'Madrid', 10000, 1),
(5158, 53, 1411, 'Maicao', 10000, 1),
(5159, 53, 1429, 'Melgar', 10000, 1),
(5160, 53, 1406, 'Monteria', 10000, 1),
(5161, 53, 1403, 'Mosquera', 10000, 1),
(5162, 53, 1410, 'Neiva', 10000, 1),
(5163, 53, 1429, 'Paipa', 10000, 1),
(5165, 53, 1422, 'Palmira', 10000, 1),
(5166, 53, 1414, 'Pamplona', 10000, 1),
(5167, 53, 1413, 'Pasto', 10000, 1),
(5168, 53, 1417, 'Pereira', 10000, 1),
(5170, 53, 1405, 'Quibdo', 10000, 1),
(5171, 53, 1411, 'Riohacha', 10000, 1),
(5173, 53, 1418, 'San Andres', 10000, 1),
(5176, 53, 1426, 'Soacha', 10000, 1),
(5177, 53, 1429, 'Sogamoso', 10000, 1),
(5178, 53, 1426, 'Suba', 10000, 1),
(5179, 53, 1426, 'Tocaima', 10000, 1),
(5180, 53, 1426, 'Usaquen', 10000, 1),
(5181, 53, 1404, 'Valledupar', 10000, 1),
(5182, 53, 1414, 'Villa De Leiva', 10000, 1),
(5183, 53, 1412, 'Villavicencio', 10000, 1),
(5184, 53, 1421, 'Yopal', 10000, 1),
(5185, 53, 1426, 'Zipaquira', 10000, 1),
(5191, 68, 1524, 'Arenoso', 10000, 1),
(5192, 68, 1519, 'Azua', 10000, 1),
(5193, 68, 1519, 'Azua De Compostela', 10000, 1),
(5194, 68, 1521, 'Bahoruco', 10000, 1),
(5195, 68, 1548, 'Bajos De Haina', 10000, 1),
(5196, 68, 1533, 'Bani', 10000, 1),
(5197, 68, 1528, 'Banica', 10000, 1),
(5198, 68, 1521, 'Barahona', 10000, 1),
(5199, 68, 1547, 'Bayaguana', 10000, 1),
(5200, 68, 1538, 'Bohechio', 10000, 1),
(5201, 68, 1546, 'Bonao', 10000, 1),
(5202, 68, 1521, 'Cabral', 10000, 1),
(5203, 68, 1530, 'Cabrera', 10000, 1),
(5204, 68, 1548, 'Cambita Garabitos', 10000, 1),
(5207, 68, 1531, 'Castanuelas', 10000, 1),
(5208, 68, 1524, 'Castillo', 10000, 1),
(5209, 68, 1525, 'Cayetano Germosen', 10000, 1),
(5211, 68, 1537, 'Cevicos', 10000, 1),
(5212, 68, 1527, 'Chavon Abajo', 10000, 1),
(5213, 68, 1528, 'Comendador', 10000, 1),
(5214, 68, 1537, 'Cotui', 10000, 1),
(5215, 68, 1526, 'Cristobal', 10000, 1),
(5216, 68, 1522, 'Dajabon', 10000, 1),
(5217, 68, 1547, 'Don Juan', 10000, 1),
(5218, 68, 1523, 'Duarte', 10000, 1),
(5219, 68, 1526, 'Duverge', 10000, 1),
(5220, 68, 1519, 'El Cacao', 10000, 1),
(5221, 68, 1538, 'El Cercado', 10000, 1),
(5222, 68, 1530, 'El Factor', 10000, 1),
(5223, 68, 1539, 'El Guayabal', 10000, 1),
(5224, 68, 1528, 'El Llano', 10000, 1),
(5225, 68, 1521, 'El Penon', 10000, 1),
(5226, 68, 1522, 'El Pino', 10000, 1),
(5228, 68, 1544, 'El Valle', 10000, 1),
(5229, 68, 1528, 'Elias Pina', 10000, 1),
(5230, 68, 1521, 'Enriquillo', 10000, 1),
(5232, 68, 1547, 'Esperalvillo', 10000, 1),
(5233, 68, 1542, 'Esperanza', 10000, 1),
(5234, 68, 1519, 'Estebania', 10000, 1),
(5235, 68, 1537, 'Fantino', 10000, 1),
(5236, 68, 1521, 'Fundacion', 10000, 1),
(5237, 68, 1520, 'Galvan', 10000, 1),
(5238, 68, 1525, 'Gaspar Hernandez', 10000, 1),
(5239, 68, 1519, 'Guayabal', 10000, 1),
(5241, 68, 1544, 'Hato Mayor', 10000, 1),
(5242, 68, 1544, 'Hato Mayor Del Rey', 10000, 1),
(5243, 68, 1527, 'Higuey', 10000, 1),
(5244, 68, 1528, 'Hondo Valle', 10000, 1),
(5245, 68, 1524, 'Hostos', 10000, 1),
(5246, 68, 1523, 'Independencia', 10000, 1),
(5247, 68, 1525, 'Jamao Al Norte', 10000, 1),
(5248, 68, 1526, 'Jimani', 10000, 1),
(5249, 68, 1525, 'Jose Contreras', 10000, 1),
(5250, 68, 1538, 'Juan De Herrera', 10000, 1),
(5251, 68, 1528, 'Juan Santiago', 10000, 1),
(5252, 68, 1521, 'La Altagracia', 10000, 1),
(5253, 68, 1521, 'La Cienaga', 10000, 1),
(5254, 68, 1548, 'La Cueva', 10000, 1),
(5255, 68, 1526, 'La Descubierta', 10000, 1),
(5257, 68, 1543, 'La Mata', 10000, 1),
(5259, 68, 1542, 'Laguna Salada', 10000, 1),
(5260, 68, 1519, 'Las Charcas', 10000, 1),
(5261, 68, 1537, 'Las Cuevas', 10000, 1),
(5262, 68, 1524, 'Las Guaranas', 10000, 1),
(5263, 68, 1537, 'Las Matas', 10000, 1),
(5264, 68, 1538, 'Las Matas De Farfan', 10000, 1),
(5266, 68, 1521, 'Las Salinas', 10000, 1),
(5267, 68, 1536, 'Las Terrenas', 10000, 1),
(5269, 68, 1522, 'Loma De Cabrera', 10000, 1),
(5270, 68, 1541, 'Los Almacigos', 10000, 1),
(5271, 68, 1548, 'Los Cacaos', 10000, 1),
(5272, 68, 1520, 'Los Rios', 10000, 1),
(5273, 68, 1546, 'Maimon', 10000, 1),
(5274, 68, 1542, 'Mao', 10000, 1),
(5276, 68, 1533, 'Matanzas', 10000, 1),
(5277, 68, 1526, 'Mella', 10000, 1),
(5278, 68, 1543, 'Miches', 10000, 1),
(5279, 68, 1525, 'Moca', 10000, 1),
(5280, 68, 1541, 'Moncion', 10000, 1),
(5281, 68, 1546, 'Monsenor Nouel', 10000, 1),
(5283, 68, 1531, 'Monte Plata', 10000, 1),
(5284, 68, 1530, 'Nagua', 10000, 1),
(5285, 68, 1520, 'Neiba', 10000, 1),
(5286, 68, 1520, 'Neyba', 10000, 1),
(5287, 68, 1548, 'Nigua', 10000, 1),
(5288, 68, 1527, 'Nisibon', 10000, 1),
(5289, 68, 1533, 'Nizao', 10000, 1),
(5290, 68, 1527, 'Otra Banda', 10000, 1),
(5291, 68, 1532, 'Oviedo', 10000, 1),
(5292, 68, 1519, 'Padre Las Casas', 10000, 1),
(5293, 68, 1521, 'Paraiso', 10000, 1),
(5294, 68, 1522, 'Partido', 10000, 1),
(5295, 68, 1532, 'Pedernales', 10000, 1),
(5296, 68, 1528, 'Pedro Santana', 10000, 1),
(5297, 68, 1521, 'Penon', 10000, 1),
(5298, 68, 1531, 'Pepillo Salcedo', 10000, 1),
(5299, 68, 1519, 'Peralta', 10000, 1),
(5300, 68, 1533, 'Peravia', 10000, 1),
(5301, 68, 1546, 'Piedra Blanca', 10000, 1),
(5302, 68, 1524, 'Pimentel', 10000, 1),
(5303, 68, 1521, 'Polo', 10000, 1),
(5305, 68, 1519, 'Pueblo Viejo', 10000, 1),
(5306, 68, 1533, 'Rancho Arriba', 10000, 1),
(5307, 68, 1522, 'Restauracion', 10000, 1),
(5308, 68, 1544, 'Rio San Juan', 10000, 1),
(5309, 68, 1533, 'Sabana Buey', 10000, 1),
(5310, 68, 1544, 'Sabana De La Mar', 10000, 1),
(5311, 68, 1547, 'Sabana Grande De Boya', 10000, 1),
(5312, 68, 1548, 'Sabana Grande Palenque', 10000, 1),
(5313, 68, 1533, 'Sabana Larga', 10000, 1),
(5314, 68, 1519, 'Sabana Yegua', 10000, 1),
(5315, 68, 1535, 'Salcedo', 10000, 1),
(5318, 68, 1548, 'San Cristobal', 10000, 1),
(5320, 68, 1524, 'San Francisco De Macoris', 10000, 1),
(5322, 68, 1541, 'San Ignacio De Sabaneta', 10000, 1),
(5324, 68, 1533, 'San Jose De Ocoa', 10000, 1),
(5325, 68, 1539, 'San Juan', 10000, 1),
(5327, 68, 1527, 'San Rafael Del Yuma', 10000, 1),
(5328, 68, 1525, 'San Victor', 10000, 1),
(5329, 68, 1536, 'Sanchez', 10000, 1),
(5332, 68, 1541, 'Santiago Rodriguez', 10000, 1),
(5335, 68, 1519, 'Tabara Arriba', 10000, 1),
(5336, 68, 1520, 'Tamayo', 10000, 1),
(5337, 68, 1535, 'Tenares', 10000, 1),
(5338, 68, 1520, 'Ubilla', 10000, 1),
(5339, 68, 1538, 'Vallejuelo', 10000, 1),
(5340, 68, 1542, 'Valverde', 10000, 1),
(5341, 68, 1521, 'Vicente Noble', 10000, 1),
(5342, 68, 1548, 'Villa Altagracia', 10000, 1),
(5344, 68, 1520, 'Villa Jaragua', 10000, 1),
(5345, 68, 1524, 'Villa Riva', 10000, 1),
(5346, 68, 1535, 'Villa Tapia', 10000, 1),
(5347, 68, 1531, 'Villa Vasquez', 10000, 1),
(5348, 68, 1548, 'Yaguate', 10000, 1),
(5349, 68, 1547, 'Yamasa', 10000, 1),
(5350, 68, 1519, 'Yayas De Viajama', 10000, 1),
(5351, 70, 1566, 'Ambato', 10000, 1),
(5352, 70, 1562, 'Bahia', 10000, 1),
(5353, 70, 1562, 'Bahia De Caraquez', 10000, 1),
(5354, 70, 1560, 'Loja', 10000, 1),
(5355, 70, 1556, 'Machala', 10000, 1),
(5356, 70, 1562, 'Manta', 10000, 1),
(5357, 70, 1559, 'Otavalo', 10000, 1),
(5358, 70, 1562, 'Portoviejo', 10000, 1),
(5359, 70, 1549, 'Puerto Ayora', 10000, 1),
(5360, 70, 1549, 'Puerto Baquerizo Moreno', 10000, 1),
(5361, 70, 1565, 'Santo Domingo', 10000, 1),
(5362, 70, 1553, 'Tulcan', 10000, 1),
(5363, 100, 1985, 'Boca Del Monte', 10000, 1),
(5364, 100, 1985, 'Guatemala', 10000, 1),
(5365, 100, 1985, 'MIXCO', 10000, 1),
(5366, 100, 1985, 'SAN MIGUEL PETAPA', 10000, 1),
(5367, 100, 1985, 'VILLA CANALES', 10000, 1),
(5368, 100, 1989, 'VILLA NUEVA', 10000, 1),
(5369, 104, 2032, 'Albion', 10000, 1),
(5371, 104, 2034, 'Bartica', 10000, 1),
(5374, 104, 2035, 'Blairmont', 10000, 1),
(5375, 104, 2034, 'Charity', 10000, 1),
(5383, 104, 2035, 'Fort Wellington', 10000, 1),
(5384, 104, 2035, 'Hopetown', 10000, 1),
(5385, 104, 2038, 'Linden', 10000, 1),
(5386, 104, 2038, 'MACKENZIE', 10000, 1),
(5387, 104, 2032, 'MAHAICA', 10000, 1),
(5388, 104, 2035, 'MAHAICONY', 10000, 1),
(5389, 104, 2033, 'NEW AMSTERDAM', 10000, 1),
(5390, 104, 2033, 'OREALLA', 10000, 1),
(5391, 104, 2034, 'PARIKA', 10000, 1),
(5392, 104, 2033, 'PORT MOURANT', 10000, 1),
(5393, 104, 2038, 'ROCKSTONE', 10000, 1),
(5394, 104, 2033, 'ROSE HALL', 10000, 1),
(5395, 104, 2035, 'ROSIGNOL', 10000, 1),
(5397, 104, 2033, 'SKELDON', 10000, 1),
(5398, 104, 2033, 'SPRINGLANDS', 10000, 1),
(5399, 104, 2036, 'SUDDIE', 10000, 1),
(5402, 108, 2056, 'Comayaguela', 10000, 1),
(5403, 108, 2056, 'Cortes', 10000, 1),
(5404, 108, 2055, 'Danli', 10000, 1),
(5405, 108, 2056, 'El Llano', 10000, 1),
(5406, 108, 2056, 'El Progreso', 10000, 1),
(5408, 108, 2054, 'La Lima', 10000, 1),
(5409, 108, 2066, 'Progreso', 10000, 1),
(5410, 108, 2054, 'Puerto Cortes', 10000, 1),
(5411, 108, 2054, 'SAN PEDRO SULA', 10000, 1),
(5412, 108, 2050, 'SANTA RITA', 10000, 1),
(5413, 108, 2049, 'TELA', 10000, 1),
(5414, 108, 2064, 'YORO', 10000, 1),
(5415, 108, 2055, 'YUSCARAN', 10000, 1),
(5416, 105, 2042, 'Bourdon', 10000, 1),
(5418, 105, 2044, 'Carrefour Shada', 10000, 1),
(5419, 105, 2042, 'Delmas', 10000, 1),
(5421, 105, 2046, 'Diquini', 10000, 1),
(5422, 105, 2046, 'MARTISSANT', 10000, 1),
(5423, 105, 2046, 'PETIONVILLE', 10000, 1),
(5425, 120, 2381, 'AdelphI', 10000, 1),
(5426, 120, 2373, 'Amity Hall', 10000, 1),
(5427, 120, 2381, 'Anchovy', 10000, 1),
(5428, 120, 2381, 'Bickersteth', 10000, 1),
(5430, 120, 2379, 'Braeton', 10000, 1),
(5431, 120, 2375, 'Browns Town', 10000, 1),
(5433, 120, 2379, 'Bushy Park', 10000, 1),
(5434, 120, 2383, 'Cambridge', 10000, 1),
(5435, 120, 2381, 'Catadupa', 10000, 1),
(5436, 120, 2379, 'Central Village', 10000, 1),
(5437, 120, 2373, 'Chapelton', 10000, 1),
(5438, 120, 2381, 'Chatham', 10000, 1),
(5439, 120, 2374, 'Chigwell', 10000, 1),
(5440, 120, 2380, 'Claremont', 10000, 1),
(5441, 120, 2382, 'Copse', 10000, 1),
(5442, 120, 2373, 'Denbigh', 10000, 1),
(5443, 120, 2378, 'Discovery Bay', 10000, 1),
(5444, 120, 2384, 'Duncans', 10000, 1),
(5445, 120, 2384, 'Falmouth', 10000, 1),
(5447, 120, 2381, 'Flagstaff', 10000, 1),
(5449, 120, 2381, 'Flower Hill', 10000, 1),
(5450, 120, 2373, 'Four Paths', 10000, 1),
(5451, 120, 2373, 'Freetown', 10000, 1),
(5453, 120, 2384, 'Gales Valley', 10000, 1),
(5454, 120, 2379, 'Garlands', 10000, 1),
(5455, 120, 2377, 'Golden Spring', 10000, 1),
(5456, 120, 2377, 'Gordon Town', 10000, 1),
(5457, 120, 2379, 'Goshen', 10000, 1),
(5458, 120, 2385, 'Grange Hill', 10000, 1),
(5459, 120, 2379, 'Gregory Park', 10000, 1),
(5460, 120, 2381, 'Guilsbro', 10000, 1),
(5461, 120, 2377, 'Half Way Tree', 10000, 1),
(5462, 120, 2383, 'Harbour Head', 10000, 1),
(5465, 120, 2379, 'Highgate', 10000, 1),
(5466, 120, 2380, 'Hopeton', 10000, 1),
(5469, 120, 2379, 'Innswood', 10000, 1),
(5471, 120, 2386, 'Johns Hall', 10000, 1),
(5472, 120, 2373, 'Kellits', 10000, 1),
(5473, 120, 2375, 'Kendal', 10000, 1),
(5474, 120, 2380, 'Kensington', 10000, 1),
(5475, 120, 2374, 'Lethe', 10000, 1),
(5476, 120, 2381, 'Lima', 10000, 1),
(5477, 120, 2373, 'Lime Hall', 10000, 1),
(5478, 120, 2379, 'Linstead', 10000, 1),
(5479, 120, 2373, 'Lionel Town', 10000, 1),
(5480, 120, 2381, 'Lottery', 10000, 1),
(5481, 120, 2374, 'Lucea', 10000, 1),
(5482, 120, 2378, 'Lydford', 10000, 1),
(5483, 120, 2375, 'Mandeville', 10000, 1),
(5485, 120, 2379, 'Marlie Mount', 10000, 1),
(5486, 120, 2381, 'Maroon Town', 10000, 1),
(5487, 120, 2373, 'May Pen', 10000, 1),
(5489, 120, 2380, 'Middle Quarters', 10000, 1),
(5490, 120, 2373, 'Milk River Bath', 10000, 1),
(5491, 120, 2377, 'Mocho', 10000, 1),
(5492, 120, 2378, 'Moneague', 10000, 1),
(5493, 120, 2377, 'Montpelier', 10000, 1),
(5494, 120, 2381, 'Mount Carey', 10000, 1),
(5495, 120, 2379, 'Naggo Head', 10000, 1),
(5496, 120, 2380, 'Nain', 10000, 1),
(5497, 120, 2385, 'Negril', 10000, 1),
(5499, 120, 2379, 'Old Harbour', 10000, 1),
(5500, 120, 2373, 'Palmers', 10000, 1),
(5501, 120, 2379, 'Passage Fort', 10000, 1),
(5502, 120, 2381, 'Point', 10000, 1),
(5503, 120, 2377, 'Port Maria', 10000, 1),
(5504, 120, 2379, 'Portmore', 10000, 1),
(5505, 120, 2375, 'Porus', 10000, 1),
(5506, 120, 2373, 'Race Course', 10000, 1),
(5507, 120, 2381, 'Reading', 10000, 1),
(5508, 120, 2379, 'Rest', 10000, 1),
(5509, 120, 2373, 'Rhymesbury', 10000, 1),
(5510, 120, 2384, 'Rio Bueno', 10000, 1),
(5511, 120, 2374, 'Salt Spring', 10000, 1),
(5512, 120, 2385, 'Seven Rivers', 10000, 1),
(5513, 120, 2374, 'Shettlewood', 10000, 1),
(5515, 120, 2381, 'Somerton', 10000, 1),
(5517, 120, 2379, 'Spanish Town', 10000, 1),
(5518, 120, 2381, 'Spot Valley', 10000, 1),
(5519, 120, 2381, 'Spring Mount', 10000, 1),
(5521, 120, 2384, 'Spring Vale', 10000, 1),
(5522, 120, 2379, 'Spring Village', 10000, 1),
(5523, 120, 2379, 'Springfield', 10000, 1),
(5524, 120, 2375, 'Spur Tree', 10000, 1),
(5529, 120, 2379, 'Stanberry Grove', 10000, 1),
(5531, 120, 2377, 'Stony Hill', 10000, 1),
(5533, 120, 2381, 'Unity Hall', 10000, 1),
(5537, 120, 2381, 'Wiltshire', 10000, 1),
(5539, 41, 1267, 'Battambang', 10000, 1),
(5542, 41, 1268, 'Kampong Cham', 10000, 1),
(5543, 41, 1271, 'Kampong Thom', 10000, 1),
(5544, 41, 1268, 'Kampot', 10000, 1),
(5545, 41, 1270, 'Kandal', 10000, 1),
(5547, 41, 1275, 'Kratie', 10000, 1),
(5550, 41, 1280, 'Prey Veng', 10000, 1),
(5551, 41, 1278, 'Pursat', 10000, 1),
(5553, 41, 1287, 'Siem Reap', 10000, 1),
(5555, 41, 1283, 'Stung Treng', 10000, 1),
(5556, 41, 1284, 'Svay Rieng', 10000, 1),
(5557, 41, 1285, 'Takeo', 10000, 1),
(5559, 184, 5369, 'Saipan', 10000, 1),
(5561, 190, 3292, 'Aguadulce', 10000, 1),
(5562, 190, 3291, 'Alanje', 10000, 1),
(5564, 190, 3291, 'Bambito', 10000, 1),
(5567, 190, 3290, 'Bocas Del Toro', 10000, 1),
(5568, 190, 3299, 'Boquete', 10000, 1),
(5569, 190, 3291, 'Cerro Punta', 10000, 1),
(5570, 190, 3290, 'Changuinola', 10000, 1),
(5571, 190, 3291, 'Chiriqui', 10000, 1),
(5572, 190, 3299, 'Chitre', 10000, 1),
(5573, 190, 3292, 'Cocle', 10000, 1),
(5574, 190, 3298, 'Concepcion', 10000, 1),
(5576, 190, 3291, 'Dolega', 10000, 1),
(5578, 190, 3291, 'El Varital', 10000, 1),
(5579, 190, 3291, 'Gualaca', 10000, 1),
(5581, 190, 3291, 'La Primavera', 10000, 1),
(5583, 190, 3296, 'Las Tablas', 10000, 1),
(5584, 190, 3296, 'Loma Colorada', 10000, 1),
(5585, 190, 3296, 'Los Santos', 10000, 1),
(5588, 190, 3296, 'Pedregal', 10000, 1),
(5589, 190, 3292, 'Penonome', 10000, 1),
(5590, 190, 3291, 'Puerto Armuelles', 10000, 1),
(5591, 190, 3291, 'Remedios', 10000, 1),
(5592, 190, 3299, 'San Cristobal', 10000, 1),
(5593, 190, 3291, 'San Lorenzo', 10000, 1),
(5594, 190, 3291, 'San Mateo', 10000, 1),
(5595, 190, 3292, 'San Pablo', 10000, 1),
(5596, 190, 3291, 'Santa Cruz', 10000, 1),
(5597, 190, 3299, 'Santiago', 10000, 1),
(5601, 190, 3299, 'Veraguas', 10000, 1),
(5603, 190, 3291, 'Volcan', 10000, 1),
(5604, 194, 3191, 'Aplao', 10000, 1),
(5605, 194, 3191, 'Camana', 10000, 1),
(5606, 194, 3191, 'Cayma', 10000, 1),
(5608, 194, 3202, 'Collique', 10000, 1),
(5609, 194, 3202, 'Magdalena', 10000, 1),
(5610, 194, 3191, 'Sabandia', 10000, 1),
(5611, 194, 3191, 'Socabaya', 10000, 1),
(5612, 194, 3195, 'Yanahuara', 10000, 1),
(5613, 187, 3218, 'Abbottabad', 10000, 1),
(5614, 187, 3218, 'Attock', 10000, 1),
(5615, 187, 3219, 'Burewala', 10000, 1),
(5617, 187, 3221, 'Kamoki', 10000, 1),
(5618, 187, 3219, 'Khewra', 10000, 1),
(5619, 187, 3218, 'Mardan', 10000, 1),
(5620, 187, 3221, 'Mirpur', 10000, 1),
(5622, 187, 3222, 'Rahimyar Khan', 10000, 1),
(5624, 193, 3174, 'Capiata', 10000, 1),
(5625, 193, 3170, 'Ciudad Del Este', 10000, 1),
(5626, 193, 3174, 'Fernando De La Mora', 10000, 1),
(5627, 193, 3174, 'Lambare', 10000, 1),
(5628, 193, 3174, 'Limpio', 10000, 1),
(5629, 193, 3174, 'Luque', 10000, 1),
(5631, 193, 3174, 'Mariano Roque Alonso', 10000, 1),
(5632, 193, 3182, 'San Lorenzo', 10000, 1),
(5633, 193, 3174, 'Villa Elisa', 10000, 1),
(5634, 259, 4542, 'Acarigua', 10000, 1),
(5635, 259, 4528, 'Achaguas', 10000, 1),
(5636, 259, 4543, 'Agua Blanca', 10000, 1),
(5637, 259, 4537, 'Altagracia De Orituco', 10000, 1),
(5638, 259, 4536, 'Amuay', 10000, 1),
(5639, 259, 4527, 'Anaco', 10000, 1),
(5640, 259, 4545, 'Apartaderos', 10000, 1),
(5641, 259, 4543, 'Araure', 10000, 1),
(5642, 259, 4548, 'Bachaquero', 10000, 1),
(5643, 259, 4530, 'Barinas', 10000, 1),
(5644, 259, 4529, 'Bejuma', 10000, 1),
(5645, 259, 4546, 'Bocono', 10000, 1),
(5646, 259, 4528, 'Bruzual', 10000, 1),
(5647, 259, 4538, 'Cabudare', 10000, 1),
(5648, 259, 4537, 'Calabozo', 10000, 1),
(5649, 259, 4529, 'Camatagua', 10000, 1),
(5651, 259, 4526, 'Capacho', 10000, 1),
(5652, 259, 5061, 'Caraballeda', 10000, 1),
(5653, 259, 4541, 'Caripe', 10000, 1),
(5654, 259, 4538, 'Carora', 10000, 1),
(5655, 259, 4541, 'Carrizales', 10000, 1),
(5656, 259, 4544, 'Carupano', 10000, 1),
(5657, 259, 4540, 'Catia La Mar', 10000, 1),
(5658, 259, 4540, 'Charallave', 10000, 1),
(5660, 259, 4547, 'Chivacoa', 10000, 1),
(5661, 259, 4548, 'Ciudad Ojeda', 10000, 1),
(5662, 259, 4548, 'Colon', 10000, 1),
(5663, 259, 4535, 'Coro', 10000, 1),
(5664, 259, 4540, 'Cua', 10000, 1),
(5665, 259, 4536, 'Cumarebo', 10000, 1),
(5666, 259, 4539, 'Ejido', 10000, 1),
(5667, 259, 4531, 'El Callao', 10000, 1),
(5668, 259, 4533, 'El Junquito', 10000, 1),
(5669, 259, 4527, 'El Palito', 10000, 1),
(5670, 259, 4537, 'El Sombrero', 10000, 1),
(5672, 259, 4527, 'El Tigrito', 10000, 1),
(5673, 259, 4538, 'El Tocuyo', 10000, 1),
(5674, 259, 4536, 'El Vigia', 10000, 1),
(5675, 259, 4528, 'Elorza', 10000, 1),
(5676, 259, 4543, 'Guanare', 10000, 1),
(5677, 259, 4528, 'Guasdualito', 10000, 1),
(5680, 259, 4536, 'Judibana', 10000, 1),
(5681, 259, 4541, 'La Asuncion', 10000, 1),
(5682, 259, 4545, 'La Fria', 10000, 1),
(5683, 259, 5061, 'La Guaira', 10000, 1),
(5684, 259, 4548, 'Lagunillas', 10000, 1),
(5685, 259, 4530, 'Las Morochas', 10000, 1),
(5686, 259, 4542, 'Las Piedras', 10000, 1),
(5688, 259, 4548, 'Machiques', 10000, 1),
(5689, 259, 5061, 'Macuto', 10000, 1),
(5690, 259, 5061, 'Maiquetia', 10000, 1),
(5691, 259, 4528, 'Mantecal', 10000, 1),
(5692, 259, 4539, 'Merida', 10000, 1),
(5693, 259, 4545, 'Michelena', 10000, 1),
(5694, 259, 4539, 'Mucuchies', 10000, 1),
(5695, 259, 4540, 'Ocumare Del Tuy', 10000, 1),
(5696, 259, 4542, 'Pampatar', 10000, 1),
(5697, 259, 5061, 'Piedra Azul', 10000, 1),
(5698, 259, 4536, 'Piritu', 10000, 1),
(5699, 259, 4542, 'Porlamar', 10000, 1),
(5700, 259, 4526, 'Puerto Ayacucho', 10000, 1),
(5701, 259, 4536, 'Puerto Escondido', 10000, 1),
(5702, 259, 4531, 'Puertp Ordaz', 10000, 1),
(5703, 259, 4527, 'Puerto Piritu', 10000, 1),
(5704, 259, 4536, 'Punta Cardon', 10000, 1),
(5705, 259, 4541, 'Punta de Mata', 10000, 1),
(5706, 259, 4544, 'Punta de Piedras', 10000, 1),
(5707, 259, 4540, 'Punto Fijo', 10000, 1),
(5708, 259, 4538, 'Quibor', 10000, 1),
(5709, 259, 4545, 'Rubio', 10000, 1),
(5710, 259, 4546, 'San Antonio', 10000, 1),
(5711, 259, 4545, 'San Antonio Del Tachira', 10000, 1),
(5712, 259, 4526, 'San Carlos', 10000, 1),
(5713, 259, 4529, 'San Casimiro', 10000, 1),
(5714, 259, 4545, 'San Cristobal', 10000, 1),
(5715, 259, 4532, 'San Diego', 10000, 1),
(5716, 259, 4547, 'San Felipe', 10000, 1),
(5717, 259, 4545, 'San Felix', 10000, 1),
(5718, 259, 4528, 'San Fernando', 10000, 1),
(5719, 259, 4528, 'San Fernando de Apure', 10000, 1),
(5720, 259, 4529, 'San Juan de Los Morros', 10000, 1),
(5721, 259, 4527, 'San Mateo', 10000, 1),
(5722, 259, 4529, 'San Sebastian', 10000, 1),
(5723, 259, 4526, 'Santa Barbara', 10000, 1),
(5724, 259, 4548, 'Santa Rita', 10000, 1),
(5725, 259, 4530, 'Santa Rosa', 10000, 1),
(5727, 259, 4548, 'Tamare', 10000, 1),
(5728, 259, 4545, 'Tariba', 10000, 1),
(5730, 259, 4548, 'Tia Juana', 10000, 1),
(5731, 259, 4533, 'Tinaquillo', 10000, 1),
(5732, 259, 4544, 'Tocuyito', 10000, 1),
(5733, 259, 4546, 'Trujillo', 10000, 1),
(5734, 259, 4534, 'Tucupita', 10000, 1),
(5735, 259, 4544, 'Turen', 10000, 1),
(5736, 259, 4526, 'Turmero', 10000, 1),
(5737, 259, 4531, 'Upata', 10000, 1),
(5738, 259, 4545, 'Urena', 10000, 1),
(5739, 259, 4546, 'Valera', 10000, 1),
(5740, 259, 4537, 'Valle De La Pascua', 10000, 1),
(5741, 259, 4547, 'Yaritagua', 10000, 1),
(5742, 259, 4537, 'Zaraza', 10000, 1),
(5743, 243, 4054, 'Biche', 10000, 1),
(5744, 243, 4058, 'Blanchisseuse', 10000, 1),
(5745, 243, 4058, 'Brasso Seco Village', 10000, 1),
(5746, 243, 4056, 'Caigual', 10000, 1),
(5747, 243, 4056, 'Carmichael', 10000, 1),
(5749, 243, 4061, 'Charlotteville', 10000, 1),
(5750, 243, 4052, 'Charuma', 10000, 1),
(5751, 243, 4056, 'Cheeyou', 10000, 1),
(5752, 243, 4052, 'Coryal', 10000, 1),
(5753, 243, 4054, 'Cuche', 10000, 1),
(5754, 243, 4056, 'Cunaripa', 10000, 1),
(5755, 243, 4059, 'Erin', 10000, 1),
(5756, 243, 4054, 'Fonrose', 10000, 1),
(5757, 243, 4057, 'Grande Riviere', 10000, 1),
(5758, 243, 4056, 'Guaico Tamana', 10000, 1),
(5759, 243, 4056, 'Hasnalli', 10000, 1),
(5760, 243, 4056, 'Howson', 10000, 1),
(5761, 243, 4058, 'Las Cuevas', 10000, 1),
(5762, 243, 4056, 'Lower Fishing Pond', 10000, 1),
(5763, 243, 4056, 'Mamon', 10000, 1),
(5764, 243, 4058, 'Maracas Bay Village', 10000, 1),
(5765, 243, 4057, 'Matelot', 10000, 1),
(5766, 243, 4056, 'Matura', 10000, 1),
(5767, 243, 4062, 'Mayo', 10000, 1),
(5768, 243, 4057, 'Monte Video', 10000, 1),
(5769, 243, 4062, 'Moruga', 10000, 1),
(5770, 243, 4056, 'Mount Harris', 10000, 1),
(5771, 243, 4054, 'Navet', 10000, 1),
(5772, 243, 4056, 'Nestor', 10000, 1),
(5774, 243, 4053, 'Pierreville', 10000, 1),
(5775, 243, 4062, 'Plaisance', 10000, 1),
(5776, 243, 4056, 'Plum Mitan', 10000, 1),
(5777, 243, 4061, 'Plymouth', 10000, 1),
(5779, 243, 4054, 'Poole', 10000, 1),
(5780, 243, 4057, 'Redhead', 10000, 1),
(5781, 243, 4061, 'Roxborough', 10000, 1),
(5782, 243, 4053, 'Rushville', 10000, 1),
(5783, 243, 4056, 'Salybia', 10000, 1),
(5784, 243, 4057, 'Sans Souci', 10000, 1),
(5785, 243, 4061, 'Scarborough', 10000, 1),
(5786, 243, 4058, 'Saint Joseph', 10000, 1),
(5788, 243, 4057, 'Toco', 10000, 1),
(5789, 243, 4054, 'Unis', 10000, 1),
(5790, 243, 4056, 'Upper Fishing Pond', 10000, 1),
(5791, 243, 4056, 'Upper Manzanilla', 10000, 1),
(5793, 43, 36, 'Banff', 10000, 1),
(5794, 43, 36, 'Calgary', 10000, 1),
(5795, 43, 36, 'Cold Lake', 10000, 1),
(5796, 43, 36, 'Coronation', 10000, 1),
(5797, 43, 36, 'Fort Chipeyan', 10000, 1),
(5798, 43, 36, 'Fort McMurray', 10000, 1),
(5799, 43, 36, 'Grande Prairie', 10000, 1),
(5800, 43, 36, 'High Level', 10000, 1),
(5801, 43, 36, 'Jasper', 10000, 1),
(5802, 43, 36, 'Lac La Biche', 10000, 1),
(5803, 43, 36, 'Lethbridge', 10000, 1),
(5804, 43, 36, 'Lloydminster', 10000, 1),
(5805, 43, 36, 'Medicine Hat', 10000, 1),
(5806, 43, 36, 'Peace River', 10000, 1),
(5807, 43, 36, 'Red Deer', 10000, 1),
(5808, 43, 36, 'Rocky Mountain House', 10000, 1),
(5809, 43, 36, 'Slave Lake', 10000, 1),
(5810, 43, 36, 'Wainwright', 10000, 1),
(5811, 43, 36, 'Whitecourt', 10000, 1),
(5812, 43, 43, 'Abbotsford', 10000, 1),
(5813, 43, 43, 'Atlin', 10000, 1),
(5814, 43, 43, 'Campbell River', 10000, 1),
(5815, 43, 43, 'Castlegar', 10000, 1),
(5816, 43, 43, 'Comox', 10000, 1),
(5817, 43, 43, 'Fort St John', 10000, 1),
(5818, 43, 43, 'Kelowna', 10000, 1),
(5819, 43, 43, 'Nanaimo', 10000, 1),
(5820, 43, 43, 'Penticton', 10000, 1),
(5821, 43, 43, 'Prince George', 10000, 1),
(5822, 43, 43, 'Smithers', 10000, 1),
(5823, 43, 43, 'Terrace', 10000, 1),
(5824, 43, 43, 'Victoria', 10000, 1),
(5825, 43, 43, 'Williams Lake', 10000, 1),
(5826, 253, 5392, 'Bath', 10000, 1),
(5827, 253, 5392, 'Benson', 10000, 1),
(5832, 253, 5392, 'Chatham', 10000, 1),
(5833, 253, 5392, 'Derby', 10000, 1),
(5834, 253, 5392, 'Dover', 10000, 1),
(5835, 253, 5392, 'Exeter', 10000, 1),
(5836, 253, 5392, 'Falmouth', 10000, 1),
(5837, 253, 5392, 'Hull End', 10000, 1),
(5838, 253, 5392, 'Ipswich', 10000, 1),
(5840, 253, 5392, 'Lincoln', 10000, 1),
(5844, 253, 5392, 'Middlesbrough', 10000, 1),
(5845, 253, 5389, 'Newcastle', 10000, 1),
(5847, 253, 5392, 'Nottingham', 10000, 1),
(5848, 253, 5392, 'Peterborough', 10000, 1),
(5850, 253, 5392, 'Shrewsbury', 10000, 1),
(5851, 253, 5392, 'Teeside', 10000, 1),
(5852, 253, 5392, 'Waddington', 10000, 1),
(5853, 253, 5392, 'Warrington', 10000, 1),
(5854, 253, 5392, 'Wimbledon', 10000, 1),
(5855, 43, 38, 'Churchill', 10000, 1),
(5856, 43, 38, 'Dauphin', 10000, 1),
(5857, 43, 38, 'Island Lake', 10000, 1),
(5858, 43, 38, 'Pilot Mound', 10000, 1),
(5859, 43, 38, 'Portage', 10000, 1),
(5860, 43, 38, 'Steinbach', 10000, 1),
(5861, 43, 38, 'Thompson', 10000, 1),
(5862, 43, 42, 'Chatham', 10000, 1),
(5863, 43, 42, 'Edmundston', 10000, 1),
(5864, 43, 42, 'Saint Stephen', 10000, 1),
(5865, 43, 41, 'Deer Lake', 10000, 1),
(5866, 43, 41, 'Gander', 10000, 1),
(5867, 43, 41, 'Goose Bay', 10000, 1),
(5869, 43, 41, 'Wabush', 10000, 1),
(5870, 43, 46, 'Inuvik', 10000, 1),
(5871, 43, 4996, 'Iqaluit', 10000, 1),
(5873, 43, 39, 'Amherst', 10000, 1),
(5874, 43, 39, 'Bridgewater', 10000, 1),
(5875, 43, 39, 'Digby', 10000, 1),
(5876, 43, 39, 'Kentville', 10000, 1),
(5877, 43, 39, 'New Glasgow', 10000, 1),
(5878, 43, 39, 'Port Hawksbury', 10000, 1),
(5879, 43, 39, 'Sydney', 10000, 1),
(5880, 43, 39, 'Truro', 10000, 1),
(5881, 43, 39, 'Yarmouth', 10000, 1),
(5882, 43, 37, 'Antrim', 10000, 1),
(5883, 43, 37, 'Arnprior', 10000, 1),
(5884, 43, 37, 'Belleville', 10000, 1),
(5885, 43, 37, 'Brantford', 10000, 1),
(5886, 43, 37, 'Burk''s Falls', 10000, 1),
(5887, 43, 37, 'Cobalt', 10000, 1),
(5888, 43, 37, 'Cornwall', 10000, 1),
(5889, 43, 37, 'Deep River', 10000, 1),
(5890, 43, 37, 'Dryden', 10000, 1),
(5891, 43, 37, 'Eganville', 10000, 1),
(5892, 43, 37, 'Grand Bend', 10000, 1),
(5893, 43, 37, 'Hawkesbury', 10000, 1),
(5894, 43, 37, 'Huntsville', 10000, 1),
(5895, 43, 37, 'Kemptville', 10000, 1),
(5896, 43, 37, 'Kenora', 10000, 1),
(5897, 43, 37, 'Kirkland Lake', 10000, 1),
(5898, 43, 37, 'Kitchener', 10000, 1),
(5899, 43, 37, 'Lindsay', 10000, 1),
(5900, 43, 37, 'London', 10000, 1),
(5901, 43, 37, 'Maniwaki', 10000, 1),
(5902, 43, 37, 'Mattawa', 10000, 1),
(5903, 43, 37, 'Moosonee', 10000, 1),
(5904, 43, 37, 'Niagara Falls', 10000, 1),
(5905, 43, 37, 'North Bay', 10000, 1),
(5906, 43, 37, 'Ottawa', 10000, 1),
(5907, 43, 37, 'Pembroke', 10000, 1),
(5908, 43, 37, 'Port Dover', 10000, 1),
(5909, 43, 37, 'Port Stanley', 10000, 1),
(5910, 43, 37, 'Powassan', 10000, 1),
(5911, 43, 37, 'Renfrew', 10000, 1),
(5913, 43, 37, 'South River', 10000, 1),
(5914, 43, 37, 'St. Catharines', 10000, 1),
(5915, 43, 37, 'Saint Thomas', 10000, 1),
(5916, 43, 37, 'Sturgeon Falls', 10000, 1),
(5917, 43, 37, 'Sudbury', 10000, 1),
(5919, 43, 37, 'Timmins', 10000, 1),
(5920, 43, 37, 'Trenton', 10000, 1),
(5921, 43, 37, 'Upsula', 10000, 1),
(5922, 43, 37, 'White River', 10000, 1),
(5923, 43, 37, 'Whitney', 10000, 1),
(5924, 43, 37, 'Windsor', 10000, 1),
(5925, 43, 45, 'Summerside', 10000, 1),
(5926, 43, 35, 'Bagotville', 10000, 1),
(5928, 43, 35, 'Chibougamau', 10000, 1),
(5929, 43, 35, 'Chicoutimi', 10000, 1),
(5930, 43, 35, 'Hull', 10000, 1),
(5932, 43, 35, 'Kuujjuaq', 10000, 1),
(5934, 43, 35, 'La Tuque', 10000, 1),
(5935, 43, 35, 'Mont-Joli', 10000, 1),
(5936, 43, 35, 'Mont-laurier', 10000, 1),
(5938, 43, 35, 'Saint-Jovite', 10000, 1),
(5939, 43, 35, 'Sept-Iles', 10000, 1),
(5940, 43, 35, 'Sherbrooke', 10000, 1),
(5941, 43, 35, 'Temiscaming', 10000, 1),
(5942, 43, 35, 'Thetford Mines', 10000, 1),
(5944, 43, 35, 'Val-d''Or', 10000, 1),
(5945, 43, 40, 'Moose Jaw', 10000, 1),
(5946, 43, 40, 'Saskatoon', 10000, 1),
(5947, 253, 5390, 'Aberdeen', 10000, 1),
(5948, 253, 5390, 'Aviemore', 10000, 1),
(5949, 253, 5390, 'Cladich', 10000, 1),
(5950, 253, 5390, 'Glasgow', 10000, 1),
(5951, 253, 5390, 'Hawick', 10000, 1),
(5952, 253, 5390, 'Kirkwall', 10000, 1),
(5953, 253, 5390, 'Loch Ness', 10000, 1),
(5954, 253, 5390, 'Motherwell', 10000, 1),
(5955, 253, 5390, 'St Andrews', 10000, 1),
(5956, 253, 5390, 'Wick', 10000, 1),
(5957, 253, 5389, 'Cardiff', 10000, 1),
(5958, 253, 5389, 'Holyhead', 10000, 1),
(5959, 253, 5389, 'Milford', 10000, 1),
(5960, 253, 5389, 'Swansea', 10000, 1),
(5961, 253, 5389, 'Wrexham', 10000, 1),
(5963, 43, 815, 'Beaver Creek', 10000, 1),
(5964, 43, 815, 'Burwash', 10000, 1),
(5965, 43, 815, 'Carmacks', 10000, 1),
(5966, 43, 815, 'Dawson City', 10000, 1),
(5967, 43, 815, 'Faro', 10000, 1),
(5969, 43, 815, 'Mayo', 10000, 1),
(5970, 43, 815, 'Old Crow', 10000, 1),
(5971, 43, 815, 'Ross River', 10000, 1),
(5972, 43, 815, 'Snag', 10000, 1),
(5973, 43, 815, 'Teslin', 10000, 1),
(5974, 43, 815, 'Watson Lake', 10000, 1),
(5975, 43, 815, 'Whitehorse', 10000, 1),
(5976, 1, 835, 'Kabul', 10000, 1),
(5977, 2, 1011, 'Tirane', 10000, 1),
(5978, 3, 856, 'Algiers', 10000, 1),
(5979, 3, 879, 'Annaba', 10000, 1),
(5980, 3, 861, 'Oran', 10000, 1),
(5981, 3, 858, 'Skikda', 10000, 1),
(5982, 6, 1046, 'Luanda', 10000, 1),
(5983, 9, 818, 'Saint Johns', 10000, 1),
(5984, 10, 1066, 'Bariloche', 10000, 1),
(5985, 10, 1071, 'Ceres', 10000, 1),
(5986, 10, 1058, 'Concordia', 10000, 1),
(5987, 10, 1058, 'Gualeguaychu', 10000, 1),
(5988, 10, 1063, 'Malarg', 10000, 1),
(5989, 10, 1055, 'Marcos Ju', 10000, 1),
(5990, 10, 1063, 'Mendoza', 10000, 1),
(5991, 10, 1056, 'Paso de los Libres', 10000, 1),
(5992, 10, 1071, 'Reconquista ', 10000, 1),
(5993, 10, 1071, 'Rosario', 10000, 1),
(5994, 10, 1060, 'San Rafael', 10000, 1),
(5995, 10, 1072, 'Santiago del Estero', 10000, 1),
(5996, 10, 1054, 'Trelew', 10000, 1),
(5998, 12, 549, 'Oranjestad', 10000, 1),
(5999, 14, 7, 'Alice Springs', 10000, 1),
(6001, 14, 3, 'Birdsville', 10000, 1),
(6002, 14, 3, 'Boulia', 10000, 1),
(6003, 14, 3, 'Bowen', 10000, 1),
(6004, 14, 6, 'Broome', 10000, 1),
(6005, 14, 1, 'Cape Otway', 10000, 1),
(6006, 14, 3, 'Charleville', 10000, 1),
(6007, 14, 4, 'Cobar', 10000, 1),
(6008, 14, 4, 'Coffs Harbour', 10000, 1),
(6009, 14, 3, 'Cunnamulla', 10000, 1),
(6010, 14, 1, 'Sale', 10000, 1),
(6011, 14, 6, 'Exmouth', 10000, 1),
(6012, 14, 2, 'George Town', 10000, 1),
(6013, 14, 6, 'Geraldton', 10000, 1),
(6015, 14, 3, 'Gladstone', 10000, 1),
(6016, 14, 6, 'Kalgoorlie', 10000, 1),
(6017, 14, 2, 'Launceston', 10000, 1),
(6018, 14, 5, 'Mount Gambier', 10000, 1),
(6019, 14, 3, 'Mount Isa', 10000, 1),
(6021, 14, 4, 'Nowra', 10000, 1),
(6022, 14, 5, 'Oodnadatta', 10000, 1),
(6023, 14, 3, 'Richmond', 10000, 1),
(6024, 14, 3, 'Roma', 10000, 1),
(6025, 14, 2, 'Strahan', 10000, 1),
(6026, 14, 7, 'Tennant Creek', 10000, 1),
(6027, 14, 3, 'Townsville', 10000, 1),
(6028, 14, 6, 'Williamstown', 10000, 1),
(6030, 14, 1, 'Wilsons Promontory', 10000, 1),
(6031, 14, 3, 'Windorah', 10000, 1),
(6032, 14, 5, 'Woomera', 10000, 1),
(6033, 15, 1081, 'Innsbruck', 10000, 1),
(6034, 15, 1083, 'Vienna', 10000, 1),
(6035, 18, 1085, 'Al Manamah', 10000, 1),
(6036, 20, 1162, 'Dhaka', 10000, 1),
(6037, 24, 1129, 'Antwerp', 10000, 1),
(6038, 24, 1136, 'Gent', 10000, 1),
(6039, 24, 1132, 'Liege', 10000, 1),
(6040, 25, 1165, 'Belize City', 10000, 1),
(6041, 26, 1201, 'Porto-Novo', 10000, 1),
(6042, 27, 1119, 'Hamilton', 10000, 1),
(6043, 27, 1125, 'Somerset', 10000, 1),
(6044, 27, 1124, 'Saint George', 10000, 1),
(6045, 29, 1174, 'La Paz', 10000, 1),
(6046, 30, 5116, 'Sarajevo', 10000, 1),
(6047, 33, 21, 'Barra do Corda', 10000, 1),
(6048, 33, 11, 'Barreiras', 10000, 1),
(6049, 33, 13, 'Caravelas', 10000, 1),
(6050, 33, 12, 'Catal', 10000, 1),
(6051, 33, 15, 'Curitiba', 10000, 1),
(6053, 33, 12, 'Goi', 10000, 1),
(6054, 33, 11, 'Ilh', 10000, 1),
(6055, 33, 13, 'Parna', 10000, 1),
(6056, 33, 24, 'Pirapora', 10000, 1),
(6057, 33, 25, 'Porto Nacional', 10000, 1),
(6059, 33, 34, 'Santa Cruz', 10000, 1),
(6060, 33, 1219, 'Santar', 10000, 1),
(6061, 33, 24, 'Santos', 10000, 1),
(6062, 33, 14, 'Sobral', 10000, 1),
(6063, 33, 33, 'Tr', 10000, 1),
(6064, 33, 27, 'Uberaba', 10000, 1),
(6065, 37, 1245, 'Ruse', 10000, 1),
(6066, 40, 1252, 'Bujumbura', 10000, 1),
(6067, 41, 1277, 'Phnom Penh', 10000, 1),
(6068, 42, 1391, 'Yaounde', 10000, 1),
(6069, 45, 1380, 'George Town', 10000, 1),
(6070, 46, 1445, 'Bangui', 10000, 1),
(6072, 49, 1351, 'Abag Qi', 10000, 1),
(6073, 49, 1340, 'Aihui', 10000, 1),
(6074, 49, 1353, 'Akqi', 10000, 1),
(6075, 49, 586, 'Alar', 10000, 1),
(6076, 49, 1345, 'Altay', 10000, 1),
(6077, 49, 1340, 'Anda', 10000, 1),
(6078, 49, 586, 'Andir', 10000, 1),
(6079, 49, 1357, 'Ankang', 10000, 1),
(6080, 49, 1333, 'Anqing', 10000, 1),
(6081, 49, 1348, 'Anyang', 10000, 1),
(6082, 49, 1345, 'Arxan', 10000, 1),
(6083, 49, 1345, 'Bachu', 10000, 1),
(6084, 49, 1350, 'Baiang', 10000, 1),
(6085, 49, 586, 'Bailing-Miao', 10000, 1),
(6086, 49, 1346, 'Baingoin', 10000, 1),
(6087, 49, 1345, 'Balguntay', 10000, 1),
(6088, 49, 1357, 'Baoji', 10000, 1),
(6089, 49, 1353, 'Baoshan', 10000, 1),
(6090, 49, 1358, 'Barkam', 10000, 1),
(6091, 49, 1351, 'Bayan Mod', 10000, 1),
(6092, 49, 1345, 'Bayanbulak', 10000, 1),
(6093, 49, 586, 'Baytik Shan', 10000, 1),
(6094, 49, 1349, 'Bijie', 10000, 1),
(6095, 49, 1333, 'Bose', 10000, 1),
(6096, 49, 1351, 'Bugt', 10000, 1),
(6097, 49, 586, 'Chabgling', 10000, 1),
(6098, 49, 1334, 'Changbai', 10000, 1),
(6099, 49, 1343, 'Changde', 10000, 1),
(6100, 49, 1339, 'Changting', 10000, 1),
(6101, 49, 1361, 'Chaoyang', 10000, 1),
(6102, 49, 1342, 'Chengde', 10000, 1),
(6103, 49, 586, 'Chengshantou', 10000, 1),
(6104, 49, 1361, 'Chenzhou', 10000, 1),
(6105, 49, 1351, 'Chifeng', 10000, 1),
(6106, 49, 1360, 'Chuxiong', 10000, 1),
(6107, 49, 586, 'Da Xian', 10000, 1),
(6108, 49, 586, 'Dachen Dao', 10000, 1),
(6109, 49, 1334, 'Dali', 10000, 1),
(6110, 49, 1362, 'Danxian', 10000, 1),
(6111, 49, 586, 'Daocheng', 10000, 1),
(6112, 49, 586, 'Da-Qaidam', 10000, 1),
(6113, 49, 1338, 'Darlag', 10000, 1),
(6115, 49, 1358, 'Dawu', 10000, 1),
(6116, 49, 586, 'Dege', 10000, 1),
(6117, 49, 1338, 'Delingha', 10000, 1),
(6118, 49, 1346, 'Dengqen', 10000, 1),
(6119, 49, 1346, 'Deqen', 10000, 1),
(6120, 49, 1334, 'Dinghai', 10000, 1),
(6121, 49, 1334, 'Dongfang', 10000, 1),
(6122, 49, 1361, 'Dongsha Dao', 10000, 1),
(6123, 49, 1334, 'Dongsheng', 10000, 1),
(6124, 49, 1338, 'Dulan', 10000, 1),
(6125, 49, 1337, 'Dunhua', 10000, 1),
(6126, 49, 1347, 'Dunhuang', 10000, 1),
(6127, 49, 1351, 'Duolun', 10000, 1),
(6128, 49, 1348, 'Dushan', 10000, 1),
(6129, 49, 1351, 'Ejin Qi', 10000, 1),
(6130, 49, 586, 'Emei Shan', 10000, 1),
(6131, 49, 1344, 'Enshi', 10000, 1),
(6132, 49, 1351, 'Erenhot', 10000, 1),
(6133, 49, 1344, 'Fangxian', 10000, 1),
(6134, 49, 1358, 'Fengjie', 10000, 1),
(6135, 49, 1342, 'Fengning', 10000, 1),
(6136, 49, 1361, 'Fogang', 10000, 1),
(6137, 49, 1339, 'Fuding', 10000, 1),
(6138, 49, 1340, 'Fujin', 10000, 1),
(6139, 49, 1358, 'Fuyang', 10000, 1),
(6140, 49, 1345, 'Fuyun', 10000, 1),
(6141, 49, 1338, 'Gangca', 10000, 1),
(6142, 49, 1347, 'Ganzhou', 10000, 1),
(6143, 49, 1333, 'Gaoyao', 10000, 1),
(6144, 49, 1358, 'Garze', 10000, 1),
(6145, 49, 1338, 'Golmud', 10000, 1),
(6146, 49, 1351, 'Guaizihu', 10000, 1),
(6147, 49, 1335, 'Guangchang', 10000, 1),
(6148, 49, 1360, 'Guangnan', 10000, 1),
(6149, 49, 1348, 'Guiping', 10000, 1),
(6150, 49, 1334, 'Gushi', 10000, 1),
(6151, 49, 1351, 'Hailar', 10000, 1),
(6152, 49, 1351, 'Hails', 10000, 1),
(6153, 49, 1334, 'Haiyang', 10000, 1),
(6154, 49, 586, 'Haiyang Dao', 10000, 1),
(6155, 49, 1351, 'Haliut', 10000, 1),
(6156, 49, 1345, 'Hami', 10000, 1),
(6157, 49, 1348, 'Hechi', 10000, 1),
(6158, 49, 1349, 'Henan', 10000, 1),
(6159, 49, 1355, 'Hequ', 10000, 1),
(6160, 49, 1361, 'Heyuan', 10000, 1),
(6161, 49, 1334, 'Hezuo', 10000, 1),
(6162, 49, 1345, 'Hoboksar', 10000, 1),
(6164, 49, 1345, 'Hotan', 10000, 1),
(6165, 49, 586, 'Hua Shan', 10000, 1),
(6166, 49, 1351, 'Huade', 10000, 1),
(6167, 49, 1356, 'Huadian', 10000, 1),
(6168, 49, 1342, 'Huailai', 10000, 1),
(6169, 49, 1347, 'Huajialing', 10000, 1),
(6170, 49, 1333, 'Huang Shan', 10000, 1),
(6171, 49, 1351, 'Huhhot', 10000, 1),
(6172, 49, 1358, 'Huili', 10000, 1),
(6173, 49, 1356, 'Huimin', 10000, 1),
(6174, 49, 1348, 'Huize', 10000, 1),
(6175, 49, 1340, 'Hulin', 10000, 1),
(6176, 49, 1340, 'Huma', 10000, 1),
(6177, 49, 1333, 'Huoshan', 10000, 1),
(6178, 49, 1351, 'Jartai', 10000, 1),
(6179, 49, 1351, 'Jarud Qi', 10000, 1),
(6180, 49, 586, 'Jian', 10000, 1),
(6181, 49, 586, 'Jiangchen', 10000, 1),
(6182, 49, 1344, 'Jiangling', 10000, 1),
(6183, 49, 1355, 'Jiexiu', 10000, 1),
(6184, 49, 1335, 'Jingdezhen', 10000, 1),
(6185, 49, 1336, 'Jinghe', 10000, 1),
(6186, 49, 1360, 'Jinghong', 10000, 1),
(6187, 49, 1356, 'Jining', 10000, 1),
(6188, 49, 1350, 'Jinnzhou', 10000, 1),
(6189, 49, 1358, 'Jiulong', 10000, 1),
(6190, 49, 1347, 'Jiuquan', 10000, 1),
(6191, 49, 586, 'Jiuxian Shan', 10000, 1),
(6192, 49, 1353, 'Jixi', 10000, 1),
(6193, 49, 1351, 'Jurh', 10000, 1),
(6194, 49, 586, 'Kaba He', 10000, 1),
(6195, 49, 1358, 'Kangding', 10000, 1),
(6196, 49, 1345, 'Karamay', 10000, 1),
(6197, 49, 1345, 'Kashi', 10000, 1),
(6198, 49, 1340, 'Keshan', 10000, 1),
(6199, 49, 1345, 'Korla', 10000, 1),
(6200, 49, 1350, 'Kuandian', 10000, 1),
(6201, 49, 1345, 'Kuqa', 10000, 1),
(6202, 49, 586, 'Lan Yu', 10000, 1),
(6203, 49, 1360, 'Lancang', 10000, 1),
(6204, 49, 1358, 'Langzhong', 10000, 1),
(6205, 49, 1347, 'Lanzhou', 10000, 1),
(6206, 49, 1338, 'Lenghu', 10000, 1),
(6207, 49, 1342, 'Leting', 10000, 1),
(6208, 49, 1352, 'Lhasa', 10000, 1),
(6209, 49, 1354, 'Lhunze', 10000, 1),
(6210, 49, 586, 'Lian Xian', 10000, 1),
(6211, 49, 1358, 'Liangping', 10000, 1),
(6212, 49, 1361, 'Lianping', 10000, 1),
(6214, 49, 1348, 'Lijiang', 10000, 1),
(6215, 49, 1360, 'Lincang', 10000, 1),
(6216, 49, 1348, 'Lindong', 10000, 1),
(6217, 49, 1343, 'Lingling', 10000, 1),
(6218, 49, 1358, 'Linjiang', 10000, 1),
(6219, 49, 1342, 'Linxi', 10000, 1),
(6220, 49, 1356, 'Linyi', 10000, 1),
(6221, 49, 1358, 'Lishi', 10000, 1),
(6222, 49, 1361, 'Lishui', 10000, 1);
INSERT INTO `[[dbprefix]]geo_cities` VALUES
(6223, 49, 1334, 'Liyang', 10000, 1),
(6224, 49, 1334, 'Longkou', 10000, 1),
(6225, 49, 1348, 'Longzhou', 10000, 1),
(6226, 49, 586, 'Lu Shan', 10000, 1),
(6227, 49, 1334, 'Luodian', 10000, 1),
(6228, 49, 1360, 'Lushi', 10000, 1),
(6229, 49, 1360, 'Lusi', 10000, 1),
(6230, 49, 1360, 'Luxi', 10000, 1),
(6231, 49, 1361, 'Luzhou', 10000, 1),
(6232, 49, 1344, 'Macheng', 10000, 1),
(6233, 49, 1333, 'Madoi', 10000, 1),
(6234, 49, 1351, 'Mandal', 10000, 1),
(6235, 49, 1338, 'Mangnai', 10000, 1),
(6236, 49, 586, 'Mazong Shan', 10000, 1),
(6237, 49, 1353, 'Mazu', 10000, 1),
(6238, 49, 1341, 'Mengjin', 10000, 1),
(6239, 49, 1334, 'Mengla', 10000, 1),
(6240, 49, 1348, 'Mengshan', 10000, 1),
(6241, 49, 1360, 'Mengzi', 10000, 1),
(6242, 49, 1344, 'Mianyang', 10000, 1),
(6243, 49, 1347, 'Minqin', 10000, 1),
(6244, 49, 1359, 'Mohe', 10000, 1),
(6245, 49, 1340, 'Mudanjiang', 10000, 1),
(6246, 49, 1353, 'Nagqu', 10000, 1),
(6247, 49, 1339, 'Nancheng', 10000, 1),
(6248, 49, 1334, 'Nanchong', 10000, 1),
(6249, 49, 1358, 'Nanping', 10000, 1),
(6250, 49, 1334, 'Nanyang', 10000, 1),
(6251, 49, 1334, 'Nanyue', 10000, 1),
(6252, 49, 586, 'Nanzhong', 10000, 1),
(6253, 49, 1360, 'Napo', 10000, 1),
(6254, 49, 1351, 'Naran Bulag', 10000, 1),
(6255, 49, 1336, 'Neijiang', 10000, 1),
(6256, 49, 1340, 'Nenjiang', 10000, 1),
(6257, 49, 1346, 'Nyingchi', 10000, 1),
(6258, 49, 1351, 'Otog Qi', 10000, 1),
(6259, 49, 1346, 'Pagri', 10000, 1),
(6260, 49, 586, 'Pengjia Yu', 10000, 1),
(6261, 49, 1349, 'Pingliang', 10000, 1),
(6262, 49, 1339, 'Pingtan', 10000, 1),
(6263, 49, 1358, 'Pingwu', 10000, 1),
(6264, 49, 1353, 'Pishan', 10000, 1),
(6265, 49, 1353, 'Pucheng', 10000, 1),
(6266, 49, 1346, 'Qamdo', 10000, 1),
(6267, 49, 1337, 'Qian Gorlos', 10000, 1),
(6268, 49, 1345, 'Qijiaojing', 10000, 1),
(6269, 49, 1335, 'Qingjiang', 10000, 1),
(6270, 49, 1360, 'Qinglong', 10000, 1),
(6271, 49, 1342, 'Qingyuan', 10000, 1),
(6272, 49, 1348, 'Qinzhou', 10000, 1),
(6273, 49, 1362, 'Qionghai', 10000, 1),
(6274, 49, 1340, 'Qiqihar', 10000, 1),
(6275, 49, 1345, 'Qitai', 10000, 1),
(6276, 49, 1358, 'Quzian', 10000, 1),
(6277, 49, 586, 'Qumarleb', 10000, 1),
(6278, 49, 1356, 'Rizhao', 10000, 1),
(6279, 49, 1335, 'Rongjiang', 10000, 1),
(6280, 49, 1349, 'Ruili', 10000, 1),
(6281, 49, 586, 'Ruo''Ergai', 10000, 1),
(6282, 49, 1345, 'Ruoqiang', 10000, 1),
(6283, 49, 1343, 'Sangzhi', 10000, 1),
(6284, 49, 586, 'Sanhu Dao', 10000, 1),
(6285, 49, 1349, 'Sansui', 10000, 1),
(6286, 49, 586, 'Sertar', 10000, 1),
(6287, 49, 1363, 'Shache', 10000, 1),
(6288, 49, 586, 'Shangchuan Dao', 10000, 1),
(6289, 49, 1347, 'Shangzhi', 10000, 1),
(6290, 49, 1362, 'Shanwei', 10000, 1),
(6291, 49, 1353, 'Shaoguan', 10000, 1),
(6292, 49, 1339, 'Shaowu', 10000, 1),
(6293, 49, 1343, 'Shaoyang', 10000, 1),
(6294, 49, 1334, 'Shengsi', 10000, 1),
(6295, 49, 1334, 'Shengxian', 10000, 1),
(6296, 49, 1353, 'Shipu', 10000, 1),
(6297, 49, 1346, 'Shiquanhe', 10000, 1),
(6298, 49, 586, 'Simaoi', 10000, 1),
(6299, 49, 1349, 'Sinan', 10000, 1),
(6300, 49, 1349, 'Siping', 10000, 1),
(6301, 49, 1353, 'Sog Xian', 10000, 1),
(6302, 49, 1347, 'Songpan', 10000, 1),
(6303, 49, 1340, 'Suifenhe', 10000, 1),
(6304, 49, 1340, 'Sunwu', 10000, 1),
(6305, 49, 1360, 'Tacheng', 10000, 1),
(6306, 49, 586, 'Tai Shan', 10000, 1),
(6307, 49, 1340, 'Tailai', 10000, 1),
(6308, 49, 1353, 'Taiyuan', 10000, 1),
(6309, 49, 1334, 'Tangshan', 10000, 1),
(6310, 49, 1360, 'Tengchong', 10000, 1),
(6311, 49, 1359, 'Tianmu Shan', 10000, 1),
(6312, 49, 1347, 'Tianshui', 10000, 1),
(6313, 49, 1345, 'Tikanlik', 10000, 1),
(6314, 49, 1346, 'Tingri', 10000, 1),
(6315, 49, 1343, 'Tongdao', 10000, 1),
(6316, 49, 1338, 'Tongde', 10000, 1),
(6317, 49, 1359, 'Tonghe', 10000, 1),
(6318, 49, 1351, 'Tongliao', 10000, 1),
(6319, 49, 1351, 'Tulihe', 10000, 1),
(6320, 49, 586, 'Tuotouhe', 10000, 1),
(6321, 49, 1345, 'Turpan', 10000, 1),
(6322, 49, 1351, 'Uliastai', 10000, 1),
(6323, 49, 1345, 'Urumqi', 10000, 1),
(6324, 49, 1358, 'Wanyuan', 10000, 1),
(6325, 49, 1347, 'Weichang', 10000, 1),
(6326, 49, 1356, 'Weifang', 10000, 1),
(6327, 49, 1349, 'Weining', 10000, 1),
(6328, 49, 586, 'Wudaoling', 10000, 1),
(6329, 49, 1334, 'Wudu', 10000, 1),
(6330, 49, 1341, 'Wugang', 10000, 1),
(6331, 49, 586, 'Wushaoling', 10000, 1),
(6332, 49, 586, 'Wutai Shan', 10000, 1),
(6333, 49, 1348, 'Wuzhou', 10000, 1),
(6334, 49, 1346, 'Xainza', 10000, 1),
(6335, 49, 1355, 'Xi ujimqin Qi', 10000, 1),
(6336, 49, 1357, 'Xian', 10000, 1),
(6337, 49, 1348, 'Xichang', 10000, 1),
(6338, 49, 1347, 'Xifengzhen', 10000, 1),
(6339, 49, 1353, 'Xigaze', 10000, 1),
(6340, 49, 1351, 'Xilin Hot', 10000, 1),
(6341, 49, 1351, 'Xin Barag Youqi', 10000, 1),
(6342, 49, 1348, 'Xingren', 10000, 1),
(6343, 49, 1342, 'Xingtai', 10000, 1),
(6344, 49, 1338, 'Xining', 10000, 1),
(6345, 49, 1355, 'Xinxian', 10000, 1),
(6346, 49, 1348, 'Xinyang', 10000, 1),
(6347, 49, 1357, 'Xinyi', 10000, 1),
(6348, 49, 1362, 'Xisha Dao', 10000, 1),
(6349, 49, 1335, 'Xiushui', 10000, 1),
(6350, 49, 1347, 'Xunwu', 10000, 1),
(6351, 49, 586, 'Ya''an', 10000, 1),
(6352, 49, 1360, 'Yanan', 10000, 1),
(6353, 49, 1357, 'Yanchi', 10000, 1),
(6354, 49, 1336, 'Yangcheng', 10000, 1),
(6355, 49, 1334, 'Yangjiang', 10000, 1),
(6356, 49, 1344, 'Yanji', 10000, 1),
(6357, 49, 1339, 'Yanzhou', 10000, 1),
(6358, 49, 586, 'Yaxian', 10000, 1),
(6359, 49, 1358, 'Yibin', 10000, 1),
(6360, 49, 1335, 'Yichun', 10000, 1),
(6361, 49, 586, 'Yihu', 10000, 1),
(6362, 49, 1353, 'Yinchuan', 10000, 1),
(6363, 49, 1335, 'Yining', 10000, 1),
(6364, 49, 1356, 'Yiyuan', 10000, 1),
(6365, 49, 586, 'Yongan', 10000, 1),
(6366, 49, 1358, 'Youyang', 10000, 1),
(6367, 49, 586, 'Yu Xian', 10000, 1),
(6368, 49, 1343, 'Yuanjiang', 10000, 1),
(6369, 49, 1343, 'Yuanling', 10000, 1),
(6370, 49, 1360, 'Yuanmou', 10000, 1),
(6371, 49, 1355, 'Yuanping', 10000, 1),
(6372, 49, 1342, 'Yulin', 10000, 1),
(6373, 49, 1347, 'Yumenzhen', 10000, 1),
(6374, 49, 1355, 'Yuncheng', 10000, 1),
(6375, 49, 1349, 'Yushe', 10000, 1),
(6376, 49, 1338, 'Zadoi', 10000, 1),
(6377, 49, 1344, 'Zaoyang', 10000, 1),
(6378, 49, 1342, 'Zhangjiakou', 10000, 1),
(6379, 49, 1334, 'Zhangwu', 10000, 1),
(6380, 49, 1347, 'Zhangye', 10000, 1),
(6381, 49, 1361, 'Zhanjiang', 10000, 1),
(6382, 49, 1360, 'Zhanyi', 10000, 1),
(6383, 49, 1360, 'Zhaotong', 10000, 1),
(6384, 49, 1343, 'Zhijiang', 10000, 1),
(6385, 49, 1352, 'Zhongning', 10000, 1),
(6386, 49, 1344, 'Zhongxiang', 10000, 1),
(6387, 49, 1341, 'Zhumadian', 10000, 1),
(6388, 49, 586, 'Ziao''ergou', 10000, 1),
(6389, 49, 586, 'Zihua', 10000, 1),
(6390, 49, 1349, 'Zunyi', 10000, 1),
(6391, 49, 1343, 'Zuzhou', 10000, 1),
(6392, 61, 5027, 'Dubrovnik', 10000, 1),
(6393, 62, 1457, 'Havana', 10000, 1),
(6394, 63, 1486, 'Nicosia', 10000, 1),
(6395, 64, 5129, 'Ostrava', 10000, 1),
(6398, 67, 1511, 'Roseau', 10000, 1),
(6399, 68, 1534, 'Puerto Plata', 10000, 1),
(6400, 72, 1653, 'San Salvador', 10000, 1),
(6401, 75, 1629, 'Tallinn', 10000, 1),
(6402, 76, 1696, 'Addis Ababa', 10000, 1),
(6403, 81, 4879, 'Helsinki', 10000, 1),
(6404, 81, 5023, 'Turku', 10000, 1),
(6406, 82, 1808, 'Lille', 10000, 1),
(6407, 82, 1807, 'Lourdes', 10000, 1),
(6408, 82, 1812, 'Marseille', 10000, 1),
(6409, 82, 1803, 'Paris', 10000, 1),
(6410, 82, 1799, 'Reims', 10000, 1),
(6412, 82, 1813, 'Val-d''Isere', 10000, 1),
(6413, 84, 5383, 'Cayenne', 10000, 1),
(6414, 87, 1821, 'Libreville', 10000, 1),
(6415, 91, 1918, 'Bochum', 10000, 1),
(6416, 91, 1918, 'Bonn', 10000, 1),
(6417, 91, 1918, 'Dusseldorf', 10000, 1),
(6418, 91, 1918, 'Essen', 10000, 1),
(6419, 91, 1916, 'Frankfurt', 10000, 1),
(6420, 91, 1917, 'Hannover', 10000, 1),
(6421, 91, 1912, 'Heidelberg', 10000, 1),
(6422, 91, 1916, 'Kassel', 10000, 1),
(6423, 91, 1913, 'N', 10000, 1),
(6424, 95, 1972, 'Irakleion', 10000, 1),
(6425, 95, 1952, 'Kerkira', 10000, 1),
(6426, 95, 1948, 'Larisa', 10000, 1),
(6427, 95, 632, 'Limnos', 10000, 1),
(6428, 95, 1976, 'Myconos', 10000, 1),
(6429, 95, 1965, 'Patrai', 10000, 1),
(6430, 95, 1974, 'Rhodes', 10000, 1),
(6431, 95, 1962, 'Sparta', 10000, 1),
(6433, 99, 636, 'Agana', 10000, 1),
(6434, 108, 2050, 'Choluteca', 10000, 1),
(6435, 108, 2052, 'Comayagua', 10000, 1),
(6436, 108, 2059, 'La Ceiba', 10000, 1),
(6437, 108, 2053, 'Santa Rosa', 10000, 1),
(6438, 111, 2091, 'Gyor', 10000, 1),
(6439, 111, 2070, 'Miskolc', 10000, 1),
(6440, 112, 2107, 'Akureyri', 10000, 1),
(6441, 112, 2125, 'Egilsstadir', 10000, 1),
(6444, 112, 2142, 'Kirkjubaejarklaustur', 10000, 1),
(6445, 112, 2126, 'Raufarhofn', 10000, 1),
(6446, 112, 2111, 'Saudarkrokur', 10000, 1),
(6447, 112, 2128, 'Vestmannaeyjar', 10000, 1),
(6448, 113, 2175, 'Ahmedabad', 10000, 1),
(6449, 113, 2189, 'Amritsar', 10000, 1),
(6450, 113, 2181, 'Bhopal', 10000, 1),
(6451, 113, 2187, 'Bhubaneshwar', 10000, 1),
(6452, 113, 2194, 'Calcutta', 10000, 1),
(6453, 113, 2169, 'Hyderabad', 10000, 1),
(6454, 113, 2193, 'Kanpur', 10000, 1),
(6455, 113, 2193, 'Lucknow', 10000, 1),
(6456, 113, 2189, 'Ludhiana', 10000, 1),
(6457, 113, 2182, 'Mumbai', 10000, 1),
(6458, 113, 2182, 'Nagpur', 10000, 1),
(6460, 113, 2178, 'Srinagar', 10000, 1),
(6461, 113, 2179, 'Trivandrum', 10000, 1),
(6462, 114, 2145, 'Bali', 10000, 1),
(6463, 114, 2154, 'Balikpapan', 10000, 1),
(6464, 114, 2165, 'Palembang', 10000, 1),
(6465, 114, 2148, 'Semarang', 10000, 1),
(6466, 115, 2213, 'Ahvaz', 10000, 1),
(6467, 115, 2227, 'Mashhad', 10000, 1),
(6468, 115, 2230, 'Tabriz', 10000, 1),
(6469, 116, 2314, 'Baghdad', 10000, 1),
(6470, 116, 2309, 'Basra', 10000, 1),
(6471, 253, 5391, 'Armagh', 10000, 1),
(6472, 117, 1611, 'Bangor', 10000, 1),
(6474, 253, 5391, 'Omagh', 10000, 1),
(6475, 117, 1598, 'Shannon', 10000, 1),
(6476, 118, 2237, 'Jerusalem', 10000, 1),
(6477, 119, 2254, 'Bolzano', 10000, 1),
(6478, 119, 2251, 'Cagliari', 10000, 1),
(6479, 119, 2246, 'Como', 10000, 1),
(6481, 119, 2249, 'Novara', 10000, 1),
(6482, 119, 2257, 'Padova', 10000, 1),
(6483, 119, 2252, 'Palermo', 10000, 1),
(6484, 119, 2243, 'Trieste', 10000, 1),
(6485, 119, 2249, 'Turin', 10000, 1),
(6486, 119, 2257, 'Venice', 10000, 1),
(6489, 122, 2333, 'Aikawa', 10000, 1),
(6490, 122, 2337, 'Akita', 10000, 1),
(6491, 122, 2328, 'Aomori', 10000, 1),
(6493, 122, 2352, 'Fukue', 10000, 1),
(6494, 122, 659, 'Hachijojima', 10000, 1),
(6495, 122, 2337, 'Hakodate', 10000, 1),
(6496, 122, 2361, 'Hamada', 10000, 1),
(6498, 122, 2361, 'Izuhara', 10000, 1),
(6499, 122, 2326, 'Kanoya', 10000, 1),
(6500, 122, 2329, 'Komatsu', 10000, 1),
(6501, 122, 2337, 'Kushiro', 10000, 1),
(6502, 122, 2335, 'Maebashi', 10000, 1),
(6503, 122, 2347, 'Maizuru', 10000, 1),
(6504, 122, 2361, 'Matsue', 10000, 1),
(6508, 122, 2333, 'Miyako', 10000, 1),
(6509, 122, 2359, 'Miyakojima', 10000, 1),
(6511, 122, 2343, 'Naze', 10000, 1),
(6512, 122, 2355, 'Oita', 10000, 1),
(6513, 122, 2372, 'Okinawa', 10000, 1),
(6515, 122, 2339, 'Onahama', 10000, 1),
(6516, 122, 2352, 'Oshima', 10000, 1),
(6517, 122, 2348, 'Owase', 10000, 1),
(6518, 122, 2361, 'Saigo', 10000, 1),
(6520, 122, 2357, 'Suttsu', 10000, 1),
(6521, 122, 2348, 'Suzuka', 10000, 1),
(6523, 122, 2366, 'Tottori', 10000, 1),
(6524, 122, 2337, 'Urakawa', 10000, 1),
(6525, 122, 2340, 'Wajima', 10000, 1),
(6526, 122, 2352, 'Wakamatsu', 10000, 1),
(6527, 122, 2337, 'Wakkanai', 10000, 1),
(6528, 122, 2357, 'Yokota', 10000, 1),
(6529, 128, 2455, 'Karaganda', 10000, 1),
(6530, 129, 2397, 'Embu', 10000, 1),
(6531, 129, 2401, 'Kitale', 10000, 1),
(6532, 132, 2417, 'P''yongyang', 10000, 1),
(6533, 134, 2439, 'Kuwait', 10000, 1),
(6534, 138, 2484, 'Beirut', 10000, 1),
(6535, 138, 2483, 'Tripoli', 10000, 1),
(6536, 141, 2674, 'Tripoli', 10000, 1),
(6537, 143, 2572, 'Vilnius', 10000, 1),
(6538, 144, 2625, 'Luxembourg', 10000, 1),
(6539, 149, 2897, 'Johor Baharu', 10000, 1),
(6540, 149, 2911, 'Kota Kinabalu', 10000, 1),
(6542, 149, 2900, 'Malacca', 10000, 1),
(6543, 149, 2906, 'Miri', 10000, 1),
(6544, 149, 2905, 'Penang', 10000, 1),
(6545, 152, 689, 'Valletta', 10000, 1),
(6546, 155, 5376, 'Fort-De-France', 10000, 1),
(6547, 159, 2890, 'Apatzingan', 10000, 1),
(6548, 159, 73, 'Baja San Quintin', 10000, 1),
(6550, 159, 2887, 'Ciudad Acuna', 10000, 1),
(6551, 159, 2886, 'Ciudad Del Carmen', 10000, 1),
(6552, 159, 59, 'Ciudad Guzman', 10000, 1),
(6553, 159, 70, 'Ciudad Madero', 10000, 1),
(6554, 159, 72, 'Cozumel', 10000, 1),
(6555, 159, 56, 'Heroica Caborca', 10000, 1),
(6556, 159, 66, 'Ixtapa', 10000, 1),
(6557, 159, 2895, 'Jalapa', 10000, 1),
(6558, 159, 203, 'Linares', 10000, 1),
(6559, 159, 70, 'Matamoros', 10000, 1),
(6560, 159, 2887, 'Monclova', 10000, 1),
(6562, 159, 56, 'Nogales', 10000, 1),
(6563, 159, 70, 'Nuevo Laredo', 10000, 1),
(6564, 159, 60, 'Progreso', 10000, 1),
(6565, 159, 201, 'Puerto Angel', 10000, 1),
(6566, 159, 72, 'Puerto Juarez', 10000, 1),
(6567, 159, 70, 'Reynosa', 10000, 1),
(6568, 159, 2887, 'Sabinas', 10000, 1),
(6569, 159, 201, 'Salina Cruz', 10000, 1),
(6570, 159, 70, 'Tampico', 10000, 1),
(6571, 159, 66, 'Zihuatanejo', 10000, 1),
(6573, 168, 2793, 'Fez', 10000, 1),
(6574, 168, 2799, 'Marrakesh', 10000, 1),
(6575, 168, 2803, 'Oujda', 10000, 1),
(6576, 168, 2804, 'Rabat', 10000, 1),
(6577, 168, 2807, 'Tangier', 10000, 1),
(6578, 168, 2818, 'Tetouan', 10000, 1),
(6579, 169, 2915, 'Maputo', 10000, 1),
(6580, 175, 2981, 'Amsterdam', 10000, 1),
(6581, 175, 2981, 'Den Helder', 10000, 1),
(6582, 175, 2981, 'Edam', 10000, 1),
(6583, 175, 2980, 'Eindhoven', 10000, 1),
(6584, 175, 2978, 'Groningen', 10000, 1),
(6585, 175, 2976, 'Leeuwarden', 10000, 1),
(6586, 175, 2985, 'Leiden', 10000, 1),
(6587, 175, 2989, 'Lelystad', 10000, 1),
(6588, 175, 2985, 'The Hague', 10000, 1),
(6589, 175, 2983, 'Utrecht', 10000, 1),
(6590, 175, 2984, 'Vlissingen', 10000, 1),
(6592, 178, 3126, 'Invercargill', 10000, 1),
(6593, 178, 4721, 'Wellington', 10000, 1),
(6594, 180, 2926, 'Niamey', 10000, 1),
(6595, 185, 2999, 'Lillehammer', 10000, 1),
(6596, 185, 3000, 'Oslo', 10000, 1),
(6597, 186, 2851, 'Masqat', 10000, 1),
(6598, 187, 3219, 'Faisalabad', 10000, 1),
(6599, 187, 3222, 'Hyderadad', 10000, 1),
(6600, 187, 3223, 'Islamabad', 10000, 1),
(6601, 187, 3220, 'Karachi', 10000, 1),
(6602, 187, 3219, 'Rawalpindi', 10000, 1),
(6603, 190, 3293, 'Portobelo', 10000, 1),
(6604, 190, 3293, 'Rainbow City', 10000, 1),
(6605, 194, 3207, 'Piura', 10000, 1),
(6606, 195, 3516, 'Quezon', 10000, 1),
(6607, 197, 3276, 'Lodz', 10000, 1),
(6608, 198, 3311, 'Lisbon', 10000, 1),
(6609, 198, 3313, 'Oporto ', 10000, 1),
(6611, 200, 3349, 'Doha', 10000, 1),
(6612, 202, 3359, 'Arad', 10000, 1),
(6613, 202, 3371, 'Constanta', 10000, 1),
(6614, 202, 3360, 'Pitesti', 10000, 1),
(6615, 202, 3392, 'Timisoara', 10000, 1),
(6617, 203, 3581, 'Nizhniy Novgorod', 10000, 1),
(6618, 204, 3627, 'Kigali', 10000, 1),
(6619, 213, 3631, 'Al Madinah', 10000, 1),
(6622, 213, 3631, 'Dhahran', 10000, 1),
(6623, 213, 3641, 'Jiddah', 10000, 1),
(6624, 213, 3636, 'Mecca', 10000, 1),
(6625, 213, 3633, 'Riyadh', 10000, 1),
(6626, 214, 3692, 'Saint-Louis', 10000, 1),
(6628, 224, 3689, 'Cape Town', 10000, 1),
(6629, 224, 3680, 'Durban', 10000, 1),
(6630, 224, 3684, 'Johannesburg', 10000, 1),
(6631, 224, 3684, 'Pretoria', 10000, 1),
(6632, 224, 3684, 'Soweto', 10000, 1),
(6633, 226, 3910, 'Cartagena', 10000, 1),
(6634, 226, 3930, 'C', 10000, 1),
(6635, 226, 3934, 'Leon', 10000, 1),
(6637, 226, 3911, 'Pamplona', 10000, 1),
(6638, 226, 3930, 'Rota', 10000, 1),
(6639, 226, 3937, 'Santiago de Compostela', 10000, 1),
(6641, 226, 3935, 'Tortosa', 10000, 1),
(6642, 226, 3939, 'Valencia', 10000, 1),
(6643, 228, 1306, 'Colombo', 10000, 1),
(6644, 229, 3956, 'Khartoum', 10000, 1),
(6645, 230, 3043, 'Paramaribo', 10000, 1),
(6651, 233, 4007, 'Ostmark', 10000, 1),
(6652, 233, 3998, 'Arjeplog', 10000, 1),
(6653, 233, 4005, 'Bjur', 10000, 1),
(6654, 233, 3994, 'Bor', 10000, 1),
(6655, 233, 4005, 'Dikan', 10000, 1),
(6656, 233, 3998, 'Esrange', 10000, 1),
(6657, 233, 4009, 'Falsterbo', 10000, 1),
(6658, 233, 3991, 'G', 10000, 1),
(6659, 233, 3998, 'Gallivare', 10000, 1),
(6660, 233, 3987, 'G', 10000, 1),
(6664, 233, 4005, 'Gunnarn', 10000, 1),
(6665, 233, 3992, 'Hagshult', 10000, 1),
(6666, 233, 3990, 'Halmstad', 10000, 1),
(6667, 233, 3998, 'Haparanda', 10000, 1),
(6669, 233, 4005, 'Hemavan', 10000, 1),
(6671, 233, 4008, 'Holmg', 10000, 1),
(6672, 233, 3993, 'Hultsfred', 10000, 1),
(6673, 233, 4005, 'Idvattnet', 10000, 1),
(6675, 233, 3998, 'Jokkmokk', 10000, 1),
(6676, 233, 3998, 'Kallax', 10000, 1),
(6677, 233, 3998, 'Karesuando', 10000, 1),
(6678, 233, 4004, 'Karlstad', 10000, 1),
(6680, 233, 3998, 'Kiruna', 10000, 1),
(6681, 233, 4005, 'Klimpfj', 10000, 1),
(6683, 233, 4006, 'Kramfors', 10000, 1),
(6684, 233, 4009, 'Kristianstad', 10000, 1),
(6685, 233, 4009, 'Kullen', 10000, 1),
(6686, 233, 3998, 'Kvikkjokk', 10000, 1),
(6687, 233, 3998, 'Lainio', 10000, 1),
(6688, 233, 4008, 'Landsort', 10000, 1),
(6689, 233, 4000, 'Link', 10000, 1),
(6690, 233, 4009, 'Ljungbyhed', 10000, 1),
(6691, 233, 4010, 'Lur', 10000, 1),
(6692, 233, 3993, 'M', 10000, 1),
(6694, 233, 4000, 'Malexander', 10000, 1),
(6696, 233, 3994, 'Malung', 10000, 1),
(6700, 233, 4002, 'Osby', 10000, 1),
(6702, 233, 3998, 'Pajala', 10000, 1),
(6703, 233, 3994, 'R', 10000, 1),
(6705, 233, 4010, 'S', 10000, 1),
(6706, 233, 3994, 'S', 10000, 1),
(6708, 233, 3994, 'Siljansn', 10000, 1),
(6709, 233, 4010, 'Sk', 10000, 1),
(6711, 233, 4005, 'Skellefte', 10000, 1),
(6712, 233, 3999, 'St', 10000, 1),
(6713, 233, 4008, 'Stockholm', 10000, 1),
(6715, 233, 3991, 'Storlien', 10000, 1),
(6716, 233, 4006, 'Sundsvall', 10000, 1),
(6717, 233, 3991, 'Sveg', 10000, 1),
(6718, 233, 4006, 'Svensk', 10000, 1),
(6721, 233, 4005, 'Umea', 10000, 1),
(6723, 233, 4003, 'Uppsala', 10000, 1),
(6725, 233, 3994, 'V', 10000, 1),
(6726, 233, 3998, 'Vidsel', 10000, 1),
(6727, 233, 4005, 'Vindeln', 10000, 1),
(6728, 233, 3989, 'Visby', 10000, 1),
(6730, 234, 4031, 'Geneva', 10000, 1),
(6731, 234, 4047, 'Lausanne', 10000, 1),
(6732, 234, 4035, 'Lucerne  ', 10000, 1),
(6733, 234, 4047, 'Montreux', 10000, 1),
(6734, 234, 4036, 'Neuchatel', 10000, 1),
(6736, 234, 4049, 'Zurich', 10000, 1),
(6737, 235, 4012, 'Al Ladhiqiyah', 10000, 1),
(6738, 235, 4023, 'Damascus', 10000, 1),
(6739, 236, 773, 'Hua-lien', 10000, 1),
(6740, 236, 4273, 'Kaohsiung', 10000, 1),
(6741, 236, 773, 'P''ing-tung', 10000, 1),
(6742, 236, 4275, 'T''ai-chung', 10000, 1),
(6743, 236, 4273, 'Tainan', 10000, 1),
(6744, 236, 4274, 'Taipei', 10000, 1),
(6746, 238, 4293, 'Kilimanjaro', 10000, 1),
(6747, 238, 4299, 'Zanzibar', 10000, 1),
(6748, 17, 1145, 'Abraham''s Bay', 10000, 1),
(6749, 17, 1155, 'Behring Point', 10000, 1),
(6750, 17, 1160, 'Cockburn Town', 10000, 1),
(6751, 17, 1149, 'Colonel Hill', 10000, 1),
(6752, 17, 1153, 'Cooper''s Town', 10000, 1),
(6753, 17, 1140, 'Georgetown', 10000, 1),
(6754, 17, 1143, 'Matthew Town', 10000, 1),
(6755, 17, 1139, 'Old Bight', 10000, 1),
(6756, 17, 1160, 'Port Nelson', 10000, 1),
(6757, 17, 1158, 'Rock Sound', 10000, 1),
(6758, 17, 1157, 'San Andros', 10000, 1),
(6759, 17, 1156, 'Sandy Point', 10000, 1),
(6760, 17, 1149, 'Snug Corner', 10000, 1),
(6761, 245, 4190, 'Tunis', 10000, 1),
(6762, 246, 4259, 'Ankara', 10000, 1),
(6763, 251, 4434, 'Char''kov', 10000, 1),
(6764, 252, 4998, 'Abu Dhabi', 10000, 1),
(6765, 252, 5002, 'Dubai', 10000, 1),
(6766, 252, 5004, 'Ras al Khaymah', 10000, 1),
(6769, 256, 4490, 'Artigas', 10000, 1),
(6770, 256, 4491, 'Colonia', 10000, 1),
(6771, 256, 4492, 'Paso De Los Toros', 10000, 1),
(6772, 256, 4500, 'Rivera', 10000, 1),
(6773, 256, 4501, 'Rocha', 10000, 1),
(6774, 256, 4502, 'Salto', 10000, 1),
(6775, 256, 4505, 'Tacuarembo', 10000, 1),
(6777, 259, 4538, 'Barquisimeto', 10000, 1),
(6778, 259, 4548, 'Maracaibo', 10000, 1),
(6779, 259, 4542, 'Margarita', 10000, 1),
(6780, 259, 4532, 'Valencia', 10000, 1),
(6781, 260, 4564, 'Hanoi', 10000, 1),
(6783, 261, 5384, 'Charlotte Amalie', 10000, 1),
(6784, 270, 4678, 'Sanaa', 10000, 1),
(6785, 271, 5063, 'Belgrade', 10000, 1),
(6788, 254, 123, 'Anchorage', 10000, 1),
(6789, 254, 123, 'Arctic Village', 10000, 1),
(6790, 254, 123, 'Barrow', 10000, 1),
(6791, 254, 123, 'Bethel', 10000, 1),
(6792, 254, 123, 'Bettles Field', 10000, 1),
(6793, 254, 123, 'Cold Bay', 10000, 1),
(6794, 254, 123, 'Cordova', 10000, 1),
(6795, 254, 123, 'Denali National Park', 10000, 1),
(6796, 254, 123, 'Dillingham', 10000, 1),
(6797, 254, 123, 'Dutch Harbor', 10000, 1),
(6798, 254, 123, 'Eagle River', 10000, 1),
(6799, 254, 123, 'Fairbanks', 10000, 1),
(6800, 254, 123, 'Fort Yukon', 10000, 1),
(6801, 254, 123, 'Galena', 10000, 1),
(6802, 254, 123, 'Girdwood', 10000, 1),
(6803, 254, 123, 'Gakona', 10000, 1),
(6804, 254, 123, 'Gustavus', 10000, 1),
(6805, 254, 123, 'Haines', 10000, 1),
(6806, 254, 123, 'Healy', 10000, 1),
(6807, 254, 123, 'Homer', 10000, 1),
(6808, 254, 123, 'Juneau', 10000, 1),
(6809, 254, 123, 'Kenai', 10000, 1),
(6810, 254, 123, 'Ketchikan', 10000, 1),
(6811, 254, 123, 'King Salmon', 10000, 1),
(6812, 254, 123, 'Kodiak', 10000, 1),
(6813, 254, 123, 'Kotzebue', 10000, 1),
(6814, 254, 123, 'Mc Grath', 10000, 1),
(6815, 254, 123, 'Nome', 10000, 1),
(6816, 254, 123, 'Northway', 10000, 1),
(6817, 254, 123, 'Palmer', 10000, 1),
(6819, 254, 123, 'Savoonga', 10000, 1),
(6820, 254, 123, 'Seldovia', 10000, 1),
(6821, 254, 123, 'Seward', 10000, 1),
(6822, 254, 123, 'Shishmaref', 10000, 1),
(6823, 254, 123, 'Sitka', 10000, 1),
(6824, 254, 123, 'Skagway', 10000, 1),
(6825, 254, 123, 'Sleetmute', 10000, 1),
(6827, 254, 123, 'Talkeetna', 10000, 1),
(6828, 254, 123, 'Tanana', 10000, 1),
(6829, 254, 123, 'Togiak', 10000, 1),
(6830, 254, 123, 'Tok', 10000, 1),
(6831, 254, 123, 'Unalakleet', 10000, 1),
(6832, 254, 123, 'Valdez', 10000, 1),
(6833, 254, 123, 'Willow', 10000, 1),
(6834, 254, 123, 'Wrangell', 10000, 1),
(6835, 254, 123, 'Yakutat', 10000, 1),
(6836, 254, 122, 'Abbeville', 10000, 1),
(6837, 254, 122, 'Alexander City', 10000, 1),
(6838, 254, 122, 'Andalusia', 10000, 1),
(6839, 254, 122, 'Anniston', 10000, 1),
(6840, 254, 122, 'Ashland', 10000, 1),
(6841, 254, 122, 'Athens', 10000, 1),
(6842, 254, 122, 'Auburn', 10000, 1),
(6843, 254, 122, 'Bay Minette', 10000, 1),
(6844, 254, 122, 'Bessemer', 10000, 1),
(6845, 254, 122, 'Birmingham', 10000, 1),
(6846, 254, 122, 'Brewton', 10000, 1),
(6847, 254, 122, 'Butler', 10000, 1),
(6848, 254, 122, 'Camden', 10000, 1),
(6849, 254, 122, 'Carrollton', 10000, 1),
(6850, 254, 122, 'Centreville', 10000, 1),
(6851, 254, 122, 'Chatom', 10000, 1),
(6852, 254, 122, 'Clanton', 10000, 1),
(6853, 254, 122, 'Columbiana', 10000, 1),
(6854, 254, 122, 'Cullman', 10000, 1),
(6855, 254, 122, 'Decatur', 10000, 1),
(6856, 254, 122, 'Demopolis', 10000, 1),
(6857, 254, 122, 'Dothan', 10000, 1),
(6858, 254, 122, 'Double Springs', 10000, 1),
(6859, 254, 122, 'Elberta', 10000, 1),
(6860, 254, 122, 'Enterprise', 10000, 1),
(6861, 254, 122, 'Eufaula', 10000, 1),
(6862, 254, 122, 'Eutaw', 10000, 1),
(6863, 254, 122, 'Evergreen', 10000, 1),
(6864, 254, 122, 'Fayette', 10000, 1),
(6865, 254, 122, 'Florence', 10000, 1),
(6867, 254, 122, 'Fort Payne', 10000, 1),
(6868, 254, 122, 'Gadsden', 10000, 1),
(6869, 254, 122, 'Greensboro', 10000, 1),
(6870, 254, 122, 'Greenville', 10000, 1),
(6872, 254, 122, 'Guntersville', 10000, 1),
(6873, 254, 122, 'Hamilton', 10000, 1),
(6874, 254, 122, 'Hartford', 10000, 1),
(6875, 254, 122, 'Hayneville', 10000, 1),
(6876, 254, 122, 'Heflin', 10000, 1),
(6879, 254, 122, 'Huntsville', 10000, 1),
(6880, 254, 122, 'Jacksonville', 10000, 1),
(6881, 254, 122, 'Jasper', 10000, 1),
(6882, 254, 122, 'Lanett', 10000, 1),
(6883, 254, 122, 'Livingston', 10000, 1),
(6884, 254, 122, 'Luverne', 10000, 1),
(6885, 254, 122, 'Madison', 10000, 1),
(6886, 254, 122, 'Marion', 10000, 1),
(6888, 254, 122, 'Monroeville', 10000, 1),
(6889, 254, 122, 'Montgomery', 10000, 1),
(6891, 254, 122, 'Muscle Shoals', 10000, 1),
(6892, 254, 122, 'Northport', 10000, 1),
(6893, 254, 122, 'Oneonta', 10000, 1),
(6894, 254, 122, 'Opelika', 10000, 1),
(6895, 254, 122, 'Ozark', 10000, 1),
(6896, 254, 122, 'Pell City', 10000, 1),
(6897, 254, 122, 'Phenix City', 10000, 1),
(6898, 254, 122, 'Piedmont', 10000, 1),
(6899, 254, 122, 'Pinson', 10000, 1),
(6900, 254, 122, 'Prattville', 10000, 1),
(6903, 254, 122, 'Roanoke', 10000, 1),
(6904, 254, 122, 'Rockford', 10000, 1),
(6906, 254, 122, 'Russellville', 10000, 1),
(6907, 254, 122, 'Scottsboro', 10000, 1),
(6908, 254, 122, 'Selma', 10000, 1),
(6909, 254, 122, 'Talladega', 10000, 1),
(6910, 254, 122, 'Tallassee', 10000, 1),
(6911, 254, 122, 'Troy', 10000, 1),
(6912, 254, 122, 'Tuscaloosa', 10000, 1),
(6913, 254, 122, 'Tuscumbia', 10000, 1),
(6914, 254, 122, 'Tuskegee', 10000, 1),
(6915, 254, 122, 'Union Springs', 10000, 1),
(6916, 254, 122, 'Vernon', 10000, 1),
(6917, 254, 125, 'Arkadelphia', 10000, 1),
(6918, 254, 125, 'Arkansas City', 10000, 1),
(6919, 254, 125, 'Ash Flat', 10000, 1),
(6920, 254, 125, 'Ashdown', 10000, 1),
(6921, 254, 125, 'Augusta', 10000, 1),
(6922, 254, 125, 'Batesville', 10000, 1),
(6923, 254, 125, 'Benton', 10000, 1),
(6924, 254, 125, 'Bentonville', 10000, 1),
(6925, 254, 125, 'Berryville', 10000, 1),
(6926, 254, 125, 'Blytheville', 10000, 1),
(6927, 254, 125, 'Booneville', 10000, 1),
(6928, 254, 125, 'Camden', 10000, 1),
(6929, 254, 125, 'Clarendon', 10000, 1),
(6930, 254, 125, 'Clarksville', 10000, 1),
(6931, 254, 125, 'Clinton', 10000, 1),
(6932, 254, 125, 'Conway', 10000, 1),
(6933, 254, 125, 'Corning', 10000, 1),
(6934, 254, 125, 'Crossett', 10000, 1),
(6935, 254, 125, 'Danville', 10000, 1),
(6936, 254, 125, 'De Queen', 10000, 1),
(6937, 254, 125, 'De Witt', 10000, 1),
(6938, 254, 125, 'Des Arc', 10000, 1),
(6939, 254, 125, 'Dumas', 10000, 1),
(6940, 254, 125, 'El Dorado', 10000, 1),
(6941, 254, 125, 'Eureka Springs', 10000, 1),
(6942, 254, 125, 'Fayetteville', 10000, 1),
(6943, 254, 125, 'Fordyce', 10000, 1),
(6944, 254, 125, 'Forrest City', 10000, 1),
(6945, 254, 125, 'Fort Smith', 10000, 1),
(6946, 254, 125, 'Fouke', 10000, 1),
(6947, 254, 125, 'Hampton', 10000, 1),
(6948, 254, 125, 'Harrison', 10000, 1),
(6949, 254, 125, 'Heber Springs', 10000, 1),
(6950, 254, 125, 'Helena', 10000, 1),
(6951, 254, 125, 'Hope', 10000, 1),
(6952, 254, 125, 'Hot Springs National Park', 10000, 1),
(6953, 254, 125, 'Hoxie', 10000, 1),
(6954, 254, 125, 'Huntsville', 10000, 1),
(6955, 254, 125, 'Jacksonville', 10000, 1),
(6956, 254, 125, 'Jasper', 10000, 1),
(6957, 254, 125, 'Jonesboro', 10000, 1),
(6958, 254, 125, 'Lake Village', 10000, 1),
(6959, 254, 125, 'Lewisville', 10000, 1),
(6960, 254, 125, 'Little Rock', 10000, 1),
(6961, 254, 125, 'Lonoke', 10000, 1),
(6962, 254, 125, 'Magnolia', 10000, 1),
(6963, 254, 125, 'Malvern', 10000, 1),
(6965, 254, 125, 'Marion', 10000, 1),
(6966, 254, 125, 'Marshall', 10000, 1),
(6967, 254, 125, 'Melbourne', 10000, 1),
(6968, 254, 125, 'Mena', 10000, 1),
(6969, 254, 125, 'Monticello', 10000, 1),
(6970, 254, 125, 'Morrilton', 10000, 1),
(6971, 254, 125, 'Mount Ida', 10000, 1),
(6972, 254, 125, 'Mountain Home', 10000, 1),
(6974, 254, 125, 'Murfreesboro', 10000, 1),
(6975, 254, 125, 'Nashville', 10000, 1),
(6976, 254, 125, 'Newport', 10000, 1),
(6977, 254, 125, 'North Little Rock', 10000, 1),
(6978, 254, 125, 'Ozark', 10000, 1),
(6979, 254, 125, 'Paragould', 10000, 1),
(6980, 254, 125, 'Peel', 10000, 1),
(6981, 254, 125, 'Perryville', 10000, 1),
(6982, 254, 125, 'Pine Bluff', 10000, 1),
(6983, 254, 125, 'Pocahontas', 10000, 1),
(6984, 254, 125, 'Prescott', 10000, 1),
(6985, 254, 125, 'Rogers', 10000, 1),
(6986, 254, 125, 'Russellville', 10000, 1),
(6987, 254, 125, 'Salem', 10000, 1),
(6988, 254, 125, 'Searcy', 10000, 1),
(6989, 254, 125, 'Sheridan', 10000, 1),
(6990, 254, 125, 'Sherwood', 10000, 1),
(6991, 254, 125, 'Siloam Springs', 10000, 1),
(6992, 254, 125, 'Springdale', 10000, 1),
(6993, 254, 125, 'Star City', 10000, 1),
(6994, 254, 125, 'Stuttgart', 10000, 1),
(6995, 254, 125, 'Summit', 10000, 1),
(6996, 254, 125, 'Texarkana', 10000, 1),
(6997, 254, 125, 'Trumann', 10000, 1),
(6998, 254, 125, 'Van Buren', 10000, 1),
(6999, 254, 125, 'Waldron', 10000, 1),
(7000, 254, 125, 'Walnut Ridge', 10000, 1),
(7001, 254, 125, 'Warren', 10000, 1),
(7002, 254, 125, 'West Memphis', 10000, 1),
(7003, 254, 125, 'Wynne', 10000, 1),
(7004, 254, 124, 'Alpine', 10000, 1),
(7005, 254, 124, 'Apache Junction', 10000, 1),
(7006, 254, 124, 'Avondale', 10000, 1),
(7007, 254, 124, 'Bisbee', 10000, 1),
(7008, 254, 124, 'Bullhead City', 10000, 1),
(7010, 254, 124, 'Carefree', 10000, 1),
(7011, 254, 124, 'Casa Grande', 10000, 1),
(7012, 254, 124, 'Chandler', 10000, 1),
(7013, 254, 124, 'Chinle', 10000, 1),
(7014, 254, 124, 'Coolidge', 10000, 1),
(7015, 254, 124, 'Cottonwood', 10000, 1),
(7016, 254, 124, 'Douglas', 10000, 1),
(7017, 254, 124, 'Flagstaff', 10000, 1),
(7019, 254, 124, 'Gila Bend', 10000, 1),
(7020, 254, 124, 'Gilbert', 10000, 1),
(7021, 254, 124, 'Glendale', 10000, 1),
(7022, 254, 124, 'Globe', 10000, 1),
(7023, 254, 124, 'Grand Canyon', 10000, 1),
(7024, 254, 124, 'Green Valley', 10000, 1),
(7025, 254, 124, 'Greer', 10000, 1),
(7026, 254, 124, 'Heber', 10000, 1),
(7027, 254, 124, 'Holbrook', 10000, 1),
(7028, 254, 124, 'Kayenta', 10000, 1),
(7029, 254, 124, 'Kingman', 10000, 1),
(7030, 254, 124, 'Lake Havasu City', 10000, 1),
(7031, 254, 124, 'McNary', 10000, 1),
(7032, 254, 124, 'Mesa', 10000, 1),
(7035, 254, 124, 'Nogales', 10000, 1),
(7036, 254, 124, 'North Rim', 10000, 1),
(7038, 254, 124, 'Page', 10000, 1),
(7039, 254, 124, 'Parker', 10000, 1),
(7040, 254, 124, 'Payson', 10000, 1),
(7041, 254, 124, 'Peoria', 10000, 1),
(7042, 254, 124, 'Phoenix', 10000, 1),
(7044, 254, 124, 'Prescott', 10000, 1),
(7045, 254, 124, 'Safford', 10000, 1),
(7046, 254, 124, 'Scottsdale', 10000, 1),
(7047, 254, 124, 'Sedona', 10000, 1),
(7048, 254, 124, 'Show Low', 10000, 1),
(7049, 254, 124, 'Sierra Vista', 10000, 1),
(7050, 254, 124, 'Springerville', 10000, 1),
(7052, 254, 124, 'Sun City', 10000, 1),
(7053, 254, 124, 'Tempe', 10000, 1),
(7054, 254, 124, 'Tombstone', 10000, 1),
(7055, 254, 124, 'Tuba City', 10000, 1),
(7056, 254, 124, 'Tucson', 10000, 1),
(7058, 254, 124, 'Wickenburg', 10000, 1),
(7059, 254, 124, 'Willcox', 10000, 1),
(7060, 254, 124, 'Williams', 10000, 1),
(7062, 254, 124, 'Window Rock', 10000, 1),
(7063, 254, 124, 'Winslow', 10000, 1),
(7064, 254, 124, 'Yuma', 10000, 1),
(7065, 254, 126, 'Adelanto', 10000, 1),
(7066, 254, 126, 'Alameda', 10000, 1),
(7067, 254, 126, 'Alamo', 10000, 1),
(7068, 254, 126, 'Alhambra', 10000, 1),
(7069, 254, 126, 'Alpine', 10000, 1),
(7070, 254, 126, 'Altadena', 10000, 1),
(7071, 254, 126, 'Alturas', 10000, 1),
(7072, 254, 126, 'Anaheim', 10000, 1),
(7073, 254, 126, 'Angels Camp', 10000, 1),
(7074, 254, 126, 'Antioch', 10000, 1),
(7075, 254, 126, 'Apple Valley', 10000, 1),
(7076, 254, 126, 'Arcadia', 10000, 1),
(7077, 254, 126, 'Arcata', 10000, 1),
(7079, 254, 126, 'Arroyo Grande', 10000, 1),
(7080, 254, 126, 'Artois', 10000, 1),
(7081, 254, 126, 'Arvin', 10000, 1),
(7082, 254, 126, 'Atascadero', 10000, 1),
(7083, 254, 126, 'Atwater', 10000, 1),
(7084, 254, 126, 'Auburn', 10000, 1),
(7085, 254, 126, 'Avalon', 10000, 1),
(7086, 254, 126, 'Avenal', 10000, 1),
(7087, 254, 126, 'Azusa', 10000, 1),
(7088, 254, 126, 'Bakersfield', 10000, 1),
(7089, 254, 126, 'Baldwin Park', 10000, 1),
(7090, 254, 126, 'Banning', 10000, 1),
(7091, 254, 126, 'Barstow', 10000, 1),
(7092, 254, 126, 'Arnold', 10000, 1),
(7093, 254, 126, 'Beaumont', 10000, 1),
(7094, 254, 126, 'Bell', 10000, 1),
(7095, 254, 126, 'Bell Gardens', 10000, 1),
(7096, 254, 126, 'Bellflower', 10000, 1),
(7097, 254, 126, 'Belmont', 10000, 1),
(7098, 254, 126, 'Benicia', 10000, 1),
(7099, 254, 126, 'Berkeley', 10000, 1),
(7100, 254, 126, 'Beverly Hills', 10000, 1),
(7101, 254, 126, 'Big Bear City', 10000, 1),
(7102, 254, 126, 'Big Sur', 10000, 1),
(7103, 254, 126, 'Bishop', 10000, 1),
(7105, 254, 126, 'Blythe', 10000, 1),
(7106, 254, 126, 'Bodega Bay', 10000, 1),
(7107, 254, 126, 'Borrego Springs', 10000, 1),
(7108, 254, 126, 'Brawley', 10000, 1),
(7109, 254, 126, 'Brea', 10000, 1),
(7110, 254, 126, 'Brentwood', 10000, 1),
(7111, 254, 126, 'Bridgeport', 10000, 1),
(7113, 254, 126, 'Buena Park', 10000, 1),
(7114, 254, 126, 'Burbank', 10000, 1),
(7115, 254, 126, 'Burlingame', 10000, 1),
(7116, 254, 126, 'Burney', 10000, 1),
(7117, 254, 126, 'Buttonwillow', 10000, 1),
(7118, 254, 126, 'Byron', 10000, 1),
(7119, 254, 126, 'Calexico', 10000, 1),
(7120, 254, 126, 'California City', 10000, 1),
(7121, 254, 126, 'Camarillo', 10000, 1),
(7122, 254, 126, 'Cambria', 10000, 1),
(7123, 254, 126, 'Camp Pendleton', 10000, 1),
(7124, 254, 126, 'Campbell', 10000, 1),
(7125, 254, 126, 'Campo', 10000, 1),
(7126, 254, 126, 'Carlsbad', 10000, 1),
(7127, 254, 126, 'Carmel', 10000, 1),
(7128, 254, 126, 'Carmichael', 10000, 1),
(7129, 254, 126, 'Carpinteria', 10000, 1),
(7130, 254, 126, 'Carson', 10000, 1),
(7131, 254, 126, 'Castro Valley', 10000, 1),
(7132, 254, 126, 'Cathedral City', 10000, 1),
(7133, 254, 126, 'Ceres', 10000, 1),
(7134, 254, 126, 'Cerritos', 10000, 1),
(7135, 254, 126, 'Chatsworth', 10000, 1),
(7136, 254, 126, 'Chico', 10000, 1),
(7137, 254, 126, 'Chino', 10000, 1),
(7138, 254, 126, 'Chowchilla', 10000, 1),
(7139, 254, 126, 'Chula Vista', 10000, 1),
(7140, 254, 126, 'Citrus Heights', 10000, 1),
(7141, 254, 126, 'Claremont', 10000, 1),
(7142, 254, 126, 'Clayton', 10000, 1),
(7143, 254, 126, 'Clearlake', 10000, 1),
(7144, 254, 126, 'Cloverdale', 10000, 1),
(7145, 254, 126, 'Clovis', 10000, 1),
(7146, 254, 126, 'Coalinga', 10000, 1),
(7147, 254, 126, 'Colton', 10000, 1),
(7148, 254, 126, 'Colusa', 10000, 1),
(7149, 254, 126, 'Compton', 10000, 1),
(7150, 254, 126, 'Concord', 10000, 1),
(7151, 254, 126, 'Corona', 10000, 1),
(7152, 254, 126, 'Coronado', 10000, 1),
(7153, 254, 126, 'Costa Mesa', 10000, 1),
(7154, 254, 126, 'Covina', 10000, 1),
(7155, 254, 126, 'Crescent City', 10000, 1),
(7156, 254, 126, 'Crockett', 10000, 1),
(7157, 254, 126, 'Culver City', 10000, 1),
(7158, 254, 126, 'Cupertino', 10000, 1),
(7160, 254, 126, 'Cypress', 10000, 1),
(7161, 254, 126, 'Daly City', 10000, 1),
(7162, 254, 126, 'Dana Point', 10000, 1),
(7163, 254, 126, 'Danville', 10000, 1),
(7164, 254, 126, 'Davis', 10000, 1),
(7166, 254, 126, 'Del Mar', 10000, 1),
(7167, 254, 126, 'Delano', 10000, 1),
(7168, 254, 126, 'Diamond Bar', 10000, 1),
(7169, 254, 126, 'Dinuba', 10000, 1),
(7170, 254, 126, 'Dixon', 10000, 1),
(7172, 254, 126, 'Downey', 10000, 1),
(7173, 254, 126, 'Duarte', 10000, 1),
(7174, 254, 126, 'Dublin', 10000, 1),
(7175, 254, 126, 'Dunsmuir', 10000, 1),
(7176, 254, 126, 'Earlimart', 10000, 1),
(7177, 254, 126, 'Edison', 10000, 1),
(7179, 254, 126, 'El Cajon', 10000, 1),
(7180, 254, 126, 'El Centro', 10000, 1),
(7181, 254, 126, 'El Cerrito', 10000, 1),
(7182, 254, 126, 'El Monte', 10000, 1),
(7183, 254, 126, 'El Sobrante', 10000, 1),
(7184, 254, 126, 'Elk Grove', 10000, 1),
(7185, 254, 126, 'Encinitas', 10000, 1),
(7186, 254, 126, 'Escalon', 10000, 1),
(7187, 254, 126, 'Escondido', 10000, 1),
(7188, 254, 126, 'Eureka', 10000, 1),
(7189, 254, 126, 'Fair Oaks', 10000, 1),
(7190, 254, 126, 'Fallbrook', 10000, 1),
(7191, 254, 126, 'Fillmore', 10000, 1),
(7192, 254, 126, 'Florence', 10000, 1),
(7193, 254, 126, 'Folsom', 10000, 1),
(7194, 254, 126, 'Fontana', 10000, 1),
(7195, 254, 126, 'Fort Bragg', 10000, 1),
(7197, 254, 126, 'Fountain Valley', 10000, 1),
(7198, 254, 126, 'Frazier Park', 10000, 1),
(7199, 254, 126, 'Fremont', 10000, 1),
(7200, 254, 126, 'Fresno', 10000, 1),
(7201, 254, 126, 'Fullerton', 10000, 1),
(7202, 254, 126, 'Galt', 10000, 1),
(7203, 254, 126, 'Garden Grove', 10000, 1),
(7204, 254, 126, 'Gardena', 10000, 1),
(7205, 254, 126, 'Gilroy', 10000, 1),
(7206, 254, 126, 'Glendale', 10000, 1),
(7207, 254, 126, 'Glendora', 10000, 1),
(7208, 254, 126, 'Glennville', 10000, 1),
(7209, 254, 126, 'Goleta', 10000, 1),
(7210, 254, 126, 'Gridley', 10000, 1),
(7211, 254, 126, 'Hacienda Heights', 10000, 1),
(7212, 254, 126, 'Half Moon Bay', 10000, 1),
(7213, 254, 126, 'Hallelujah Jct', 10000, 1),
(7214, 254, 126, 'Hanford', 10000, 1),
(7215, 254, 126, 'Hawthorne', 10000, 1),
(7216, 254, 126, 'Hayfork', 10000, 1),
(7217, 254, 126, 'Hayward', 10000, 1),
(7218, 254, 126, 'Healdsburg', 10000, 1),
(7219, 254, 126, 'Hemet', 10000, 1),
(7220, 254, 126, 'Hercules', 10000, 1),
(7221, 254, 126, 'Hesperia', 10000, 1),
(7222, 254, 126, 'Highland', 10000, 1),
(7223, 254, 126, 'Hollister', 10000, 1),
(7224, 254, 126, 'Huntington Beach', 10000, 1),
(7225, 254, 126, 'Imperial', 10000, 1),
(7226, 254, 126, 'Imperial Beach', 10000, 1),
(7227, 254, 126, 'Indio', 10000, 1),
(7228, 254, 126, 'Inglewood', 10000, 1),
(7229, 254, 126, 'Irvine', 10000, 1),
(7230, 254, 126, 'Jackson', 10000, 1),
(7231, 254, 126, 'Jamul', 10000, 1),
(7232, 254, 126, 'Joshua Tree National Park', 10000, 1),
(7233, 254, 126, 'Julian', 10000, 1),
(7234, 254, 126, 'Kernville', 10000, 1),
(7235, 254, 126, 'King City', 10000, 1),
(7236, 254, 126, 'Kings Beach', 10000, 1),
(7237, 254, 126, 'Knights Landing', 10000, 1),
(7238, 254, 126, 'La Habra', 10000, 1),
(7239, 254, 126, 'La Jolla', 10000, 1),
(7240, 254, 126, 'La Mesa', 10000, 1),
(7241, 254, 126, 'La Mirada', 10000, 1),
(7242, 254, 126, 'La Puente', 10000, 1),
(7243, 254, 126, 'La Verne', 10000, 1),
(7244, 254, 126, 'Lafayette', 10000, 1),
(7245, 254, 126, 'Laguna Beach', 10000, 1),
(7246, 254, 126, 'Laguna Hills', 10000, 1),
(7247, 254, 126, 'Laguna Niguel', 10000, 1),
(7248, 254, 126, 'Lake Arrowhead', 10000, 1),
(7250, 254, 126, 'Lake Elsinore', 10000, 1),
(7251, 254, 126, 'Lake Forest', 10000, 1),
(7252, 254, 126, 'Lake Isabella', 10000, 1),
(7253, 254, 126, 'Lakeport', 10000, 1),
(7254, 254, 126, 'Lakeside', 10000, 1),
(7255, 254, 126, 'Lakewood', 10000, 1),
(7256, 254, 126, 'Lamont', 10000, 1),
(7257, 254, 126, 'Lancaster', 10000, 1),
(7258, 254, 126, 'Lathrop', 10000, 1),
(7259, 254, 126, 'Lawndale', 10000, 1),
(7261, 254, 126, 'Lebec', 10000, 1),
(7262, 254, 126, 'Lemon Grove', 10000, 1),
(7263, 254, 126, 'Lemoore', 10000, 1),
(7265, 254, 126, 'Linden', 10000, 1),
(7266, 254, 126, 'Lindsay', 10000, 1),
(7267, 254, 126, 'Livermore', 10000, 1),
(7268, 254, 126, 'Lockeford', 10000, 1),
(7269, 254, 126, 'Lodi', 10000, 1),
(7270, 254, 126, 'Lomita', 10000, 1),
(7271, 254, 126, 'Lompoc', 10000, 1),
(7272, 254, 126, 'Lone Pine', 10000, 1),
(7273, 254, 126, 'Long Beach', 10000, 1),
(7274, 254, 126, 'Los Altos', 10000, 1),
(7275, 254, 126, 'Los Angeles', 10000, 1),
(7276, 254, 126, 'Los Banos', 10000, 1),
(7277, 254, 126, 'Los Gatos', 10000, 1),
(7278, 254, 126, 'Lost Hills', 10000, 1),
(7279, 254, 126, 'Lucerne Valley', 10000, 1),
(7280, 254, 126, 'Lynwood', 10000, 1),
(7281, 254, 126, 'Madera', 10000, 1),
(7282, 254, 126, 'Malibu', 10000, 1),
(7283, 254, 126, 'Mammoth Lakes', 10000, 1),
(7284, 254, 126, 'Mammoth Mountain', 10000, 1),
(7285, 254, 126, 'Manhattan Beach', 10000, 1),
(7286, 254, 126, 'Manteca', 10000, 1),
(7287, 254, 126, 'Manzanita Lake', 10000, 1),
(7288, 254, 126, 'Maricopa', 10000, 1),
(7289, 254, 126, 'Mariposa', 10000, 1),
(7290, 254, 126, 'Markleeville', 10000, 1),
(7291, 254, 126, 'Martinez', 10000, 1),
(7292, 254, 126, 'Marysville', 10000, 1),
(7294, 254, 126, 'Maywood', 10000, 1),
(7297, 254, 126, 'Mendocino', 10000, 1),
(7298, 254, 126, 'Mendota', 10000, 1),
(7299, 254, 126, 'Menifee', 10000, 1),
(7300, 254, 126, 'Menlo Park', 10000, 1),
(7301, 254, 126, 'Merced', 10000, 1),
(7302, 254, 126, 'Mill Valley', 10000, 1),
(7303, 254, 126, 'Millbrae', 10000, 1),
(7304, 254, 126, 'Milpitas', 10000, 1),
(7305, 254, 126, 'Mineral', 10000, 1),
(7306, 254, 126, 'Mission Viejo', 10000, 1),
(7307, 254, 126, 'Modesto', 10000, 1),
(7308, 254, 126, 'Mojave', 10000, 1),
(7309, 254, 126, 'Monrovia', 10000, 1),
(7310, 254, 126, 'Montclair', 10000, 1),
(7311, 254, 126, 'Montebello', 10000, 1),
(7312, 254, 126, 'Monterey', 10000, 1),
(7313, 254, 126, 'Monterey Park', 10000, 1),
(7314, 254, 126, 'Moorpark', 10000, 1),
(7315, 254, 126, 'Moraga', 10000, 1),
(7316, 254, 126, 'Moreno Valley', 10000, 1),
(7317, 254, 126, 'Morgan Hill', 10000, 1),
(7318, 254, 126, 'Morro Bay', 10000, 1),
(7319, 254, 126, 'Mount Laguna', 10000, 1),
(7320, 254, 126, 'Mount Shasta', 10000, 1),
(7321, 254, 126, 'Mount Wilson', 10000, 1),
(7322, 254, 126, 'Mountain View', 10000, 1),
(7323, 254, 126, 'Murrieta', 10000, 1),
(7324, 254, 126, 'Napa', 10000, 1),
(7325, 254, 126, 'National City', 10000, 1),
(7326, 254, 126, 'Needles', 10000, 1),
(7327, 254, 126, 'Nevada City', 10000, 1),
(7328, 254, 126, 'Newark', 10000, 1),
(7329, 254, 126, 'Newport Beach', 10000, 1),
(7330, 254, 126, 'Norco', 10000, 1),
(7331, 254, 126, 'North Highlands', 10000, 1),
(7332, 254, 126, 'Northridge', 10000, 1),
(7333, 254, 126, 'Norwalk', 10000, 1),
(7334, 254, 126, 'Novato', 10000, 1),
(7335, 254, 126, 'Oakland', 10000, 1),
(7336, 254, 126, 'Oakley', 10000, 1),
(7337, 254, 126, 'Ojai', 10000, 1),
(7338, 254, 126, 'Olema', 10000, 1),
(7339, 254, 126, 'Ontario', 10000, 1),
(7340, 254, 126, 'Orange', 10000, 1),
(7341, 254, 126, 'Orangevale', 10000, 1),
(7342, 254, 126, 'Orinda', 10000, 1),
(7343, 254, 126, 'Orland', 10000, 1),
(7344, 254, 126, 'Oroville', 10000, 1),
(7346, 254, 126, 'Oxnard', 10000, 1),
(7347, 254, 126, 'Pacifica', 10000, 1),
(7348, 254, 126, 'Palm Desert', 10000, 1),
(7349, 254, 126, 'Palm Springs', 10000, 1),
(7350, 254, 126, 'Palmdale', 10000, 1),
(7351, 254, 126, 'Palo Alto', 10000, 1),
(7353, 254, 126, 'Paradise', 10000, 1),
(7354, 254, 126, 'Paramount', 10000, 1),
(7355, 254, 126, 'Pasadena', 10000, 1),
(7356, 254, 126, 'Paso Robles', 10000, 1),
(7357, 254, 126, 'Pebble Beach', 10000, 1),
(7358, 254, 126, 'Perris', 10000, 1),
(7359, 254, 126, 'Petaluma', 10000, 1),
(7360, 254, 126, 'Phelan', 10000, 1),
(7361, 254, 126, 'Pico Rivera', 10000, 1),
(7362, 254, 126, 'Pinole', 10000, 1),
(7363, 254, 126, 'Piru', 10000, 1),
(7364, 254, 126, 'Pismo Beach', 10000, 1),
(7365, 254, 126, 'Pittsburg', 10000, 1),
(7366, 254, 126, 'Placentia', 10000, 1),
(7367, 254, 126, 'Placerville', 10000, 1),
(7368, 254, 126, 'Pleasant Hill', 10000, 1),
(7369, 254, 126, 'Pleasanton', 10000, 1),
(7370, 254, 126, 'Point Mugu', 10000, 1),
(7373, 254, 126, 'Pollock Pines', 10000, 1),
(7374, 254, 126, 'Port Hueneme', 10000, 1),
(7375, 254, 126, 'Porterville', 10000, 1),
(7376, 254, 126, 'Potter Valley', 10000, 1),
(7377, 254, 126, 'Poway', 10000, 1),
(7378, 254, 126, 'Quincy', 10000, 1),
(7380, 254, 126, 'Ramona', 10000, 1),
(7381, 254, 126, 'Ranchita', 10000, 1),
(7382, 254, 126, 'Rancho Cordova', 10000, 1),
(7383, 254, 126, 'Rancho Cucamonga', 10000, 1),
(7384, 254, 126, 'Rancho Palos Verdes', 10000, 1),
(7386, 254, 126, 'Rancho Sante Fe', 10000, 1),
(7387, 254, 126, 'Randsburg', 10000, 1),
(7388, 254, 126, 'Red Bluff', 10000, 1),
(7389, 254, 126, 'Redding', 10000, 1),
(7390, 254, 126, 'Redlands', 10000, 1),
(7391, 254, 126, 'Redondo Beach', 10000, 1),
(7392, 254, 126, 'Redwood City', 10000, 1),
(7393, 254, 126, 'Reedley', 10000, 1),
(7394, 254, 126, 'Rialto', 10000, 1),
(7395, 254, 126, 'Richmond', 10000, 1),
(7396, 254, 126, 'Ridgecrest', 10000, 1),
(7397, 254, 126, 'Rio Vista', 10000, 1),
(7398, 254, 126, 'Ripon', 10000, 1),
(7399, 254, 126, 'Riverside', 10000, 1),
(7400, 254, 126, 'Rocklin', 10000, 1),
(7401, 254, 126, 'Rodeo', 10000, 1),
(7402, 254, 126, 'Rohnert Park', 10000, 1),
(7403, 254, 126, 'Rosamond', 10000, 1),
(7404, 254, 126, 'Rosemead', 10000, 1),
(7405, 254, 126, 'Roseville', 10000, 1),
(7406, 254, 126, 'Rowland Heights', 10000, 1),
(7408, 254, 126, 'Sacramento', 10000, 1),
(7410, 254, 126, 'Salinas', 10000, 1),
(7411, 254, 126, 'San Andreas', 10000, 1),
(7412, 254, 126, 'San Bernardino', 10000, 1),
(7413, 254, 126, 'San Bruno', 10000, 1),
(7414, 254, 126, 'San Carlos', 10000, 1),
(7415, 254, 126, 'San Clemente', 10000, 1),
(7416, 254, 126, 'San Diego', 10000, 1),
(7417, 254, 126, 'San Dimas', 10000, 1),
(7418, 254, 126, 'San Fernando', 10000, 1),
(7419, 254, 126, 'San Francisco', 10000, 1),
(7420, 254, 126, 'San Gabriel', 10000, 1),
(7421, 254, 126, 'San Jacinto', 10000, 1),
(7422, 254, 126, 'San Jose', 10000, 1),
(7423, 254, 126, 'San Juan Capistrano', 10000, 1),
(7424, 254, 126, 'San Leandro', 10000, 1),
(7425, 254, 126, 'San Luis Obispo', 10000, 1),
(7426, 254, 126, 'San Marcos', 10000, 1),
(7427, 254, 126, 'San Mateo', 10000, 1),
(7428, 254, 126, 'San Pablo', 10000, 1),
(7429, 254, 126, 'San Rafael', 10000, 1),
(7430, 254, 126, 'San Ramon', 10000, 1),
(7431, 254, 126, 'San Simeon', 10000, 1),
(7432, 254, 126, 'Santa Ana', 10000, 1),
(7433, 254, 126, 'Santa Barbara', 10000, 1),
(7434, 254, 126, 'Santa Clara', 10000, 1),
(7435, 254, 126, 'Santa Clarita', 10000, 1),
(7436, 254, 126, 'Santa Cruz', 10000, 1),
(7437, 254, 126, 'Santa Maria', 10000, 1),
(7438, 254, 126, 'Santa Monica', 10000, 1),
(7439, 254, 126, 'Santa Paula', 10000, 1),
(7440, 254, 126, 'Santa Rosa', 10000, 1),
(7441, 254, 126, 'Santee', 10000, 1),
(7442, 254, 126, 'Saratoga', 10000, 1),
(7443, 254, 126, 'Sausalito', 10000, 1),
(7444, 254, 126, 'Seal Beach', 10000, 1),
(7445, 254, 126, 'Seaside', 10000, 1),
(7447, 254, 126, 'Sequoia National Park', 10000, 1),
(7448, 254, 126, 'Shafter', 10000, 1),
(7449, 254, 126, 'Shasta Lake', 10000, 1),
(7450, 254, 126, 'Sherman Oaks', 10000, 1),
(7453, 254, 126, 'Simi Valley', 10000, 1),
(7454, 254, 126, 'Solana Beach', 10000, 1),
(7455, 254, 126, 'Solvang', 10000, 1),
(7456, 254, 126, 'Sonoma', 10000, 1),
(7457, 254, 126, 'Sonora', 10000, 1),
(7458, 254, 126, 'South El Monte', 10000, 1),
(7459, 254, 126, 'South Gate', 10000, 1),
(7460, 254, 126, 'South Lake', 10000, 1),
(7461, 254, 126, 'South Lake Tahoe', 10000, 1),
(7462, 254, 126, 'South Pasadena', 10000, 1),
(7463, 254, 126, 'South San Francisco', 10000, 1),
(7464, 254, 126, 'Spring Valley', 10000, 1),
(7465, 254, 126, 'Stanford', 10000, 1),
(7466, 254, 126, 'Stanton', 10000, 1),
(7467, 254, 126, 'Stinson Beach', 10000, 1),
(7468, 254, 126, 'Stockton', 10000, 1),
(7469, 254, 126, 'Strawberry Valley', 10000, 1),
(7470, 254, 126, 'Suisun City', 10000, 1),
(7471, 254, 126, 'Sun City', 10000, 1),
(7472, 254, 126, 'Sunnyvale', 10000, 1),
(7473, 254, 126, 'Sunol', 10000, 1),
(7474, 254, 126, 'Susanville', 10000, 1),
(7475, 254, 126, 'Taft', 10000, 1),
(7476, 254, 126, 'Tahoe City', 10000, 1),
(7477, 254, 126, 'Tecate', 10000, 1),
(7478, 254, 126, 'Tehachapi', 10000, 1),
(7479, 254, 126, 'Temecula', 10000, 1),
(7480, 254, 126, 'Temple City', 10000, 1),
(7481, 254, 126, 'Thermal', 10000, 1),
(7482, 254, 126, 'Thousand Oaks', 10000, 1),
(7483, 254, 126, 'Torrance', 10000, 1),
(7484, 254, 126, 'Trabuco Canyon', 10000, 1),
(7485, 254, 126, 'Tracy', 10000, 1),
(7486, 254, 126, 'Travis AFB', 10000, 1),
(7487, 254, 126, 'Truckee', 10000, 1),
(7488, 254, 126, 'Tulare', 10000, 1),
(7489, 254, 126, 'Tulelake', 10000, 1),
(7490, 254, 126, 'Turlock', 10000, 1),
(7491, 254, 126, 'Tustin', 10000, 1),
(7492, 254, 126, 'Twentynine Palms', 10000, 1),
(7493, 254, 126, 'Ukiah', 10000, 1),
(7494, 254, 126, 'Union City', 10000, 1),
(7495, 254, 126, 'Upland', 10000, 1),
(7496, 254, 126, 'Vacaville', 10000, 1),
(7497, 254, 126, 'Valencia', 10000, 1),
(7498, 254, 126, 'Vallejo', 10000, 1),
(7499, 254, 126, 'Valley Center', 10000, 1),
(7500, 254, 126, 'Van Nuys', 10000, 1),
(7501, 254, 126, 'Ventura', 10000, 1),
(7502, 254, 126, 'Victorville', 10000, 1),
(7503, 254, 126, 'Visalia', 10000, 1),
(7504, 254, 126, 'Vista', 10000, 1),
(7505, 254, 126, 'Walnut', 10000, 1),
(7506, 254, 126, 'Walnut Creek', 10000, 1),
(7507, 254, 126, 'Wasco', 10000, 1),
(7508, 254, 126, 'Watsonville', 10000, 1),
(7509, 254, 126, 'West Covina', 10000, 1),
(7510, 254, 126, 'West Hollywood', 10000, 1),
(7511, 254, 126, 'West Sacramento', 10000, 1),
(7512, 254, 126, 'Westlake Village', 10000, 1),
(7513, 254, 126, 'Westminster', 10000, 1),
(7514, 254, 126, 'Whittier', 10000, 1),
(7515, 254, 126, 'Wildomar', 10000, 1),
(7516, 254, 126, 'Willow Brook', 10000, 1),
(7517, 254, 126, 'Willows', 10000, 1),
(7518, 254, 126, 'Woodacre', 10000, 1),
(7519, 254, 126, 'Woodland', 10000, 1),
(7520, 254, 126, 'Woodland Hills', 10000, 1),
(7521, 254, 126, 'Wrightwood', 10000, 1),
(7522, 254, 126, 'Yorba Linda', 10000, 1),
(7523, 254, 126, 'Yosemite Village', 10000, 1),
(7524, 254, 126, 'Yreka', 10000, 1),
(7525, 254, 126, 'Yuba City', 10000, 1),
(7526, 254, 126, 'Yucaipa', 10000, 1),
(7528, 254, 127, 'Akron', 10000, 1),
(7529, 254, 127, 'Alamosa', 10000, 1),
(7530, 254, 127, 'Allenspark', 10000, 1),
(7531, 254, 127, 'Arvada', 10000, 1),
(7532, 254, 127, 'Aspen', 10000, 1),
(7533, 254, 127, 'Aurora', 10000, 1),
(7534, 254, 127, 'Boulder', 10000, 1),
(7535, 254, 127, 'Breckenridge', 10000, 1),
(7536, 254, 127, 'Broomfield', 10000, 1),
(7537, 254, 127, 'Buena Vista', 10000, 1),
(7538, 254, 127, 'Burlington', 10000, 1),
(7539, 254, 127, 'Canon City', 10000, 1),
(7540, 254, 127, 'Cheyenne Wells', 10000, 1),
(7541, 254, 127, 'Colorado Springs', 10000, 1),
(7543, 254, 127, 'Cortez', 10000, 1),
(7544, 254, 127, 'Craig', 10000, 1),
(7545, 254, 127, 'Crested Butte', 10000, 1),
(7546, 254, 127, 'Cripple Creek', 10000, 1),
(7548, 254, 127, 'Denver', 10000, 1),
(7549, 254, 127, 'Dillon', 10000, 1),
(7550, 254, 127, 'Divide', 10000, 1),
(7551, 254, 127, 'Durango', 10000, 1),
(7552, 254, 127, 'Eads', 10000, 1),
(7554, 254, 127, 'Englewood', 10000, 1),
(7555, 254, 127, 'Erie', 10000, 1),
(7556, 254, 127, 'Estes Park', 10000, 1),
(7557, 254, 127, 'Florissant', 10000, 1),
(7558, 254, 127, 'Fort Collins', 10000, 1),
(7559, 254, 127, 'Fort Morgan', 10000, 1),
(7560, 254, 127, 'Gardner', 10000, 1),
(7561, 254, 127, 'Glenwood Springs', 10000, 1),
(7562, 254, 127, 'Grand Junction', 10000, 1),
(7563, 254, 127, 'Greeley', 10000, 1),
(7564, 254, 127, 'Gunnison', 10000, 1),
(7566, 254, 127, 'Kim', 10000, 1),
(7567, 254, 127, 'La Junta', 10000, 1),
(7568, 254, 127, 'Lafayette', 10000, 1),
(7570, 254, 127, 'Lamar', 10000, 1),
(7571, 254, 127, 'Las Animas', 10000, 1),
(7572, 254, 127, 'Leadville', 10000, 1),
(7573, 254, 127, 'Limon', 10000, 1),
(7574, 254, 127, 'Littleton', 10000, 1),
(7575, 254, 127, 'Longmont', 10000, 1),
(7576, 254, 127, 'Louisville', 10000, 1),
(7577, 254, 127, 'Loveland', 10000, 1),
(7578, 254, 127, 'Lyons', 10000, 1),
(7579, 254, 127, 'Monte Vista', 10000, 1),
(7580, 254, 127, 'Montrose', 10000, 1),
(7581, 254, 127, 'Nederland', 10000, 1),
(7582, 254, 127, 'Peaceful Valley', 10000, 1),
(7583, 254, 127, 'Pueblo', 10000, 1),
(7585, 254, 127, 'Rifle', 10000, 1),
(7586, 254, 127, 'Salida', 10000, 1),
(7587, 254, 127, 'Steamboat Springs', 10000, 1),
(7588, 254, 127, 'Sterling', 10000, 1),
(7590, 254, 127, 'Telluride', 10000, 1),
(7592, 254, 127, 'Trinidad', 10000, 1),
(7593, 254, 127, 'Vail', 10000, 1),
(7594, 254, 127, 'Victor', 10000, 1),
(7595, 254, 127, 'Walsenburg', 10000, 1),
(7596, 254, 127, 'Ward', 10000, 1),
(7597, 254, 127, 'Westminster', 10000, 1),
(7598, 254, 127, 'Wheat Ridge', 10000, 1),
(7599, 254, 127, 'Winter Park', 10000, 1),
(7600, 254, 127, 'Woodland Park', 10000, 1),
(7601, 254, 127, 'Yuma', 10000, 1),
(7602, 254, 128, 'Berlin', 10000, 1),
(7603, 254, 128, 'Bridgeport', 10000, 1),
(7604, 254, 128, 'Bristol', 10000, 1),
(7605, 254, 128, 'Canaan', 10000, 1),
(7606, 254, 128, 'Cromwell', 10000, 1),
(7607, 254, 128, 'Danbury', 10000, 1),
(7608, 254, 128, 'East Hartford', 10000, 1),
(7609, 254, 128, 'East Haven', 10000, 1),
(7610, 254, 128, 'Enfield', 10000, 1),
(7611, 254, 128, 'Fairfield', 10000, 1),
(7612, 254, 128, 'Farmington', 10000, 1),
(7613, 254, 128, 'Goshen', 10000, 1),
(7614, 254, 128, 'Greenwich', 10000, 1),
(7615, 254, 128, 'Groton', 10000, 1),
(7616, 254, 128, 'Hamden', 10000, 1),
(7617, 254, 128, 'Hartford', 10000, 1),
(7618, 254, 128, 'Kent', 10000, 1),
(7619, 254, 128, 'Lebanon', 10000, 1),
(7621, 254, 128, 'Litchfield', 10000, 1),
(7622, 254, 128, 'Manchester', 10000, 1),
(7623, 254, 128, 'Meriden', 10000, 1),
(7624, 254, 128, 'Middletown', 10000, 1),
(7625, 254, 128, 'Milford', 10000, 1),
(7627, 254, 128, 'Naugatuck', 10000, 1),
(7628, 254, 128, 'New Britain', 10000, 1),
(7629, 254, 128, 'New Haven', 10000, 1),
(7630, 254, 128, 'New London', 10000, 1),
(7631, 254, 128, 'Newington', 10000, 1),
(7632, 254, 128, 'Norfolk', 10000, 1),
(7633, 254, 128, 'North Haven', 10000, 1),
(7634, 254, 128, 'Norwalk', 10000, 1),
(7635, 254, 128, 'Norwich', 10000, 1),
(7636, 254, 128, 'Old Saybrook', 10000, 1),
(7637, 254, 128, 'Orange', 10000, 1),
(7638, 254, 128, 'Plainville', 10000, 1),
(7639, 254, 128, 'Plymouth', 10000, 1),
(7640, 254, 128, 'Putnam', 10000, 1),
(7641, 254, 128, 'Rocky Hill', 10000, 1),
(7642, 254, 128, 'Shelton', 10000, 1),
(7643, 254, 128, 'Simsbury', 10000, 1),
(7644, 254, 128, 'Southington', 10000, 1),
(7645, 254, 128, 'Stamford', 10000, 1),
(7646, 254, 128, 'Storrs Mansfield', 10000, 1);
INSERT INTO `[[dbprefix]]geo_cities` VALUES
(7647, 254, 128, 'Stratford', 10000, 1),
(7648, 254, 128, 'Torrington', 10000, 1),
(7649, 254, 128, 'Trumbull', 10000, 1),
(7650, 254, 128, 'Vernon Rockville', 10000, 1),
(7651, 254, 128, 'Wallingford', 10000, 1),
(7652, 254, 128, 'East Windsor', 10000, 1),
(7653, 254, 128, 'Waterbury', 10000, 1),
(7654, 254, 128, 'W Hartford', 10000, 1),
(7655, 254, 128, 'West Haven', 10000, 1),
(7657, 254, 128, 'Westport', 10000, 1),
(7658, 254, 128, 'Wethersfield', 10000, 1),
(7659, 254, 128, 'Willimantic', 10000, 1),
(7660, 254, 128, 'Winsted', 10000, 1),
(7663, 254, 129, 'Georgetown', 10000, 1),
(7664, 254, 129, 'Newark', 10000, 1),
(7665, 254, 129, 'Rehoboth Beach', 10000, 1),
(7666, 254, 129, 'Seaford', 10000, 1),
(7667, 254, 129, 'Wilmington', 10000, 1),
(7668, 254, 131, 'Altamonte Springs', 10000, 1),
(7669, 254, 131, 'Apalachicola', 10000, 1),
(7670, 254, 131, 'Arcadia', 10000, 1),
(7671, 254, 131, 'Avon Park', 10000, 1),
(7672, 254, 131, 'Bartow', 10000, 1),
(7673, 254, 131, 'Belle Glade', 10000, 1),
(7674, 254, 131, 'Blountstown', 10000, 1),
(7675, 254, 131, 'Boca Raton', 10000, 1),
(7676, 254, 131, 'Bonifay', 10000, 1),
(7677, 254, 131, 'Bonita Springs', 10000, 1),
(7679, 254, 131, 'Bradenton', 10000, 1),
(7680, 254, 131, 'Brandon', 10000, 1),
(7681, 254, 131, 'Bristol', 10000, 1),
(7682, 254, 131, 'Bronson', 10000, 1),
(7683, 254, 131, 'Brooksville', 10000, 1),
(7685, 254, 131, 'Bushnell', 10000, 1),
(7686, 254, 131, 'Cape Coral', 10000, 1),
(7687, 254, 131, 'Opa Locka', 10000, 1),
(7688, 254, 131, 'Casselberry', 10000, 1),
(7690, 254, 131, 'Chipley', 10000, 1),
(7691, 254, 131, 'Clearwater', 10000, 1),
(7692, 254, 131, 'Clewiston', 10000, 1),
(7693, 254, 131, 'Cocoa', 10000, 1),
(7698, 254, 131, 'Crawfordville', 10000, 1),
(7699, 254, 131, 'Crestview', 10000, 1),
(7700, 254, 131, 'Cross City', 10000, 1),
(7702, 254, 131, 'Dade City', 10000, 1),
(7703, 254, 131, 'Dania', 10000, 1),
(7704, 254, 131, 'Daytona Beach', 10000, 1),
(7706, 254, 131, 'Deland', 10000, 1),
(7707, 254, 131, 'Deerfield Beach', 10000, 1),
(7708, 254, 131, 'Delray Beach', 10000, 1),
(7709, 254, 131, 'Deltona', 10000, 1),
(7710, 254, 131, 'Destin', 10000, 1),
(7712, 254, 131, 'Dunedin', 10000, 1),
(7713, 254, 131, 'Englewood', 10000, 1),
(7714, 254, 131, 'Everglades City', 10000, 1),
(7715, 254, 131, 'Fernandina Beach', 10000, 1),
(7716, 254, 131, 'Ferry Pass', 10000, 1),
(7717, 254, 131, 'Fort Lauderdale', 10000, 1),
(7718, 254, 131, 'Fort Myers', 10000, 1),
(7719, 254, 131, 'Fort Pierce', 10000, 1),
(7720, 254, 131, 'Fort Walton Beach', 10000, 1),
(7721, 254, 131, 'Gainesville', 10000, 1),
(7722, 254, 131, 'Greenacres City', 10000, 1),
(7724, 254, 131, 'Hallandale', 10000, 1),
(7725, 254, 131, 'Hernando', 10000, 1),
(7726, 254, 131, 'Hialeah', 10000, 1),
(7727, 254, 131, 'Hollywood', 10000, 1),
(7728, 254, 131, 'Homestead Afb', 10000, 1),
(7730, 254, 131, 'Immokalee', 10000, 1),
(7731, 254, 131, 'Inverness', 10000, 1),
(7732, 254, 131, 'Jacksonville', 10000, 1),
(7733, 254, 131, 'Jasper', 10000, 1),
(7734, 254, 131, 'Jay', 10000, 1),
(7735, 254, 131, 'Jupiter', 10000, 1),
(7736, 254, 131, 'Key Biscayne', 10000, 1),
(7737, 254, 131, 'Key West', 10000, 1),
(7738, 254, 131, 'Kissimmee', 10000, 1),
(7739, 254, 131, 'Lake Butler', 10000, 1),
(7740, 254, 131, 'Lake City', 10000, 1),
(7741, 254, 131, 'Lake Placid', 10000, 1),
(7742, 254, 131, 'Lake Worth', 10000, 1),
(7743, 254, 131, 'Lakeland', 10000, 1),
(7744, 254, 131, 'Largo', 10000, 1),
(7747, 254, 131, 'Lealman', 10000, 1),
(7748, 254, 131, 'Live Oak', 10000, 1),
(7749, 254, 131, 'Lorida', 10000, 1),
(7750, 254, 131, 'Macclenny', 10000, 1),
(7751, 254, 131, 'Madison', 10000, 1),
(7752, 254, 131, 'Marathon', 10000, 1),
(7753, 254, 131, 'Marco Island', 10000, 1),
(7755, 254, 131, 'Marianna', 10000, 1),
(7756, 254, 131, 'Mary Esther', 10000, 1),
(7757, 254, 131, 'Mayo', 10000, 1),
(7759, 254, 131, 'Melbourne', 10000, 1),
(7760, 254, 131, 'Miami Beach', 10000, 1),
(7761, 254, 131, 'Middleburg', 10000, 1),
(7762, 254, 131, 'Milton', 10000, 1),
(7764, 254, 131, 'Monticello', 10000, 1),
(7765, 254, 131, 'Moore Haven', 10000, 1),
(7766, 254, 131, 'Naples', 10000, 1),
(7767, 254, 131, 'NASA Shuttle Facility', 10000, 1),
(7768, 254, 131, 'Navarre', 10000, 1),
(7769, 254, 131, 'North Fort Myers', 10000, 1),
(7771, 254, 131, 'North Miami Beach', 10000, 1),
(7772, 254, 131, 'North Port', 10000, 1),
(7773, 254, 131, 'Ocala', 10000, 1),
(7774, 254, 131, 'Okeechobee', 10000, 1),
(7776, 254, 131, 'Orlando', 10000, 1),
(7777, 254, 131, 'Ormond Beach', 10000, 1),
(7778, 254, 131, 'Palatka', 10000, 1),
(7779, 254, 131, 'Palm Bay', 10000, 1),
(7780, 254, 131, 'Palm Beach', 10000, 1),
(7782, 254, 131, 'Palm Coast', 10000, 1),
(7783, 254, 131, 'Palm Harbor', 10000, 1),
(7784, 254, 131, 'Panama City', 10000, 1),
(7785, 254, 131, 'Pembroke Pines', 10000, 1),
(7786, 254, 131, 'Pensacola', 10000, 1),
(7787, 254, 131, 'Perry', 10000, 1),
(7789, 254, 131, 'Pinellas Park', 10000, 1),
(7790, 254, 131, 'Plant City', 10000, 1),
(7792, 254, 131, 'Pompano Beach', 10000, 1),
(7793, 254, 131, 'Ponte Vedra Beach', 10000, 1),
(7794, 254, 131, 'Port Charlotte', 10000, 1),
(7795, 254, 131, 'Port Orange', 10000, 1),
(7797, 254, 131, 'Port St. Lucie', 10000, 1),
(7798, 254, 131, 'Punta Gorda', 10000, 1),
(7799, 254, 131, 'Quincy', 10000, 1),
(7801, 254, 131, 'Ruskin', 10000, 1),
(7802, 254, 131, 'Sanford', 10000, 1),
(7803, 254, 131, 'Sarasota', 10000, 1),
(7804, 254, 131, 'Sebring', 10000, 1),
(7806, 254, 131, 'Spring Hill', 10000, 1),
(7808, 254, 131, 'Starke', 10000, 1),
(7809, 254, 131, 'Stuart', 10000, 1),
(7811, 254, 131, 'Tallahassee', 10000, 1),
(7813, 254, 131, 'Tampa', 10000, 1),
(7814, 254, 131, 'Tavares', 10000, 1),
(7815, 254, 131, 'Tavernier', 10000, 1),
(7816, 254, 131, 'Titusville', 10000, 1),
(7818, 254, 131, 'Trenton', 10000, 1),
(7819, 254, 131, 'Valparaiso', 10000, 1),
(7820, 254, 131, 'Venice', 10000, 1),
(7821, 254, 131, 'Venus', 10000, 1),
(7822, 254, 131, 'Vero Beach', 10000, 1),
(7823, 254, 131, 'Wauchula', 10000, 1),
(7824, 254, 131, 'West Palm Beach', 10000, 1),
(7826, 254, 131, 'Winter Haven', 10000, 1),
(7827, 254, 131, 'Winter Park', 10000, 1),
(7828, 254, 131, 'Winter Springs', 10000, 1),
(7829, 254, 132, 'Abbeville', 10000, 1),
(7830, 254, 132, 'Adel', 10000, 1),
(7831, 254, 132, 'Alamo', 10000, 1),
(7832, 254, 132, 'Albany', 10000, 1),
(7833, 254, 132, 'Alma', 10000, 1),
(7834, 254, 132, 'Alpharetta', 10000, 1),
(7835, 254, 132, 'Americus', 10000, 1),
(7836, 254, 132, 'Appling', 10000, 1),
(7837, 254, 132, 'Ashburn', 10000, 1),
(7838, 254, 132, 'Athens', 10000, 1),
(7839, 254, 132, 'Atlanta', 10000, 1),
(7840, 254, 132, 'Augusta', 10000, 1),
(7841, 254, 132, 'Austell', 10000, 1),
(7842, 254, 132, 'Bainbridge', 10000, 1),
(7843, 254, 132, 'Barnesville', 10000, 1),
(7844, 254, 132, 'Baxley', 10000, 1),
(7845, 254, 132, 'Blackshear', 10000, 1),
(7846, 254, 132, 'Blairsville', 10000, 1),
(7847, 254, 132, 'Blakely', 10000, 1),
(7848, 254, 132, 'Blue Ridge', 10000, 1),
(7849, 254, 132, 'Brunswick', 10000, 1),
(7850, 254, 132, 'Buchanan', 10000, 1),
(7851, 254, 132, 'Buena Vista', 10000, 1),
(7852, 254, 132, 'Butler', 10000, 1),
(7853, 254, 132, 'Cairo', 10000, 1),
(7854, 254, 132, 'Calhoun', 10000, 1),
(7855, 254, 132, 'Canton', 10000, 1),
(7856, 254, 132, 'Carnesville', 10000, 1),
(7857, 254, 132, 'Carrollton', 10000, 1),
(7858, 254, 132, 'Cartersville', 10000, 1),
(7859, 254, 132, 'Cedartown', 10000, 1),
(7860, 254, 132, 'Chatsworth', 10000, 1),
(7861, 254, 132, 'Clarkesville', 10000, 1),
(7862, 254, 132, 'Clayton', 10000, 1),
(7863, 254, 132, 'Cleveland', 10000, 1),
(7864, 254, 132, 'Cochran', 10000, 1),
(7866, 254, 132, 'Colquitt', 10000, 1),
(7867, 254, 132, 'Columbus', 10000, 1),
(7868, 254, 132, 'Conyers', 10000, 1),
(7869, 254, 132, 'Cordele', 10000, 1),
(7870, 254, 132, 'Covington', 10000, 1),
(7871, 254, 132, 'Crawfordville', 10000, 1),
(7872, 254, 132, 'Cumming', 10000, 1),
(7873, 254, 132, 'Cusseta', 10000, 1),
(7874, 254, 132, 'Cuthbert', 10000, 1),
(7875, 254, 132, 'Dahlonega', 10000, 1),
(7876, 254, 132, 'Dallas', 10000, 1),
(7877, 254, 132, 'Dalton', 10000, 1),
(7878, 254, 132, 'Danielsville', 10000, 1),
(7879, 254, 132, 'Darien', 10000, 1),
(7880, 254, 132, 'Dawson', 10000, 1),
(7881, 254, 132, 'Dawsonville', 10000, 1),
(7882, 254, 132, 'Decatur', 10000, 1),
(7883, 254, 132, 'Donalsonville', 10000, 1),
(7884, 254, 132, 'Douglas', 10000, 1),
(7885, 254, 132, 'Douglasville', 10000, 1),
(7886, 254, 132, 'Dublin', 10000, 1),
(7887, 254, 132, 'Duluth', 10000, 1),
(7890, 254, 132, 'Eastman', 10000, 1),
(7891, 254, 132, 'Eatonton', 10000, 1),
(7892, 254, 132, 'Elberton', 10000, 1),
(7893, 254, 132, 'Ellaville', 10000, 1),
(7894, 254, 132, 'Ellijay', 10000, 1),
(7895, 254, 132, 'Fayetteville', 10000, 1),
(7896, 254, 132, 'Fitzgerald', 10000, 1),
(7897, 254, 132, 'Forsyth', 10000, 1),
(7898, 254, 132, 'Fort Benning', 10000, 1),
(7899, 254, 132, 'Fort Gaines', 10000, 1),
(7901, 254, 132, 'Fort Valley', 10000, 1),
(7902, 254, 132, 'Franklin', 10000, 1),
(7903, 254, 132, 'Gainesville', 10000, 1),
(7904, 254, 132, 'Georgetown', 10000, 1),
(7905, 254, 132, 'Gibson', 10000, 1),
(7906, 254, 132, 'Gray', 10000, 1),
(7907, 254, 132, 'Greensboro', 10000, 1),
(7908, 254, 132, 'Greenville', 10000, 1),
(7909, 254, 132, 'Griffin', 10000, 1),
(7910, 254, 132, 'Hagan', 10000, 1),
(7911, 254, 132, 'Hamilton', 10000, 1),
(7912, 254, 132, 'Hartwell', 10000, 1),
(7913, 254, 132, 'Hawkinsville', 10000, 1),
(7914, 254, 132, 'Hazlehurst', 10000, 1),
(7915, 254, 132, 'Hiawassee', 10000, 1),
(7916, 254, 132, 'Hinesville', 10000, 1),
(7917, 254, 132, 'Folkston', 10000, 1),
(7918, 254, 132, 'Homer', 10000, 1),
(7919, 254, 132, 'Irwinton', 10000, 1),
(7920, 254, 132, 'Jackson', 10000, 1),
(7921, 254, 132, 'Jasper', 10000, 1),
(7922, 254, 132, 'Jefferson', 10000, 1),
(7923, 254, 132, 'Jeffersonville', 10000, 1),
(7925, 254, 132, 'Jesup', 10000, 1),
(7926, 254, 132, 'Jonesboro', 10000, 1),
(7927, 254, 131, 'Kings Bay', 10000, 1),
(7928, 254, 132, 'Knoxville', 10000, 1),
(7929, 254, 139, 'La Fayette', 10000, 1),
(7931, 254, 132, 'Lakeland', 10000, 1),
(7932, 254, 132, 'Lawrenceville', 10000, 1),
(7933, 254, 132, 'Leesburg', 10000, 1),
(7934, 254, 132, 'Lexington', 10000, 1),
(7935, 254, 132, 'Lincolntown', 10000, 1),
(7936, 254, 132, 'Lithonia', 10000, 1),
(7938, 254, 132, 'Ludowici', 10000, 1),
(7939, 254, 132, 'Lumpkin', 10000, 1),
(7940, 254, 132, 'Mableton', 10000, 1),
(7941, 254, 132, 'Macon', 10000, 1),
(7942, 254, 132, 'Madison', 10000, 1),
(7943, 254, 132, 'Marietta', 10000, 1),
(7945, 254, 132, 'McDonough', 10000, 1),
(7947, 254, 132, 'Metter', 10000, 1),
(7948, 254, 132, 'Milledgeville', 10000, 1),
(7949, 254, 132, 'Millen', 10000, 1),
(7950, 254, 132, 'Monroe', 10000, 1),
(7951, 254, 132, 'Monticello', 10000, 1),
(7952, 254, 132, 'Morgan', 10000, 1),
(7953, 254, 132, 'Moultrie', 10000, 1),
(7954, 254, 132, 'Mount Vernon', 10000, 1),
(7955, 254, 132, 'Nahunta', 10000, 1),
(7956, 254, 132, 'Nashville', 10000, 1),
(7957, 254, 132, 'Newnan', 10000, 1),
(7958, 254, 132, 'Newton', 10000, 1),
(7959, 254, 132, 'Norcross', 10000, 1),
(7961, 254, 132, 'Ocilla', 10000, 1),
(7962, 254, 132, 'Odum', 10000, 1),
(7963, 254, 132, 'Oglethorpe', 10000, 1),
(7964, 254, 132, 'Peachtree City', 10000, 1),
(7965, 254, 132, 'Pearson', 10000, 1),
(7966, 254, 132, 'Pembroke', 10000, 1),
(7967, 254, 132, 'Perry', 10000, 1),
(7968, 254, 132, 'Preston', 10000, 1),
(7969, 254, 132, 'Quitman', 10000, 1),
(7970, 254, 132, 'Redan', 10000, 1),
(7971, 254, 132, 'Reidsville', 10000, 1),
(7972, 254, 132, 'Ringgold', 10000, 1),
(7973, 254, 132, 'Rome', 10000, 1),
(7974, 254, 132, 'Roswell', 10000, 1),
(7975, 254, 132, 'Sandersville', 10000, 1),
(7976, 254, 132, 'Savannah', 10000, 1),
(7977, 254, 132, 'Smyrna', 10000, 1),
(7978, 254, 132, 'Soperton', 10000, 1),
(7979, 254, 132, 'Sparta', 10000, 1),
(7980, 254, 132, 'Springfield', 10000, 1),
(7982, 254, 132, 'Statenville', 10000, 1),
(7983, 254, 132, 'Statesboro', 10000, 1),
(7984, 254, 132, 'Summerville', 10000, 1),
(7985, 254, 132, 'Swainsboro', 10000, 1),
(7986, 254, 132, 'Sylvania', 10000, 1),
(7987, 254, 132, 'Sylvester', 10000, 1),
(7988, 254, 132, 'Talbotton', 10000, 1),
(7989, 254, 132, 'Thomaston', 10000, 1),
(7990, 254, 132, 'Thomasville', 10000, 1),
(7991, 254, 132, 'Thomson', 10000, 1),
(7992, 254, 132, 'Tifton', 10000, 1),
(7993, 254, 132, 'Toccoa', 10000, 1),
(7994, 254, 132, 'Trenton', 10000, 1),
(7995, 254, 132, 'Tucker', 10000, 1),
(7996, 254, 132, 'Valdosta', 10000, 1),
(7997, 254, 132, 'Vidalia', 10000, 1),
(7998, 254, 132, 'Vienna', 10000, 1),
(7999, 254, 132, 'Warner Robins', 10000, 1),
(8000, 254, 132, 'Warrenton', 10000, 1),
(8001, 254, 132, 'Washington', 10000, 1),
(8002, 254, 132, 'Watkinsville', 10000, 1),
(8003, 254, 132, 'Waycross', 10000, 1),
(8004, 254, 132, 'Waynesboro', 10000, 1),
(8005, 254, 132, 'Winder', 10000, 1),
(8006, 254, 132, 'Woodbine', 10000, 1),
(8007, 254, 132, 'Wrightsville', 10000, 1),
(8008, 254, 133, 'Hilo', 10000, 1),
(8009, 254, 133, 'Kahului', 10000, 1),
(8010, 254, 133, 'Kailua', 10000, 1),
(8012, 254, 133, 'Kaneohe', 10000, 1),
(8013, 254, 133, 'Kaunakakai', 10000, 1),
(8014, 254, 133, 'Lahaina', 10000, 1),
(8015, 254, 133, 'Lanai City', 10000, 1),
(8016, 254, 133, 'Lihue', 10000, 1),
(8018, 254, 133, 'Pearl City', 10000, 1),
(8019, 254, 133, 'Wailuku', 10000, 1),
(8020, 254, 133, 'Waipahu', 10000, 1),
(8021, 254, 137, 'Albia', 10000, 1),
(8022, 254, 137, 'Algona', 10000, 1),
(8023, 254, 137, 'Allison', 10000, 1),
(8024, 254, 137, 'Ames', 10000, 1),
(8025, 254, 137, 'Anamosa', 10000, 1),
(8026, 254, 137, 'Ankeny', 10000, 1),
(8027, 254, 137, 'Atlantic', 10000, 1),
(8028, 254, 137, 'Audubon', 10000, 1),
(8029, 254, 137, 'Bedford', 10000, 1),
(8030, 254, 137, 'Bettendorf', 10000, 1),
(8031, 254, 137, 'Bloomfield', 10000, 1),
(8032, 254, 137, 'Boone', 10000, 1),
(8033, 254, 137, 'Burlington', 10000, 1),
(8034, 254, 137, 'Carroll', 10000, 1),
(8035, 254, 137, 'Cedar Falls', 10000, 1),
(8036, 254, 137, 'Cedar Rapids', 10000, 1),
(8037, 254, 137, 'Centerville', 10000, 1),
(8038, 254, 137, 'Chariton', 10000, 1),
(8039, 254, 137, 'Charles City', 10000, 1),
(8040, 254, 137, 'Cherokee', 10000, 1),
(8041, 254, 137, 'Clarinda', 10000, 1),
(8042, 254, 137, 'Clarion', 10000, 1),
(8043, 254, 137, 'Clear Lake', 10000, 1),
(8044, 254, 137, 'Clinton', 10000, 1),
(8045, 254, 137, 'Corning', 10000, 1),
(8046, 254, 137, 'Corydon', 10000, 1),
(8047, 254, 137, 'Council Bluffs', 10000, 1),
(8048, 254, 137, 'Cresco', 10000, 1),
(8049, 254, 137, 'Creston', 10000, 1),
(8050, 254, 137, 'Davenport', 10000, 1),
(8051, 254, 137, 'Decorah', 10000, 1),
(8052, 254, 137, 'Denison', 10000, 1),
(8053, 254, 137, 'Des Moines', 10000, 1),
(8054, 254, 137, 'Dubuque', 10000, 1),
(8055, 254, 137, 'Elkader', 10000, 1),
(8056, 254, 137, 'Emmetsburg', 10000, 1),
(8057, 254, 137, 'Estherville', 10000, 1),
(8058, 254, 137, 'Fairfield', 10000, 1),
(8059, 254, 137, 'Forest City', 10000, 1),
(8060, 254, 137, 'Fort Dodge', 10000, 1),
(8061, 254, 137, 'Fort Madison', 10000, 1),
(8062, 254, 137, 'Garner', 10000, 1),
(8063, 254, 137, 'Glenwood', 10000, 1),
(8064, 254, 137, 'Greenfield', 10000, 1),
(8065, 254, 137, 'Grundy', 10000, 1),
(8066, 254, 137, 'Guthrie Center', 10000, 1),
(8067, 254, 137, 'Harlan', 10000, 1),
(8068, 254, 137, 'Humboldt', 10000, 1),
(8069, 254, 137, 'Ida Grove', 10000, 1),
(8070, 254, 137, 'Independence', 10000, 1),
(8071, 254, 137, 'Indianola', 10000, 1),
(8072, 254, 137, 'Iowa City', 10000, 1),
(8073, 254, 137, 'Iowa Falls', 10000, 1),
(8074, 254, 137, 'Jefferson', 10000, 1),
(8075, 254, 137, 'Keokuk', 10000, 1),
(8076, 254, 137, 'Keosauqua', 10000, 1),
(8077, 254, 137, 'Kirkville', 10000, 1),
(8078, 254, 137, 'Knoxville', 10000, 1),
(8079, 254, 137, 'Lamoni', 10000, 1),
(8080, 254, 137, 'Le Mars', 10000, 1),
(8081, 254, 137, 'Leon', 10000, 1),
(8082, 254, 137, 'Logan', 10000, 1),
(8083, 254, 137, 'Manchester', 10000, 1),
(8084, 254, 137, 'Maquoketa', 10000, 1),
(8085, 254, 137, 'Marengo', 10000, 1),
(8086, 254, 137, 'Marion', 10000, 1),
(8087, 254, 137, 'Marshalltown', 10000, 1),
(8088, 254, 137, 'Mason City', 10000, 1),
(8089, 254, 137, 'Milford', 10000, 1),
(8090, 254, 137, 'Montezuma', 10000, 1),
(8091, 254, 137, 'Mount Ayr', 10000, 1),
(8092, 254, 137, 'Mount Pleasant', 10000, 1),
(8093, 254, 137, 'Muscatine', 10000, 1),
(8094, 254, 137, 'Nevada', 10000, 1),
(8095, 254, 137, 'New Hampton', 10000, 1),
(8096, 254, 137, 'Newton', 10000, 1),
(8097, 254, 137, 'Northwood', 10000, 1),
(8098, 254, 137, 'Onawa', 10000, 1),
(8099, 254, 137, 'Osage', 10000, 1),
(8100, 254, 137, 'Osceola', 10000, 1),
(8101, 254, 137, 'Oskaloosa', 10000, 1),
(8102, 254, 137, 'Ottumwa', 10000, 1),
(8103, 254, 137, 'Perry', 10000, 1),
(8104, 254, 137, 'Pocahontas', 10000, 1),
(8105, 254, 137, 'Red Oak', 10000, 1),
(8106, 254, 137, 'Rock Rapids', 10000, 1),
(8107, 254, 137, 'Rockwell City', 10000, 1),
(8108, 254, 137, 'Sac City', 10000, 1),
(8109, 254, 137, 'Sanborn', 10000, 1),
(8110, 254, 137, 'Shenandoah', 10000, 1),
(8111, 254, 137, 'Sibley', 10000, 1),
(8112, 254, 137, 'Sigourney', 10000, 1),
(8113, 254, 137, 'Sioux Center', 10000, 1),
(8114, 254, 137, 'Sioux City', 10000, 1),
(8115, 254, 137, 'Spencer', 10000, 1),
(8116, 254, 137, 'Storm Lake', 10000, 1),
(8117, 254, 137, 'Tipton', 10000, 1),
(8118, 254, 137, 'Toledo', 10000, 1),
(8119, 254, 137, 'Urbandale', 10000, 1),
(8120, 254, 137, 'Vinton', 10000, 1),
(8121, 254, 137, 'Wapello', 10000, 1),
(8122, 254, 137, 'Washington', 10000, 1),
(8123, 254, 137, 'Waterloo', 10000, 1),
(8124, 254, 137, 'Waukon', 10000, 1),
(8125, 254, 137, 'Waverly', 10000, 1),
(8126, 254, 137, 'Webster City', 10000, 1),
(8127, 254, 137, 'West Des Moines', 10000, 1),
(8128, 254, 137, 'West Point', 10000, 1),
(8129, 254, 137, 'West Union', 10000, 1),
(8130, 254, 137, 'Winterset', 10000, 1),
(8131, 254, 134, 'Bear Lake', 10000, 1),
(8132, 254, 134, 'Boise', 10000, 1),
(8133, 254, 134, 'Burley', 10000, 1),
(8134, 254, 134, 'Caldwell', 10000, 1),
(8135, 254, 134, 'Challis', 10000, 1),
(8137, 254, 134, 'Eagle', 10000, 1),
(8138, 254, 134, 'Elk City', 10000, 1),
(8139, 254, 134, 'Grace', 10000, 1),
(8140, 254, 134, 'Grangeville', 10000, 1),
(8141, 254, 134, 'Hagerman', 10000, 1),
(8142, 254, 134, 'Hailey', 10000, 1),
(8143, 254, 134, 'Idaho Falls', 10000, 1),
(8144, 254, 134, 'Island Park', 10000, 1),
(8145, 254, 134, 'Jerome', 10000, 1),
(8146, 254, 134, 'Lewiston', 10000, 1),
(8147, 254, 134, 'Malad City', 10000, 1),
(8148, 254, 134, 'Malta', 10000, 1),
(8149, 254, 134, 'McCall', 10000, 1),
(8150, 254, 134, 'Montpelier', 10000, 1),
(8151, 254, 134, 'Moscow', 10000, 1),
(8152, 254, 134, 'Mountain Home', 10000, 1),
(8153, 254, 134, 'Mullan', 10000, 1),
(8154, 254, 134, 'Nampa', 10000, 1),
(8155, 254, 134, 'Orofino', 10000, 1),
(8156, 254, 134, 'Pocatello', 10000, 1),
(8157, 254, 134, 'Rexburg', 10000, 1),
(8158, 254, 134, 'Riggins', 10000, 1),
(8159, 254, 134, 'Salmon', 10000, 1),
(8161, 254, 134, 'Stanley', 10000, 1),
(8162, 254, 134, 'Sun Valley', 10000, 1),
(8163, 254, 134, 'Twin Falls', 10000, 1),
(8164, 254, 135, 'Addison', 10000, 1),
(8165, 254, 135, 'Albion', 10000, 1),
(8166, 254, 135, 'Aledo', 10000, 1),
(8167, 254, 135, 'Alton', 10000, 1),
(8168, 254, 135, 'Anna', 10000, 1),
(8169, 254, 135, 'Arlington Heights', 10000, 1),
(8170, 254, 135, 'Aurora', 10000, 1),
(8171, 254, 135, 'Bartlett', 10000, 1),
(8172, 254, 135, 'Beardstown', 10000, 1),
(8173, 254, 135, 'Belleville', 10000, 1),
(8174, 254, 135, 'Bellwood', 10000, 1),
(8175, 254, 135, 'Belvidere', 10000, 1),
(8176, 254, 135, 'Benton', 10000, 1),
(8177, 254, 135, 'Berwyn', 10000, 1),
(8178, 254, 135, 'Bloomington', 10000, 1),
(8179, 254, 135, 'Blue Island', 10000, 1),
(8180, 254, 135, 'Bolingbrook', 10000, 1),
(8181, 254, 135, 'Buffalo Grove', 10000, 1),
(8182, 254, 135, 'Burbank', 10000, 1),
(8183, 254, 135, 'Cairo', 10000, 1),
(8184, 254, 135, 'Calumet City', 10000, 1),
(8185, 254, 135, 'Carbondale', 10000, 1),
(8186, 254, 135, 'Carlinville', 10000, 1),
(8187, 254, 135, 'Carlyle', 10000, 1),
(8188, 254, 135, 'Carmi', 10000, 1),
(8189, 254, 135, 'Carol Stream', 10000, 1),
(8190, 254, 135, 'Carpentersville', 10000, 1),
(8191, 254, 135, 'Carrollton', 10000, 1),
(8192, 254, 135, 'Carthage', 10000, 1),
(8193, 254, 135, 'Centralia', 10000, 1),
(8194, 254, 135, 'Champaign', 10000, 1),
(8195, 254, 135, 'Charleston', 10000, 1),
(8196, 254, 135, 'Chatham', 10000, 1),
(8197, 254, 135, 'Chester', 10000, 1),
(8198, 254, 135, 'Chicago', 10000, 1),
(8199, 254, 135, 'Chicago Heights', 10000, 1),
(8201, 254, 135, 'Cicero', 10000, 1),
(8202, 254, 135, 'Clinton', 10000, 1),
(8203, 254, 135, 'Collinsville', 10000, 1),
(8204, 254, 135, 'Crystal Lake', 10000, 1),
(8205, 254, 135, 'Danville', 10000, 1),
(8206, 254, 135, 'Darien', 10000, 1),
(8207, 254, 135, 'Decatur', 10000, 1),
(8208, 254, 135, 'Deerfield', 10000, 1),
(8209, 254, 135, 'Dekalb', 10000, 1),
(8210, 254, 135, 'Des Plaines', 10000, 1),
(8211, 254, 135, 'Dixon', 10000, 1),
(8212, 254, 135, 'Dolton', 10000, 1),
(8213, 254, 135, 'Downers Grove', 10000, 1),
(8214, 254, 135, 'Du Quoin', 10000, 1),
(8215, 254, 135, 'East Moline', 10000, 1),
(8216, 254, 135, 'East Peoria', 10000, 1),
(8217, 254, 135, 'East Saint Louis', 10000, 1),
(8218, 254, 135, 'Edwardsville', 10000, 1),
(8219, 254, 135, 'Effingham', 10000, 1),
(8220, 254, 135, 'Eldorado', 10000, 1),
(8221, 254, 135, 'Elgin', 10000, 1),
(8222, 254, 135, 'Elizabethtown', 10000, 1),
(8223, 254, 135, 'Elk Grove Village', 10000, 1),
(8224, 254, 135, 'Elmhurst', 10000, 1),
(8225, 254, 135, 'Elmwood Park', 10000, 1),
(8226, 254, 135, 'Evanston', 10000, 1),
(8227, 254, 135, 'Evergreen Park', 10000, 1),
(8228, 254, 135, 'Fairfield', 10000, 1),
(8229, 254, 135, 'Flora', 10000, 1),
(8230, 254, 135, 'Franklin Park', 10000, 1),
(8231, 254, 135, 'Freeport', 10000, 1),
(8232, 254, 135, 'Galena', 10000, 1),
(8233, 254, 135, 'Galesburg', 10000, 1),
(8234, 254, 135, 'Geneseo', 10000, 1),
(8235, 254, 135, 'Glen Ellyn', 10000, 1),
(8236, 254, 135, 'Glendale Heights', 10000, 1),
(8237, 254, 135, 'Glenview', 10000, 1),
(8238, 254, 135, 'Golconda', 10000, 1),
(8239, 254, 135, 'Goodwine', 10000, 1),
(8240, 254, 135, 'Granite City', 10000, 1),
(8241, 254, 135, 'Greenville', 10000, 1),
(8242, 254, 135, 'Hammond', 10000, 1),
(8243, 254, 135, 'Hardin', 10000, 1),
(8244, 254, 135, 'Harrisburg', 10000, 1),
(8245, 254, 135, 'Harvey', 10000, 1),
(8246, 254, 135, 'Havana', 10000, 1),
(8247, 254, 135, 'Highland Park', 10000, 1),
(8248, 254, 135, 'Hillsboro', 10000, 1),
(8249, 254, 135, 'Hillside', 10000, 1),
(8250, 254, 135, 'Hoffman Estates', 10000, 1),
(8251, 254, 135, 'Homewood', 10000, 1),
(8252, 254, 135, 'Jacksonville', 10000, 1),
(8253, 254, 135, 'Jerseyville', 10000, 1),
(8254, 254, 135, 'Joliet', 10000, 1),
(8255, 254, 135, 'Kankakee', 10000, 1),
(8256, 254, 135, 'Lacon', 10000, 1),
(8257, 254, 135, 'Lansing', 10000, 1),
(8258, 254, 135, 'Lawrenceville', 10000, 1),
(8259, 254, 135, 'Lewistown', 10000, 1),
(8260, 254, 135, 'Libertyville', 10000, 1),
(8261, 254, 135, 'Lisle', 10000, 1),
(8262, 254, 135, 'Litchfield', 10000, 1),
(8263, 254, 135, 'Lombard', 10000, 1),
(8264, 254, 135, 'Machesney Park', 10000, 1),
(8265, 254, 135, 'Marion', 10000, 1),
(8266, 254, 135, 'Marseilles', 10000, 1),
(8267, 254, 135, 'Marshall', 10000, 1),
(8268, 254, 135, 'Mattoon', 10000, 1),
(8269, 254, 135, 'Maywood', 10000, 1),
(8270, 254, 135, 'Mc Leansboro', 10000, 1),
(8271, 254, 135, 'Melrose Park', 10000, 1),
(8272, 254, 135, 'Metropolis', 10000, 1),
(8273, 254, 135, 'Moline', 10000, 1),
(8274, 254, 135, 'Monticello', 10000, 1),
(8275, 254, 135, 'Morris', 10000, 1),
(8276, 254, 135, 'Morton Grove', 10000, 1),
(8277, 254, 135, 'Mound City', 10000, 1),
(8278, 254, 135, 'Mount Carmel', 10000, 1),
(8279, 254, 135, 'Mount Carroll', 10000, 1),
(8280, 254, 135, 'Mount Prospect', 10000, 1),
(8281, 254, 135, 'Mount Sterling', 10000, 1),
(8282, 254, 135, 'Mount Vernon', 10000, 1),
(8283, 254, 135, 'Mundelein', 10000, 1),
(8284, 254, 135, 'Naperville', 10000, 1),
(8285, 254, 135, 'Nashville', 10000, 1),
(8286, 254, 135, 'Newton', 10000, 1),
(8287, 254, 135, 'Niles', 10000, 1),
(8288, 254, 135, 'Normal', 10000, 1),
(8289, 254, 135, 'North Chicago', 10000, 1),
(8290, 254, 135, 'Northbrook', 10000, 1),
(8291, 254, 135, 'Oak Forest', 10000, 1),
(8292, 254, 135, 'Oak Lawn', 10000, 1),
(8293, 254, 135, 'Oak Park', 10000, 1),
(8294, 254, 135, 'Olney', 10000, 1),
(8295, 254, 135, 'Oquawka', 10000, 1),
(8296, 254, 135, 'Orland Park', 10000, 1),
(8297, 254, 135, 'Ottawa', 10000, 1),
(8298, 254, 135, 'Palatine', 10000, 1),
(8299, 254, 135, 'Paris', 10000, 1),
(8300, 254, 135, 'Park Forest', 10000, 1),
(8301, 254, 135, 'Park Ridge', 10000, 1),
(8302, 254, 135, 'Paxton', 10000, 1),
(8303, 254, 135, 'Pekin', 10000, 1),
(8304, 254, 135, 'Peoria', 10000, 1),
(8305, 254, 135, 'Petersburg', 10000, 1),
(8306, 254, 135, 'Pittsfield', 10000, 1),
(8307, 254, 135, 'Plano', 10000, 1),
(8308, 254, 135, 'Pontiac', 10000, 1),
(8309, 254, 135, 'Princeton', 10000, 1),
(8310, 254, 135, 'Quincy', 10000, 1),
(8311, 254, 135, 'Rantoul', 10000, 1),
(8312, 254, 135, 'Roanoke', 10000, 1),
(8313, 254, 135, 'Robinson', 10000, 1),
(8314, 254, 135, 'Rochelle', 10000, 1),
(8315, 254, 135, 'Rock Island', 10000, 1),
(8316, 254, 135, 'Rockford', 10000, 1),
(8317, 254, 135, 'Rolling Meadows', 10000, 1),
(8318, 254, 135, 'Roselle', 10000, 1),
(8319, 254, 135, 'Rosiclare', 10000, 1),
(8320, 254, 135, 'Rushville', 10000, 1),
(8321, 254, 135, 'Salem', 10000, 1),
(8323, 254, 135, 'Schaumburg', 10000, 1),
(8324, 254, 135, 'Shawneetown', 10000, 1),
(8325, 254, 135, 'Shelbyville', 10000, 1),
(8326, 254, 135, 'Skokie', 10000, 1),
(8327, 254, 135, 'South Holland', 10000, 1),
(8328, 254, 135, 'Spring Valley', 10000, 1),
(8329, 254, 135, 'Springfield', 10000, 1),
(8331, 254, 135, 'Sterling', 10000, 1),
(8332, 254, 135, 'Streamwood', 10000, 1),
(8333, 254, 135, 'Sullivan', 10000, 1),
(8334, 254, 135, 'Taylorville', 10000, 1),
(8335, 254, 135, 'Tinley Park', 10000, 1),
(8336, 254, 135, 'Toledo', 10000, 1),
(8337, 254, 135, 'Toulon', 10000, 1),
(8338, 254, 135, 'Tuscola', 10000, 1),
(8340, 254, 135, 'Urbana', 10000, 1),
(8341, 254, 135, 'Vandalia', 10000, 1),
(8342, 254, 135, 'Victoria', 10000, 1),
(8343, 254, 135, 'Vienna', 10000, 1),
(8344, 254, 135, 'Villa Park', 10000, 1),
(8345, 254, 135, 'Waterloo', 10000, 1),
(8346, 254, 135, 'Watseka', 10000, 1),
(8347, 254, 135, 'Waukegan', 10000, 1),
(8348, 254, 135, 'Westmont', 10000, 1),
(8349, 254, 135, 'Wheaton', 10000, 1),
(8350, 254, 135, 'Wheeling', 10000, 1),
(8351, 254, 135, 'Wilmette', 10000, 1),
(8352, 254, 135, 'Winchester', 10000, 1),
(8353, 254, 135, 'Woodridge', 10000, 1),
(8354, 254, 135, 'Woodstock', 10000, 1),
(8355, 254, 135, 'Zion', 10000, 1),
(8356, 254, 136, 'Anderson', 10000, 1),
(8357, 254, 136, 'Angola', 10000, 1),
(8358, 254, 136, 'Auburn', 10000, 1),
(8359, 254, 136, 'Bedford', 10000, 1),
(8360, 254, 136, 'Bloomington', 10000, 1),
(8361, 254, 136, 'Bluffton', 10000, 1),
(8362, 254, 136, 'Boonville', 10000, 1),
(8363, 254, 136, 'Brazil', 10000, 1),
(8364, 254, 136, 'Brookville', 10000, 1),
(8365, 254, 136, 'Brownsburg', 10000, 1),
(8366, 254, 136, 'Brownstown', 10000, 1),
(8367, 254, 136, 'Carmel', 10000, 1),
(8368, 254, 136, 'Charlestown', 10000, 1),
(8369, 254, 136, 'Clarksville', 10000, 1),
(8370, 254, 136, 'Columbia City', 10000, 1),
(8371, 254, 136, 'Columbus', 10000, 1),
(8372, 254, 136, 'Connersville', 10000, 1),
(8373, 254, 136, 'Corydon', 10000, 1),
(8374, 254, 136, 'Crawfordsville', 10000, 1),
(8375, 254, 136, 'Decatur', 10000, 1),
(8376, 254, 136, 'Delphi', 10000, 1),
(8377, 254, 136, 'East Chicago', 10000, 1),
(8378, 254, 136, 'Elkhart', 10000, 1),
(8379, 254, 136, 'English', 10000, 1),
(8380, 254, 136, 'Evansville', 10000, 1),
(8381, 254, 136, 'Fort Wayne', 10000, 1),
(8382, 254, 136, 'Fowler', 10000, 1),
(8383, 254, 136, 'Frankfort', 10000, 1),
(8384, 254, 136, 'Franklin', 10000, 1),
(8385, 254, 136, 'French Lick', 10000, 1),
(8386, 254, 136, 'Gary', 10000, 1),
(8387, 254, 136, 'Goshen', 10000, 1),
(8388, 254, 136, 'Granger', 10000, 1),
(8389, 254, 136, 'Greencastle', 10000, 1),
(8390, 254, 136, 'Greenfield', 10000, 1),
(8391, 254, 136, 'Greensburg', 10000, 1),
(8392, 254, 136, 'Greenwood', 10000, 1),
(8393, 254, 136, 'Hammond', 10000, 1),
(8395, 254, 136, 'Hartford City', 10000, 1),
(8396, 254, 136, 'Highland', 10000, 1),
(8397, 254, 136, 'Hobart', 10000, 1),
(8398, 254, 136, 'Huntington', 10000, 1),
(8399, 254, 136, 'Indianapolis', 10000, 1),
(8400, 254, 136, 'Jasper', 10000, 1),
(8401, 254, 136, 'Jeffersonville', 10000, 1),
(8402, 254, 136, 'Kendallville', 10000, 1),
(8403, 254, 136, 'Kentland', 10000, 1),
(8404, 254, 136, 'Knox', 10000, 1),
(8405, 254, 136, 'Kokomo', 10000, 1),
(8406, 254, 136, 'La Porte', 10000, 1),
(8407, 254, 136, 'Lafayette', 10000, 1),
(8408, 254, 136, 'Lagrange', 10000, 1),
(8410, 254, 136, 'Lawrenceburg', 10000, 1),
(8411, 254, 136, 'Lebanon', 10000, 1),
(8412, 254, 136, 'Liberty', 10000, 1),
(8413, 254, 136, 'Linton', 10000, 1),
(8414, 254, 136, 'Logansport', 10000, 1),
(8415, 254, 136, 'Madison', 10000, 1),
(8416, 254, 136, 'Marion', 10000, 1),
(8417, 254, 136, 'Martinsville', 10000, 1),
(8418, 254, 136, 'Merrillville', 10000, 1),
(8419, 254, 136, 'Michigan City', 10000, 1),
(8420, 254, 136, 'Mishawaka', 10000, 1),
(8421, 254, 136, 'Monticello', 10000, 1),
(8422, 254, 136, 'Mount Vernon', 10000, 1),
(8423, 254, 136, 'Muncie', 10000, 1),
(8424, 254, 136, 'Munster', 10000, 1),
(8425, 254, 136, 'Nashville', 10000, 1),
(8426, 254, 136, 'New Albany', 10000, 1),
(8427, 254, 136, 'New Castle', 10000, 1),
(8428, 254, 136, 'New Goshen', 10000, 1),
(8429, 254, 136, 'Newport', 10000, 1),
(8430, 254, 136, 'Noblesville', 10000, 1),
(8431, 254, 136, 'Osgood', 10000, 1),
(8433, 254, 136, 'Grissom AFB', 10000, 1),
(8434, 254, 136, 'Petersburg', 10000, 1),
(8435, 254, 136, 'Plainfield', 10000, 1),
(8436, 254, 136, 'Plymouth', 10000, 1),
(8437, 254, 136, 'Portage', 10000, 1),
(8439, 254, 136, 'Portland', 10000, 1),
(8440, 254, 136, 'Princeton', 10000, 1),
(8441, 254, 136, 'Rensselaer', 10000, 1),
(8442, 254, 136, 'Richmond', 10000, 1),
(8443, 254, 136, 'Rising Sun', 10000, 1),
(8444, 254, 136, 'Rochester', 10000, 1),
(8445, 254, 136, 'Rockville', 10000, 1),
(8446, 254, 136, 'Rushville', 10000, 1),
(8447, 254, 136, 'Salem', 10000, 1),
(8448, 254, 136, 'Santa Claus', 10000, 1),
(8449, 254, 136, 'Schererville', 10000, 1),
(8450, 254, 136, 'Scottsburg', 10000, 1),
(8451, 254, 136, 'Seymour', 10000, 1),
(8452, 254, 136, 'Shelbyville', 10000, 1),
(8453, 254, 136, 'Shoals', 10000, 1),
(8454, 254, 136, 'South Bend', 10000, 1),
(8455, 254, 136, 'Spencer', 10000, 1),
(8456, 254, 136, 'Sullivan', 10000, 1),
(8457, 254, 136, 'Tell City', 10000, 1),
(8458, 254, 136, 'Terre Haute', 10000, 1),
(8459, 254, 136, 'Tipton', 10000, 1),
(8460, 254, 136, 'Valparaiso', 10000, 1),
(8461, 254, 136, 'Veedersburg', 10000, 1),
(8462, 254, 136, 'Vevay', 10000, 1),
(8463, 254, 136, 'Vincennes', 10000, 1),
(8464, 254, 136, 'Wabash', 10000, 1),
(8465, 254, 136, 'Warsaw', 10000, 1),
(8466, 254, 136, 'Washington', 10000, 1),
(8467, 254, 136, 'West Lafayette', 10000, 1),
(8468, 254, 136, 'Williamsport', 10000, 1),
(8469, 254, 136, 'Winamac', 10000, 1),
(8470, 254, 136, 'Winchester', 10000, 1),
(8471, 254, 138, 'Abilene', 10000, 1),
(8472, 254, 138, 'Anthony', 10000, 1),
(8473, 254, 138, 'Ashland', 10000, 1),
(8474, 254, 138, 'Atchison', 10000, 1),
(8475, 254, 138, 'Atwood', 10000, 1),
(8476, 254, 138, 'Bazaar', 10000, 1),
(8477, 254, 138, 'Belleville', 10000, 1),
(8478, 254, 138, 'Beloit', 10000, 1),
(8479, 254, 138, 'Blue Rapids', 10000, 1),
(8480, 254, 138, 'Burlington', 10000, 1),
(8481, 254, 138, 'Chanute', 10000, 1),
(8482, 254, 138, 'Chase', 10000, 1),
(8483, 254, 138, 'Cimarron', 10000, 1),
(8484, 254, 138, 'Clay Center', 10000, 1),
(8485, 254, 138, 'Colby', 10000, 1),
(8486, 254, 138, 'Coldwater', 10000, 1),
(8487, 254, 138, 'Columbus', 10000, 1),
(8488, 254, 138, 'Concordia', 10000, 1),
(8489, 254, 138, 'Council Grove', 10000, 1),
(8490, 254, 138, 'Dighton', 10000, 1),
(8491, 254, 138, 'Dodge City', 10000, 1),
(8492, 254, 138, 'Edwardsville', 10000, 1),
(8493, 254, 138, 'El Dorado', 10000, 1),
(8494, 254, 138, 'Elkhart', 10000, 1),
(8495, 254, 138, 'Ellsworth', 10000, 1),
(8496, 254, 138, 'Emporia', 10000, 1),
(8497, 254, 138, 'Eureka', 10000, 1),
(8499, 254, 138, 'Fort Scott', 10000, 1),
(8500, 254, 138, 'Fredonia', 10000, 1),
(8501, 254, 138, 'Garden City', 10000, 1),
(8502, 254, 138, 'Garnett', 10000, 1),
(8503, 254, 138, 'Goodland', 10000, 1),
(8504, 254, 138, 'Gove', 10000, 1),
(8505, 254, 138, 'Great Bend', 10000, 1),
(8506, 254, 138, 'Greensburg', 10000, 1),
(8507, 254, 138, 'Hays', 10000, 1),
(8508, 254, 138, 'Hiawatha', 10000, 1),
(8509, 254, 138, 'Hill City', 10000, 1),
(8510, 254, 138, 'Hillsboro', 10000, 1),
(8511, 254, 138, 'Holton', 10000, 1),
(8512, 254, 138, 'Howard', 10000, 1),
(8513, 254, 138, 'Hoxie', 10000, 1),
(8514, 254, 138, 'Hugoton', 10000, 1),
(8515, 254, 138, 'Hutchinson', 10000, 1),
(8516, 254, 138, 'Independence', 10000, 1),
(8517, 254, 138, 'Iola', 10000, 1),
(8518, 254, 138, 'Jetmore', 10000, 1),
(8519, 254, 138, 'Johnson City', 10000, 1),
(8520, 254, 138, 'Junction City', 10000, 1),
(8521, 254, 138, 'Kingman', 10000, 1),
(8522, 254, 138, 'Kinsley', 10000, 1),
(8523, 254, 138, 'La Crosse', 10000, 1),
(8524, 254, 138, 'Lakin', 10000, 1),
(8525, 254, 138, 'Larned', 10000, 1),
(8526, 254, 138, 'Lawrence', 10000, 1),
(8527, 254, 138, 'Leavenworth', 10000, 1),
(8530, 254, 138, 'Leoti', 10000, 1),
(8531, 254, 138, 'Liberal', 10000, 1),
(8532, 254, 138, 'Lincoln', 10000, 1),
(8533, 254, 138, 'Lyndon', 10000, 1),
(8534, 254, 138, 'Lyons', 10000, 1),
(8535, 254, 138, 'Manhattan', 10000, 1),
(8536, 254, 138, 'Mankato', 10000, 1),
(8537, 254, 138, 'Marion', 10000, 1),
(8538, 254, 138, 'Mc Farland', 10000, 1),
(8539, 254, 138, 'McPherson', 10000, 1),
(8540, 254, 138, 'Meade', 10000, 1),
(8541, 254, 138, 'Medicine Lodge', 10000, 1),
(8542, 254, 138, 'Minneapolis', 10000, 1),
(8543, 254, 138, 'Mound City', 10000, 1),
(8544, 254, 138, 'Ness City', 10000, 1),
(8545, 254, 138, 'Newton', 10000, 1),
(8546, 254, 138, 'Norton', 10000, 1),
(8547, 254, 138, 'Oakley', 10000, 1),
(8548, 254, 138, 'Oberlin', 10000, 1),
(8549, 254, 138, 'Olathe', 10000, 1),
(8550, 254, 138, 'Osawatomie', 10000, 1),
(8551, 254, 138, 'Osborne', 10000, 1),
(8552, 254, 138, 'Oswego', 10000, 1),
(8553, 254, 138, 'Ottawa', 10000, 1),
(8554, 254, 138, 'Shawnee Mission', 10000, 1),
(8556, 254, 138, 'Parsons', 10000, 1),
(8557, 254, 138, 'Phillipsburg', 10000, 1),
(8558, 254, 138, 'Pittsburg', 10000, 1),
(8560, 254, 138, 'Pratt', 10000, 1),
(8562, 254, 138, 'Richfield', 10000, 1),
(8563, 254, 138, 'Russell', 10000, 1),
(8564, 254, 138, 'Salina', 10000, 1),
(8565, 254, 138, 'Scott City', 10000, 1),
(8566, 254, 138, 'Sedan', 10000, 1),
(8567, 254, 138, 'Seneca', 10000, 1),
(8568, 254, 138, 'Sharon Springs', 10000, 1),
(8570, 254, 138, 'Smith Center', 10000, 1),
(8571, 254, 138, 'Saint Francis', 10000, 1),
(8572, 254, 138, 'Saint John', 10000, 1),
(8573, 254, 138, 'Stockton', 10000, 1),
(8574, 254, 138, 'Sublette', 10000, 1),
(8575, 254, 138, 'Syracuse', 10000, 1),
(8576, 254, 138, 'Topeka', 10000, 1),
(8577, 254, 138, 'Tribune', 10000, 1),
(8578, 254, 138, 'Troy', 10000, 1),
(8579, 254, 138, 'Ulysses', 10000, 1),
(8580, 254, 138, 'Valley Falls', 10000, 1),
(8581, 254, 138, 'Wa Keeney', 10000, 1),
(8582, 254, 138, 'Washington', 10000, 1),
(8583, 254, 138, 'Wellington', 10000, 1),
(8584, 254, 138, 'Westmoreland', 10000, 1),
(8585, 254, 138, 'Wichita', 10000, 1),
(8586, 254, 138, 'Winfield', 10000, 1),
(8587, 254, 138, 'Yates Center', 10000, 1),
(8588, 254, 139, 'Albany', 10000, 1),
(8589, 254, 139, 'Alexandria', 10000, 1),
(8590, 254, 139, 'Ashland', 10000, 1),
(8591, 254, 139, 'Barbourville', 10000, 1),
(8592, 254, 139, 'Bardstown', 10000, 1),
(8593, 254, 139, 'Bardwell', 10000, 1),
(8594, 254, 139, 'Beattyville', 10000, 1),
(8595, 254, 139, 'Bedford', 10000, 1),
(8596, 254, 139, 'Benton', 10000, 1),
(8597, 254, 139, 'Booneville', 10000, 1),
(8598, 254, 139, 'Bowling Green', 10000, 1),
(8599, 254, 139, 'Brandenburg', 10000, 1),
(8600, 254, 139, 'Brooksville', 10000, 1),
(8601, 254, 139, 'Brownsville', 10000, 1),
(8602, 254, 139, 'Burkesville', 10000, 1),
(8603, 254, 139, 'Cadiz', 10000, 1),
(8604, 254, 139, 'Calhoun', 10000, 1),
(8605, 254, 139, 'Campbellsville', 10000, 1),
(8606, 254, 139, 'Campton', 10000, 1),
(8607, 254, 139, 'Carlisle', 10000, 1),
(8608, 254, 139, 'Carrollton', 10000, 1),
(8609, 254, 139, 'Catlettsburg', 10000, 1),
(8610, 254, 139, 'Clinton', 10000, 1),
(8611, 254, 139, 'Columbia', 10000, 1),
(8612, 254, 139, 'Covington', 10000, 1),
(8613, 254, 139, 'Cynthiana', 10000, 1),
(8614, 254, 139, 'Danville', 10000, 1),
(8615, 254, 139, 'Dixon', 10000, 1),
(8616, 254, 139, 'Eddyville', 10000, 1),
(8617, 254, 139, 'Edmonton', 10000, 1),
(8618, 254, 139, 'Elizabethtown', 10000, 1),
(8619, 254, 139, 'Elkton', 10000, 1),
(8620, 254, 139, 'Falmouth', 10000, 1),
(8621, 254, 139, 'Flemingsburg', 10000, 1),
(8622, 254, 139, 'Florence', 10000, 1),
(8624, 254, 139, 'Frankfort', 10000, 1),
(8625, 254, 139, 'Franklin', 10000, 1),
(8626, 254, 139, 'Frenchburg', 10000, 1),
(8627, 254, 139, 'Georgetown', 10000, 1),
(8628, 254, 139, 'Glasgow', 10000, 1),
(8629, 254, 139, 'Grayson', 10000, 1),
(8630, 254, 139, 'Greensburg', 10000, 1),
(8631, 254, 139, 'Greenup', 10000, 1),
(8632, 254, 139, 'Greenville', 10000, 1),
(8633, 254, 139, 'Hardinsburg', 10000, 1),
(8634, 254, 139, 'Harlan', 10000, 1),
(8635, 254, 139, 'Harrodsburg', 10000, 1),
(8636, 254, 139, 'Hartford', 10000, 1),
(8637, 254, 139, 'Hawesville', 10000, 1),
(8638, 254, 139, 'Henderson', 10000, 1),
(8639, 254, 139, 'Hickman', 10000, 1),
(8641, 254, 139, 'Hindman', 10000, 1),
(8642, 254, 139, 'Hodgenville', 10000, 1),
(8643, 254, 139, 'Hopkinsville', 10000, 1),
(8644, 254, 139, 'Hyden', 10000, 1),
(8645, 254, 139, 'Independence', 10000, 1),
(8646, 254, 139, 'Inez', 10000, 1),
(8647, 254, 139, 'Irvine', 10000, 1),
(8648, 254, 139, 'Jackson', 10000, 1),
(8649, 254, 139, 'Jamestown', 10000, 1),
(8651, 254, 139, 'La Grange', 10000, 1),
(8652, 254, 139, 'Lancaster', 10000, 1),
(8653, 254, 139, 'Lawrenceburg', 10000, 1),
(8654, 254, 139, 'Lebanon', 10000, 1),
(8655, 254, 139, 'Leitchfield', 10000, 1),
(8656, 254, 139, 'Lexington', 10000, 1),
(8657, 254, 139, 'Liberty', 10000, 1),
(8658, 254, 139, 'London', 10000, 1),
(8659, 254, 139, 'Louisa', 10000, 1),
(8660, 254, 139, 'Louisville', 10000, 1),
(8661, 254, 139, 'Madisonville', 10000, 1),
(8663, 254, 139, 'Manchester', 10000, 1),
(8664, 254, 139, 'Marion', 10000, 1),
(8665, 254, 139, 'Mayfield', 10000, 1),
(8666, 254, 139, 'Maysville', 10000, 1),
(8668, 254, 139, 'Middlesboro', 10000, 1),
(8669, 254, 139, 'Monticello', 10000, 1),
(8670, 254, 139, 'Morehead', 10000, 1),
(8671, 254, 139, 'Morganfield', 10000, 1),
(8672, 254, 139, 'Morgantown', 10000, 1),
(8673, 254, 139, 'Mount Olivet', 10000, 1),
(8674, 254, 139, 'Mount Sterling', 10000, 1),
(8675, 254, 139, 'Mount Vernon', 10000, 1),
(8676, 254, 139, 'Munfordville', 10000, 1),
(8677, 254, 139, 'Murray', 10000, 1),
(8678, 254, 139, 'New Castle', 10000, 1),
(8679, 254, 139, 'Newburg', 10000, 1),
(8680, 254, 139, 'Newport', 10000, 1),
(8681, 254, 139, 'Nicholasville', 10000, 1),
(8682, 254, 139, 'Owensboro', 10000, 1),
(8683, 254, 139, 'Owenton', 10000, 1),
(8684, 254, 139, 'Owingsville', 10000, 1),
(8685, 254, 139, 'Paducah', 10000, 1),
(8686, 254, 139, 'Paintsville', 10000, 1),
(8687, 254, 139, 'Paris', 10000, 1),
(8688, 254, 139, 'Pikeville', 10000, 1),
(8689, 254, 139, 'Prestonsburg', 10000, 1),
(8691, 254, 139, 'Princeton', 10000, 1),
(8692, 254, 139, 'Radcliff', 10000, 1),
(8693, 254, 139, 'Richmond', 10000, 1),
(8694, 254, 139, 'Russellville', 10000, 1),
(8695, 254, 139, 'Salyersville', 10000, 1),
(8696, 254, 139, 'Sandy Hook', 10000, 1),
(8697, 254, 139, 'Scottsville', 10000, 1),
(8698, 254, 139, 'Shelbyville', 10000, 1),
(8699, 254, 139, 'Shepherdsville', 10000, 1),
(8700, 254, 139, 'Smithland', 10000, 1),
(8701, 254, 139, 'Somerset', 10000, 1),
(8702, 254, 139, 'Springfield', 10000, 1),
(8703, 254, 139, 'Stanford', 10000, 1),
(8704, 254, 139, 'Stanton', 10000, 1),
(8705, 254, 139, 'Taylorsville', 10000, 1),
(8706, 254, 139, 'Tompkinsville', 10000, 1),
(8708, 254, 139, 'Vanceburg', 10000, 1),
(8709, 254, 139, 'Versailles', 10000, 1),
(8710, 254, 139, 'Warsaw', 10000, 1),
(8711, 254, 139, 'West Liberty', 10000, 1),
(8712, 254, 139, 'Whitesburg', 10000, 1),
(8713, 254, 139, 'Whitley City', 10000, 1),
(8714, 254, 139, 'Wickliffe', 10000, 1),
(8715, 254, 139, 'Williamsburg', 10000, 1),
(8716, 254, 139, 'Williamstown', 10000, 1),
(8717, 254, 139, 'Winchester', 10000, 1),
(8718, 254, 140, 'Abbeville', 10000, 1),
(8719, 254, 140, 'Alexandria', 10000, 1),
(8720, 254, 140, 'Ball', 10000, 1),
(8721, 254, 140, 'Barataria', 10000, 1),
(8722, 254, 140, 'Bastrop', 10000, 1),
(8723, 254, 140, 'Baton Rouge', 10000, 1),
(8724, 254, 140, 'Bogalusa', 10000, 1),
(8725, 254, 140, 'Boothville', 10000, 1),
(8726, 254, 140, 'Bossier City', 10000, 1),
(8727, 254, 140, 'Bunkie', 10000, 1),
(8728, 254, 140, 'Cameron', 10000, 1),
(8729, 254, 140, 'Chalmette', 10000, 1),
(8730, 254, 140, 'Clinton', 10000, 1),
(8731, 254, 140, 'Colfax', 10000, 1),
(8732, 254, 140, 'Columbia', 10000, 1),
(8733, 254, 140, 'Coushatta', 10000, 1),
(8734, 254, 140, 'Crowley', 10000, 1),
(8735, 254, 140, 'Dalcour', 10000, 1),
(8737, 254, 140, 'Donaldsonville', 10000, 1),
(8738, 254, 140, 'Farmerville', 10000, 1),
(8739, 254, 140, 'Fort Polk Aaf', 10000, 1),
(8740, 254, 140, 'Franklin', 10000, 1),
(8741, 254, 140, 'Golden Meadow', 10000, 1),
(8742, 254, 140, 'Gonzales', 10000, 1),
(8743, 254, 140, 'Grambling', 10000, 1),
(8744, 254, 140, 'Greensburg', 10000, 1),
(8745, 254, 140, 'Gretna', 10000, 1),
(8746, 254, 140, 'Hammond', 10000, 1),
(8747, 254, 140, 'Harrisonburg', 10000, 1),
(8748, 254, 140, 'Harvey', 10000, 1),
(8749, 254, 140, 'Homer', 10000, 1),
(8750, 254, 140, 'Houma', 10000, 1),
(8751, 254, 140, 'Jena', 10000, 1),
(8752, 254, 140, 'Jennings', 10000, 1),
(8753, 254, 140, 'Jonesboro', 10000, 1),
(8754, 254, 140, 'Jonesville', 10000, 1),
(8755, 254, 140, 'Kenner', 10000, 1),
(8756, 254, 140, 'Lafayette', 10000, 1),
(8757, 254, 140, 'Lafitte', 10000, 1),
(8758, 254, 140, 'Lake Charles', 10000, 1),
(8759, 254, 140, 'Lake Providence', 10000, 1),
(8760, 254, 140, 'La Place', 10000, 1),
(8761, 254, 140, 'Leesville', 10000, 1),
(8762, 254, 140, 'Livingston', 10000, 1),
(8763, 254, 140, 'Mansfield', 10000, 1),
(8764, 254, 140, 'Many', 10000, 1),
(8765, 254, 140, 'Marksville', 10000, 1),
(8766, 254, 140, 'Marrero', 10000, 1),
(8767, 254, 140, 'Meraux', 10000, 1),
(8768, 254, 140, 'Metairie', 10000, 1),
(8769, 254, 140, 'Monroe', 10000, 1),
(8770, 254, 140, 'Morgan City', 10000, 1),
(8771, 254, 140, 'Napoleonville', 10000, 1),
(8772, 254, 140, 'Natchitoches', 10000, 1),
(8773, 254, 140, 'New Iberia', 10000, 1),
(8774, 254, 140, 'New Orleans', 10000, 1),
(8775, 254, 140, 'New Roads', 10000, 1),
(8776, 254, 140, 'Oak Grove', 10000, 1),
(8777, 254, 140, 'Oakdale', 10000, 1),
(8778, 254, 140, 'Opelousas', 10000, 1),
(8779, 254, 140, 'Pierre Part', 10000, 1),
(8780, 254, 140, 'Pineville', 10000, 1),
(8781, 254, 140, 'Plaquemine', 10000, 1),
(8782, 254, 140, 'Port Allen', 10000, 1),
(8783, 254, 140, 'Port Sulphur', 10000, 1),
(8785, 254, 140, 'Prairieville', 10000, 1),
(8786, 254, 140, 'Rayville', 10000, 1),
(8787, 254, 140, 'Reserve', 10000, 1),
(8788, 254, 140, 'Ruston', 10000, 1),
(8789, 254, 140, 'Shreveport', 10000, 1),
(8790, 254, 140, 'Simsboro', 10000, 1),
(8791, 254, 140, 'Slidell', 10000, 1),
(8792, 254, 140, 'Sorrento', 10000, 1),
(8793, 254, 140, 'Springhill', 10000, 1),
(8794, 254, 140, 'Saint Francisville', 10000, 1),
(8795, 254, 140, 'Saint Joseph', 10000, 1),
(8796, 254, 140, 'Saint Martinville', 10000, 1),
(8797, 254, 140, 'Sulphur', 10000, 1),
(8798, 254, 140, 'Tallulah', 10000, 1),
(8799, 254, 140, 'Thibodaux', 10000, 1),
(8800, 254, 140, 'Tioga', 10000, 1),
(8801, 254, 140, 'Vidalia', 10000, 1),
(8802, 254, 140, 'Ville Platte', 10000, 1),
(8804, 254, 140, 'Winnfield', 10000, 1),
(8805, 254, 140, 'Winnsboro', 10000, 1),
(8806, 254, 143, 'Agawam', 10000, 1),
(8807, 254, 143, 'Amherst', 10000, 1),
(8808, 254, 143, 'Arlington', 10000, 1),
(8809, 254, 143, 'Attleboro', 10000, 1),
(8810, 254, 143, 'Barnstable', 10000, 1),
(8811, 254, 143, 'Bedford', 10000, 1),
(8812, 254, 143, 'Belmont', 10000, 1),
(8813, 254, 143, 'Berkley', 10000, 1),
(8814, 254, 143, 'Beverly', 10000, 1),
(8815, 254, 143, 'Billerica', 10000, 1),
(8816, 254, 143, 'Boston', 10000, 1),
(8817, 254, 143, 'Braintree', 10000, 1),
(8818, 254, 143, 'Bridgewater', 10000, 1),
(8819, 254, 143, 'Brockton', 10000, 1),
(8820, 254, 143, 'Burlington', 10000, 1),
(8821, 254, 143, 'Cambridge', 10000, 1),
(8822, 254, 143, 'Chatham', 10000, 1),
(8823, 254, 143, 'Chelsea', 10000, 1),
(8824, 254, 143, 'Chicopee', 10000, 1),
(8825, 254, 143, 'Chicopee Falls', 10000, 1),
(8826, 254, 143, 'Danvers', 10000, 1),
(8827, 254, 143, 'Dartmouth', 10000, 1),
(8828, 254, 143, 'Dedham', 10000, 1),
(8829, 254, 143, 'Dighton', 10000, 1),
(8831, 254, 143, 'Edgartown', 10000, 1),
(8832, 254, 143, 'Everett', 10000, 1),
(8833, 254, 143, 'Fall River', 10000, 1),
(8834, 254, 143, 'Falmouth', 10000, 1),
(8835, 254, 143, 'Fitchburg', 10000, 1),
(8836, 254, 143, 'Framingham', 10000, 1),
(8837, 254, 143, 'Franklin', 10000, 1),
(8839, 254, 143, 'Gloucester', 10000, 1),
(8840, 254, 143, 'Greenfield', 10000, 1),
(8841, 254, 143, 'Harwich', 10000, 1),
(8842, 254, 143, 'Haverhill', 10000, 1),
(8843, 254, 143, 'Hinsdale', 10000, 1),
(8844, 254, 143, 'Holliston', 10000, 1),
(8845, 254, 143, 'Holyoke', 10000, 1),
(8846, 254, 143, 'Hyannis', 10000, 1),
(8847, 254, 143, 'Hyannis Port', 10000, 1),
(8848, 254, 143, 'Lawrence', 10000, 1),
(8849, 254, 143, 'Leominster', 10000, 1),
(8850, 254, 143, 'Lexington', 10000, 1),
(8851, 254, 143, 'Lowell', 10000, 1),
(8852, 254, 143, 'Lynn', 10000, 1),
(8854, 254, 143, 'Malden', 10000, 1),
(8855, 254, 143, 'Marlborough', 10000, 1),
(8857, 254, 143, 'Medford', 10000, 1),
(8858, 254, 143, 'Melrose', 10000, 1),
(8859, 254, 143, 'Methuen', 10000, 1),
(8860, 254, 143, 'Milford', 10000, 1),
(8861, 254, 143, 'Milton', 10000, 1),
(8862, 254, 143, 'Nantucket', 10000, 1),
(8864, 254, 143, 'Natick', 10000, 1),
(8865, 254, 143, 'Needham', 10000, 1),
(8866, 254, 143, 'New Bedford', 10000, 1),
(8867, 254, 143, 'Newburyport', 10000, 1),
(8868, 254, 143, 'Newton', 10000, 1),
(8869, 254, 143, 'Northampton', 10000, 1),
(8870, 254, 143, 'Norwood', 10000, 1),
(8871, 254, 143, 'Orange', 10000, 1),
(8872, 254, 143, 'Peabody', 10000, 1),
(8873, 254, 143, 'Pittsfield', 10000, 1),
(8874, 254, 143, 'Plymouth', 10000, 1),
(8875, 254, 143, 'Quincy', 10000, 1),
(8876, 254, 143, 'Randolph', 10000, 1),
(8877, 254, 143, 'Reading', 10000, 1),
(8878, 254, 143, 'Revere', 10000, 1),
(8879, 254, 143, 'Salem', 10000, 1),
(8880, 254, 143, 'Saugus', 10000, 1),
(8881, 254, 143, 'Somerset', 10000, 1),
(8882, 254, 143, 'Somerville', 10000, 1),
(8884, 254, 143, 'South Yarmouth', 10000, 1),
(8885, 254, 143, 'Southborough', 10000, 1),
(8886, 254, 143, 'Springfield', 10000, 1),
(8887, 254, 143, 'Stockbridge', 10000, 1),
(8888, 254, 143, 'Stoneham', 10000, 1),
(8889, 254, 143, 'Sturbridge', 10000, 1),
(8890, 254, 143, 'Swansea', 10000, 1),
(8891, 254, 143, 'Taunton', 10000, 1),
(8892, 254, 143, 'Wakefield', 10000, 1),
(8893, 254, 143, 'Waltham', 10000, 1),
(8894, 254, 143, 'Wareham', 10000, 1),
(8895, 254, 143, 'Watertown', 10000, 1),
(8896, 254, 143, 'Wellesley', 10000, 1),
(8897, 254, 143, 'West Springfield', 10000, 1),
(8898, 254, 143, 'Westchester', 10000, 1),
(8899, 254, 143, 'Westfield', 10000, 1),
(8901, 254, 143, 'Winchester', 10000, 1),
(8902, 254, 143, 'Woburn', 10000, 1),
(8903, 254, 143, 'Worcester', 10000, 1),
(8906, 254, 142, 'Andrews Air Force Base', 10000, 1),
(8907, 254, 142, 'Annapolis', 10000, 1),
(8908, 254, 142, 'Arnold', 10000, 1),
(8909, 254, 142, 'Baltimore', 10000, 1),
(8910, 254, 142, 'Barnesville', 10000, 1),
(8911, 254, 142, 'Bethesda', 10000, 1),
(8912, 254, 142, 'Bowie', 10000, 1),
(8913, 254, 142, 'Cambridge', 10000, 1),
(8916, 254, 142, 'Centreville', 10000, 1),
(8917, 254, 142, 'Chesapeake Bay', 10000, 1),
(8918, 254, 142, 'Chesapeake Beach', 10000, 1),
(8919, 254, 142, 'Chestertown', 10000, 1),
(8921, 254, 142, 'Clinton', 10000, 1),
(8922, 254, 142, 'College Park', 10000, 1),
(8923, 254, 142, 'Columbia', 10000, 1),
(8924, 254, 142, 'Cumberland', 10000, 1),
(8926, 254, 142, 'Denton', 10000, 1),
(8927, 254, 142, 'Dundalk', 10000, 1),
(8928, 254, 142, 'Easton', 10000, 1),
(8929, 254, 142, 'Edgewood', 10000, 1),
(8930, 254, 142, 'Elkton', 10000, 1),
(8931, 254, 142, 'Ellicott City', 10000, 1),
(8932, 254, 142, 'Federalsburg', 10000, 1),
(8933, 254, 142, 'District Heights', 10000, 1),
(8934, 254, 142, 'Frederick', 10000, 1),
(8935, 254, 142, 'Gaithersburg', 10000, 1),
(8936, 254, 142, 'Germantown', 10000, 1),
(8937, 254, 142, 'Glen Burnie', 10000, 1),
(8938, 254, 142, 'Greenbelt', 10000, 1),
(8939, 254, 142, 'Hagerstown', 10000, 1),
(8940, 254, 142, 'Hunt Valley', 10000, 1),
(8941, 254, 142, 'Joppatone', 10000, 1),
(8942, 254, 142, 'La Plata', 10000, 1),
(8945, 254, 142, 'Laurel', 10000, 1),
(8947, 254, 142, 'Leonardtown', 10000, 1),
(8948, 254, 142, 'Lexington Park', 10000, 1),
(8949, 254, 142, 'Middle River', 10000, 1),
(8950, 254, 142, 'North Laurel', 10000, 1),
(8951, 254, 142, 'Oakland', 10000, 1),
(8952, 254, 142, 'Ocean City', 10000, 1),
(8953, 254, 142, 'Olney', 10000, 1),
(8954, 254, 142, 'Oxon Hill', 10000, 1),
(8956, 254, 142, 'Perry Hall', 10000, 1),
(8957, 254, 142, 'Perryville', 10000, 1),
(8958, 254, 142, 'Pikesville', 10000, 1),
(8959, 254, 142, 'Pocomoke City', 10000, 1),
(8960, 254, 142, 'Poolesville', 10000, 1),
(8961, 254, 142, 'Potomac', 10000, 1),
(8962, 254, 142, 'Prince Frederick', 10000, 1),
(8963, 254, 142, 'Randallstown', 10000, 1),
(8965, 254, 142, 'Salisbury', 10000, 1),
(8966, 254, 142, 'Severn', 10000, 1),
(8967, 254, 142, 'Severna Park', 10000, 1),
(8968, 254, 142, 'Silver Spring', 10000, 1),
(8969, 254, 142, 'South Laurel', 10000, 1),
(8971, 254, 142, 'Saint Marys City', 10000, 1),
(8972, 254, 142, 'Suitland', 10000, 1),
(8973, 254, 142, 'Sunderland', 10000, 1),
(8974, 254, 142, 'Takoma Park', 10000, 1),
(8975, 254, 142, 'Towson', 10000, 1),
(8976, 254, 142, 'Waldorf', 10000, 1),
(8977, 254, 142, 'Westminster', 10000, 1),
(8979, 254, 142, 'White Oak', 10000, 1),
(8982, 254, 141, 'Auburn', 10000, 1),
(8983, 254, 141, 'Augusta', 10000, 1),
(8984, 254, 141, 'Bangor', 10000, 1),
(8985, 254, 141, 'Bar Harbor', 10000, 1),
(8986, 254, 141, 'Bath', 10000, 1),
(8987, 254, 141, 'Biddeford', 10000, 1),
(8988, 254, 141, 'Brunswick', 10000, 1),
(8989, 254, 141, 'Canton', 10000, 1),
(8990, 254, 141, 'Caribou', 10000, 1),
(8991, 254, 141, 'Casco', 10000, 1),
(8992, 254, 141, 'Clayton Lake', 10000, 1),
(8994, 254, 141, 'East Millinocket', 10000, 1),
(8995, 254, 141, 'Farmington', 10000, 1),
(8996, 254, 141, 'Fort Kent', 10000, 1),
(8997, 254, 141, 'Freeport', 10000, 1),
(8998, 254, 141, 'Greenville', 10000, 1),
(8999, 254, 141, 'Hallowell', 10000, 1),
(9000, 254, 141, 'Houlton', 10000, 1),
(9001, 254, 141, 'Kennebunkport', 10000, 1),
(9002, 254, 141, 'Kingfield', 10000, 1),
(9003, 254, 141, 'Lewiston', 10000, 1),
(9004, 254, 141, 'Limestone Loring AFB', 10000, 1),
(9005, 254, 141, 'Millinocket', 10000, 1),
(9006, 254, 141, 'Newcastle', 10000, 1),
(9007, 254, 141, 'Ogunquit', 10000, 1),
(9008, 254, 141, 'Orono', 10000, 1),
(9010, 254, 141, 'Portland', 10000, 1),
(9011, 254, 141, 'Presque Island', 10000, 1),
(9012, 254, 141, 'Princeton', 10000, 1),
(9013, 254, 141, 'Rumford', 10000, 1),
(9014, 254, 141, 'Sanford', 10000, 1),
(9015, 254, 141, 'South Portland', 10000, 1),
(9017, 254, 141, 'Unity', 10000, 1),
(9018, 254, 141, 'Waterville', 10000, 1),
(9019, 254, 141, 'Wells', 10000, 1),
(9020, 254, 141, 'West Boothbay Harbor', 10000, 1),
(9021, 254, 144, 'Adrian', 10000, 1),
(9022, 254, 144, 'Allen Park', 10000, 1),
(9023, 254, 144, 'Allendale', 10000, 1),
(9024, 254, 144, 'Alma', 10000, 1),
(9025, 254, 144, 'Alpena', 10000, 1),
(9026, 254, 144, 'Ann Arbor', 10000, 1),
(9027, 254, 144, 'Atlanta', 10000, 1),
(9028, 254, 144, 'Auburn Hills', 10000, 1),
(9029, 254, 144, 'Bad Axe', 10000, 1),
(9030, 254, 144, 'Baldwin', 10000, 1);
INSERT INTO `[[dbprefix]]geo_cities` VALUES
(9031, 254, 144, 'Battle Creek', 10000, 1),
(9032, 254, 144, 'Bay City', 10000, 1),
(9033, 254, 144, 'Bellaire', 10000, 1),
(9034, 254, 144, 'Benton Harbor', 10000, 1),
(9035, 254, 144, 'Bessemer', 10000, 1),
(9036, 254, 144, 'Big Rapids', 10000, 1),
(9037, 254, 144, 'Birmingham', 10000, 1),
(9038, 254, 144, 'Boyne Mountain', 10000, 1),
(9039, 254, 144, 'Burton', 10000, 1),
(9040, 254, 144, 'Cadillac', 10000, 1),
(9041, 254, 144, 'Canton', 10000, 1),
(9042, 254, 144, 'Caro', 10000, 1),
(9043, 254, 144, 'Channing', 10000, 1),
(9044, 254, 144, 'Charlevoix', 10000, 1),
(9045, 254, 144, 'Charlotte', 10000, 1),
(9046, 254, 144, 'Cheboygan', 10000, 1),
(9047, 254, 144, 'Clinton', 10000, 1),
(9048, 254, 144, 'Coldwater', 10000, 1),
(9049, 254, 144, 'Crystal Falls', 10000, 1),
(9050, 254, 144, 'Dearborn', 10000, 1),
(9051, 254, 144, 'Dearborn Heights', 10000, 1),
(9052, 254, 144, 'Detroit', 10000, 1),
(9053, 254, 144, 'Dowagiac', 10000, 1),
(9055, 254, 144, 'East Lansing', 10000, 1),
(9056, 254, 144, 'Eastpointe', 10000, 1),
(9058, 254, 144, 'Escanaba', 10000, 1),
(9060, 254, 144, 'Ferndale', 10000, 1),
(9061, 254, 144, 'Flint', 10000, 1),
(9062, 254, 144, 'Frankfort', 10000, 1),
(9063, 254, 144, 'Fremont', 10000, 1),
(9064, 254, 144, 'Garden City', 10000, 1),
(9065, 254, 144, 'Gaylord', 10000, 1),
(9066, 254, 144, 'Gladwin', 10000, 1),
(9067, 254, 144, 'Grand Haven', 10000, 1),
(9068, 254, 144, 'Grand Rapids', 10000, 1),
(9069, 254, 144, 'Grayling', 10000, 1),
(9070, 254, 144, 'Greenville', 10000, 1),
(9071, 254, 144, 'Harrison', 10000, 1),
(9072, 254, 144, 'Harrisville', 10000, 1),
(9073, 254, 144, 'Hart', 10000, 1),
(9074, 254, 144, 'Hastings', 10000, 1),
(9075, 254, 144, 'Hillsdale', 10000, 1),
(9076, 254, 144, 'Holland', 10000, 1),
(9077, 254, 144, 'Houghton', 10000, 1),
(9078, 254, 144, 'Houghton Lake', 10000, 1),
(9079, 254, 144, 'Howell', 10000, 1),
(9080, 254, 144, 'Inkster', 10000, 1),
(9081, 254, 144, 'Ionia', 10000, 1),
(9082, 254, 144, 'Iron Mountain', 10000, 1),
(9083, 254, 144, 'Ironwood', 10000, 1),
(9084, 254, 144, 'Ishpeming', 10000, 1),
(9085, 254, 144, 'Jackson', 10000, 1),
(9086, 254, 144, 'Kalamazoo', 10000, 1),
(9087, 254, 144, 'Kalkaska', 10000, 1),
(9089, 254, 144, 'Lake City', 10000, 1),
(9091, 254, 144, 'Lansing', 10000, 1),
(9092, 254, 144, 'Lapeer', 10000, 1),
(9093, 254, 144, 'Leland', 10000, 1),
(9094, 254, 144, 'Lincoln Park', 10000, 1),
(9095, 254, 144, 'Livonia', 10000, 1),
(9096, 254, 144, 'Ludington', 10000, 1),
(9097, 254, 144, 'Mackinac Island', 10000, 1),
(9098, 254, 144, 'Madison Heights', 10000, 1),
(9099, 254, 144, 'Manistee', 10000, 1),
(9100, 254, 144, 'Manistique', 10000, 1),
(9101, 254, 144, 'Marenisco', 10000, 1),
(9102, 254, 144, 'Marquette', 10000, 1),
(9103, 254, 144, 'Marshall', 10000, 1),
(9104, 254, 144, 'Menominee', 10000, 1),
(9105, 254, 144, 'Midland', 10000, 1),
(9107, 254, 144, 'Mio', 10000, 1),
(9108, 254, 144, 'Monroe', 10000, 1),
(9109, 254, 144, 'Mount Clemens', 10000, 1),
(9110, 254, 144, 'Mount Pleasant', 10000, 1),
(9111, 254, 144, 'Munising', 10000, 1),
(9112, 254, 144, 'Muskegon', 10000, 1),
(9113, 254, 144, 'Newberry', 10000, 1),
(9114, 254, 144, 'Niles', 10000, 1),
(9115, 254, 144, 'Novi', 10000, 1),
(9116, 254, 144, 'Oak Park', 10000, 1),
(9117, 254, 144, 'Okemos', 10000, 1),
(9118, 254, 144, 'Ontonagon', 10000, 1),
(9119, 254, 144, 'Oscoda', 10000, 1),
(9120, 254, 144, 'Owosso', 10000, 1),
(9121, 254, 144, 'Pellston', 10000, 1),
(9122, 254, 144, 'Petoskey', 10000, 1),
(9124, 254, 144, 'Pontiac', 10000, 1),
(9125, 254, 144, 'Port Huron', 10000, 1),
(9126, 254, 144, 'Portage', 10000, 1),
(9127, 254, 144, 'Redford', 10000, 1),
(9128, 254, 144, 'Reed City', 10000, 1),
(9129, 254, 144, 'Rochester', 10000, 1),
(9131, 254, 144, 'Romulus', 10000, 1),
(9132, 254, 144, 'Roscommon', 10000, 1),
(9133, 254, 144, 'Roseville', 10000, 1),
(9134, 254, 144, 'Royal Oak', 10000, 1),
(9135, 254, 144, 'Saginaw', 10000, 1),
(9136, 254, 144, 'Sandusky', 10000, 1),
(9138, 254, 144, 'Sawyer AFB', 10000, 1),
(9139, 254, 144, 'South Haven', 10000, 1),
(9140, 254, 144, 'Southfield', 10000, 1),
(9141, 254, 144, 'Southgate', 10000, 1),
(9143, 254, 144, 'Standish', 10000, 1),
(9144, 254, 144, 'Sterling Heights', 10000, 1),
(9145, 254, 144, 'Tawas City', 10000, 1),
(9146, 254, 144, 'Taylor', 10000, 1),
(9147, 254, 144, 'Three Rivers', 10000, 1),
(9148, 254, 144, 'Traverse City', 10000, 1),
(9150, 254, 144, 'Troy', 10000, 1),
(9151, 254, 144, 'Warren', 10000, 1),
(9153, 254, 144, 'Waterford', 10000, 1),
(9154, 254, 144, 'West Bloomfield', 10000, 1),
(9155, 254, 144, 'Westland', 10000, 1),
(9156, 254, 144, 'White Cloud', 10000, 1),
(9158, 254, 144, 'Wyandotte', 10000, 1),
(9160, 254, 144, 'Ypsilanti', 10000, 1),
(9161, 254, 145, 'Ada', 10000, 1),
(9162, 254, 145, 'Aitkin', 10000, 1),
(9163, 254, 145, 'Albert Lea', 10000, 1),
(9164, 254, 145, 'Alexandria', 10000, 1),
(9166, 254, 145, 'Orr', 10000, 1),
(9167, 254, 145, 'Austin', 10000, 1),
(9168, 254, 145, 'Baudette', 10000, 1),
(9169, 254, 145, 'Bemidji', 10000, 1),
(9170, 254, 145, 'Benson', 10000, 1),
(9171, 254, 145, 'Biwabik', 10000, 1),
(9174, 254, 145, 'Blue Earth', 10000, 1),
(9175, 254, 145, 'Brainerd', 10000, 1),
(9176, 254, 145, 'Breckenridge', 10000, 1),
(9179, 254, 145, 'Buffalo', 10000, 1),
(9180, 254, 145, 'Burnsville', 10000, 1),
(9181, 254, 145, 'Caledonia', 10000, 1),
(9182, 254, 145, 'Cambridge', 10000, 1),
(9183, 254, 145, 'Canby', 10000, 1),
(9185, 254, 145, 'Champlin', 10000, 1),
(9186, 254, 145, 'Chaska', 10000, 1),
(9187, 254, 145, 'Clearwater', 10000, 1),
(9188, 254, 145, 'Cold Spring', 10000, 1),
(9190, 254, 145, 'Cottage Grove', 10000, 1),
(9191, 254, 145, 'Cove', 10000, 1),
(9192, 254, 145, 'Crookston', 10000, 1),
(9193, 254, 145, 'Crosby', 10000, 1),
(9194, 254, 145, 'Minneapolis', 10000, 1),
(9195, 254, 145, 'Deer Creek', 10000, 1),
(9196, 254, 145, 'Detroit Lakes', 10000, 1),
(9197, 254, 145, 'Duluth', 10000, 1),
(9199, 254, 145, 'Eden Prairie', 10000, 1),
(9201, 254, 145, 'Elbow Lake', 10000, 1),
(9202, 254, 145, 'Elk River', 10000, 1),
(9203, 254, 145, 'Ely', 10000, 1),
(9205, 254, 145, 'Fairmont', 10000, 1),
(9206, 254, 145, 'Faribault', 10000, 1),
(9207, 254, 145, 'Federal Dam', 10000, 1),
(9208, 254, 145, 'Fergus Falls', 10000, 1),
(9209, 254, 145, 'Foley', 10000, 1),
(9211, 254, 145, 'Gaylord', 10000, 1),
(9212, 254, 145, 'Finlayson', 10000, 1),
(9213, 254, 145, 'Glenwood', 10000, 1),
(9214, 254, 145, 'Gonvick', 10000, 1),
(9215, 254, 145, 'Grand Marais', 10000, 1),
(9216, 254, 145, 'Grand Rapids', 10000, 1),
(9217, 254, 145, 'Granite Falls', 10000, 1),
(9218, 254, 145, 'Hallock', 10000, 1),
(9219, 254, 145, 'Hibbing', 10000, 1),
(9220, 254, 145, 'Hinckley', 10000, 1),
(9221, 254, 145, 'Hutchinson', 10000, 1),
(9222, 254, 145, 'International Falls', 10000, 1),
(9223, 254, 145, 'Inver Grove Heights', 10000, 1),
(9224, 254, 145, 'Isabella', 10000, 1),
(9225, 254, 145, 'Ivanhoe', 10000, 1),
(9226, 254, 145, 'Jackson', 10000, 1),
(9227, 254, 145, 'Jacobson', 10000, 1),
(9228, 254, 145, 'Lakeville', 10000, 1),
(9229, 254, 145, 'Le Center', 10000, 1),
(9230, 254, 145, 'Lindstrom', 10000, 1),
(9231, 254, 145, 'Litchfield', 10000, 1),
(9232, 254, 145, 'Little Falls', 10000, 1),
(9233, 254, 145, 'Long Prairie', 10000, 1),
(9234, 254, 145, 'Luverne', 10000, 1),
(9235, 254, 145, 'Madison', 10000, 1),
(9236, 254, 145, 'Mahnomen', 10000, 1),
(9237, 254, 145, 'Mankato', 10000, 1),
(9238, 254, 145, 'Mantorville', 10000, 1),
(9239, 254, 145, 'Osseo', 10000, 1),
(9240, 254, 145, 'Mapleton', 10000, 1),
(9241, 254, 145, 'Saint Paul', 10000, 1),
(9242, 254, 145, 'Marshall', 10000, 1),
(9243, 254, 145, 'Millerville', 10000, 1),
(9245, 254, 145, 'Minnetonka', 10000, 1),
(9246, 254, 145, 'Montevideo', 10000, 1),
(9247, 254, 145, 'Monticello', 10000, 1),
(9248, 254, 145, 'Moorhead', 10000, 1),
(9249, 254, 145, 'Mora', 10000, 1),
(9250, 254, 145, 'Morris', 10000, 1),
(9252, 254, 145, 'New Ulm', 10000, 1),
(9254, 254, 145, 'Olivia', 10000, 1),
(9255, 254, 145, 'Ortonville', 10000, 1),
(9256, 254, 145, 'Owatonna', 10000, 1),
(9257, 254, 145, 'Park Rapids', 10000, 1),
(9258, 254, 145, 'Pequot Lakes', 10000, 1),
(9259, 254, 145, 'Pine City', 10000, 1),
(9260, 254, 145, 'Pipestone', 10000, 1),
(9262, 254, 145, 'Preston', 10000, 1),
(9263, 254, 145, 'Red Lake Falls', 10000, 1),
(9264, 254, 145, 'Red Wing', 10000, 1),
(9266, 254, 145, 'Rochester', 10000, 1),
(9267, 254, 145, 'Roseau', 10000, 1),
(9269, 254, 145, 'Seaforth', 10000, 1),
(9270, 254, 145, 'Shakopee', 10000, 1),
(9272, 254, 145, 'Slayton', 10000, 1),
(9273, 254, 145, 'Spring Grove', 10000, 1),
(9275, 254, 145, 'Saint James', 10000, 1),
(9278, 254, 145, 'Saint Peter', 10000, 1),
(9279, 254, 145, 'Kellogg', 10000, 1),
(9280, 254, 145, 'Thief River Falls', 10000, 1),
(9281, 254, 145, 'Tofte', 10000, 1),
(9282, 254, 145, 'Cook', 10000, 1),
(9283, 254, 145, 'Two Harbors', 10000, 1),
(9284, 254, 145, 'Taylors Falls', 10000, 1),
(9285, 254, 145, 'Utica', 10000, 1),
(9286, 254, 145, 'Virginia', 10000, 1),
(9287, 254, 145, 'Wabasha', 10000, 1),
(9288, 254, 145, 'Wadena', 10000, 1),
(9289, 254, 145, 'Wannaska', 10000, 1),
(9290, 254, 145, 'Warren', 10000, 1),
(9291, 254, 145, 'Warroad', 10000, 1),
(9292, 254, 145, 'Waseca', 10000, 1),
(9293, 254, 145, 'Wheaton', 10000, 1),
(9296, 254, 145, 'Willmar', 10000, 1),
(9297, 254, 145, 'Wilmont', 10000, 1),
(9298, 254, 145, 'Windom', 10000, 1),
(9299, 254, 145, 'Winona', 10000, 1),
(9301, 254, 145, 'Worthington', 10000, 1),
(9302, 254, 145, 'Wrenshall', 10000, 1),
(9304, 254, 147, 'Albany', 10000, 1),
(9305, 254, 147, 'Alton', 10000, 1),
(9306, 254, 147, 'Arnold', 10000, 1),
(9307, 254, 147, 'Aurora', 10000, 1),
(9308, 254, 147, 'Ava', 10000, 1),
(9309, 254, 147, 'Ballwin', 10000, 1),
(9310, 254, 147, 'Belton', 10000, 1),
(9311, 254, 147, 'Benton', 10000, 1),
(9312, 254, 147, 'Bethany', 10000, 1),
(9313, 254, 147, 'Blue Springs', 10000, 1),
(9314, 254, 147, 'Boliver', 10000, 1),
(9315, 254, 147, 'Boonville', 10000, 1),
(9316, 254, 147, 'Bowling Green', 10000, 1),
(9317, 254, 147, 'Branson', 10000, 1),
(9318, 254, 147, 'Brookfield', 10000, 1),
(9319, 254, 147, 'Buffalo', 10000, 1),
(9320, 254, 147, 'Butler', 10000, 1),
(9321, 254, 147, 'California', 10000, 1),
(9322, 254, 147, 'Camdenton', 10000, 1),
(9323, 254, 147, 'Cape Girardeau', 10000, 1),
(9324, 254, 147, 'Carrollton', 10000, 1),
(9325, 254, 147, 'Caruthersville', 10000, 1),
(9326, 254, 147, 'Centerville', 10000, 1),
(9327, 254, 147, 'Charleston', 10000, 1),
(9328, 254, 147, 'Chesterfield', 10000, 1),
(9329, 254, 147, 'Chillicothe', 10000, 1),
(9330, 254, 147, 'Sainte Genevieve', 10000, 1),
(9331, 254, 147, 'Clinton', 10000, 1),
(9332, 254, 147, 'Columbia', 10000, 1),
(9333, 254, 147, 'Dexter', 10000, 1),
(9334, 254, 147, 'Doniphan', 10000, 1),
(9335, 254, 147, 'Edina', 10000, 1),
(9336, 254, 147, 'Eminence', 10000, 1),
(9337, 254, 147, 'Farmington', 10000, 1),
(9338, 254, 147, 'Fayette', 10000, 1),
(9340, 254, 147, 'Florissant', 10000, 1),
(9342, 254, 147, 'Fredericktown', 10000, 1),
(9343, 254, 147, 'Fulton', 10000, 1),
(9344, 254, 147, 'Gainesville', 10000, 1),
(9345, 254, 147, 'Galena', 10000, 1),
(9346, 254, 147, 'Gallatin', 10000, 1),
(9348, 254, 147, 'Grandview', 10000, 1),
(9349, 254, 147, 'Grant City', 10000, 1),
(9350, 254, 147, 'Greenfield', 10000, 1),
(9351, 254, 147, 'Greenville', 10000, 1),
(9352, 254, 147, 'Hannibal', 10000, 1),
(9354, 254, 147, 'Hartville', 10000, 1),
(9355, 254, 147, 'Hermann', 10000, 1),
(9356, 254, 147, 'Hermitage', 10000, 1),
(9357, 254, 147, 'Hillsboro', 10000, 1),
(9358, 254, 147, 'Houston', 10000, 1),
(9359, 254, 147, 'Independence', 10000, 1),
(9360, 254, 147, 'Ironton', 10000, 1),
(9361, 254, 147, 'Jefferson City', 10000, 1),
(9362, 254, 147, 'Joplin', 10000, 1),
(9363, 254, 147, 'Kahoka', 10000, 1),
(9364, 254, 147, 'Kansas City', 10000, 1),
(9365, 254, 147, 'Kennett', 10000, 1),
(9366, 254, 147, 'Keytesville', 10000, 1),
(9367, 254, 147, 'Kingston', 10000, 1),
(9368, 254, 147, 'Kirksville', 10000, 1),
(9370, 254, 147, 'Knob Noster', 10000, 1),
(9371, 254, 147, 'Lake Ozark', 10000, 1),
(9372, 254, 147, 'Lamar', 10000, 1),
(9373, 254, 147, 'Lancaster', 10000, 1),
(9374, 254, 147, 'Lebanon', 10000, 1),
(9375, 254, 147, 'Lees Summit', 10000, 1),
(9376, 254, 147, 'Lexington', 10000, 1),
(9377, 254, 147, 'Liberty', 10000, 1),
(9378, 254, 147, 'Linn', 10000, 1),
(9379, 254, 147, 'Linneus', 10000, 1),
(9380, 254, 147, 'Macon', 10000, 1),
(9381, 254, 147, 'Malden', 10000, 1),
(9382, 254, 147, 'Marble Hill', 10000, 1),
(9383, 254, 147, 'Marshall', 10000, 1),
(9384, 254, 147, 'Marshfield', 10000, 1),
(9385, 254, 147, 'Maryland Heights', 10000, 1),
(9386, 254, 147, 'Maryville', 10000, 1),
(9387, 254, 147, 'Maysville', 10000, 1),
(9388, 254, 147, 'Memphis', 10000, 1),
(9389, 254, 147, 'Mexico', 10000, 1),
(9390, 254, 147, 'Milan', 10000, 1),
(9391, 254, 147, 'Moberly', 10000, 1),
(9392, 254, 147, 'Monett', 10000, 1),
(9394, 254, 147, 'Monticello', 10000, 1),
(9395, 254, 147, 'Neosho', 10000, 1),
(9396, 254, 147, 'Nevada', 10000, 1),
(9397, 254, 147, 'New London', 10000, 1),
(9398, 254, 147, 'New Madrid', 10000, 1),
(9401, 254, 147, 'Oregon', 10000, 1),
(9404, 254, 147, 'Palmyra', 10000, 1),
(9405, 254, 147, 'Paris', 10000, 1),
(9406, 254, 147, 'Perryville', 10000, 1),
(9407, 254, 147, 'Pineville', 10000, 1),
(9408, 254, 147, 'Plattsburg', 10000, 1),
(9409, 254, 147, 'Poplar Bluff', 10000, 1),
(9410, 254, 147, 'Potosi', 10000, 1),
(9411, 254, 147, 'Princeton', 10000, 1),
(9412, 254, 147, 'Raymore', 10000, 1),
(9414, 254, 147, 'Richmond', 10000, 1),
(9415, 254, 147, 'Rock Port', 10000, 1),
(9416, 254, 147, 'Rolla', 10000, 1),
(9417, 254, 147, 'Salem', 10000, 1),
(9418, 254, 147, 'Savannah', 10000, 1),
(9419, 254, 147, 'Sedalia', 10000, 1),
(9420, 254, 147, 'Shelbyville', 10000, 1),
(9421, 254, 147, 'Sikeston', 10000, 1),
(9423, 254, 147, 'Spickard', 10000, 1),
(9424, 254, 147, 'Springfield', 10000, 1),
(9427, 254, 147, 'Saint Peters', 10000, 1),
(9428, 254, 147, 'Steelville', 10000, 1),
(9429, 254, 147, 'Stockton', 10000, 1),
(9430, 254, 147, 'Stover', 10000, 1),
(9431, 254, 147, 'Tarkio', 10000, 1),
(9432, 254, 147, 'Trenton', 10000, 1),
(9433, 254, 147, 'Troy', 10000, 1),
(9434, 254, 147, 'Tuscumbia', 10000, 1),
(9435, 254, 147, 'Unionville', 10000, 1),
(9437, 254, 147, 'Van Buren', 10000, 1),
(9438, 254, 147, 'Versailles', 10000, 1),
(9439, 254, 147, 'Vichy', 10000, 1),
(9440, 254, 147, 'Vienna', 10000, 1),
(9441, 254, 147, 'Warrensburg', 10000, 1),
(9442, 254, 147, 'Warrenton', 10000, 1),
(9443, 254, 147, 'Warsaw', 10000, 1),
(9444, 254, 147, 'Washington', 10000, 1),
(9445, 254, 147, 'Waynesville', 10000, 1),
(9446, 254, 147, 'West Plains', 10000, 1),
(9447, 254, 147, 'Weston', 10000, 1),
(9448, 254, 147, 'Willow Springs', 10000, 1),
(9449, 254, 146, 'Aberdeen', 10000, 1),
(9450, 254, 146, 'Ackerman', 10000, 1),
(9451, 254, 146, 'Ashland', 10000, 1),
(9452, 254, 146, 'Batesville', 10000, 1),
(9453, 254, 146, 'Bay Springs', 10000, 1),
(9454, 254, 146, 'Bay Saint. Louis', 10000, 1),
(9455, 254, 146, 'Belzoni', 10000, 1),
(9456, 254, 146, 'Biloxi', 10000, 1),
(9457, 254, 146, 'Booneville', 10000, 1),
(9458, 254, 146, 'Brandon', 10000, 1),
(9459, 254, 146, 'Brookhaven', 10000, 1),
(9460, 254, 146, 'Canton', 10000, 1),
(9461, 254, 146, 'Carrollton', 10000, 1),
(9462, 254, 146, 'Carthage', 10000, 1),
(9463, 254, 146, 'Charleston', 10000, 1),
(9464, 254, 146, 'Clarksdale', 10000, 1),
(9465, 254, 146, 'Cleveland', 10000, 1),
(9466, 254, 146, 'Clinton', 10000, 1),
(9467, 254, 146, 'Coffeeville', 10000, 1),
(9468, 254, 146, 'Collins', 10000, 1),
(9469, 254, 146, 'Columbia', 10000, 1),
(9470, 254, 146, 'Columbus', 10000, 1),
(9472, 254, 146, 'Corinth', 10000, 1),
(9473, 254, 146, 'De Kalb', 10000, 1),
(9474, 254, 146, 'Decatur', 10000, 1),
(9475, 254, 146, 'Fayette', 10000, 1),
(9476, 254, 146, 'Forest', 10000, 1),
(9478, 254, 146, 'Fulton', 10000, 1),
(9479, 254, 146, 'Greenville', 10000, 1),
(9480, 254, 146, 'Greenwood', 10000, 1),
(9481, 254, 146, 'Grenada', 10000, 1),
(9482, 254, 146, 'Gulfport', 10000, 1),
(9483, 254, 146, 'Hattiesburg', 10000, 1),
(9484, 254, 146, 'Hazlehurst', 10000, 1),
(9485, 254, 146, 'Hernando', 10000, 1),
(9486, 254, 146, 'Holly Springs', 10000, 1),
(9487, 254, 146, 'Houston', 10000, 1),
(9488, 254, 146, 'Indianola', 10000, 1),
(9489, 254, 146, 'Iuka', 10000, 1),
(9490, 254, 146, 'Jackson', 10000, 1),
(9491, 254, 146, 'Kosciusko', 10000, 1),
(9492, 254, 146, 'Laurel', 10000, 1),
(9493, 254, 146, 'Leakesville', 10000, 1),
(9494, 254, 146, 'Lexington', 10000, 1),
(9495, 254, 146, 'Liberty', 10000, 1),
(9496, 254, 146, 'Louisville', 10000, 1),
(9497, 254, 146, 'Lucedale', 10000, 1),
(9498, 254, 146, 'Marks', 10000, 1),
(9499, 254, 146, 'Mayersville', 10000, 1),
(9500, 254, 146, 'McComb', 10000, 1),
(9501, 254, 146, 'Meadville', 10000, 1),
(9502, 254, 146, 'Mendenhall', 10000, 1),
(9503, 254, 146, 'Meridian', 10000, 1),
(9504, 254, 146, 'Mississippi State', 10000, 1),
(9505, 254, 146, 'Monticello', 10000, 1),
(9506, 254, 146, 'Natchez', 10000, 1),
(9507, 254, 146, 'New Albany', 10000, 1),
(9508, 254, 146, 'New Augusta', 10000, 1),
(9509, 254, 146, 'Oxford', 10000, 1),
(9510, 254, 146, 'Pascagoula', 10000, 1),
(9511, 254, 146, 'Pearl', 10000, 1),
(9512, 254, 146, 'Philadelphia', 10000, 1),
(9513, 254, 146, 'Picayune', 10000, 1),
(9514, 254, 146, 'Pittsboro', 10000, 1),
(9515, 254, 146, 'Pontotoc', 10000, 1),
(9516, 254, 146, 'Poplarville', 10000, 1),
(9517, 254, 146, 'Port Gibson', 10000, 1),
(9518, 254, 146, 'Prentiss', 10000, 1),
(9519, 254, 146, 'Purvis', 10000, 1),
(9520, 254, 146, 'Quitman', 10000, 1),
(9521, 254, 146, 'Raleigh', 10000, 1),
(9522, 254, 146, 'Ripley', 10000, 1),
(9523, 254, 146, 'Rolling Fork', 10000, 1),
(9524, 254, 146, 'Senatobia', 10000, 1),
(9525, 254, 146, 'Starkville', 10000, 1),
(9526, 254, 146, 'Tunica', 10000, 1),
(9527, 254, 146, 'Tupelo', 10000, 1),
(9528, 254, 146, 'Tylertown', 10000, 1),
(9529, 254, 146, 'Vicksburg', 10000, 1),
(9530, 254, 146, 'Walthall', 10000, 1),
(9531, 254, 146, 'Waynesboro', 10000, 1),
(9532, 254, 146, 'West Point', 10000, 1),
(9533, 254, 146, 'Wiggins', 10000, 1),
(9534, 254, 146, 'Winona', 10000, 1),
(9535, 254, 146, 'Woodville', 10000, 1),
(9536, 254, 146, 'Yazoo City', 10000, 1),
(9537, 254, 148, 'Anaconda', 10000, 1),
(9538, 254, 148, 'Baker', 10000, 1),
(9539, 254, 148, 'Belgrade', 10000, 1),
(9541, 254, 148, 'Big Timber', 10000, 1),
(9542, 254, 148, 'Billings', 10000, 1),
(9543, 254, 148, 'Bozeman', 10000, 1),
(9544, 254, 148, 'Broadus', 10000, 1),
(9545, 254, 148, 'Butte', 10000, 1),
(9546, 254, 148, 'Cut Bank', 10000, 1),
(9547, 254, 148, 'Dillon', 10000, 1),
(9548, 254, 148, 'Drummond', 10000, 1),
(9550, 254, 148, 'Glasgow', 10000, 1),
(9551, 254, 148, 'Glendive', 10000, 1),
(9552, 254, 148, 'Great Falls', 10000, 1),
(9553, 254, 148, 'Hamilton', 10000, 1),
(9554, 254, 148, 'Hardin', 10000, 1),
(9555, 254, 148, 'Harlowton', 10000, 1),
(9556, 254, 148, 'Havre', 10000, 1),
(9557, 254, 148, 'Helena', 10000, 1),
(9558, 254, 148, 'Jordan', 10000, 1),
(9559, 254, 148, 'Kalispell', 10000, 1),
(9560, 254, 148, 'Lewistown', 10000, 1),
(9561, 254, 148, 'Libby', 10000, 1),
(9562, 254, 148, 'Livingston', 10000, 1),
(9563, 254, 148, 'Miles City', 10000, 1),
(9564, 254, 148, 'Missoula', 10000, 1),
(9566, 254, 148, 'Plentywood', 10000, 1),
(9567, 254, 148, 'Polson', 10000, 1),
(9568, 254, 148, 'Red Lodge', 10000, 1),
(9569, 254, 148, 'Roundup', 10000, 1),
(9570, 254, 148, 'Sidney', 10000, 1),
(9571, 254, 148, 'Silver Bow', 10000, 1),
(9572, 254, 148, 'Superior', 10000, 1),
(9573, 254, 148, 'Thompson Falls', 10000, 1),
(9574, 254, 148, 'Wisdom', 10000, 1),
(9575, 254, 148, 'Wolf Point', 10000, 1),
(9576, 254, 155, 'Albemarle', 10000, 1),
(9577, 254, 155, 'Asheboro', 10000, 1),
(9578, 254, 155, 'Asheville', 10000, 1),
(9579, 254, 155, 'Atlantic Beach', 10000, 1),
(9580, 254, 155, 'Bakersville', 10000, 1),
(9582, 254, 155, 'Black Mountain', 10000, 1),
(9583, 254, 155, 'Boone', 10000, 1),
(9584, 254, 155, 'Brevard', 10000, 1),
(9585, 254, 155, 'Bryson City', 10000, 1),
(9586, 254, 155, 'Burgaw', 10000, 1),
(9587, 254, 155, 'Burlington', 10000, 1),
(9588, 254, 155, 'Burnsville', 10000, 1),
(9589, 254, 155, 'Camden', 10000, 1),
(9590, 254, 155, 'Camp Lejeune', 10000, 1),
(9591, 254, 155, 'Cape Hatteras', 10000, 1),
(9592, 254, 155, 'Cary', 10000, 1),
(9593, 254, 155, 'Chapel Hill', 10000, 1),
(9594, 254, 155, 'Charlotte', 10000, 1),
(9595, 254, 155, 'Cherokee', 10000, 1),
(9596, 254, 155, 'Cherry Point', 10000, 1),
(9597, 254, 155, 'Clinton', 10000, 1),
(9598, 254, 155, 'Columbia', 10000, 1),
(9599, 254, 155, 'Columbus', 10000, 1),
(9600, 254, 155, 'Concord', 10000, 1),
(9601, 254, 155, 'Corolla', 10000, 1),
(9602, 254, 155, 'Currituck', 10000, 1),
(9603, 254, 155, 'Danbury', 10000, 1),
(9604, 254, 155, 'Dobson', 10000, 1),
(9606, 254, 155, 'Durham', 10000, 1),
(9607, 254, 155, 'Edenton', 10000, 1),
(9608, 254, 155, 'Elizabeth City', 10000, 1),
(9609, 254, 155, 'Elizabethtown', 10000, 1),
(9610, 254, 155, 'Fayetteville', 10000, 1),
(9611, 254, 155, 'Forest City', 10000, 1),
(9613, 254, 155, 'Franklin', 10000, 1),
(9614, 254, 155, 'Gastonia', 10000, 1),
(9615, 254, 155, 'Gatesville', 10000, 1),
(9616, 254, 155, 'Glenville', 10000, 1),
(9617, 254, 155, 'Goldsboro', 10000, 1),
(9619, 254, 155, 'Greensboro', 10000, 1),
(9620, 254, 155, 'Greenville', 10000, 1),
(9621, 254, 155, 'Halifax', 10000, 1),
(9622, 254, 155, 'Hatteras', 10000, 1),
(9623, 254, 155, 'Havelock', 10000, 1),
(9624, 254, 155, 'Hayesville', 10000, 1),
(9625, 254, 155, 'Hendersonville', 10000, 1),
(9626, 254, 155, 'Hertford', 10000, 1),
(9627, 254, 155, 'Hickory', 10000, 1),
(9628, 254, 155, 'High Point', 10000, 1),
(9629, 254, 155, 'Jacksonville', 10000, 1),
(9630, 254, 155, 'Jefferson', 10000, 1),
(9631, 254, 155, 'Kannapolis', 10000, 1),
(9632, 254, 155, 'Kenansville', 10000, 1),
(9633, 254, 155, 'Kinston', 10000, 1),
(9634, 254, 155, 'Kitty Hawk', 10000, 1),
(9635, 254, 155, 'Laurinburg', 10000, 1),
(9636, 254, 155, 'Lenoir', 10000, 1),
(9637, 254, 155, 'Lexington', 10000, 1),
(9638, 254, 155, 'Lillington', 10000, 1),
(9639, 254, 155, 'Lincolnton', 10000, 1),
(9640, 254, 155, 'Linville', 10000, 1),
(9641, 254, 155, 'Louisburg', 10000, 1),
(9642, 254, 155, 'Lumberton', 10000, 1),
(9643, 254, 155, 'Marion', 10000, 1),
(9644, 254, 155, 'Monroe', 10000, 1),
(9645, 254, 155, 'Morehead City', 10000, 1),
(9647, 254, 155, 'Mount Mitchell', 10000, 1),
(9648, 254, 155, 'Murphy', 10000, 1),
(9649, 254, 155, 'Nags Head', 10000, 1),
(9650, 254, 155, 'Nashville', 10000, 1),
(9651, 254, 155, 'New Bern', 10000, 1),
(9652, 254, 155, 'Newland', 10000, 1),
(9653, 254, 155, 'Oxford', 10000, 1),
(9654, 254, 155, 'Pinehurst', 10000, 1),
(9655, 254, 155, 'Pisgah Forest', 10000, 1),
(9656, 254, 155, 'Pittsboro', 10000, 1),
(9657, 254, 155, 'Plymouth', 10000, 1),
(9658, 254, 155, 'Raeford', 10000, 1),
(9659, 254, 155, 'Reidsville', 10000, 1),
(9660, 254, 155, 'Roanoke Rapids', 10000, 1),
(9661, 254, 155, 'Robbinsville', 10000, 1),
(9662, 254, 155, 'Rockingham', 10000, 1),
(9663, 254, 155, 'Rocky Mount', 10000, 1),
(9664, 254, 155, 'Roxboro', 10000, 1),
(9665, 254, 155, 'Salisbury', 10000, 1),
(9666, 254, 155, 'Sanford', 10000, 1),
(9668, 254, 155, 'Saratoga', 10000, 1),
(9669, 254, 155, 'Selma', 10000, 1),
(9670, 254, 155, 'Shelby', 10000, 1),
(9671, 254, 155, 'Smithfield', 10000, 1),
(9672, 254, 155, 'Snow Hill', 10000, 1),
(9673, 254, 155, 'Southern Pines', 10000, 1),
(9674, 254, 155, 'Sparta', 10000, 1),
(9675, 254, 155, 'Spruce Pine', 10000, 1),
(9676, 254, 155, 'Statesville', 10000, 1),
(9677, 254, 155, 'Stumpy Point', 10000, 1),
(9678, 254, 155, 'Swanquarter', 10000, 1),
(9679, 254, 155, 'Sylva', 10000, 1),
(9680, 254, 155, 'Tarboro', 10000, 1),
(9681, 254, 155, 'Taylorsville', 10000, 1),
(9682, 254, 155, 'Trenton', 10000, 1),
(9683, 254, 155, 'Troy', 10000, 1),
(9684, 254, 155, 'Tryon', 10000, 1),
(9685, 254, 155, 'Wadesboro', 10000, 1),
(9686, 254, 155, 'Walkertown', 10000, 1),
(9687, 254, 155, 'Walnut', 10000, 1),
(9688, 254, 155, 'Warrenton', 10000, 1),
(9689, 254, 155, 'Washington', 10000, 1),
(9690, 254, 155, 'Waynesville', 10000, 1),
(9691, 254, 155, 'Whiteville', 10000, 1),
(9692, 254, 155, 'Wilkesboro', 10000, 1),
(9693, 254, 155, 'Williamston', 10000, 1),
(9694, 254, 155, 'Wilmington', 10000, 1),
(9695, 254, 155, 'Wilson', 10000, 1),
(9696, 254, 155, 'Windsor', 10000, 1),
(9697, 254, 155, 'Winnabow', 10000, 1),
(9698, 254, 155, 'Winston Salem', 10000, 1),
(9699, 254, 155, 'Winton', 10000, 1),
(9700, 254, 155, 'Yadkinville', 10000, 1),
(9701, 254, 155, 'Yanceyville', 10000, 1),
(9702, 254, 156, 'Alexander', 10000, 1),
(9703, 254, 156, 'Amidon', 10000, 1),
(9704, 254, 156, 'Ashley', 10000, 1),
(9705, 254, 156, 'Beach', 10000, 1),
(9706, 254, 156, 'Beulah', 10000, 1),
(9707, 254, 156, 'Bismarck', 10000, 1),
(9708, 254, 156, 'Bottineau', 10000, 1),
(9709, 254, 156, 'Bowbells', 10000, 1),
(9710, 254, 156, 'Bowman', 10000, 1),
(9711, 254, 156, 'Cando', 10000, 1),
(9712, 254, 156, 'Carrington', 10000, 1),
(9713, 254, 156, 'Carson', 10000, 1),
(9714, 254, 156, 'Cavalier', 10000, 1),
(9715, 254, 156, 'Center', 10000, 1),
(9716, 254, 156, 'Cooperstown', 10000, 1),
(9717, 254, 156, 'Crosby', 10000, 1),
(9718, 254, 156, 'Devils Lake', 10000, 1),
(9719, 254, 156, 'Dickinson', 10000, 1),
(9720, 254, 156, 'Ellendale', 10000, 1),
(9721, 254, 156, 'Fargo', 10000, 1),
(9722, 254, 156, 'Fessenden', 10000, 1),
(9723, 254, 156, 'Finley', 10000, 1),
(9724, 254, 156, 'Forman', 10000, 1),
(9725, 254, 156, 'Fort Yates', 10000, 1),
(9726, 254, 156, 'Garrison', 10000, 1),
(9727, 254, 156, 'Grafton', 10000, 1),
(9728, 254, 156, 'Grand Forks', 10000, 1),
(9729, 254, 156, 'Hettinger', 10000, 1),
(9730, 254, 156, 'Hillsboro', 10000, 1),
(9731, 254, 156, 'Jamestown', 10000, 1),
(9733, 254, 156, 'Lakota', 10000, 1),
(9734, 254, 156, 'Langdon', 10000, 1),
(9735, 254, 156, 'Lidgerwood', 10000, 1),
(9736, 254, 156, 'Linton', 10000, 1),
(9737, 254, 156, 'Lisbon', 10000, 1),
(9738, 254, 156, 'Mandan', 10000, 1),
(9739, 254, 156, 'Manning', 10000, 1),
(9740, 254, 156, 'McClusky', 10000, 1),
(9742, 254, 156, 'Minot', 10000, 1),
(9743, 254, 156, 'Mohall', 10000, 1),
(9744, 254, 156, 'Mott', 10000, 1),
(9745, 254, 156, 'Napoleon', 10000, 1),
(9746, 254, 156, 'New Rockford', 10000, 1),
(9747, 254, 156, 'Petersburg', 10000, 1),
(9748, 254, 156, 'Rolla', 10000, 1),
(9749, 254, 156, 'Rugby', 10000, 1),
(9750, 254, 156, 'Sherwood', 10000, 1),
(9751, 254, 156, 'Stanley', 10000, 1),
(9752, 254, 156, 'Steele', 10000, 1),
(9753, 254, 156, 'Towner', 10000, 1),
(9754, 254, 156, 'Valley City', 10000, 1),
(9755, 254, 156, 'Wahpeton', 10000, 1),
(9756, 254, 156, 'Washburn', 10000, 1),
(9757, 254, 156, 'Watford City', 10000, 1),
(9758, 254, 156, 'Williston', 10000, 1),
(9759, 254, 149, 'Ainsworth', 10000, 1),
(9760, 254, 149, 'Albion', 10000, 1),
(9761, 254, 149, 'Alliance', 10000, 1),
(9762, 254, 149, 'Alma', 10000, 1),
(9763, 254, 149, 'Arthur', 10000, 1),
(9764, 254, 149, 'Auburn', 10000, 1),
(9765, 254, 149, 'Aurora', 10000, 1),
(9766, 254, 149, 'Bartlett', 10000, 1),
(9767, 254, 149, 'Bassett', 10000, 1),
(9768, 254, 149, 'Beatrice', 10000, 1),
(9769, 254, 149, 'Beaver City', 10000, 1),
(9770, 254, 149, 'Bellevue', 10000, 1),
(9771, 254, 149, 'Benkelman', 10000, 1),
(9772, 254, 149, 'Blair', 10000, 1),
(9773, 254, 149, 'Bloomfield', 10000, 1),
(9774, 254, 149, 'Brewster', 10000, 1),
(9775, 254, 149, 'Bridgeport', 10000, 1),
(9776, 254, 149, 'Broken Bow', 10000, 1),
(9777, 254, 149, 'Butte', 10000, 1),
(9778, 254, 149, 'Central City', 10000, 1),
(9779, 254, 149, 'Chadron', 10000, 1),
(9780, 254, 149, 'Chappell', 10000, 1),
(9781, 254, 149, 'Clay Center', 10000, 1),
(9782, 254, 149, 'Columbus', 10000, 1),
(9783, 254, 149, 'Crete', 10000, 1),
(9784, 254, 149, 'Dakota City', 10000, 1),
(9785, 254, 149, 'David City', 10000, 1),
(9786, 254, 149, 'Elwood', 10000, 1),
(9787, 254, 149, 'Fairbury', 10000, 1),
(9788, 254, 149, 'Falls City', 10000, 1),
(9789, 254, 149, 'Franklin', 10000, 1),
(9790, 254, 149, 'Fremont', 10000, 1),
(9791, 254, 149, 'Fullerton', 10000, 1),
(9792, 254, 149, 'Geneva', 10000, 1),
(9793, 254, 149, 'Grand Island', 10000, 1),
(9794, 254, 149, 'Grant', 10000, 1),
(9795, 254, 149, 'Greeley', 10000, 1),
(9796, 254, 149, 'Harrisburg', 10000, 1),
(9797, 254, 149, 'Harrison', 10000, 1),
(9798, 254, 149, 'Hartington', 10000, 1),
(9799, 254, 149, 'Hastings', 10000, 1),
(9800, 254, 149, 'Hayes Center', 10000, 1),
(9801, 254, 149, 'Hebron', 10000, 1),
(9802, 254, 149, 'Holdrege', 10000, 1),
(9803, 254, 149, 'Hyannis', 10000, 1),
(9804, 254, 149, 'Imperial', 10000, 1),
(9805, 254, 149, 'Kearney', 10000, 1),
(9806, 254, 149, 'Kimball', 10000, 1),
(9807, 254, 149, 'Lexington', 10000, 1),
(9808, 254, 149, 'Lincoln', 10000, 1),
(9809, 254, 149, 'Loup City', 10000, 1),
(9811, 254, 149, 'Mc Cook', 10000, 1),
(9812, 254, 149, 'Minden', 10000, 1),
(9813, 254, 149, 'Mullen', 10000, 1),
(9814, 254, 149, 'Nebraska City', 10000, 1),
(9815, 254, 149, 'Neligh', 10000, 1),
(9816, 254, 149, 'Nelson', 10000, 1),
(9817, 254, 149, 'Norfolk', 10000, 1),
(9818, 254, 149, 'North Platte', 10000, 1),
(9819, 254, 149, 'Ogallala', 10000, 1),
(9822, 254, 149, 'Ord', 10000, 1),
(9823, 254, 149, 'Osceola', 10000, 1),
(9824, 254, 149, 'Oshkosh', 10000, 1),
(9825, 254, 149, 'Papillion', 10000, 1),
(9826, 254, 149, 'Pawnee City', 10000, 1),
(9827, 254, 149, 'Pierce', 10000, 1),
(9828, 254, 149, 'Plattsmouth', 10000, 1),
(9829, 254, 149, 'Ponca', 10000, 1),
(9830, 254, 149, 'Red Cloud', 10000, 1),
(9831, 254, 149, 'Rushville', 10000, 1),
(9832, 254, 149, 'Schuyler', 10000, 1),
(9833, 254, 149, 'Scottsbluff', 10000, 1),
(9834, 254, 149, 'Seward', 10000, 1),
(9835, 254, 149, 'Sidney', 10000, 1),
(9836, 254, 149, 'Springview', 10000, 1),
(9838, 254, 149, 'Stanton', 10000, 1),
(9839, 254, 149, 'Stapleton', 10000, 1),
(9840, 254, 149, 'Stockville', 10000, 1),
(9841, 254, 149, 'Taylor', 10000, 1),
(9842, 254, 149, 'Tecumseh', 10000, 1),
(9843, 254, 149, 'Tekamah', 10000, 1),
(9844, 254, 149, 'Thedford', 10000, 1),
(9845, 254, 149, 'Trenton', 10000, 1),
(9846, 254, 149, 'Tryon', 10000, 1),
(9847, 254, 149, 'Valentine', 10000, 1),
(9848, 254, 149, 'Wahoo', 10000, 1),
(9849, 254, 149, 'Wayne', 10000, 1),
(9850, 254, 149, 'West Point', 10000, 1),
(9851, 254, 149, 'Winnebago', 10000, 1),
(9852, 254, 149, 'York', 10000, 1),
(9853, 254, 151, 'Berlin', 10000, 1),
(9854, 254, 151, 'Claremont', 10000, 1),
(9855, 254, 151, 'Concord', 10000, 1),
(9857, 254, 151, 'Dover', 10000, 1),
(9859, 254, 151, 'Hanover', 10000, 1),
(9860, 254, 151, 'Happy Corner', 10000, 1),
(9861, 254, 151, 'Jackson', 10000, 1),
(9862, 254, 151, 'Jaffrey', 10000, 1),
(9863, 254, 151, 'Keene', 10000, 1),
(9864, 254, 151, 'Laconia', 10000, 1),
(9865, 254, 151, 'Lebanon', 10000, 1),
(9866, 254, 151, 'Lincoln', 10000, 1),
(9867, 254, 151, 'Littleton', 10000, 1),
(9868, 254, 151, 'Manchester', 10000, 1),
(9869, 254, 151, 'Nashua', 10000, 1),
(9870, 254, 151, 'Plymouth', 10000, 1),
(9871, 254, 151, 'Portsmouth', 10000, 1),
(9872, 254, 151, 'Rochester', 10000, 1),
(9873, 254, 151, 'Salem', 10000, 1),
(9875, 254, 151, 'Water Village', 10000, 1),
(9876, 254, 152, 'Asbury Park', 10000, 1),
(9877, 254, 152, 'Atlantic City', 10000, 1),
(9878, 254, 152, 'Avalon', 10000, 1),
(9879, 254, 152, 'Barnegat', 10000, 1),
(9880, 254, 152, 'Barneget Lighthouse', 10000, 1),
(9881, 254, 152, 'Bayonne', 10000, 1),
(9882, 254, 152, 'Belleville', 10000, 1),
(9883, 254, 152, 'Belmar', 10000, 1),
(9884, 254, 152, 'Bergenfield', 10000, 1),
(9885, 254, 152, 'Bloomfield', 10000, 1),
(9887, 254, 152, 'Bridgeton', 10000, 1),
(9888, 254, 152, 'Caldwell', 10000, 1),
(9889, 254, 152, 'Camden', 10000, 1),
(9890, 254, 152, 'Cape May', 10000, 1),
(9891, 254, 152, 'Cherry Hill', 10000, 1),
(9892, 254, 152, 'Cliffside Park', 10000, 1),
(9893, 254, 152, 'Clifton', 10000, 1),
(9894, 254, 152, 'Cranford', 10000, 1),
(9895, 254, 152, 'East Brunswick Towns', 10000, 1),
(9896, 254, 152, 'East Orange', 10000, 1),
(9899, 254, 152, 'Elizabeth', 10000, 1),
(9900, 254, 152, 'Englewood', 10000, 1),
(9901, 254, 152, 'Trenton', 10000, 1),
(9902, 254, 152, 'Fair Lawn', 10000, 1),
(9903, 254, 152, 'Fairfield', 10000, 1),
(9904, 254, 152, 'Fairton', 10000, 1),
(9906, 254, 152, 'Fort Lee', 10000, 1),
(9907, 254, 152, 'Franklin', 10000, 1),
(9908, 254, 152, 'Freehold', 10000, 1),
(9909, 254, 152, 'Garfield', 10000, 1),
(9910, 254, 152, 'Glassboro', 10000, 1),
(9911, 254, 152, 'Hackensack', 10000, 1),
(9912, 254, 152, 'Hammonton', 10000, 1),
(9913, 254, 152, 'Hazlet', 10000, 1),
(9915, 254, 152, 'Hillside', 10000, 1),
(9916, 254, 152, 'Hoboken', 10000, 1),
(9917, 254, 152, 'Hopatcong', 10000, 1),
(9918, 254, 152, 'Irvington', 10000, 1),
(9919, 254, 152, 'Jackson', 10000, 1),
(9920, 254, 152, 'Jersey City', 10000, 1),
(9922, 254, 152, 'Lakehurst', 10000, 1),
(9923, 254, 152, 'Lakewood', 10000, 1),
(9924, 254, 152, 'Linden', 10000, 1),
(9925, 254, 152, 'Livingston', 10000, 1),
(9926, 254, 152, 'Lodi', 10000, 1),
(9927, 254, 152, 'Long Branch', 10000, 1),
(9928, 254, 152, 'Mahwah', 10000, 1),
(9929, 254, 152, 'Manahawkin', 10000, 1),
(9930, 254, 152, 'Maplewood', 10000, 1),
(9931, 254, 152, 'Mays Landing', 10000, 1),
(9932, 254, 152, 'Medford', 10000, 1),
(9933, 254, 152, 'Middletown Township', 10000, 1),
(9934, 254, 152, 'Milford', 10000, 1),
(9935, 254, 152, 'Millville', 10000, 1),
(9936, 254, 152, 'Montclair', 10000, 1),
(9937, 254, 152, 'Montvale', 10000, 1),
(9938, 254, 152, 'Morris Plains', 10000, 1),
(9939, 254, 152, 'Morristown', 10000, 1),
(9940, 254, 152, 'Mount Arlington', 10000, 1),
(9941, 254, 152, 'Tuckerton', 10000, 1),
(9942, 254, 152, 'New Brunswick', 10000, 1),
(9943, 254, 152, 'Newton', 10000, 1),
(9944, 254, 152, 'North Bergen', 10000, 1),
(9945, 254, 152, 'Nutley', 10000, 1),
(9946, 254, 152, 'Ocean City', 10000, 1),
(9947, 254, 152, 'Old Bridge', 10000, 1),
(9948, 254, 152, 'Old Bridge Township', 10000, 1),
(9949, 254, 152, 'Orange', 10000, 1),
(9950, 254, 152, 'Paramus', 10000, 1),
(9951, 254, 152, 'Park Ridge', 10000, 1),
(9952, 254, 152, 'Parsippany', 10000, 1),
(9953, 254, 152, 'Passaic', 10000, 1),
(9954, 254, 152, 'Paterson', 10000, 1),
(9955, 254, 152, 'Paulsboro', 10000, 1),
(9956, 254, 152, 'Penns Grove', 10000, 1),
(9957, 254, 152, 'Perth Amboy', 10000, 1),
(9958, 254, 152, 'Phillipsburg', 10000, 1),
(9959, 254, 152, 'Piscataway', 10000, 1),
(9960, 254, 152, 'Plainfield', 10000, 1),
(9961, 254, 152, 'Point Pleasant Beach', 10000, 1),
(9962, 254, 152, 'Princeton', 10000, 1),
(9963, 254, 152, 'Rahway', 10000, 1),
(9964, 254, 152, 'Ridgewood', 10000, 1),
(9965, 254, 152, 'Rockaway', 10000, 1),
(9966, 254, 152, 'Roselle', 10000, 1),
(9967, 254, 152, 'Sayreville', 10000, 1),
(9968, 254, 152, 'Scotch Plains', 10000, 1),
(9970, 254, 152, 'Seaside Heights', 10000, 1),
(9971, 254, 152, 'Secaucus', 10000, 1),
(9972, 254, 152, 'Beach Haven', 10000, 1),
(9973, 254, 152, 'Somerset', 10000, 1),
(9974, 254, 152, 'Somerville', 10000, 1),
(9975, 254, 152, 'South Plainfield', 10000, 1),
(9976, 254, 152, 'Sparta', 10000, 1),
(9977, 254, 152, 'Spring Lake', 10000, 1),
(9978, 254, 152, 'Summit', 10000, 1),
(9979, 254, 152, 'Sussex', 10000, 1),
(9980, 254, 152, 'Teaneck', 10000, 1),
(9981, 254, 152, 'Teterboro', 10000, 1),
(9982, 254, 152, 'Toms River', 10000, 1),
(9984, 254, 152, 'Union City', 10000, 1),
(9986, 254, 152, 'Vernon', 10000, 1),
(9988, 254, 152, 'Vineland', 10000, 1),
(9989, 254, 152, 'Washington', 10000, 1),
(9991, 254, 152, 'West Milford', 10000, 1),
(9992, 254, 152, 'West New York', 10000, 1),
(9993, 254, 152, 'West Orange', 10000, 1),
(9994, 254, 152, 'Westfield', 10000, 1),
(9995, 254, 152, 'Whippany', 10000, 1),
(9996, 254, 152, 'Wildwood', 10000, 1),
(9997, 254, 152, 'Willingboro', 10000, 1),
(9998, 254, 152, 'Woodbridge', 10000, 1),
(9999, 254, 152, 'Woodbury', 10000, 1),
(10000, 254, 152, 'Wrightstown', 10000, 1),
(10001, 254, 153, 'Alamogordo', 10000, 1),
(10002, 254, 153, 'Albuquerque', 10000, 1),
(10003, 254, 153, 'Carrizozo', 10000, 1),
(10004, 254, 153, 'Angel Fire', 10000, 1),
(10005, 254, 153, 'Artesia', 10000, 1),
(10006, 254, 153, 'Belen', 10000, 1),
(10007, 254, 153, 'Bernalillo', 10000, 1),
(10008, 254, 153, 'Carlsbad', 10000, 1),
(10010, 254, 153, 'Cedarvale', 10000, 1),
(10011, 254, 153, 'Chama', 10000, 1),
(10012, 254, 153, 'Clayton', 10000, 1),
(10013, 254, 153, 'Cloudcroft', 10000, 1),
(10014, 254, 153, 'Clovis', 10000, 1),
(10015, 254, 153, 'Crownpoint', 10000, 1),
(10016, 254, 153, 'Deming', 10000, 1),
(10017, 254, 153, 'Dona Ana', 10000, 1),
(10018, 254, 153, 'Pinon', 10000, 1),
(10019, 254, 153, 'Escabosa', 10000, 1),
(10020, 254, 153, 'Farmington', 10000, 1),
(10021, 254, 153, 'Fort Sumner', 10000, 1),
(10022, 254, 153, 'Gallup', 10000, 1),
(10023, 254, 153, 'Grants', 10000, 1),
(10024, 254, 153, 'Grenville', 10000, 1),
(10025, 254, 153, 'Hobbs', 10000, 1),
(10026, 254, 153, 'Las Cruces', 10000, 1),
(10027, 254, 153, 'Las Vegas', 10000, 1),
(10028, 254, 153, 'Lordsburg', 10000, 1),
(10029, 254, 153, 'Los Alamos', 10000, 1),
(10030, 254, 153, 'Los Lunas', 10000, 1),
(10031, 254, 153, 'Luna', 10000, 1),
(10032, 254, 153, 'Mosquero', 10000, 1),
(10033, 254, 153, 'Portales', 10000, 1),
(10034, 254, 153, 'Raton', 10000, 1),
(10035, 254, 153, 'Red River', 10000, 1),
(10036, 254, 153, 'Reserve', 10000, 1),
(10037, 254, 153, 'Rio Rancho', 10000, 1),
(10038, 254, 153, 'Roswell', 10000, 1),
(10039, 254, 153, 'Ruidoso', 10000, 1),
(10040, 254, 153, 'Santa Fe', 10000, 1),
(10041, 254, 153, 'Santa Rosa', 10000, 1),
(10042, 254, 153, 'Santo Domingo Pueblo', 10000, 1),
(10043, 254, 153, 'Shiprock', 10000, 1),
(10044, 254, 153, 'Silver City', 10000, 1),
(10045, 254, 153, 'Socorro', 10000, 1),
(10047, 254, 153, 'Taos', 10000, 1),
(10049, 254, 153, 'Tucumcari', 10000, 1),
(10050, 254, 153, 'Wagon Mound', 10000, 1),
(10051, 254, 153, 'Williamsburg', 10000, 1),
(10052, 254, 153, 'Zuni', 10000, 1),
(10053, 254, 150, 'Austin', 10000, 1),
(10054, 254, 150, 'Battle Mountain', 10000, 1),
(10055, 254, 150, 'Caliente', 10000, 1),
(10056, 254, 150, 'Carson City', 10000, 1),
(10057, 254, 150, 'Elko', 10000, 1),
(10058, 254, 150, 'Ely', 10000, 1),
(10059, 254, 150, 'Eureka', 10000, 1),
(10060, 254, 150, 'Fallon', 10000, 1),
(10061, 254, 150, 'Fernley', 10000, 1),
(10062, 254, 150, 'Gardnerville', 10000, 1),
(10063, 254, 150, 'Hawthorne', 10000, 1),
(10064, 254, 150, 'Henderson', 10000, 1),
(10065, 254, 150, 'Incline Village', 10000, 1),
(10066, 254, 150, 'Jackpot', 10000, 1),
(10068, 254, 150, 'Las Vegas', 10000, 1),
(10069, 254, 150, 'Laughlin', 10000, 1),
(10070, 254, 150, 'Lovelock', 10000, 1),
(10071, 254, 150, 'Mc Dermitt', 10000, 1),
(10072, 254, 150, 'Mercury', 10000, 1),
(10073, 254, 150, 'Mesquite', 10000, 1),
(10075, 254, 150, 'North Las Vegas', 10000, 1),
(10076, 254, 150, 'Orovada', 10000, 1),
(10078, 254, 150, 'Reno', 10000, 1),
(10079, 254, 150, 'Sparks', 10000, 1),
(10080, 254, 150, 'Stateline', 10000, 1),
(10082, 254, 150, 'Tonopah', 10000, 1),
(10083, 254, 150, 'Virginia City', 10000, 1),
(10084, 254, 150, 'West Wendover', 10000, 1),
(10085, 254, 134, 'Wildhorse', 10000, 1),
(10086, 254, 150, 'Winnemucca', 10000, 1),
(10087, 254, 150, 'Yerington', 10000, 1),
(10088, 254, 154, 'Adams', 10000, 1),
(10089, 254, 154, 'Albany', 10000, 1),
(10090, 254, 154, 'Albion', 10000, 1),
(10091, 254, 154, 'Amityville', 10000, 1),
(10092, 254, 154, 'Amsterdam', 10000, 1),
(10093, 254, 154, 'Auburn', 10000, 1),
(10094, 254, 154, 'Baldwin', 10000, 1),
(10095, 254, 154, 'Batavia', 10000, 1),
(10096, 254, 154, 'Bath', 10000, 1),
(10097, 254, 154, 'Bay Shore', 10000, 1),
(10098, 254, 154, 'Binghamton', 10000, 1),
(10099, 254, 154, 'Boonville', 10000, 1),
(10100, 254, 154, 'Brentwood', 10000, 1),
(10102, 254, 154, 'Brockport', 10000, 1),
(10103, 254, 154, 'Bronx', 10000, 1),
(10104, 254, 154, 'Brooklyn', 10000, 1),
(10105, 254, 154, 'Buffalo', 10000, 1),
(10106, 254, 154, 'Canandaigua', 10000, 1),
(10107, 254, 154, 'Canton', 10000, 1),
(10108, 254, 154, 'Centereach', 10000, 1),
(10109, 254, 154, 'Central Islip', 10000, 1),
(10111, 254, 154, 'Cobleskill', 10000, 1),
(10112, 254, 154, 'Commack', 10000, 1),
(10114, 254, 154, 'Cooperstown', 10000, 1),
(10115, 254, 154, 'Copiague', 10000, 1),
(10116, 254, 154, 'Coram', 10000, 1),
(10117, 254, 154, 'Corning', 10000, 1),
(10119, 254, 154, 'Cortland', 10000, 1),
(10120, 254, 154, 'Deer Park', 10000, 1),
(10121, 254, 154, 'Delhi', 10000, 1),
(10122, 254, 154, 'East Meadows', 10000, 1),
(10123, 254, 154, 'East Northport', 10000, 1),
(10125, 254, 154, 'Elizabethtown', 10000, 1),
(10126, 254, 154, 'Elmira', 10000, 1),
(10127, 254, 154, 'Elmont', 10000, 1),
(10128, 254, 154, 'Farmingdale', 10000, 1),
(10129, 254, 154, 'Florida', 10000, 1),
(10130, 254, 154, 'Flushing', 10000, 1),
(10131, 254, 154, 'Fonda', 10000, 1),
(10133, 254, 154, 'Franklin Square', 10000, 1),
(10134, 254, 154, 'Fredonia', 10000, 1),
(10135, 254, 154, 'Freeport', 10000, 1),
(10136, 254, 154, 'Fultonville', 10000, 1),
(10137, 254, 154, 'Garden City', 10000, 1),
(10138, 254, 154, 'Geneseo', 10000, 1),
(10139, 254, 154, 'Glen Cove', 10000, 1),
(10140, 254, 154, 'Glens Falls', 10000, 1),
(10141, 254, 154, 'Glenwood', 10000, 1),
(10142, 254, 154, 'Glenwood Landing', 10000, 1),
(10143, 254, 154, 'Gloversville', 10000, 1),
(10144, 254, 154, 'Greenport', 10000, 1),
(10145, 254, 154, 'Harriman', 10000, 1),
(10146, 254, 154, 'Harrison', 10000, 1),
(10147, 254, 154, 'Au Sable Forks', 10000, 1),
(10148, 254, 154, 'Hempstead', 10000, 1),
(10149, 254, 154, 'Henrietta', 10000, 1),
(10150, 254, 154, 'Hicksville', 10000, 1),
(10151, 254, 154, 'Holbrook', 10000, 1),
(10153, 254, 154, 'Hudson Falls', 10000, 1),
(10154, 254, 154, 'Hunter', 10000, 1),
(10156, 254, 154, 'Inwood', 10000, 1),
(10158, 254, 154, 'Islip', 10000, 1),
(10159, 254, 154, 'Ithaca', 10000, 1),
(10160, 254, 154, 'Jamestown', 10000, 1),
(10161, 254, 154, 'Kingston', 10000, 1),
(10163, 254, 154, 'Lake George', 10000, 1),
(10164, 254, 154, 'Lake Pleasant', 10000, 1),
(10165, 254, 154, 'Levittown', 10000, 1),
(10166, 254, 154, 'Lindenhurst', 10000, 1),
(10167, 254, 154, 'Lockport', 10000, 1),
(10168, 254, 154, 'Long Beach', 10000, 1),
(10169, 254, 154, 'Lowville', 10000, 1),
(10170, 254, 154, 'Malone', 10000, 1),
(10171, 254, 154, 'Massapequa', 10000, 1),
(10172, 254, 154, 'Massena', 10000, 1),
(10173, 254, 154, 'Medford', 10000, 1),
(10174, 254, 154, 'Melville', 10000, 1),
(10175, 254, 154, 'Merrick', 10000, 1),
(10176, 254, 154, 'Middletown', 10000, 1),
(10177, 254, 154, 'Montauk', 10000, 1),
(10178, 254, 154, 'Monticello', 10000, 1),
(10179, 254, 154, 'Mount Vernon', 10000, 1),
(10180, 254, 154, 'New City', 10000, 1),
(10181, 254, 154, 'New Rochelle', 10000, 1),
(10182, 254, 154, 'New York', 10000, 1),
(10183, 254, 154, 'Newark', 10000, 1),
(10184, 254, 154, 'Newburgh', 10000, 1),
(10185, 254, 154, 'Newcomb', 10000, 1),
(10186, 254, 154, 'Niagara Falls', 10000, 1),
(10187, 254, 154, 'North Tonawanda', 10000, 1),
(10188, 254, 154, 'Norwich', 10000, 1),
(10189, 254, 154, 'Oceanside', 10000, 1),
(10190, 254, 154, 'Ogdensburg', 10000, 1),
(10191, 254, 154, 'Old Forge', 10000, 1),
(10192, 254, 154, 'Olean', 10000, 1),
(10193, 254, 154, 'Oneida', 10000, 1),
(10194, 254, 154, 'Oneonta', 10000, 1),
(10195, 254, 154, 'Ossining', 10000, 1),
(10196, 254, 154, 'Oswego', 10000, 1),
(10197, 254, 154, 'Oyster Bay', 10000, 1),
(10198, 254, 154, 'Palisades', 10000, 1),
(10199, 254, 154, 'Peekskill', 10000, 1),
(10200, 254, 154, 'Penn Yan', 10000, 1),
(10201, 254, 154, 'Plainview', 10000, 1),
(10203, 254, 154, 'Port Chester', 10000, 1),
(10204, 254, 154, 'Port Jefferson', 10000, 1),
(10205, 254, 154, 'Port Jervis', 10000, 1),
(10206, 254, 154, 'Poughkeepsie', 10000, 1),
(10207, 254, 154, 'Pulaski', 10000, 1),
(10208, 254, 154, 'Riverhead', 10000, 1),
(10209, 254, 154, 'Rochester', 10000, 1),
(10210, 254, 154, 'Rockville Centre', 10000, 1),
(10211, 254, 154, 'Rome', 10000, 1),
(10212, 254, 154, 'Ronkonkoma', 10000, 1),
(10213, 254, 154, 'Salamanca', 10000, 1),
(10214, 254, 154, 'Saranac Lake', 10000, 1),
(10215, 254, 154, 'Saratoga Springs', 10000, 1),
(10216, 254, 154, 'Schenectady', 10000, 1),
(10217, 254, 154, 'Selden', 10000, 1),
(10218, 254, 154, 'Shirley', 10000, 1),
(10219, 254, 154, 'Skaneateles', 10000, 1),
(10220, 254, 154, 'Smithtown', 10000, 1),
(10221, 254, 147, 'Southhampton', 10000, 1),
(10222, 254, 154, 'Spring Valley', 10000, 1),
(10223, 254, 154, 'Staten Island', 10000, 1),
(10225, 254, 154, 'Stony Brook', 10000, 1),
(10226, 254, 154, 'Suffern', 10000, 1),
(10228, 254, 154, 'Syracuse', 10000, 1),
(10229, 254, 154, 'Troy', 10000, 1),
(10230, 254, 154, 'Uniondale', 10000, 1),
(10232, 254, 154, 'Utica', 10000, 1),
(10233, 254, 154, 'Valley Stream', 10000, 1),
(10234, 254, 154, 'Warsaw', 10000, 1),
(10235, 254, 154, 'Waterloo', 10000, 1),
(10236, 254, 154, 'Watertown', 10000, 1),
(10237, 254, 154, 'Watkins Glen', 10000, 1),
(10238, 254, 154, 'Wellsville', 10000, 1),
(10239, 254, 154, 'West Babylon', 10000, 1),
(10240, 254, 154, 'West Islip', 10000, 1),
(10241, 254, 154, 'West Point', 10000, 1),
(10243, 254, 154, 'Westport', 10000, 1),
(10244, 254, 154, 'White Plains', 10000, 1),
(10245, 254, 154, 'Windham', 10000, 1),
(10246, 254, 154, 'Woodbury', 10000, 1),
(10247, 254, 154, 'Yonkers', 10000, 1),
(10248, 254, 157, 'Akron', 10000, 1),
(10249, 254, 157, 'Alliance', 10000, 1),
(10250, 254, 157, 'Appleton', 10000, 1),
(10251, 254, 157, 'Ashland', 10000, 1),
(10252, 254, 157, 'Ashtabula', 10000, 1),
(10253, 254, 157, 'Athens', 10000, 1),
(10255, 254, 157, 'Barberton', 10000, 1),
(10256, 254, 157, 'Batavia', 10000, 1),
(10257, 254, 157, 'Dayton', 10000, 1),
(10258, 254, 157, 'Bellefontaine', 10000, 1),
(10260, 254, 157, 'Bowling Green', 10000, 1),
(10261, 254, 157, 'Brookpark', 10000, 1),
(10262, 254, 157, 'Brunswick', 10000, 1),
(10263, 254, 157, 'Bryan', 10000, 1),
(10264, 254, 157, 'Bucyrus', 10000, 1),
(10265, 254, 157, 'Cadiz', 10000, 1),
(10266, 254, 157, 'Caldwell', 10000, 1),
(10267, 254, 157, 'Cambridge', 10000, 1),
(10268, 254, 157, 'Canton', 10000, 1),
(10269, 254, 157, 'Carrollton', 10000, 1),
(10270, 254, 157, 'Celina', 10000, 1),
(10272, 254, 157, 'Chardon', 10000, 1),
(10273, 254, 157, 'Chillicothe', 10000, 1),
(10274, 254, 157, 'Cincinnati', 10000, 1),
(10275, 254, 157, 'Circleville', 10000, 1),
(10276, 254, 157, 'Cleveland', 10000, 1),
(10278, 254, 157, 'Columbus', 10000, 1),
(10279, 254, 157, 'Coshocton', 10000, 1),
(10280, 254, 157, 'Cuyahoga Falls', 10000, 1),
(10282, 254, 157, 'Defiance', 10000, 1),
(10283, 254, 157, 'Delaware', 10000, 1),
(10284, 254, 157, 'Dover', 10000, 1),
(10285, 254, 157, 'Dublin', 10000, 1),
(10287, 254, 157, 'Eastlake', 10000, 1),
(10288, 254, 157, 'Eaton', 10000, 1),
(10289, 254, 157, 'Elyria', 10000, 1),
(10290, 254, 157, 'Euclid', 10000, 1),
(10291, 254, 157, 'Fairborn', 10000, 1),
(10292, 254, 157, 'Fairfield', 10000, 1),
(10293, 254, 157, 'Findlay', 10000, 1),
(10294, 254, 157, 'Fremont', 10000, 1),
(10296, 254, 157, 'Gallipolis', 10000, 1),
(10298, 254, 157, 'Georgetown', 10000, 1),
(10299, 254, 157, 'Girard', 10000, 1),
(10300, 254, 157, 'Green', 10000, 1),
(10301, 254, 157, 'Greenville', 10000, 1),
(10302, 254, 157, 'Grove City', 10000, 1),
(10303, 254, 157, 'Hamilton', 10000, 1),
(10304, 254, 157, 'Hillsboro', 10000, 1),
(10306, 254, 157, 'Huron', 10000, 1),
(10307, 254, 157, 'Ironton', 10000, 1),
(10308, 254, 157, 'Irwin', 10000, 1),
(10309, 254, 157, 'Jackson', 10000, 1),
(10310, 254, 157, 'Jefferson', 10000, 1),
(10311, 254, 157, 'Kent', 10000, 1),
(10312, 254, 157, 'Kenton', 10000, 1),
(10314, 254, 157, 'Lafayette', 10000, 1),
(10315, 254, 157, 'Lakewood', 10000, 1),
(10316, 254, 157, 'Lancaster', 10000, 1),
(10317, 254, 157, 'Lebanon', 10000, 1),
(10318, 254, 157, 'Lima', 10000, 1),
(10319, 254, 157, 'Logan', 10000, 1),
(10320, 254, 157, 'London', 10000, 1),
(10321, 254, 157, 'Lorain', 10000, 1),
(10322, 254, 157, 'Mansfield', 10000, 1),
(10323, 254, 157, 'Maple Heights', 10000, 1),
(10324, 254, 157, 'Marietta', 10000, 1),
(10325, 254, 157, 'Marion', 10000, 1),
(10326, 254, 157, 'Marysville', 10000, 1),
(10327, 254, 157, 'Massillon', 10000, 1),
(10329, 254, 157, 'Mc Arthur', 10000, 1),
(10330, 254, 157, 'Mc Connelsville', 10000, 1),
(10331, 254, 157, 'Medina', 10000, 1),
(10332, 254, 157, 'Mentor', 10000, 1),
(10333, 254, 157, 'Middlefield', 10000, 1),
(10334, 254, 157, 'Middletown', 10000, 1),
(10335, 254, 157, 'Millersburg', 10000, 1),
(10336, 254, 157, 'Mount Gilead', 10000, 1),
(10337, 254, 157, 'Mount Vernon', 10000, 1),
(10338, 254, 157, 'Napoleon', 10000, 1),
(10339, 254, 157, 'New Lexington', 10000, 1),
(10340, 254, 157, 'Newark', 10000, 1),
(10341, 254, 157, 'Niles', 10000, 1),
(10342, 254, 157, 'North Ridgeville', 10000, 1),
(10343, 254, 157, 'North Royalton', 10000, 1),
(10344, 254, 157, 'Norwalk', 10000, 1),
(10346, 254, 157, 'Ottawa', 10000, 1),
(10347, 254, 157, 'Painesville', 10000, 1),
(10349, 254, 157, 'Paulding', 10000, 1),
(10350, 254, 157, 'Piqua', 10000, 1),
(10352, 254, 157, 'Pomeroy', 10000, 1),
(10353, 254, 157, 'Port Clinton', 10000, 1),
(10354, 254, 157, 'Portsmouth', 10000, 1),
(10355, 254, 157, 'Ravenna', 10000, 1),
(10356, 254, 157, 'Reynoldsburg', 10000, 1),
(10357, 254, 157, 'Rickenbacker AFB', 10000, 1),
(10358, 254, 157, 'Rittman', 10000, 1),
(10359, 254, 157, 'Rocky River', 10000, 1),
(10360, 254, 157, 'Salem', 10000, 1),
(10361, 254, 157, 'Sandusky', 10000, 1),
(10363, 254, 157, 'Sidney', 10000, 1),
(10364, 254, 157, 'Solon', 10000, 1),
(10366, 254, 157, 'Springfield', 10000, 1),
(10367, 254, 157, 'Saint Clairsville', 10000, 1),
(10368, 254, 157, 'Saint Marys', 10000, 1),
(10369, 254, 157, 'Steubenville', 10000, 1),
(10370, 254, 157, 'Stow', 10000, 1),
(10371, 254, 157, 'Strongsville', 10000, 1),
(10372, 254, 157, 'Tiffin', 10000, 1),
(10373, 254, 157, 'Toledo', 10000, 1),
(10374, 254, 157, 'Troy', 10000, 1),
(10375, 254, 157, 'Urbana', 10000, 1),
(10376, 254, 157, 'Van Wert', 10000, 1),
(10377, 254, 157, 'Warren', 10000, 1),
(10378, 254, 157, 'Washington Court House', 10000, 1),
(10379, 254, 157, 'Wauseon', 10000, 1),
(10380, 254, 157, 'Waverly', 10000, 1),
(10382, 254, 157, 'West Union', 10000, 1),
(10383, 254, 157, 'Westerville', 10000, 1),
(10384, 254, 157, 'Westlake', 10000, 1),
(10385, 254, 157, 'Willoughby', 10000, 1),
(10386, 254, 157, 'Wilmington', 10000, 1),
(10387, 254, 157, 'Woodsfield', 10000, 1),
(10388, 254, 157, 'Wooster', 10000, 1),
(10389, 254, 157, 'Xenia', 10000, 1),
(10390, 254, 157, 'Youngstown', 10000, 1),
(10391, 254, 157, 'Zanesville', 10000, 1),
(10392, 254, 158, 'Ada', 10000, 1),
(10393, 254, 158, 'Altus', 10000, 1),
(10394, 254, 158, 'Alva', 10000, 1),
(10395, 254, 158, 'Anadarko', 10000, 1),
(10396, 254, 158, 'Antlers', 10000, 1),
(10397, 254, 158, 'Ardmore', 10000, 1),
(10398, 254, 158, 'Atoka', 10000, 1),
(10399, 254, 158, 'Bartlesville', 10000, 1),
(10400, 254, 158, 'Beaver', 10000, 1),
(10401, 254, 158, 'Bethany', 10000, 1),
(10402, 254, 158, 'Boise City', 10000, 1),
(10403, 254, 158, 'Broken Arrow', 10000, 1),
(10404, 254, 158, 'Buffalo', 10000, 1),
(10405, 254, 158, 'Chandler', 10000, 1),
(10406, 254, 158, 'Cherokee', 10000, 1),
(10407, 254, 158, 'Cheyenne', 10000, 1),
(10408, 254, 158, 'Chickasha', 10000, 1),
(10409, 254, 158, 'Claremore', 10000, 1),
(10410, 254, 158, 'Clinton', 10000, 1),
(10411, 254, 158, 'Coalgate', 10000, 1),
(10412, 254, 158, 'Cordell', 10000, 1),
(10414, 254, 158, 'Duncan', 10000, 1),
(10415, 254, 158, 'Durant', 10000, 1),
(10416, 254, 158, 'Edmond', 10000, 1),
(10417, 254, 158, 'El Reno', 10000, 1),
(10418, 254, 158, 'Elk City', 10000, 1),
(10419, 254, 158, 'Enid', 10000, 1),
(10420, 254, 158, 'Eufaula', 10000, 1),
(10421, 254, 158, 'Fairview', 10000, 1),
(10422, 254, 158, 'Fort Sill', 10000, 1),
(10423, 254, 158, 'Frederick', 10000, 1),
(10424, 254, 158, 'Gage', 10000, 1),
(10425, 254, 158, 'Grove', 10000, 1),
(10426, 254, 158, 'Guthrie', 10000, 1),
(10427, 254, 158, 'Guymon', 10000, 1),
(10428, 254, 158, 'Hobart', 10000, 1),
(10429, 254, 158, 'Holdenville', 10000, 1),
(10430, 254, 158, 'Hollis', 10000, 1),
(10431, 254, 158, 'Hugo', 10000, 1),
(10432, 254, 158, 'Idabel', 10000, 1),
(10433, 254, 158, 'Kingfisher', 10000, 1),
(10434, 254, 158, 'Lawton', 10000, 1),
(10435, 254, 158, 'Madill', 10000, 1),
(10436, 254, 158, 'Mangum', 10000, 1),
(10437, 254, 158, 'Marietta', 10000, 1),
(10438, 254, 158, 'McAlester', 10000, 1),
(10439, 254, 158, 'Medford', 10000, 1),
(10440, 254, 158, 'Miami', 10000, 1);
INSERT INTO `[[dbprefix]]geo_cities` VALUES
(10443, 254, 158, 'Muskogee', 10000, 1),
(10444, 254, 158, 'Norman', 10000, 1),
(10445, 254, 158, 'Nowata', 10000, 1),
(10446, 254, 158, 'Okemah', 10000, 1),
(10447, 254, 158, 'Okmulgee', 10000, 1),
(10448, 254, 158, 'Oologah', 10000, 1),
(10449, 254, 158, 'Pauls Valley', 10000, 1),
(10450, 254, 158, 'Pawhuska', 10000, 1),
(10451, 254, 158, 'Pawnee', 10000, 1),
(10452, 254, 158, 'Perry', 10000, 1),
(10453, 254, 158, 'Ponca City', 10000, 1),
(10454, 254, 158, 'Poteau', 10000, 1),
(10455, 254, 158, 'Pryor', 10000, 1),
(10456, 254, 158, 'Sallisaw', 10000, 1),
(10457, 254, 158, 'Sapulpa', 10000, 1),
(10458, 254, 158, 'Shawnee', 10000, 1),
(10459, 254, 158, 'Stidham', 10000, 1),
(10460, 254, 158, 'Stigler', 10000, 1),
(10461, 254, 158, 'Stillwater', 10000, 1),
(10462, 254, 158, 'Stilwell', 10000, 1),
(10463, 254, 158, 'Sulphur', 10000, 1),
(10464, 254, 158, 'Tahlequah', 10000, 1),
(10465, 254, 158, 'Taloga', 10000, 1),
(10466, 254, 158, 'Tishomingo', 10000, 1),
(10467, 254, 158, 'Tulsa', 10000, 1),
(10468, 254, 158, 'Vance AFB', 10000, 1),
(10469, 254, 158, 'Vinita', 10000, 1),
(10470, 254, 158, 'Wagoner', 10000, 1),
(10471, 254, 158, 'Walters', 10000, 1),
(10472, 254, 158, 'Watonga', 10000, 1),
(10473, 254, 158, 'Waurika', 10000, 1),
(10474, 254, 158, 'Wheeless', 10000, 1),
(10475, 254, 158, 'Wilburton', 10000, 1),
(10477, 254, 158, 'Woodward', 10000, 1),
(10478, 254, 158, 'Yukon', 10000, 1),
(10479, 254, 159, 'Albany', 10000, 1),
(10481, 254, 159, 'Amity', 10000, 1),
(10482, 254, 159, 'Ashland', 10000, 1),
(10483, 254, 159, 'Astoria', 10000, 1),
(10484, 254, 159, 'Baker City', 10000, 1),
(10485, 254, 159, 'Beaverton', 10000, 1),
(10486, 254, 159, 'Bend', 10000, 1),
(10487, 254, 159, 'Boardman', 10000, 1),
(10488, 254, 159, 'Brookings', 10000, 1),
(10489, 254, 159, 'Burns', 10000, 1),
(10490, 254, 159, 'Carlton', 10000, 1),
(10491, 254, 159, 'Coos Bay', 10000, 1),
(10492, 254, 159, 'Corvallis', 10000, 1),
(10493, 254, 159, 'Dayton', 10000, 1),
(10494, 254, 159, 'Dundee', 10000, 1),
(10495, 254, 159, 'Eugene', 10000, 1),
(10496, 254, 159, 'Florence', 10000, 1),
(10497, 254, 159, 'Government Camp', 10000, 1),
(10498, 254, 159, 'Grants Pass', 10000, 1),
(10499, 254, 159, 'Gresham', 10000, 1),
(10500, 254, 159, 'Hillsboro', 10000, 1),
(10501, 254, 159, 'Hinkle', 10000, 1),
(10502, 254, 159, 'Hood River', 10000, 1),
(10503, 254, 159, 'Keizer', 10000, 1),
(10504, 254, 159, 'Klamath Falls', 10000, 1),
(10505, 254, 159, 'La Grande', 10000, 1),
(10506, 254, 159, 'La Pine', 10000, 1),
(10507, 254, 159, 'Lafayette', 10000, 1),
(10508, 254, 159, 'Lake Oswego', 10000, 1),
(10509, 254, 159, 'Lakeview', 10000, 1),
(10510, 254, 159, 'Lincoln City', 10000, 1),
(10511, 254, 159, 'Madras', 10000, 1),
(10512, 254, 159, 'McMinnville', 10000, 1),
(10513, 254, 159, 'Meacham', 10000, 1),
(10514, 254, 159, 'Medford', 10000, 1),
(10516, 254, 159, 'Newberg', 10000, 1),
(10517, 254, 159, 'Newport', 10000, 1),
(10518, 254, 159, 'North Bend', 10000, 1),
(10519, 254, 159, 'Ontario', 10000, 1),
(10520, 254, 159, 'Oregon City', 10000, 1),
(10521, 254, 159, 'Pendleton', 10000, 1),
(10522, 254, 159, 'Portland', 10000, 1),
(10523, 254, 159, 'Prineville', 10000, 1),
(10524, 254, 159, 'Redmond', 10000, 1),
(10525, 254, 159, 'Roseburg', 10000, 1),
(10526, 254, 159, 'Salem', 10000, 1),
(10528, 254, 159, 'Seaside', 10000, 1),
(10530, 254, 159, 'Sheridan', 10000, 1),
(10531, 254, 159, 'Sisters', 10000, 1),
(10532, 254, 159, 'Springfield', 10000, 1),
(10534, 254, 159, 'The Dalles', 10000, 1),
(10536, 254, 159, 'Tillamook', 10000, 1),
(10537, 254, 159, 'Troutdale', 10000, 1),
(10538, 254, 159, 'Umatilla', 10000, 1),
(10540, 254, 159, 'Willamina', 10000, 1),
(10541, 254, 159, 'Yamhill', 10000, 1),
(10543, 254, 160, 'Allentown', 10000, 1),
(10545, 254, 160, 'Altoona', 10000, 1),
(10548, 254, 160, 'Northern Cambria', 10000, 1),
(10549, 254, 160, 'Beaver Falls', 10000, 1),
(10550, 254, 160, 'Bedford', 10000, 1),
(10551, 254, 160, 'Belle Vernon', 10000, 1),
(10552, 254, 160, 'Bellefonte', 10000, 1),
(10553, 254, 160, 'Bensalem Township', 10000, 1),
(10554, 254, 160, 'Berwick', 10000, 1),
(10555, 254, 160, 'Bethel Park', 10000, 1),
(10556, 254, 160, 'Bethlehem', 10000, 1),
(10557, 254, 160, 'Blairsville', 10000, 1),
(10558, 254, 160, 'Bloomsburg', 10000, 1),
(10561, 254, 160, 'Bradford', 10000, 1),
(10562, 254, 160, 'Bristol', 10000, 1),
(10563, 254, 160, 'Butler', 10000, 1),
(10564, 254, 160, 'California', 10000, 1),
(10565, 254, 160, 'Carlisle', 10000, 1),
(10566, 254, 160, 'Chambersburg', 10000, 1),
(10567, 254, 160, 'Cheltenham Township', 10000, 1),
(10568, 254, 160, 'Chester', 10000, 1),
(10569, 254, 160, 'Clarion', 10000, 1),
(10570, 254, 160, 'Clearfield', 10000, 1),
(10571, 254, 160, 'Clymer', 10000, 1),
(10572, 254, 160, 'Coatesville', 10000, 1),
(10573, 254, 160, 'Concordville', 10000, 1),
(10574, 254, 160, 'Coraopolis', 10000, 1),
(10575, 254, 160, 'Coudersport', 10000, 1),
(10576, 254, 160, 'Danville', 10000, 1),
(10577, 254, 160, 'Devon', 10000, 1),
(10578, 254, 160, 'Doylestown', 10000, 1),
(10579, 254, 160, 'Drexel Hill', 10000, 1),
(10580, 254, 160, 'Du Bois', 10000, 1),
(10581, 254, 160, 'Easton', 10000, 1),
(10582, 254, 160, 'Edinboro', 10000, 1),
(10583, 254, 160, 'Elderton', 10000, 1),
(10584, 254, 160, 'Erie', 10000, 1),
(10585, 254, 160, 'Pittston', 10000, 1),
(10586, 254, 160, 'Folcroft', 10000, 1),
(10587, 254, 160, 'Franklin', 10000, 1),
(10588, 254, 160, 'Garden View', 10000, 1),
(10589, 254, 160, 'Gettysburg', 10000, 1),
(10590, 254, 160, 'Greensburg', 10000, 1),
(10591, 254, 160, 'Greenville', 10000, 1),
(10592, 254, 160, 'Harrisburg', 10000, 1),
(10593, 254, 160, 'Haverford Township', 10000, 1),
(10595, 254, 160, 'Hershey', 10000, 1),
(10596, 254, 160, 'Homer City', 10000, 1),
(10597, 254, 160, 'Honesdale', 10000, 1),
(10598, 254, 160, 'Huntingdon', 10000, 1),
(10599, 254, 160, 'Indiana', 10000, 1),
(10601, 254, 160, 'Jim Thorpe', 10000, 1),
(10602, 254, 160, 'Johnstown', 10000, 1),
(10603, 254, 160, 'Kittanning', 10000, 1),
(10604, 254, 160, 'Kutztown', 10000, 1),
(10605, 254, 160, 'Lancaster', 10000, 1),
(10606, 254, 160, 'Lansdale', 10000, 1),
(10607, 254, 160, 'Laporte', 10000, 1),
(10608, 254, 160, 'Latrobe', 10000, 1),
(10609, 254, 160, 'Lebanon', 10000, 1),
(10610, 254, 160, 'Lehighton', 10000, 1),
(10611, 254, 160, 'Levittown', 10000, 1),
(10612, 254, 160, 'Lewisburg', 10000, 1),
(10613, 254, 160, 'Lewistown', 10000, 1),
(10614, 254, 160, 'Liberty', 10000, 1),
(10615, 254, 160, 'Ligonier', 10000, 1),
(10616, 254, 160, 'Lock Haven', 10000, 1),
(10618, 254, 160, 'Marion Center', 10000, 1),
(10619, 254, 160, 'Marple', 10000, 1),
(10620, 254, 160, 'Matamoras', 10000, 1),
(10621, 254, 160, 'Mc Keesport', 10000, 1),
(10622, 254, 160, 'Meadville', 10000, 1),
(10623, 254, 160, 'Media', 10000, 1),
(10624, 254, 160, 'Middleburg', 10000, 1),
(10625, 254, 160, 'Middletown', 10000, 1),
(10626, 254, 160, 'Mifflinburg', 10000, 1),
(10627, 254, 160, 'Milford', 10000, 1),
(10628, 254, 160, 'Millersville', 10000, 1),
(10629, 254, 160, 'Milton', 10000, 1),
(10630, 254, 160, 'Monroeville', 10000, 1),
(10631, 254, 160, 'Montrose', 10000, 1),
(10633, 254, 160, 'Morgantown', 10000, 1),
(10635, 254, 160, 'Mount Union', 10000, 1),
(10636, 254, 160, 'New Bloomfield', 10000, 1),
(10637, 254, 160, 'New Castle', 10000, 1),
(10638, 254, 160, 'New Hope', 10000, 1),
(10639, 254, 160, 'Newtown', 10000, 1),
(10640, 254, 160, 'Norristown', 10000, 1),
(10641, 254, 160, 'Northumberland', 10000, 1),
(10642, 254, 160, 'Ohiopyle', 10000, 1),
(10643, 254, 160, 'Oil City', 10000, 1),
(10645, 254, 160, 'Perryopolis', 10000, 1),
(10646, 254, 160, 'Philadelphia', 10000, 1),
(10647, 254, 160, 'Philipsburg', 10000, 1),
(10648, 254, 160, 'Pittsburgh', 10000, 1),
(10650, 254, 160, 'Plymouth Meeting', 10000, 1),
(10651, 254, 160, 'Pocono Summit', 10000, 1),
(10652, 254, 160, 'Pottstown', 10000, 1),
(10653, 254, 160, 'Pottsville', 10000, 1),
(10654, 254, 160, 'Clifton Heights', 10000, 1),
(10655, 254, 160, 'Punxsutawney', 10000, 1),
(10656, 254, 160, 'Quakertown', 10000, 1),
(10657, 254, 160, 'Wayne', 10000, 1),
(10658, 254, 160, 'Reading', 10000, 1),
(10659, 254, 160, 'Ridley Park', 10000, 1),
(10660, 254, 160, 'Scranton', 10000, 1),
(10661, 254, 160, 'Selinsgrove', 10000, 1),
(10662, 254, 160, 'Sellersville', 10000, 1),
(10664, 254, 160, 'Shamokin', 10000, 1),
(10665, 254, 160, 'Sharon', 10000, 1),
(10667, 254, 160, 'Shippensburg', 10000, 1),
(10669, 254, 160, 'Slippery Rock', 10000, 1),
(10670, 254, 160, 'Smethport', 10000, 1),
(10671, 254, 160, 'Snow Shoe', 10000, 1),
(10672, 254, 160, 'Somerset', 10000, 1),
(10673, 254, 160, 'Spring Mountain', 10000, 1),
(10674, 254, 160, 'Springfield', 10000, 1),
(10676, 254, 160, 'State College', 10000, 1),
(10677, 254, 160, 'Stroudsburg', 10000, 1),
(10678, 254, 160, 'Sunbury', 10000, 1),
(10679, 254, 160, 'Tionesta', 10000, 1),
(10680, 254, 160, 'Feasterville Trevose', 10000, 1),
(10681, 254, 160, 'Tunkhannock', 10000, 1),
(10683, 254, 160, 'Uniontown', 10000, 1),
(10684, 254, 160, 'University Park', 10000, 1),
(10685, 254, 160, 'Upper Darby', 10000, 1),
(10686, 254, 160, 'Villanova', 10000, 1),
(10687, 254, 160, 'Warminster', 10000, 1),
(10688, 254, 160, 'Warren', 10000, 1),
(10689, 254, 160, 'Washington', 10000, 1),
(10690, 254, 160, 'Waynesburg', 10000, 1),
(10691, 254, 160, 'Wellsboro', 10000, 1),
(10692, 254, 160, 'West Chester', 10000, 1),
(10693, 254, 160, 'West Mifflin', 10000, 1),
(10697, 254, 160, 'Williamsport', 10000, 1),
(10698, 254, 160, 'Willow Grove', 10000, 1),
(10699, 254, 160, 'Wyalusing', 10000, 1),
(10700, 254, 160, 'York', 10000, 1),
(10701, 254, 161, 'Block Island', 10000, 1),
(10702, 254, 161, 'Cranston', 10000, 1),
(10703, 254, 161, 'East Providence', 10000, 1),
(10704, 254, 161, 'Kingston', 10000, 1),
(10705, 254, 161, 'Little Compton', 10000, 1),
(10706, 254, 161, 'Pawtucket', 10000, 1),
(10707, 254, 161, 'Providence', 10000, 1),
(10708, 254, 161, 'Smithfield', 10000, 1),
(10709, 254, 161, 'Tiverton', 10000, 1),
(10711, 254, 161, 'Warwick', 10000, 1),
(10712, 254, 161, 'West Warwick', 10000, 1),
(10713, 254, 161, 'Westerly', 10000, 1),
(10714, 254, 161, 'Woonsocket', 10000, 1),
(10715, 254, 162, 'Abbeville', 10000, 1),
(10716, 254, 162, 'Aiken', 10000, 1),
(10717, 254, 162, 'Allendale', 10000, 1),
(10718, 254, 162, 'Anderson', 10000, 1),
(10719, 254, 162, 'Bamberg', 10000, 1),
(10720, 254, 162, 'Barnwell', 10000, 1),
(10721, 254, 162, 'Beaufort', 10000, 1),
(10722, 254, 162, 'Belton', 10000, 1),
(10723, 254, 162, 'Bennettsville', 10000, 1),
(10724, 254, 162, 'Bishopville', 10000, 1),
(10725, 254, 162, 'Camden', 10000, 1),
(10726, 254, 162, 'Charleston', 10000, 1),
(10727, 254, 162, 'Cheraw', 10000, 1),
(10728, 254, 162, 'Chester', 10000, 1),
(10729, 254, 162, 'Clinton', 10000, 1),
(10730, 254, 162, 'Columbia', 10000, 1),
(10732, 254, 162, 'Dillon', 10000, 1),
(10733, 254, 162, 'Edgefield', 10000, 1),
(10734, 254, 162, 'Florence', 10000, 1),
(10735, 254, 162, 'Saint Matthews', 10000, 1),
(10736, 254, 162, 'Gaffney', 10000, 1),
(10737, 254, 162, 'Georgetown', 10000, 1),
(10738, 254, 162, 'Goose Creek', 10000, 1),
(10739, 254, 162, 'Greenville', 10000, 1),
(10740, 254, 162, 'Greenwood', 10000, 1),
(10741, 254, 162, 'Hampton', 10000, 1),
(10742, 254, 162, 'Hartsville', 10000, 1),
(10743, 254, 162, 'Hilton Head', 10000, 1),
(10744, 254, 162, 'Kingstree', 10000, 1),
(10745, 254, 162, 'Lancaster', 10000, 1),
(10746, 254, 162, 'Marion', 10000, 1),
(10748, 254, 162, 'Moncks Corner', 10000, 1),
(10749, 254, 162, 'Mount Pleasant', 10000, 1),
(10750, 254, 162, 'Myrtle Beach', 10000, 1),
(10751, 254, 162, 'Newberry', 10000, 1),
(10752, 254, 162, 'North Charleston', 10000, 1),
(10753, 254, 162, 'Orangeburg', 10000, 1),
(10754, 254, 162, 'Paris Island', 10000, 1),
(10755, 254, 162, 'Ridgeland', 10000, 1),
(10756, 254, 162, 'Rock Hill', 10000, 1),
(10757, 254, 162, 'Saluda', 10000, 1),
(10758, 254, 162, 'Santee', 10000, 1),
(10759, 254, 162, 'Seneca', 10000, 1),
(10760, 254, 162, 'Spartanburg', 10000, 1),
(10762, 254, 162, 'Summerton', 10000, 1),
(10763, 254, 162, 'Summerville', 10000, 1),
(10764, 254, 162, 'Sumter', 10000, 1),
(10765, 254, 162, 'Sunset', 10000, 1),
(10766, 254, 162, 'Union', 10000, 1),
(10767, 254, 162, 'Walterboro', 10000, 1),
(10768, 254, 162, 'Winnsboro', 10000, 1),
(10769, 254, 163, 'Aberdeen', 10000, 1),
(10770, 254, 163, 'Alexandria', 10000, 1),
(10771, 254, 163, 'Armour', 10000, 1),
(10773, 254, 163, 'Belle Fourche', 10000, 1),
(10774, 254, 163, 'Bison', 10000, 1),
(10775, 254, 163, 'Britton', 10000, 1),
(10776, 254, 163, 'Brookings', 10000, 1),
(10777, 254, 163, 'Buffalo', 10000, 1),
(10778, 254, 163, 'Burke', 10000, 1),
(10779, 254, 163, 'Canton', 10000, 1),
(10780, 254, 163, 'Chamberlain', 10000, 1),
(10781, 254, 163, 'Clark', 10000, 1),
(10782, 254, 163, 'Clear Lake', 10000, 1),
(10783, 254, 163, 'Corsica', 10000, 1),
(10784, 254, 163, 'Custer', 10000, 1),
(10785, 254, 163, 'De Smet', 10000, 1),
(10786, 254, 163, 'Deadwood', 10000, 1),
(10787, 254, 163, 'Edgemont', 10000, 1),
(10788, 254, 163, 'Faulkton', 10000, 1),
(10789, 254, 163, 'Flandreau', 10000, 1),
(10790, 254, 163, 'Gannvalley', 10000, 1),
(10791, 254, 163, 'Geddes', 10000, 1),
(10792, 254, 163, 'Gettysburg', 10000, 1),
(10793, 254, 163, 'Hayes', 10000, 1),
(10794, 254, 163, 'Hayti', 10000, 1),
(10795, 254, 163, 'Highmore', 10000, 1),
(10796, 254, 163, 'Hill City', 10000, 1),
(10797, 254, 163, 'Hot Springs', 10000, 1),
(10798, 254, 163, 'Howard', 10000, 1),
(10799, 254, 163, 'Huron', 10000, 1),
(10800, 254, 163, 'Ipswich', 10000, 1),
(10801, 254, 163, 'Kadoka', 10000, 1),
(10802, 254, 163, 'Kennebec', 10000, 1),
(10803, 254, 163, 'Kingsburg', 10000, 1),
(10804, 254, 163, 'Lake Andes', 10000, 1),
(10805, 254, 163, 'Lead', 10000, 1),
(10806, 254, 163, 'Lemmon', 10000, 1),
(10807, 254, 163, 'Leola', 10000, 1),
(10808, 254, 163, 'Madison', 10000, 1),
(10809, 254, 163, 'Martin', 10000, 1),
(10811, 254, 163, 'Milbank', 10000, 1),
(10812, 254, 163, 'Miller', 10000, 1),
(10813, 254, 163, 'Parkston', 10000, 1),
(10814, 254, 163, 'Mitchell', 10000, 1),
(10815, 254, 163, 'Mobridge', 10000, 1),
(10816, 254, 163, 'Mound City', 10000, 1),
(10817, 254, 163, 'Murdo', 10000, 1),
(10818, 254, 163, 'Onida', 10000, 1),
(10819, 254, 163, 'Parker', 10000, 1),
(10820, 254, 163, 'Parmelee', 10000, 1),
(10821, 254, 163, 'Philip', 10000, 1),
(10822, 254, 163, 'Pickstown', 10000, 1),
(10823, 254, 163, 'Pierre', 10000, 1),
(10824, 254, 163, 'Pine Ridge', 10000, 1),
(10825, 254, 163, 'Plankinton', 10000, 1),
(10826, 254, 163, 'Rapid City', 10000, 1),
(10827, 254, 163, 'Redfield', 10000, 1),
(10828, 254, 163, 'Redig', 10000, 1),
(10829, 254, 163, 'Salem', 10000, 1),
(10830, 254, 163, 'Sioux Falls', 10000, 1),
(10831, 254, 163, 'Sisseton', 10000, 1),
(10832, 254, 163, 'Spearfish', 10000, 1),
(10833, 254, 163, 'Union Center', 10000, 1),
(10834, 254, 163, 'Sturgis', 10000, 1),
(10835, 254, 163, 'Timber Lake', 10000, 1),
(10836, 254, 163, 'Vermillion', 10000, 1),
(10837, 254, 163, 'Watertown', 10000, 1),
(10838, 254, 163, 'Webster', 10000, 1),
(10839, 254, 163, 'Wessington Springs', 10000, 1),
(10840, 254, 163, 'White River', 10000, 1),
(10841, 254, 163, 'Winner', 10000, 1),
(10842, 254, 163, 'Woonsocket', 10000, 1),
(10843, 254, 163, 'Yankton', 10000, 1),
(10844, 254, 164, 'Alamo', 10000, 1),
(10845, 254, 164, 'Altamont', 10000, 1),
(10846, 254, 164, 'Ashland City', 10000, 1),
(10847, 254, 164, 'Athens', 10000, 1),
(10849, 254, 164, 'Benton', 10000, 1),
(10850, 254, 164, 'Bolivar', 10000, 1),
(10851, 254, 164, 'Brentwood', 10000, 1),
(10852, 254, 164, 'Bristol', 10000, 1),
(10853, 254, 164, 'Brownsville', 10000, 1),
(10854, 254, 164, 'Byrdstown', 10000, 1),
(10855, 254, 164, 'Camden', 10000, 1),
(10856, 254, 164, 'Carthage', 10000, 1),
(10857, 254, 164, 'Celina', 10000, 1),
(10858, 254, 164, 'Centerville', 10000, 1),
(10859, 254, 164, 'Chattanooga', 10000, 1),
(10860, 254, 164, 'Clarksville', 10000, 1),
(10861, 254, 164, 'Cleveland', 10000, 1),
(10862, 254, 164, 'Columbia', 10000, 1),
(10863, 254, 164, 'Cookeville', 10000, 1),
(10864, 254, 164, 'Covington', 10000, 1),
(10865, 254, 164, 'Crossville', 10000, 1),
(10866, 254, 164, 'Dayton', 10000, 1),
(10867, 254, 164, 'Decatur', 10000, 1),
(10868, 254, 164, 'Dickson', 10000, 1),
(10869, 254, 164, 'Dover', 10000, 1),
(10870, 254, 164, 'Dunlap', 10000, 1),
(10871, 254, 164, 'Dyersburg', 10000, 1),
(10873, 254, 164, 'Elizabethton', 10000, 1),
(10874, 254, 164, 'Erin', 10000, 1),
(10875, 254, 164, 'Erwin', 10000, 1),
(10876, 254, 164, 'Fayetteville', 10000, 1),
(10877, 254, 164, 'Franklin', 10000, 1),
(10878, 254, 164, 'Gainesboro', 10000, 1),
(10879, 254, 164, 'Gallatin', 10000, 1),
(10880, 254, 164, 'Gatlinburg', 10000, 1),
(10881, 254, 164, 'Germantown', 10000, 1),
(10882, 254, 164, 'Greeneville', 10000, 1),
(10883, 254, 164, 'Hartsville', 10000, 1),
(10884, 254, 164, 'Henderson', 10000, 1),
(10885, 254, 164, 'Hendersonville', 10000, 1),
(10886, 254, 164, 'Hohenwald', 10000, 1),
(10887, 254, 164, 'Huntsville', 10000, 1),
(10888, 254, 164, 'Jackson', 10000, 1),
(10889, 254, 164, 'Jamestown', 10000, 1),
(10890, 254, 164, 'Jasper', 10000, 1),
(10891, 254, 164, 'Jefferson City', 10000, 1),
(10892, 254, 164, 'Johnson City', 10000, 1),
(10893, 254, 164, 'Kingsport', 10000, 1),
(10894, 254, 164, 'Knoxville', 10000, 1),
(10895, 254, 164, 'La Follette', 10000, 1),
(10896, 254, 164, 'Lafayette', 10000, 1),
(10897, 254, 164, 'Lawrenceburg', 10000, 1),
(10898, 254, 164, 'Lebanon', 10000, 1),
(10899, 254, 164, 'Lenoir', 10000, 1),
(10900, 254, 164, 'Lewisburg', 10000, 1),
(10901, 254, 164, 'Lexington', 10000, 1),
(10902, 254, 164, 'Linden', 10000, 1),
(10903, 254, 164, 'Livingston', 10000, 1),
(10904, 254, 164, 'Lookout Mountain', 10000, 1),
(10905, 254, 164, 'Loudon', 10000, 1),
(10906, 254, 164, 'Lynchburg', 10000, 1),
(10907, 254, 164, 'Manchester', 10000, 1),
(10908, 254, 164, 'Martin', 10000, 1),
(10909, 254, 164, 'Maryville', 10000, 1),
(10910, 254, 164, 'Maynardville', 10000, 1),
(10913, 254, 164, 'Memphis', 10000, 1),
(10914, 254, 164, 'Milan', 10000, 1),
(10915, 254, 164, 'Monteagle', 10000, 1),
(10916, 254, 164, 'Morristown', 10000, 1),
(10917, 254, 164, 'Mountain City', 10000, 1),
(10918, 254, 164, 'Murfreesboro', 10000, 1),
(10919, 254, 164, 'Nashville', 10000, 1),
(10920, 254, 164, 'Newport', 10000, 1),
(10921, 254, 164, 'Oak Ridge', 10000, 1),
(10922, 254, 164, 'Paris', 10000, 1),
(10923, 254, 164, 'Parsons', 10000, 1),
(10924, 254, 164, 'Pigeon Forge', 10000, 1),
(10925, 254, 164, 'Pikeville', 10000, 1),
(10926, 254, 164, 'Pulaski', 10000, 1),
(10927, 254, 164, 'Ripley', 10000, 1),
(10928, 254, 164, 'Rockwood', 10000, 1),
(10929, 254, 164, 'Rogersville', 10000, 1),
(10930, 254, 164, 'Rutledge', 10000, 1),
(10931, 254, 164, 'Selmer', 10000, 1),
(10932, 254, 164, 'Sevierville', 10000, 1),
(10933, 254, 164, 'Shelbyville', 10000, 1),
(10934, 254, 164, 'Smithville', 10000, 1),
(10935, 254, 164, 'Sneedville', 10000, 1),
(10936, 254, 164, 'Somerville', 10000, 1),
(10937, 254, 164, 'Sparta', 10000, 1),
(10938, 254, 164, 'Spencer', 10000, 1),
(10939, 254, 164, 'Springfield', 10000, 1),
(10940, 254, 164, 'Sweetwater', 10000, 1),
(10941, 254, 164, 'Tazewell', 10000, 1),
(10942, 254, 164, 'Tiptonville', 10000, 1),
(10943, 254, 164, 'Townsend', 10000, 1),
(10944, 254, 164, 'Union City', 10000, 1),
(10945, 254, 164, 'Wartburg', 10000, 1),
(10946, 254, 164, 'Waverly', 10000, 1),
(10947, 254, 164, 'Waynesboro', 10000, 1),
(10948, 254, 164, 'Winchester', 10000, 1),
(10949, 254, 164, 'Woodbury', 10000, 1),
(10950, 254, 165, 'Abilene', 10000, 1),
(10951, 254, 165, 'Albany', 10000, 1),
(10952, 254, 165, 'Alice', 10000, 1),
(10953, 254, 165, 'Allen', 10000, 1),
(10954, 254, 165, 'Alpine', 10000, 1),
(10955, 254, 165, 'Alvin', 10000, 1),
(10956, 254, 165, 'Amarillo', 10000, 1),
(10957, 254, 165, 'Anahuac', 10000, 1),
(10958, 254, 165, 'Andrews', 10000, 1),
(10959, 254, 165, 'Anson', 10000, 1),
(10960, 254, 165, 'Archer City', 10000, 1),
(10961, 254, 165, 'Arlington', 10000, 1),
(10962, 254, 165, 'Aspermont', 10000, 1),
(10963, 254, 165, 'Athens', 10000, 1),
(10964, 254, 165, 'Atlanta', 10000, 1),
(10965, 254, 165, 'Austin', 10000, 1),
(10966, 254, 165, 'Ballinger', 10000, 1),
(10967, 254, 165, 'Bandera', 10000, 1),
(10968, 254, 165, 'Bastrop', 10000, 1),
(10969, 254, 165, 'Bay City', 10000, 1),
(10970, 254, 165, 'Baytown', 10000, 1),
(10971, 254, 165, 'Beaumont', 10000, 1),
(10972, 254, 165, 'Bedford', 10000, 1),
(10973, 254, 165, 'Beeville', 10000, 1),
(10974, 254, 165, 'Bellville', 10000, 1),
(10976, 254, 165, 'Benjamin', 10000, 1),
(10977, 254, 165, 'Big Lake', 10000, 1),
(10978, 254, 165, 'Big Spring', 10000, 1),
(10979, 254, 165, 'Boerne', 10000, 1),
(10980, 254, 165, 'Bonham', 10000, 1),
(10981, 254, 165, 'Borger', 10000, 1),
(10982, 254, 165, 'Brackettville', 10000, 1),
(10983, 254, 165, 'Brady', 10000, 1),
(10984, 254, 165, 'Breckenridge', 10000, 1),
(10985, 254, 165, 'Bremond', 10000, 1),
(10986, 254, 165, 'Brenham', 10000, 1),
(10987, 254, 165, 'Brownfield', 10000, 1),
(10988, 254, 165, 'Brownsville', 10000, 1),
(10989, 254, 165, 'Brownwood', 10000, 1),
(10990, 254, 165, 'Bruni', 10000, 1),
(10991, 254, 165, 'Bryan', 10000, 1),
(10992, 254, 165, 'Burnet', 10000, 1),
(10993, 254, 165, 'Caldwell', 10000, 1),
(10994, 254, 165, 'Cameron', 10000, 1),
(10995, 254, 165, 'Canadian', 10000, 1),
(10996, 254, 165, 'Canton', 10000, 1),
(10997, 254, 165, 'Canyon', 10000, 1),
(10998, 254, 165, 'Carrizo Springs', 10000, 1),
(10999, 254, 165, 'Carrollton', 10000, 1),
(11000, 254, 165, 'Carswell Afb', 10000, 1),
(11001, 254, 165, 'Carthage', 10000, 1),
(11002, 254, 165, 'Cedar Hill', 10000, 1),
(11003, 254, 165, 'Center', 10000, 1),
(11004, 254, 165, 'Centerville', 10000, 1),
(11005, 254, 165, 'Channelview', 10000, 1),
(11006, 254, 165, 'Channing', 10000, 1),
(11007, 254, 165, 'Goliad', 10000, 1),
(11008, 254, 165, 'Childress', 10000, 1),
(11009, 254, 165, 'Clarendon', 10000, 1),
(11010, 254, 165, 'Clarksville', 10000, 1),
(11011, 254, 165, 'Claude', 10000, 1),
(11012, 254, 165, 'Cleburne', 10000, 1),
(11013, 254, 165, 'Clifton', 10000, 1),
(11014, 254, 165, 'Clute', 10000, 1),
(11015, 254, 165, 'Clyde', 10000, 1),
(11016, 254, 165, 'Coldspring', 10000, 1),
(11017, 254, 165, 'Coleman', 10000, 1),
(11018, 254, 165, 'College Station', 10000, 1),
(11019, 254, 165, 'Colorado City', 10000, 1),
(11020, 254, 165, 'Columbus', 10000, 1),
(11021, 254, 165, 'Comanche', 10000, 1),
(11022, 254, 165, 'Commerce', 10000, 1),
(11023, 254, 165, 'Conroe', 10000, 1),
(11024, 254, 165, 'Cookville', 10000, 1),
(11025, 254, 165, 'Cooper', 10000, 1),
(11026, 254, 165, 'Coppell', 10000, 1),
(11027, 254, 165, 'Copperas Cove', 10000, 1),
(11028, 254, 165, 'Corpus Christi', 10000, 1),
(11029, 254, 165, 'Corsicana', 10000, 1),
(11030, 254, 165, 'Cotulla', 10000, 1),
(11031, 254, 165, 'Crane', 10000, 1),
(11032, 254, 165, 'Crockett', 10000, 1),
(11033, 254, 165, 'Crosbyton', 10000, 1),
(11034, 254, 165, 'Crowell', 10000, 1),
(11035, 254, 165, 'Crystal City', 10000, 1),
(11036, 254, 165, 'Cuero', 10000, 1),
(11037, 254, 165, 'Daingerfield', 10000, 1),
(11038, 254, 165, 'Dalhart', 10000, 1),
(11039, 254, 165, 'Dallas', 10000, 1),
(11040, 254, 165, 'Decatur', 10000, 1),
(11041, 254, 165, 'Deer Park', 10000, 1),
(11042, 254, 165, 'Del Rio', 10000, 1),
(11043, 254, 165, 'Denison', 10000, 1),
(11044, 254, 165, 'Denton', 10000, 1),
(11045, 254, 165, 'Denver City', 10000, 1),
(11046, 254, 165, 'Desoto', 10000, 1),
(11047, 254, 165, 'Dickens', 10000, 1),
(11048, 254, 165, 'Dimmitt', 10000, 1),
(11049, 254, 165, 'Dumas', 10000, 1),
(11050, 254, 165, 'Duncanville', 10000, 1),
(11051, 254, 165, 'Eagle Pass', 10000, 1),
(11052, 254, 165, 'Eastland', 10000, 1),
(11053, 254, 165, 'Edinburg', 10000, 1),
(11054, 254, 165, 'Edna', 10000, 1),
(11055, 254, 165, 'El Paso', 10000, 1),
(11056, 254, 165, 'Eldorado', 10000, 1),
(11057, 254, 165, 'Emory', 10000, 1),
(11058, 254, 165, 'Encinal', 10000, 1),
(11059, 254, 165, 'Ennis', 10000, 1),
(11060, 254, 165, 'Euless', 10000, 1),
(11061, 254, 165, 'Fairfield', 10000, 1),
(11062, 254, 165, 'Falfurrias', 10000, 1),
(11064, 254, 165, 'Farwell', 10000, 1),
(11065, 254, 165, 'Floresville', 10000, 1),
(11066, 254, 165, 'Flower Mound', 10000, 1),
(11067, 254, 165, 'Floydada', 10000, 1),
(11069, 254, 165, 'Fort Stockton', 10000, 1),
(11070, 254, 165, 'Fort Worth', 10000, 1),
(11073, 254, 165, 'Freeport', 10000, 1),
(11074, 254, 165, 'Friendswood', 10000, 1),
(11075, 254, 165, 'Gail', 10000, 1),
(11076, 254, 165, 'Gainesville', 10000, 1),
(11077, 254, 165, 'Galveston', 10000, 1),
(11078, 254, 165, 'Garden City', 10000, 1),
(11079, 254, 165, 'Garland', 10000, 1),
(11080, 254, 165, 'Gatesville', 10000, 1),
(11081, 254, 165, 'George West', 10000, 1),
(11082, 254, 165, 'Georgetown', 10000, 1),
(11083, 254, 165, 'Giddings', 10000, 1),
(11084, 254, 165, 'Gilmer', 10000, 1),
(11085, 254, 165, 'Glen Rose', 10000, 1),
(11086, 254, 165, 'Goldthwaite', 10000, 1),
(11087, 254, 165, 'Gonzales', 10000, 1),
(11088, 254, 165, 'Graham', 10000, 1),
(11089, 254, 165, 'Granbury', 10000, 1),
(11090, 254, 165, 'Grand Prairie', 10000, 1),
(11091, 254, 165, 'Grapevine', 10000, 1),
(11092, 254, 165, 'Greenville', 10000, 1),
(11093, 254, 165, 'Groesbeck', 10000, 1),
(11094, 254, 165, 'Groveton', 10000, 1),
(11096, 254, 165, 'Guthrie', 10000, 1),
(11097, 254, 165, 'Hamilton', 10000, 1),
(11098, 254, 165, 'Harlingen', 10000, 1),
(11099, 254, 165, 'Haskell', 10000, 1),
(11100, 254, 165, 'Hearne', 10000, 1),
(11101, 254, 165, 'Hebbronville', 10000, 1),
(11102, 254, 165, 'Hemphill', 10000, 1),
(11103, 254, 165, 'Hempstead', 10000, 1),
(11104, 254, 165, 'Henderson', 10000, 1),
(11105, 254, 165, 'Henrietta', 10000, 1),
(11106, 254, 165, 'Hereford', 10000, 1),
(11107, 254, 165, 'Hillsboro', 10000, 1),
(11108, 254, 165, 'Hondo', 10000, 1),
(11109, 254, 165, 'Houston', 10000, 1),
(11112, 254, 165, 'Humble', 10000, 1),
(11113, 254, 165, 'Huntsville', 10000, 1),
(11114, 254, 165, 'Hurst', 10000, 1),
(11115, 254, 165, 'Irving', 10000, 1),
(11116, 254, 165, 'Jacksboro', 10000, 1),
(11117, 254, 165, 'Jasper', 10000, 1),
(11118, 254, 165, 'Jefferson', 10000, 1),
(11119, 254, 165, 'Johnson City', 10000, 1),
(11120, 254, 165, 'Junction', 10000, 1),
(11121, 254, 165, 'Karnes City', 10000, 1),
(11122, 254, 165, 'Katy', 10000, 1),
(11123, 254, 165, 'Kaufman', 10000, 1),
(11125, 254, 165, 'Kerrville', 10000, 1),
(11126, 254, 165, 'Killeen', 10000, 1),
(11127, 254, 165, 'Kingsville', 10000, 1),
(11129, 254, 165, 'Kountze', 10000, 1),
(11130, 254, 165, 'Kurten', 10000, 1),
(11131, 254, 165, 'La Grange', 10000, 1),
(11132, 254, 165, 'La Porte', 10000, 1),
(11133, 254, 165, 'Terlingua', 10000, 1),
(11134, 254, 165, 'Lake Jackson', 10000, 1),
(11135, 254, 165, 'Lamesa', 10000, 1),
(11136, 254, 165, 'Lampasas', 10000, 1),
(11137, 254, 165, 'Lancaster', 10000, 1),
(11138, 254, 165, 'Laredo', 10000, 1),
(11140, 254, 165, 'League City', 10000, 1),
(11141, 254, 165, 'Leakey', 10000, 1),
(11142, 254, 165, 'Levelland', 10000, 1),
(11143, 254, 165, 'Lewisville', 10000, 1),
(11144, 254, 165, 'Liberty', 10000, 1),
(11145, 254, 165, 'Lipscomb', 10000, 1),
(11146, 254, 165, 'Littlefield', 10000, 1),
(11147, 254, 165, 'Livingston', 10000, 1),
(11148, 254, 165, 'Llano', 10000, 1),
(11149, 254, 165, 'Lockhart', 10000, 1),
(11150, 254, 165, 'Longview', 10000, 1),
(11151, 254, 165, 'Lubbock', 10000, 1),
(11152, 254, 165, 'Lubbock Reese AFB', 10000, 1),
(11153, 254, 165, 'Lufkin', 10000, 1),
(11154, 254, 165, 'Madisonville', 10000, 1),
(11155, 254, 165, 'Marathon', 10000, 1),
(11156, 254, 165, 'Marble Falls', 10000, 1),
(11157, 254, 165, 'Marfa', 10000, 1),
(11158, 254, 165, 'Marlin', 10000, 1),
(11159, 254, 165, 'Marshall', 10000, 1),
(11160, 254, 165, 'Mason', 10000, 1),
(11161, 254, 165, 'Matador', 10000, 1),
(11162, 254, 165, 'McAllen', 10000, 1),
(11163, 254, 165, 'Mc Kinney', 10000, 1),
(11164, 254, 165, 'Memphis', 10000, 1),
(11165, 254, 165, 'Menard', 10000, 1),
(11166, 254, 165, 'Mentone', 10000, 1),
(11167, 254, 165, 'Meridian', 10000, 1),
(11168, 254, 165, 'Mertzon', 10000, 1),
(11169, 254, 165, 'Mesquite', 10000, 1),
(11170, 254, 165, 'Miami', 10000, 1),
(11171, 254, 165, 'Midland', 10000, 1),
(11172, 254, 165, 'Mineral Wells', 10000, 1),
(11173, 254, 165, 'Mirando City', 10000, 1),
(11174, 254, 165, 'Mission', 10000, 1),
(11175, 254, 165, 'Missouri City', 10000, 1),
(11176, 254, 165, 'Monahans', 10000, 1),
(11177, 254, 165, 'Montague', 10000, 1),
(11178, 254, 165, 'Morton', 10000, 1),
(11179, 254, 165, 'Mount Vernon', 10000, 1),
(11180, 254, 165, 'Muleshoe', 10000, 1),
(11181, 254, 165, 'Nacogdoches', 10000, 1),
(11182, 254, 165, 'Navasota', 10000, 1),
(11183, 254, 165, 'New Boston', 10000, 1),
(11184, 254, 165, 'New Braunfels', 10000, 1),
(11185, 254, 165, 'Newton', 10000, 1),
(11186, 254, 165, 'North Richland Hills', 10000, 1),
(11187, 254, 165, 'Odessa', 10000, 1),
(11188, 254, 165, 'Orange', 10000, 1),
(11189, 254, 165, 'Ozona', 10000, 1),
(11190, 254, 165, 'Paducah', 10000, 1),
(11191, 254, 165, 'Paint Rock', 10000, 1),
(11192, 254, 165, 'Palacios', 10000, 1),
(11193, 254, 165, 'Palestine', 10000, 1),
(11194, 254, 165, 'Pampa', 10000, 1),
(11195, 254, 165, 'Panhandle', 10000, 1),
(11196, 254, 165, 'Paris', 10000, 1),
(11197, 254, 165, 'Pearland', 10000, 1),
(11198, 254, 165, 'Pearsall', 10000, 1),
(11199, 254, 165, 'Pecos', 10000, 1),
(11200, 254, 165, 'Perryton', 10000, 1),
(11201, 254, 165, 'Pharr', 10000, 1),
(11202, 254, 165, 'Pittsburg', 10000, 1),
(11203, 254, 165, 'Plainview', 10000, 1),
(11204, 254, 165, 'Plano', 10000, 1),
(11205, 254, 165, 'Pleasanton', 10000, 1),
(11206, 254, 165, 'Port Arthur', 10000, 1),
(11207, 254, 165, 'Port Lavaca', 10000, 1),
(11208, 254, 165, 'Post', 10000, 1),
(11209, 254, 165, 'Presidio', 10000, 1),
(11210, 254, 165, 'Quanah', 10000, 1),
(11211, 254, 165, 'Quitman', 10000, 1),
(11213, 254, 165, 'Rankin', 10000, 1),
(11214, 254, 165, 'Raymondville', 10000, 1),
(11216, 254, 165, 'Refugio', 10000, 1),
(11217, 254, 165, 'Richardson', 10000, 1),
(11218, 254, 165, 'Richmond', 10000, 1),
(11219, 254, 165, 'Rio Grande City', 10000, 1),
(11220, 254, 165, 'Robert Lee', 10000, 1),
(11221, 254, 165, 'Roby', 10000, 1),
(11222, 254, 165, 'Rockport', 10000, 1),
(11223, 254, 165, 'Rocksprings', 10000, 1),
(11224, 254, 165, 'Rockwall', 10000, 1),
(11225, 254, 165, 'Rosenberg', 10000, 1),
(11226, 254, 165, 'Round Rock', 10000, 1),
(11227, 254, 165, 'Rowlett', 10000, 1),
(11228, 254, 165, 'San Angelo', 10000, 1),
(11229, 254, 165, 'San Antonio', 10000, 1),
(11230, 254, 165, 'San Augustine', 10000, 1),
(11231, 254, 165, 'San Benito', 10000, 1),
(11232, 254, 165, 'San Diego', 10000, 1),
(11233, 254, 165, 'San Marcos', 10000, 1),
(11234, 254, 165, 'San Saba', 10000, 1),
(11235, 254, 165, 'Sanderson', 10000, 1),
(11236, 254, 165, 'Sarita', 10000, 1),
(11237, 254, 165, 'Seguin', 10000, 1),
(11238, 254, 165, 'Seminole', 10000, 1),
(11239, 254, 165, 'Seymour', 10000, 1),
(11240, 254, 165, 'Sherman', 10000, 1),
(11241, 254, 165, 'Sierra Blanca', 10000, 1),
(11242, 254, 165, 'Silverton', 10000, 1),
(11243, 254, 165, 'Sinton', 10000, 1),
(11244, 254, 165, 'Snyder', 10000, 1),
(11245, 254, 165, 'Sonora', 10000, 1),
(11246, 254, 165, 'South Padre Island', 10000, 1),
(11247, 254, 165, 'Spearman', 10000, 1),
(11248, 254, 165, 'Spring', 10000, 1),
(11249, 254, 165, 'Stanton', 10000, 1),
(11250, 254, 165, 'Stephenville', 10000, 1),
(11251, 254, 165, 'Sterling City', 10000, 1),
(11252, 254, 165, 'Stratford', 10000, 1),
(11253, 254, 165, 'Sugar Land', 10000, 1),
(11254, 254, 165, 'Sulphur Springs', 10000, 1),
(11255, 254, 165, 'Sweetwater', 10000, 1),
(11256, 254, 165, 'Tahoka', 10000, 1),
(11257, 254, 165, 'Temple', 10000, 1),
(11258, 254, 165, 'Texarkana', 10000, 1),
(11259, 254, 165, 'Texas City', 10000, 1),
(11260, 254, 165, 'The Colony', 10000, 1),
(11261, 254, 165, 'Throckmorton', 10000, 1),
(11262, 254, 165, 'Tilden', 10000, 1),
(11263, 254, 165, 'Tomball', 10000, 1),
(11264, 254, 165, 'Tulia', 10000, 1),
(11265, 254, 165, 'Tyler', 10000, 1),
(11266, 254, 165, 'Uvalde', 10000, 1),
(11267, 254, 165, 'Vancourt', 10000, 1),
(11268, 254, 165, 'Vega', 10000, 1),
(11269, 254, 165, 'Vernon', 10000, 1),
(11270, 254, 165, 'Victoria', 10000, 1),
(11271, 254, 165, 'Waco', 10000, 1),
(11272, 254, 165, 'Wadsworth', 10000, 1),
(11274, 254, 165, 'Weatherford', 10000, 1),
(11275, 254, 165, 'Wellington', 10000, 1),
(11276, 254, 165, 'Weslaco', 10000, 1),
(11277, 254, 165, 'Wharton', 10000, 1),
(11278, 254, 165, 'Wheeler', 10000, 1),
(11279, 254, 165, 'Wichita Falls', 10000, 1),
(11280, 254, 165, 'Wink', 10000, 1),
(11281, 254, 165, 'Woodville', 10000, 1),
(11282, 254, 165, 'Yoakum', 10000, 1),
(11283, 254, 165, 'Zapata', 10000, 1),
(11284, 254, 166, 'Bicknell', 10000, 1),
(11285, 254, 166, 'Blanding', 10000, 1),
(11286, 254, 166, 'Bountiful', 10000, 1),
(11287, 254, 166, 'Brian Head', 10000, 1),
(11288, 254, 166, 'Brigham City', 10000, 1),
(11289, 254, 166, 'Bryce Canyon', 10000, 1),
(11290, 254, 166, 'Bryce Canyon National Park', 10000, 1),
(11291, 254, 166, 'Cedar City', 10000, 1),
(11292, 254, 166, 'Clearfield', 10000, 1),
(11293, 254, 166, 'Coalville', 10000, 1),
(11294, 254, 166, 'Delta', 10000, 1),
(11295, 254, 166, 'Duchesne', 10000, 1),
(11296, 254, 166, 'Ephraim', 10000, 1),
(11297, 254, 166, 'Escalante', 10000, 1),
(11298, 254, 166, 'Fillmore', 10000, 1),
(11300, 254, 166, 'Green River', 10000, 1),
(11301, 254, 166, 'Hanksville', 10000, 1),
(11302, 254, 166, 'Heber City', 10000, 1),
(11303, 254, 166, 'Joseph', 10000, 1),
(11304, 254, 166, 'Kanab', 10000, 1),
(11305, 254, 166, 'Laketown', 10000, 1),
(11306, 254, 166, 'Layton', 10000, 1),
(11307, 254, 166, 'Logan', 10000, 1),
(11308, 254, 166, 'Manila', 10000, 1),
(11309, 254, 166, 'Manti', 10000, 1),
(11310, 254, 166, 'Midvale', 10000, 1),
(11311, 254, 166, 'Milford', 10000, 1),
(11312, 254, 166, 'Moab', 10000, 1),
(11313, 254, 166, 'Monticello', 10000, 1),
(11315, 254, 166, 'Nephi', 10000, 1),
(11316, 254, 166, 'Ogden', 10000, 1),
(11317, 254, 166, 'Orem', 10000, 1),
(11318, 254, 166, 'Park City', 10000, 1),
(11319, 254, 166, 'Payson', 10000, 1),
(11320, 254, 166, 'Price', 10000, 1),
(11321, 254, 166, 'Provo', 10000, 1),
(11322, 254, 166, 'Randolph', 10000, 1),
(11323, 254, 166, 'Richfield', 10000, 1),
(11324, 254, 166, 'Roosevelt', 10000, 1),
(11325, 254, 166, 'Roy', 10000, 1),
(11329, 254, 166, 'Spanish Fork', 10000, 1),
(11331, 254, 166, 'Tooele', 10000, 1),
(11332, 254, 166, 'Vernal', 10000, 1),
(11333, 254, 166, 'Wendover', 10000, 1),
(11336, 254, 167, 'Abingdon', 10000, 1),
(11337, 254, 167, 'Accomac', 10000, 1),
(11338, 254, 167, 'Alexandria', 10000, 1),
(11339, 254, 167, 'Amherst', 10000, 1),
(11340, 254, 167, 'Annandale', 10000, 1),
(11341, 254, 167, 'Appomattox', 10000, 1),
(11342, 254, 167, 'Arlington', 10000, 1),
(11343, 254, 167, 'Ashburn', 10000, 1),
(11344, 254, 167, 'Bedford', 10000, 1),
(11345, 254, 167, 'Berryville', 10000, 1),
(11346, 254, 167, 'Blacksburg', 10000, 1),
(11347, 254, 167, 'Bland', 10000, 1),
(11348, 254, 167, 'Bowling Green', 10000, 1),
(11349, 254, 167, 'Boydton', 10000, 1),
(11350, 254, 167, 'Bruington', 10000, 1),
(11351, 254, 167, 'Buckingham', 10000, 1),
(11352, 254, 167, 'Burke', 10000, 1),
(11353, 254, 167, 'Roanoke', 10000, 1),
(11354, 254, 167, 'Centreville', 10000, 1),
(11355, 254, 167, 'Chantilly', 10000, 1),
(11356, 254, 167, 'Charlottesville', 10000, 1),
(11357, 254, 167, 'Chesapeake', 10000, 1),
(11358, 254, 167, 'Chesterfield', 10000, 1),
(11359, 254, 167, 'Christiansburg', 10000, 1),
(11360, 254, 167, 'Clintwood', 10000, 1),
(11361, 254, 167, 'Courtland', 10000, 1),
(11362, 254, 167, 'Covington', 10000, 1),
(11363, 254, 167, 'Culpeper', 10000, 1),
(11364, 254, 167, 'Cumberland', 10000, 1),
(11365, 254, 167, 'Danville', 10000, 1),
(11367, 254, 167, 'Eastville', 10000, 1),
(11368, 254, 167, 'Emporia', 10000, 1),
(11369, 254, 167, 'Fairfax', 10000, 1),
(11370, 254, 167, 'Falls Church', 10000, 1),
(11371, 254, 167, 'Farmville', 10000, 1),
(11372, 254, 167, 'Fincastle', 10000, 1),
(11373, 254, 167, 'Floyd', 10000, 1),
(11374, 254, 167, 'Fredericksburg', 10000, 1),
(11375, 254, 167, 'Front Royal', 10000, 1),
(11376, 254, 167, 'Galax', 10000, 1),
(11377, 254, 167, 'Gate City', 10000, 1),
(11378, 254, 167, 'Gloucester', 10000, 1),
(11379, 254, 167, 'Goochland', 10000, 1),
(11380, 254, 167, 'Grundy', 10000, 1),
(11381, 254, 167, 'Hampton', 10000, 1),
(11382, 254, 167, 'Hanover', 10000, 1),
(11383, 254, 167, 'Harrisonburg', 10000, 1),
(11384, 254, 167, 'Heathsville', 10000, 1),
(11385, 254, 167, 'Herndon', 10000, 1),
(11387, 254, 167, 'Hopewell', 10000, 1),
(11388, 254, 167, 'Independence', 10000, 1),
(11389, 254, 167, 'Isle Of Wight', 10000, 1),
(11390, 254, 167, 'Jonesville', 10000, 1),
(11391, 254, 167, 'King George', 10000, 1),
(11392, 254, 167, 'King William', 10000, 1),
(11394, 254, 167, 'Lancaster', 10000, 1),
(11396, 254, 167, 'Lawrenceville', 10000, 1),
(11397, 254, 167, 'Lebanon', 10000, 1),
(11398, 254, 167, 'Leesburg', 10000, 1),
(11399, 254, 167, 'Lexington', 10000, 1),
(11400, 254, 167, 'Lorton', 10000, 1),
(11401, 254, 167, 'Louisa', 10000, 1),
(11402, 254, 167, 'Lovingston', 10000, 1),
(11403, 254, 167, 'Lunenburg', 10000, 1),
(11404, 254, 167, 'Luray', 10000, 1),
(11405, 254, 167, 'Lynchburg', 10000, 1),
(11406, 254, 167, 'Madison', 10000, 1),
(11407, 254, 167, 'Manassas', 10000, 1),
(11408, 254, 167, 'Marion', 10000, 1),
(11409, 254, 167, 'Martinsville', 10000, 1),
(11411, 254, 167, 'Mathews', 10000, 1),
(11412, 254, 167, 'Mc Lean', 10000, 1),
(11413, 254, 167, 'Mechanicsville', 10000, 1),
(11414, 254, 167, 'Montross', 10000, 1),
(11415, 254, 167, 'Mount Vernon', 10000, 1),
(11416, 254, 167, 'New Castle', 10000, 1),
(11417, 254, 167, 'New Kent', 10000, 1),
(11418, 254, 167, 'Newport News', 10000, 1),
(11419, 254, 167, 'Nokesville', 10000, 1),
(11420, 254, 167, 'Norfolk', 10000, 1),
(11422, 254, 167, 'Oakton', 10000, 1),
(11423, 254, 167, 'Orange', 10000, 1),
(11424, 254, 167, 'Palmyra', 10000, 1),
(11425, 254, 167, 'Pearisburg', 10000, 1),
(11426, 254, 167, 'Petersburg', 10000, 1),
(11427, 254, 167, 'Portsmouth', 10000, 1),
(11428, 254, 167, 'Powhatan', 10000, 1),
(11429, 254, 160, 'Presto', 10000, 1),
(11430, 254, 167, 'Pulaski', 10000, 1),
(11431, 254, 167, 'Quantico', 10000, 1),
(11432, 254, 167, 'Radford', 10000, 1),
(11433, 254, 167, 'Reston', 10000, 1),
(11434, 254, 167, 'Richmond', 10000, 1),
(11436, 254, 167, 'Rocky Mount', 10000, 1),
(11437, 254, 167, 'Salem', 10000, 1),
(11438, 254, 167, 'Saluda', 10000, 1),
(11440, 254, 167, 'South Boston', 10000, 1),
(11441, 254, 167, 'Springfield', 10000, 1),
(11442, 254, 167, 'Stafford', 10000, 1),
(11443, 254, 167, 'Stanardsville', 10000, 1),
(11444, 254, 167, 'Staunton', 10000, 1),
(11445, 254, 167, 'Sterling', 10000, 1),
(11446, 254, 167, 'Stuart', 10000, 1),
(11447, 254, 167, 'Suffolk', 10000, 1),
(11448, 254, 167, 'Surry', 10000, 1),
(11449, 254, 167, 'Sussex', 10000, 1),
(11450, 254, 167, 'Tappahannock', 10000, 1),
(11451, 254, 167, 'Tazewell', 10000, 1),
(11453, 254, 167, 'Virginia Beach', 10000, 1),
(11455, 254, 167, 'Warm Springs', 10000, 1),
(11456, 254, 167, 'Warrenton', 10000, 1),
(11457, 254, 167, 'Warsaw', 10000, 1),
(11458, 254, 167, 'Washington', 10000, 1),
(11459, 254, 167, 'Waynesboro', 10000, 1),
(11461, 254, 167, 'Williamsburg', 10000, 1),
(11462, 254, 167, 'Winchester', 10000, 1),
(11463, 254, 167, 'Winterham', 10000, 1),
(11464, 254, 167, 'Wise', 10000, 1),
(11465, 254, 167, 'Woodbridge', 10000, 1),
(11466, 254, 167, 'Woodstock', 10000, 1),
(11467, 254, 167, 'Wytheville', 10000, 1),
(11469, 254, 168, 'Auburn', 10000, 1),
(11470, 254, 168, 'Bellevue', 10000, 1),
(11471, 254, 168, 'Bellingham', 10000, 1),
(11472, 254, 168, 'Blaine', 10000, 1),
(11473, 254, 168, 'Bremerton', 10000, 1),
(11475, 254, 168, 'Burlington', 10000, 1),
(11476, 254, 168, 'Centralia', 10000, 1),
(11477, 254, 168, 'Cheney', 10000, 1),
(11479, 254, 168, 'Colville', 10000, 1),
(11480, 254, 168, 'Rockport', 10000, 1),
(11481, 254, 168, 'East Pasco', 10000, 1),
(11482, 254, 168, 'Edmonds', 10000, 1),
(11483, 254, 168, 'Ellensburg', 10000, 1),
(11484, 254, 168, 'Ephrata', 10000, 1),
(11485, 254, 168, 'Everett', 10000, 1),
(11486, 254, 168, 'Fairchild', 10000, 1),
(11487, 254, 168, 'Federal Way', 10000, 1),
(11488, 254, 168, 'Ferndale', 10000, 1),
(11489, 254, 168, 'Forks', 10000, 1),
(11491, 254, 168, 'Friday Harbor', 10000, 1),
(11492, 254, 168, 'Deming', 10000, 1),
(11493, 254, 168, 'Hanford', 10000, 1),
(11494, 254, 168, 'Hoquiam', 10000, 1),
(11495, 254, 168, 'Kennewick', 10000, 1),
(11496, 254, 168, 'Kent', 10000, 1),
(11497, 254, 168, 'Kirkland', 10000, 1),
(11498, 254, 168, 'Lacey', 10000, 1),
(11499, 254, 168, 'Lakewood', 10000, 1),
(11500, 254, 168, 'Longview', 10000, 1),
(11501, 254, 168, 'Lynden', 10000, 1),
(11502, 254, 168, 'Lynnwood', 10000, 1),
(11503, 254, 168, 'Mercer Island', 10000, 1),
(11505, 254, 168, 'Mount Vernon', 10000, 1),
(11506, 254, 168, 'Neah Bay', 10000, 1),
(11507, 254, 168, 'Ocean Shores', 10000, 1),
(11508, 254, 168, 'Olympia', 10000, 1),
(11509, 254, 168, 'Omak', 10000, 1),
(11510, 254, 168, 'Opportunity', 10000, 1),
(11511, 254, 168, 'Othello', 10000, 1),
(11512, 254, 168, 'Packwood', 10000, 1),
(11514, 254, 168, 'Pasco', 10000, 1),
(11515, 254, 168, 'Port Angeles', 10000, 1),
(11516, 254, 168, 'Port Townsend', 10000, 1),
(11517, 254, 168, 'Pullman', 10000, 1),
(11518, 254, 168, 'Puyallup', 10000, 1),
(11519, 254, 168, 'Quillayute', 10000, 1),
(11521, 254, 168, 'Redmond', 10000, 1),
(11522, 254, 168, 'Renton', 10000, 1),
(11523, 254, 168, 'Richland', 10000, 1),
(11527, 254, 168, 'Seattle', 10000, 1),
(11528, 254, 168, 'Sequim', 10000, 1),
(11529, 254, 168, 'Spokane', 10000, 1),
(11530, 254, 168, 'Stampede', 10000, 1),
(11531, 254, 168, 'Sumas', 10000, 1),
(11532, 254, 168, 'Tacoma', 10000, 1),
(11533, 254, 168, 'University Place', 10000, 1),
(11534, 254, 168, 'Vancouver', 10000, 1),
(11535, 254, 168, 'Walla Walla', 10000, 1),
(11536, 254, 168, 'Wenatchee', 10000, 1),
(11538, 254, 168, 'Yakima', 10000, 1),
(11539, 254, 170, 'Alma', 10000, 1),
(11540, 254, 170, 'Antigo', 10000, 1),
(11541, 254, 170, 'Appleton', 10000, 1),
(11542, 254, 170, 'Ashland', 10000, 1),
(11543, 254, 170, 'Balsam Lake', 10000, 1),
(11544, 254, 170, 'Baraboo', 10000, 1),
(11545, 254, 170, 'Bayfield', 10000, 1),
(11546, 254, 170, 'Beaver Dam', 10000, 1),
(11547, 254, 170, 'Beloit', 10000, 1),
(11548, 254, 170, 'Berlin', 10000, 1),
(11549, 254, 170, 'Black River Falls', 10000, 1),
(11550, 254, 170, 'Brookfield', 10000, 1),
(11551, 254, 170, 'Burlington', 10000, 1),
(11552, 254, 170, 'Chilton', 10000, 1),
(11553, 254, 170, 'Chippewa Falls', 10000, 1),
(11554, 254, 170, 'Crandon', 10000, 1),
(11555, 254, 170, 'Darlington', 10000, 1),
(11556, 254, 170, 'Dodgeville', 10000, 1),
(11557, 254, 170, 'Dresser', 10000, 1),
(11558, 254, 170, 'Durand', 10000, 1),
(11559, 254, 170, 'Eagle River', 10000, 1),
(11560, 254, 170, 'Eau Claire', 10000, 1),
(11561, 254, 170, 'Elkhorn', 10000, 1),
(11562, 254, 170, 'Florence', 10000, 1),
(11563, 254, 170, 'Fond Du Lac', 10000, 1),
(11564, 254, 170, 'Franklin', 10000, 1),
(11565, 254, 170, 'Friendship', 10000, 1),
(11566, 254, 170, 'Green Bay', 10000, 1),
(11568, 254, 170, 'Hayward', 10000, 1),
(11569, 254, 170, 'Hurley', 10000, 1),
(11570, 254, 170, 'Janesville', 10000, 1),
(11571, 254, 170, 'Jefferson', 10000, 1),
(11572, 254, 170, 'Junction City', 10000, 1),
(11573, 254, 170, 'Kenosha', 10000, 1),
(11576, 254, 170, 'Keshena', 10000, 1),
(11577, 254, 170, 'Kewaunee', 10000, 1),
(11578, 254, 170, 'La Crosse', 10000, 1),
(11579, 254, 170, 'Ladysmith', 10000, 1),
(11581, 254, 170, 'Lone Rock', 10000, 1),
(11582, 254, 170, 'Madison', 10000, 1),
(11583, 254, 170, 'Manitowoc', 10000, 1),
(11584, 254, 170, 'Marinette', 10000, 1),
(11585, 254, 170, 'Marshfield', 10000, 1),
(11586, 254, 170, 'Mauston', 10000, 1),
(11587, 254, 170, 'Medford', 10000, 1),
(11588, 254, 170, 'Menomonie', 10000, 1),
(11589, 254, 170, 'Mequon', 10000, 1),
(11590, 254, 170, 'Merrill', 10000, 1),
(11591, 254, 170, 'Milwaukee', 10000, 1),
(11592, 254, 170, 'Monroe', 10000, 1),
(11593, 254, 170, 'Montello', 10000, 1),
(11594, 254, 170, 'Neenah', 10000, 1),
(11595, 254, 170, 'Neillsville', 10000, 1),
(11596, 254, 170, 'New Berlin', 10000, 1),
(11597, 254, 170, 'New London', 10000, 1),
(11598, 254, 170, 'New Richmond', 10000, 1),
(11599, 254, 170, 'Oconto', 10000, 1),
(11600, 254, 170, 'Osceola', 10000, 1),
(11601, 254, 170, 'Oshkosh', 10000, 1),
(11602, 254, 170, 'Park Falls', 10000, 1),
(11603, 254, 170, 'Phillips', 10000, 1),
(11604, 254, 170, 'Platteville', 10000, 1),
(11605, 254, 170, 'Port Washington', 10000, 1),
(11606, 254, 170, 'Portage', 10000, 1),
(11607, 254, 170, 'Prairie Du Chien', 10000, 1),
(11608, 254, 170, 'Racine', 10000, 1),
(11609, 254, 170, 'Rhinelander', 10000, 1),
(11610, 254, 170, 'Rice Lake', 10000, 1),
(11611, 254, 170, 'Richland Center', 10000, 1),
(11612, 254, 170, 'River Falls', 10000, 1),
(11613, 254, 170, 'Seymour', 10000, 1),
(11614, 254, 170, 'Shawano', 10000, 1),
(11615, 254, 170, 'Sheboygan', 10000, 1),
(11616, 254, 170, 'Shell Lake', 10000, 1),
(11617, 254, 170, 'Silver Lake', 10000, 1),
(11618, 254, 170, 'Siren', 10000, 1),
(11619, 254, 170, 'Sparta', 10000, 1),
(11620, 254, 170, 'Stevens Point', 10000, 1),
(11621, 254, 170, 'Sturgeon Bay', 10000, 1),
(11622, 254, 170, 'Superior', 10000, 1),
(11623, 254, 170, 'Tomah', 10000, 1),
(11624, 254, 170, 'Twin Lakes', 10000, 1),
(11625, 254, 170, 'Viroqua', 10000, 1),
(11627, 254, 170, 'Washburn', 10000, 1),
(11628, 254, 170, 'Waukesha', 10000, 1),
(11629, 254, 170, 'Wausau', 10000, 1),
(11632, 254, 170, 'West Bend', 10000, 1),
(11633, 254, 170, 'Whitehall', 10000, 1),
(11634, 254, 170, 'Whitewater', 10000, 1),
(11636, 254, 169, 'Bartow', 10000, 1),
(11637, 254, 169, 'Beckley', 10000, 1),
(11638, 254, 169, 'Berkeley Springs', 10000, 1),
(11639, 254, 169, 'Bluefield', 10000, 1),
(11640, 254, 169, 'Bridgeport', 10000, 1),
(11641, 254, 169, 'Buckhannon', 10000, 1),
(11642, 254, 169, 'Charles Town', 10000, 1),
(11643, 254, 169, 'Charleston', 10000, 1),
(11644, 254, 169, 'Circleville', 10000, 1),
(11645, 254, 169, 'Clarksburg', 10000, 1),
(11646, 254, 169, 'Clay', 10000, 1),
(11647, 254, 169, 'Daybrook', 10000, 1),
(11648, 254, 169, 'Elizabeth', 10000, 1),
(11649, 254, 169, 'Elkins', 10000, 1),
(11650, 254, 169, 'Fairmont', 10000, 1),
(11652, 254, 169, 'Franklin', 10000, 1),
(11653, 254, 169, 'Glenville', 10000, 1),
(11654, 254, 169, 'Grafton', 10000, 1),
(11655, 254, 169, 'Grantsville', 10000, 1),
(11656, 254, 169, 'Green Bank', 10000, 1),
(11657, 254, 169, 'Hamlin', 10000, 1),
(11658, 254, 169, 'Harrisville', 10000, 1),
(11659, 254, 169, 'Hinton', 10000, 1),
(11660, 254, 169, 'Huntington', 10000, 1),
(11661, 254, 169, 'Keyser', 10000, 1),
(11662, 254, 169, 'Kingwood', 10000, 1),
(11663, 254, 169, 'Lewisburg', 10000, 1),
(11664, 254, 169, 'Logan', 10000, 1),
(11665, 254, 169, 'Madison', 10000, 1),
(11666, 254, 169, 'Marlinton', 10000, 1),
(11667, 254, 169, 'Martinsburg', 10000, 1),
(11668, 254, 169, 'Middlebourne', 10000, 1),
(11669, 254, 169, 'Moorefield', 10000, 1),
(11670, 254, 169, 'Morgantown', 10000, 1),
(11671, 254, 169, 'Moundsville', 10000, 1),
(11672, 254, 169, 'New Martinsville', 10000, 1),
(11673, 254, 169, 'Oak Hill', 10000, 1),
(11674, 254, 169, 'Parkersburg', 10000, 1),
(11675, 254, 169, 'Parsons', 10000, 1),
(11676, 254, 169, 'Petersburg', 10000, 1),
(11677, 254, 169, 'Philippi', 10000, 1),
(11678, 254, 169, 'Pineville', 10000, 1),
(11679, 254, 169, 'Point Pleasant', 10000, 1),
(11680, 254, 169, 'Ripley', 10000, 1),
(11681, 254, 169, 'Romney', 10000, 1),
(11682, 254, 169, 'Scott Depot', 10000, 1),
(11685, 254, 169, 'Spencer', 10000, 1),
(11686, 254, 169, 'Saint Marys', 10000, 1),
(11687, 254, 169, 'Summersville', 10000, 1),
(11688, 254, 169, 'Sutton', 10000, 1),
(11689, 254, 169, 'Union', 10000, 1),
(11690, 254, 169, 'Wayne', 10000, 1),
(11691, 254, 169, 'Webster', 10000, 1),
(11692, 254, 169, 'Weirton', 10000, 1),
(11693, 254, 169, 'Welch', 10000, 1),
(11694, 254, 169, 'West Union', 10000, 1),
(11695, 254, 169, 'Weston', 10000, 1),
(11696, 254, 169, 'Wheeling', 10000, 1),
(11697, 254, 169, 'White Pine', 10000, 1),
(11698, 254, 169, 'White Sulphur Springs', 10000, 1),
(11699, 254, 169, 'Williamson', 10000, 1),
(11700, 254, 169, 'Winfield', 10000, 1),
(11702, 254, 171, 'Big Piney', 10000, 1),
(11703, 254, 171, 'Buffalo', 10000, 1),
(11704, 254, 171, 'Casper', 10000, 1),
(11705, 254, 171, 'Cheyenne', 10000, 1),
(11706, 254, 171, 'Cody', 10000, 1),
(11707, 254, 171, 'Douglas', 10000, 1),
(11708, 254, 171, 'Evanston', 10000, 1),
(11709, 254, 171, 'Gillette', 10000, 1),
(11710, 254, 171, 'Glendo', 10000, 1),
(11712, 254, 171, 'Green River', 10000, 1),
(11713, 254, 171, 'Guernsey', 10000, 1),
(11714, 254, 171, 'Hanna', 10000, 1),
(11715, 254, 171, 'Jackson', 10000, 1),
(11716, 254, 171, 'Kemmerer', 10000, 1),
(11717, 254, 171, 'Lander', 10000, 1),
(11718, 254, 171, 'Laramie', 10000, 1),
(11719, 254, 171, 'Newcastle', 10000, 1),
(11720, 254, 171, 'Pine Bluffs', 10000, 1),
(11721, 254, 171, 'Pinedale', 10000, 1),
(11722, 254, 171, 'Rawlins', 10000, 1),
(11723, 254, 171, 'Riverton', 10000, 1),
(11724, 254, 171, 'Rock Springs', 10000, 1),
(11725, 254, 171, 'Saratoga', 10000, 1),
(11726, 254, 171, 'Sheridan', 10000, 1),
(11727, 254, 171, 'Sundance', 10000, 1),
(11728, 254, 171, 'Thermopolis', 10000, 1),
(11729, 254, 171, 'Torrington', 10000, 1),
(11730, 254, 171, 'Wheatland', 10000, 1),
(11731, 254, 171, 'Worland', 10000, 1),
(11745, 254, 132, 'Rochelle', 10000, 1),
(11746, 254, 132, 'Pitts', 10000, 1),
(11747, 253, 5392, 'Guildford', 10000, 1),
(11749, 254, 170, 'Stoughton', 10000, 1),
(11750, 43, 37, 'Mississauga', 10000, 1),
(11753, 254, 135, 'Rochester', 10000, 1),
(11756, 254, 151, 'Nottingham', 10000, 1),
(11757, 254, 152, 'Manville', 10000, 1),
(11759, 254, 157, 'Loudonville', 10000, 1),
(11760, 254, 154, 'Mineola', 10000, 1),
(11761, 234, 4025, 'Baden', 10000, 1),
(11763, 254, 155, 'Evergreen', 10000, 1),
(11764, 14, 4, 'Lismore', 10000, 1),
(11765, 254, 152, 'Madison', 10000, 1),
(11768, 119, 2257, 'Vicenza', 10000, 1),
(11770, 175, 2981, 'Aalsmeer', 10000, 1),
(11771, 254, 164, 'South Fulton', 10000, 1),
(11772, 152, 689, 'Rabat', 10000, 1),
(11773, 254, 132, 'Kennesaw', 10000, 1),
(11774, 91, 1913, 'Dachau', 10000, 1),
(11775, 253, 5392, 'Reading', 10000, 1),
(11776, 253, 5392, 'Hemel Hempstead', 10000, 1),
(11777, 254, 133, 'Kihei', 10000, 1),
(11778, 91, 1921, 'Elmshorn', 10000, 1),
(11779, 43, 37, 'Barrie', 10000, 1),
(11780, 14, 1, 'Bendigo', 10000, 1),
(11781, 254, 131, 'Crystal River', 10000, 1),
(11782, 254, 143, 'Templeton', 10000, 1),
(11783, 253, 5392, 'Worcester', 10000, 1),
(11787, 254, 154, 'Great Neck', 10000, 1),
(11789, 254, 144, 'Allegan', 10000, 1),
(11792, 254, 133, 'Kapolei', 10000, 1),
(11794, 254, 154, 'Morrisville', 10000, 1),
(11795, 254, 131, 'Key Largo', 10000, 1),
(11796, 254, 142, 'Temple Hills', 10000, 1),
(11797, 81, 4879, 'Espoo', 10000, 1),
(11799, 43, 37, 'Grimsby', 10000, 1),
(11800, 254, 155, 'Arden', 10000, 1),
(11801, 253, 5392, 'Stockport', 10000, 1),
(11803, 254, 160, 'Annville', 10000, 1),
(11804, 254, 157, 'Northwood', 10000, 1),
(11805, 91, 1916, 'Darmstadt', 10000, 1),
(11806, 254, 126, 'Sebastopol', 10000, 1),
(11807, 254, 151, 'Derry', 10000, 1),
(11808, 43, 36, 'Camrose', 10000, 1),
(11809, 254, 160, 'Eagleville', 10000, 1),
(11810, 254, 135, 'Savoy', 10000, 1),
(11811, 254, 154, 'Woodmere', 10000, 1),
(11813, 254, 127, 'Palisade', 10000, 1),
(11815, 254, 159, 'Cottage Grove', 10000, 1),
(11816, 254, 135, 'Gibson City', 10000, 1),
(11818, 43, 43, 'Surrey', 10000, 1),
(11821, 254, 131, 'St. Petersburg', 10000, 1),
(11822, 254, 168, 'Ritzville', 10000, 1),
(11823, 254, 162, 'Clemson', 10000, 1),
(11824, 253, 5392, 'York', 10000, 1),
(11826, 91, 1917, 'Bispingen', 10000, 1),
(11827, 43, 43, 'Gabriola', 10000, 1),
(11828, 254, 145, 'Stillwater', 10000, 1),
(11829, 254, 152, 'Union', 10000, 1),
(11832, 224, 3689, 'Bellville', 10000, 1),
(11834, 82, 1803, 'Noisy-le-Grand', 10000, 1),
(11835, 254, 144, 'Baraga', 10000, 1),
(11837, 43, 37, 'Shelburne', 10000, 1),
(11838, 254, 133, 'Hanapepe', 10000, 1),
(11839, 178, 4706, 'Papatoetoe', 10000, 1),
(11840, 254, 133, 'Keaau', 10000, 1),
(11842, 43, 40, 'North Battleford', 10000, 1),
(11844, 185, 3001, 'Fredrikstad', 10000, 1);
INSERT INTO `[[dbprefix]]geo_cities` VALUES
(11845, 254, 170, 'Lakewood', 10000, 1),
(11848, 234, 4049, 'Buchs', 10000, 1),
(11850, 91, 1913, 'Rosenheim', 10000, 1),
(11851, 254, 131, 'Longwood', 10000, 1),
(11852, 254, 154, 'Woodstock', 10000, 1),
(11853, 254, 126, 'Scotts Valley', 10000, 1),
(11855, 43, 37, 'Port Hope', 10000, 1),
(11856, 254, 131, 'Odessa', 10000, 1),
(11857, 43, 35, 'Pierrefonds', 10000, 1),
(11859, 254, 135, 'McHenry', 10000, 1),
(11860, 253, 5392, 'Sunderland', 10000, 1),
(11863, 254, 165, 'Pasadena', 10000, 1),
(11864, 254, 165, 'Seabrook', 10000, 1),
(11865, 254, 162, 'Ninety Six', 10000, 1),
(11866, 43, 37, 'Whitby', 10000, 1),
(11867, 254, 168, 'Gig Harbor', 10000, 1),
(11868, 254, 134, 'Sugar City', 10000, 1),
(11869, 254, 138, 'Saint Joseph', 10000, 1),
(11870, 254, 147, 'Saint Joseph', 10000, 1),
(11871, 14, 1, 'Hawthorn', 10000, 1),
(11872, 14, 6, 'Bunbury', 10000, 1),
(11874, 119, 2242, 'Piacenza', 10000, 1),
(11875, 254, 125, 'Boston', 10000, 1),
(11876, 91, 1921, 'Kiel', 10000, 1),
(11878, 43, 43, 'Merville', 10000, 1),
(11879, 43, 43, 'Black Creek', 10000, 1),
(11880, 43, 37, 'Thorold', 10000, 1),
(11881, 254, 128, 'Stonington', 10000, 1),
(11882, 254, 168, 'Monroe', 10000, 1),
(11883, 82, 1812, 'Aix-en-Provence', 10000, 1),
(11884, 112, 2115, 'Hafnarfj', 10000, 1),
(11886, 254, 142, 'Libertytown', 10000, 1),
(11887, 133, 2432, 'Uijongbu', 10000, 1),
(11888, 81, 4879, 'Lahti', 10000, 1),
(11889, 254, 159, 'Forest Grove', 10000, 1),
(11890, 254, 166, 'Mount Pleasant', 10000, 1),
(11891, 43, 37, 'Guelph', 10000, 1),
(11892, 254, 165, 'Princeton', 10000, 1),
(11893, 91, 1913, 'Erlangen', 10000, 1),
(11895, 159, 2892, 'Cholula', 10000, 1),
(11896, 254, 147, 'St. Louis', 10000, 1),
(11897, 254, 159, 'Coquille', 10000, 1),
(11898, 254, 170, 'Algoma', 10000, 1),
(11900, 254, 154, 'Manhasset', 10000, 1),
(11901, 254, 131, 'Palmetto', 10000, 1),
(11902, 91, 1916, 'Wiesbaden', 10000, 1),
(11904, 233, 4006, '', 10000, 1),
(11908, 82, 1813, 'Villeurbanne', 10000, 1),
(11910, 254, 159, 'Cave Junction', 10000, 1),
(11912, 254, 154, 'Vestal', 10000, 1),
(11915, 119, 2249, 'Torino', 10000, 1),
(11916, 185, 2994, 'Flisa', 10000, 1),
(11921, 254, 172, 'Woodstock', 10000, 1),
(11922, 254, 141, 'Gardiner', 10000, 1),
(11924, 18, 1094, 'Isa Town', 10000, 1),
(11926, 254, 146, 'Ocean Springs', 10000, 1),
(11927, 254, 168, 'Otis Orchards', 10000, 1),
(11928, 254, 168, 'Oak Harbor', 10000, 1),
(11929, 233, 4010, 'Trollh', 10000, 1),
(11930, 254, 157, 'Sylvania', 10000, 1),
(11931, 254, 126, 'Hopland', 10000, 1),
(11934, 14, 4, 'Penrith', 10000, 1),
(11936, 175, 2985, 'Zwijndrecht', 10000, 1),
(11937, 119, 2246, 'Milano', 10000, 1),
(11938, 253, 5392, 'Halifax', 10000, 1),
(11939, 254, 143, 'Shelburne Falls', 10000, 1),
(11941, 254, 164, 'Ooltewah', 10000, 1),
(11942, 251, 4449, 'Rivne', 10000, 1),
(11943, 175, 2980, 'Tilburg', 10000, 1),
(11947, 233, 3996, '', 10000, 1),
(11948, 185, 2990, 'Lillestr', 10000, 1),
(11949, 91, 1925, 'Quedlinburg', 10000, 1),
(11950, 175, 2983, 'Leersum', 10000, 1),
(11953, 254, 152, 'Belle Mead', 10000, 1),
(11954, 254, 159, 'Wilsonville', 10000, 1),
(11955, 114, 2147, 'Bogor', 10000, 1),
(11956, 254, 142, 'Stevensville', 10000, 1),
(11957, 14, 4, 'Wollongong', 10000, 1),
(11960, 254, 133, 'Hanalei', 10000, 1),
(11961, 254, 133, 'Kailua-Kona', 10000, 1),
(11962, 254, 133, 'Kealakekua', 10000, 1),
(11964, 254, 155, 'Eden', 10000, 1),
(11966, 63, 1487, 'Limassol', 10000, 1),
(11967, 254, 144, 'East Jordan', 10000, 1),
(11968, 254, 134, 'Homedale', 10000, 1),
(11969, 254, 166, 'West Jordan', 10000, 1),
(11970, 91, 1923, 'Rostock', 10000, 1),
(11971, 226, 3937, 'Vigo', 10000, 1),
(11972, 254, 155, 'Candler', 10000, 1),
(11973, 254, 168, 'Poulsbo', 10000, 1),
(11974, 254, 155, 'Enka', 10000, 1),
(11975, 253, 5392, 'Oldham', 10000, 1),
(11977, 254, 131, 'Pomona Park', 10000, 1),
(11979, 234, 4029, 'Thun', 10000, 1),
(11981, 254, 168, 'Bothell', 10000, 1),
(11982, 154, 691, 'Kwajalein', 10000, 1),
(11983, 254, 155, 'Pinetown', 10000, 1),
(11984, 254, 169, 'Peterstown', 10000, 1),
(11985, 254, 165, 'Brookshire', 10000, 1),
(11986, 254, 157, 'East Liverpool', 10000, 1),
(11987, 254, 154, 'Kinderhook', 10000, 1),
(11988, 254, 157, 'Streetsboro', 10000, 1),
(11989, 185, 3005, 'Skien', 10000, 1),
(11990, 254, 157, 'Hudson', 10000, 1),
(11991, 43, 43, 'Stewart', 10000, 1),
(11993, 254, 131, 'Eustis', 10000, 1),
(11994, 271, 5062, 'Podgorica', 10000, 1),
(11995, 254, 165, 'Wimberley', 10000, 1),
(11996, 254, 162, 'Lexington', 10000, 1),
(11997, 43, 37, 'Oshawa', 10000, 1),
(11998, 254, 160, 'Leola', 10000, 1),
(11999, 254, 168, 'Darrington', 10000, 1),
(12000, 254, 131, 'Lake Wales', 10000, 1),
(12001, 254, 154, 'Tonawanda', 10000, 1),
(12003, 253, 5392, 'Shaftesbury', 10000, 1),
(12004, 119, 2246, 'Cardano al Campo', 10000, 1),
(12005, 119, 2245, 'Genova', 10000, 1),
(12007, 254, 128, 'Windsor', 10000, 1),
(12008, 253, 5392, 'London', 10000, 1),
(12009, 253, 5392, 'Wellingborough', 10000, 1),
(12013, 254, 135, 'Columbia', 10000, 1),
(12014, 149, 2905, 'George Town', 10000, 1),
(12015, 254, 136, 'Denver', 10000, 1),
(12016, 254, 154, 'Plattsburgh', 10000, 1),
(12018, 119, 2252, 'Siracusa', 10000, 1),
(12019, 43, 37, 'Bracebridge', 10000, 1),
(12020, 254, 134, 'Sandpoint', 10000, 1),
(12021, 254, 157, 'Vandalia', 10000, 1),
(12022, 254, 154, 'Jamesville', 10000, 1),
(12023, 119, 2245, 'Savona', 10000, 1),
(12024, 233, 4009, 'Landskrona', 10000, 1),
(12025, 91, 1918, 'Oberhausen', 10000, 1),
(12026, 254, 159, 'Jacksonville', 10000, 1),
(12027, 254, 148, 'West Yellowstone', 10000, 1),
(12028, 185, 3001, 'Skjeberg', 10000, 1),
(12029, 254, 141, 'Buxton', 10000, 1),
(12030, 254, 136, 'Mooresville', 10000, 1),
(12031, 254, 160, 'East Freedom', 10000, 1),
(12032, 254, 155, 'Morganton', 10000, 1),
(12034, 254, 154, 'Larchmont', 10000, 1),
(12035, 43, 43, 'Fernie', 10000, 1),
(12037, 254, 126, 'Cobb', 10000, 1),
(12038, 43, 43, 'Duncan', 10000, 1),
(12041, 185, 3001, 'Sarpsborg', 10000, 1),
(12042, 254, 160, 'Downingtown', 10000, 1),
(12045, 82, 1803, 'Plaisir', 10000, 1),
(12047, 254, 161, 'East Greenwich', 10000, 1),
(12048, 14, 4, 'Parramatta', 10000, 1),
(12049, 254, 123, 'Soldotna', 10000, 1),
(12053, 144, 2623, 'Clervaux', 10000, 1),
(12054, 43, 37, 'Brampton', 10000, 1),
(12055, 233, 4008, 'Sollentuna', 10000, 1),
(12056, 254, 147, 'Windsor', 10000, 1),
(12057, 254, 131, 'Worthington Springs', 10000, 1),
(12058, 43, 35, 'Beaumont', 10000, 1),
(12059, 253, 5392, 'Wakefield', 10000, 1),
(12063, 43, 37, 'Oakville', 10000, 1),
(12064, 254, 161, 'Bristol', 10000, 1),
(12066, 43, 37, 'Welland', 10000, 1),
(12067, 254, 162, 'Duncan', 10000, 1),
(12069, 254, 152, 'Salem', 10000, 1),
(12070, 254, 144, 'Stevensville', 10000, 1),
(12071, 254, 159, 'Sandy', 10000, 1),
(12072, 254, 154, 'Hornell', 10000, 1),
(12074, 254, 147, 'Brighton', 10000, 1),
(12077, 254, 152, 'Edison', 10000, 1),
(12078, 254, 126, 'Newbury Park', 10000, 1),
(12079, 254, 170, 'Plover', 10000, 1),
(12080, 254, 156, 'Casselton', 10000, 1),
(12081, 254, 158, 'Jenks', 10000, 1),
(12082, 224, 3684, 'Germiston', 10000, 1),
(12083, 185, 3008, 'Sandefjord', 10000, 1),
(12084, 254, 166, 'Loa', 10000, 1),
(12085, 254, 152, 'Williamstown', 10000, 1),
(12087, 14, 2, 'Devonport', 10000, 1),
(12088, 185, 2996, 'Aalesund', 10000, 1),
(12089, 253, 5389, 'Mold', 10000, 1),
(12090, 81, 5023, 'Vaasa', 10000, 1),
(12091, 233, 4009, 'Gisl', 10000, 1),
(12094, 254, 145, 'Chanhassen', 10000, 1),
(12095, 254, 137, 'Hudson', 10000, 1),
(12097, 224, 3680, 'Pietermaritzburg', 10000, 1),
(12099, 254, 168, 'Belfair', 10000, 1),
(12100, 43, 39, 'Bedford', 10000, 1),
(12101, 14, 3, 'Maryborough', 10000, 1),
(12103, 254, 157, 'Springboro', 10000, 1),
(12104, 82, 1803, 'Barbizon', 10000, 1),
(12105, 82, 1803, 'Issy-les-Moulineaux', 10000, 1),
(12106, 91, 1916, 'Offenbach', 10000, 1),
(12107, 91, 1916, 'Hanau', 10000, 1),
(12108, 253, 5392, 'Huddersfield', 10000, 1),
(12109, 254, 160, 'Hatfield', 10000, 1),
(12110, 159, 72, 'Playa Del Carmen', 10000, 1),
(12111, 254, 126, 'Oakhurst', 10000, 1),
(12112, 10, 1051, 'San Martin', 10000, 1),
(12113, 254, 159, 'Toledo', 10000, 1),
(12114, 43, 43, 'Port Hardy', 10000, 1),
(12115, 224, 3680, 'Richards Bay', 10000, 1),
(12116, 91, 1913, 'Starnberg', 10000, 1),
(12117, 254, 131, 'Saint Petersburg', 10000, 1),
(12118, 254, 139, 'Elkhorn City', 10000, 1),
(12119, 43, 43, 'Burnaby', 10000, 1),
(12120, 254, 170, 'Walworth', 10000, 1),
(12121, 233, 3994, 'Vansbro', 10000, 1),
(12122, 254, 160, 'Montoursville', 10000, 1),
(12123, 178, 3089, 'Wairoa', 10000, 1),
(12124, 254, 136, 'Ligonier', 10000, 1),
(12125, 254, 147, 'Nixa', 10000, 1),
(12126, 118, 2233, 'Kfar saba', 10000, 1),
(12127, 224, 3685, 'Secunda', 10000, 1),
(12128, 253, 5392, 'Worthing', 10000, 1),
(12129, 221, 3772, 'Maribor', 10000, 1),
(12131, 254, 136, 'Chesterton', 10000, 1),
(12132, 233, 3994, 'Borl', 10000, 1),
(12134, 254, 152, 'Marlboro', 10000, 1),
(12135, 18, 1085, 'Manama', 10000, 1),
(12136, 14, 6, 'Fremantle', 10000, 1),
(12137, 254, 160, 'Barnesville', 10000, 1),
(12138, 254, 140, 'West Monroe', 10000, 1),
(12139, 43, 37, 'Aurora', 10000, 1),
(12140, 254, 152, 'Elmwood Park', 10000, 1),
(12142, 254, 154, 'Johnstown', 10000, 1),
(12144, 254, 165, 'West Columbia', 10000, 1),
(12145, 254, 135, 'Romeoville', 10000, 1),
(12146, 254, 155, 'Leland', 10000, 1),
(12147, 43, 35, 'Buckingham', 10000, 1),
(12148, 43, 43, 'Mission', 10000, 1),
(12149, 119, 2241, 'Caserta', 10000, 1),
(12150, 114, 2150, 'Yogyakarta', 10000, 1),
(12152, 149, 2897, 'Batu Pahat', 10000, 1),
(12153, 81, 4879, 'Forssa', 10000, 1),
(12154, 254, 154, 'Mahopac', 10000, 1),
(12155, 65, 1494, 'Dronninglund', 10000, 1),
(12156, 114, 2148, 'Purworejo', 10000, 1),
(12157, 43, 42, 'Miramichi', 10000, 1),
(12158, 254, 126, 'Boulder Creek', 10000, 1),
(12159, 254, 154, 'West Winfield', 10000, 1),
(12160, 253, 5392, 'Chichester', 10000, 1),
(12161, 254, 126, 'Springville', 10000, 1),
(12163, 43, 43, 'Maple Ridge', 10000, 1),
(12164, 82, 1797, 'Saint Malo', 10000, 1),
(12165, 233, 4010, 'Bor', 10000, 1),
(12166, 254, 168, 'Manchester', 10000, 1),
(12167, 254, 159, 'Woodburn', 10000, 1),
(12168, 254, 136, 'Lake Station', 10000, 1),
(12169, 254, 145, 'Denham', 10000, 1),
(12173, 254, 139, 'Jenkins', 10000, 1),
(12175, 81, 1779, 'Oulu', 10000, 1),
(12176, 119, 2240, 'Palmi', 10000, 1),
(12177, 175, 2976, 'Wolvega', 10000, 1),
(12178, 233, 4009, 'Lund', 10000, 1),
(12179, 254, 160, 'Hauto', 10000, 1),
(12180, 254, 168, 'Mukilteo', 10000, 1),
(12181, 175, 2984, 'Terneuzen', 10000, 1),
(12182, 254, 136, 'Batesville', 10000, 1),
(12183, 254, 154, 'Ferndale', 10000, 1),
(12184, 254, 154, 'Wallkill', 10000, 1),
(12186, 226, 3937, 'A Coru', 10000, 1),
(12187, 14, 1, 'Cheltenham', 10000, 1),
(12188, 226, 3930, 'Vera', 10000, 1),
(12190, 254, 160, 'Perkasie', 10000, 1),
(12191, 254, 160, 'East Stroudsburg', 10000, 1),
(12194, 254, 144, 'Negaunee', 10000, 1),
(12195, 254, 138, 'Bonner Springs', 10000, 1),
(12196, 254, 152, 'Springfield', 10000, 1),
(12197, 14, 4, 'Campbelltown', 10000, 1),
(12198, 24, 1137, 'Knokke-Heist', 10000, 1),
(12199, 254, 131, 'Keystone Heights', 10000, 1),
(12200, 254, 131, 'Archer', 10000, 1),
(12202, 254, 143, 'Concord', 10000, 1),
(12203, 234, 4046, 'Martigny', 10000, 1),
(12206, 254, 132, 'Stockbridge', 10000, 1),
(12207, 254, 144, 'Haslett', 10000, 1),
(12208, 254, 125, 'Beebe', 10000, 1),
(12209, 254, 165, 'Quinlan', 10000, 1),
(12210, 82, 1809, 'Angers', 10000, 1),
(12211, 119, 2241, 'Napoli', 10000, 1),
(12212, 254, 159, 'Dufur', 10000, 1),
(12213, 254, 152, 'Flanders', 10000, 1),
(12214, 254, 170, 'New Glarus', 10000, 1),
(12215, 254, 170, 'Verona', 10000, 1),
(12216, 254, 170, 'Oregon', 10000, 1),
(12217, 254, 170, 'Middleton', 10000, 1),
(12219, 254, 170, 'Sun Prairie', 10000, 1),
(12220, 149, 2907, 'Petaling Jaya', 10000, 1),
(12221, 254, 170, 'Waunakee', 10000, 1),
(12222, 254, 170, 'Mount Horeb', 10000, 1),
(12225, 175, 2985, 'Gouda', 10000, 1),
(12226, 254, 170, 'Black Earth', 10000, 1),
(12227, 234, 4047, 'Pully', 10000, 1),
(12228, 254, 170, 'Cambridge', 10000, 1),
(12229, 254, 170, 'Deerfield', 10000, 1),
(12230, 253, 5392, 'Maidstone', 10000, 1),
(12231, 254, 170, 'Wisconsin Dells', 10000, 1),
(12232, 254, 170, 'Sauk City', 10000, 1),
(12233, 254, 170, 'Prairie du Sac', 10000, 1),
(12234, 254, 170, 'Lodi', 10000, 1),
(12235, 254, 170, 'Cross Plains', 10000, 1),
(12236, 254, 170, 'Belleville', 10000, 1),
(12237, 254, 170, 'Edgerton', 10000, 1),
(12238, 254, 170, 'Evansville', 10000, 1),
(12241, 254, 131, 'Hilliard', 10000, 1),
(12242, 254, 159, 'Central Point', 10000, 1),
(12243, 254, 151, 'Peterborough', 10000, 1),
(12244, 254, 135, 'Makanda', 10000, 1),
(12246, 254, 140, 'Pearl River', 10000, 1),
(12247, 254, 126, 'Oceanside', 10000, 1),
(12248, 254, 157, 'Johnstown', 10000, 1),
(12249, 254, 126, 'Browns Valley', 10000, 1),
(12251, 175, 2979, 'Roermond', 10000, 1),
(12252, 254, 168, 'Anacortes', 10000, 1),
(12253, 119, 2240, 'Lamezia Terme', 10000, 1),
(12255, 152, 689, 'Victoria', 10000, 1),
(12256, 254, 155, 'China Grove', 10000, 1),
(12258, 254, 151, 'Milford', 10000, 1),
(12259, 175, 2977, 'Apeldoorn', 10000, 1),
(12260, 254, 159, 'Bandon', 10000, 1),
(12261, 254, 146, 'Raymond', 10000, 1),
(12262, 175, 2975, 'Assen', 10000, 1),
(12263, 254, 145, 'Anoka', 10000, 1),
(12264, 254, 127, 'Ignacio', 10000, 1),
(12265, 254, 133, 'Pukalani', 10000, 1),
(12266, 224, 3681, 'Sasolburg', 10000, 1),
(12267, 254, 169, 'Belle', 10000, 1),
(12268, 254, 127, 'Livermore', 10000, 1),
(12269, 10, 1051, 'Chacabuco', 10000, 1),
(12271, 254, 144, 'Potterville', 10000, 1),
(12273, 254, 154, 'Woodside', 10000, 1),
(12274, 254, 135, 'Amboy', 10000, 1),
(12275, 14, 1, 'Preston', 10000, 1),
(12276, 254, 157, 'Cardington', 10000, 1),
(12277, 149, 2907, 'Klang', 10000, 1),
(12278, 254, 123, 'Wasilla', 10000, 1),
(12279, 254, 170, 'Lancaster', 10000, 1),
(12280, 175, 2981, 'Leidschendam', 10000, 1),
(12281, 253, 5391, 'Ballymena', 10000, 1),
(12282, 224, 3684, 'Midrand', 10000, 1),
(12283, 36, 1248, 'Kuala Belait', 10000, 1),
(12286, 234, 4025, 'Brugg', 10000, 1),
(12287, 119, 2246, 'Brescia', 10000, 1),
(12288, 254, 135, 'Highland', 10000, 1),
(12289, 43, 37, 'Perth', 10000, 1),
(12290, 254, 166, 'Pleasant Grove', 10000, 1),
(12291, 64, 5134, 'Zlin', 10000, 1),
(12292, 14, 3, 'Caloundra', 10000, 1),
(12293, 254, 135, 'Wyanet', 10000, 1),
(12294, 254, 135, 'Monee', 10000, 1),
(12295, 118, 2232, 'Hevron', 10000, 1),
(12296, 65, 1498, 'Nordb', 10000, 1),
(12297, 233, 4000, 'Norrk', 10000, 1),
(12298, 254, 157, 'New Philadelphia', 10000, 1),
(12300, 175, 2979, 'Venlo', 10000, 1),
(12301, 81, 5023, 'toijala', 10000, 1),
(12303, 24, 1134, 'Marche-En-Famenne', 10000, 1),
(12304, 254, 148, 'Laurel', 10000, 1),
(12307, 254, 146, 'Houlka', 10000, 1),
(12308, 254, 154, 'Hollis Hills', 10000, 1),
(12309, 254, 160, 'Elizabethtown', 10000, 1),
(12310, 14, 1, 'Geelong', 10000, 1),
(12311, 254, 152, 'Butler', 10000, 1),
(12312, 239, 4076, 'Phetchabun', 10000, 1),
(12313, 43, 37, 'Chatham', 10000, 1),
(12314, 254, 144, 'White Pigeon', 10000, 1),
(12315, 253, 5392, 'Milton Keynes', 10000, 1),
(12316, 159, 2887, 'Pi edras Negras', 10000, 1),
(12317, 43, 35, 'Gatineau', 10000, 1),
(12318, 43, 35, 'Aylmer', 10000, 1),
(12319, 119, 2257, 'Verona', 10000, 1),
(12320, 233, 4004, 'Torsby', 10000, 1),
(12321, 254, 152, 'Oak Ridge', 10000, 1),
(12323, 14, 3, 'Nambour', 10000, 1),
(12324, 254, 170, 'Palmyra', 10000, 1),
(12325, 185, 3002, 'Egersund', 10000, 1),
(12326, 254, 160, 'Clarks Summit', 10000, 1),
(12327, 159, 2896, 'M', 10000, 1),
(12328, 254, 140, 'Saint Bernard', 10000, 1),
(12329, 15, 1082, 'Hohenems', 10000, 1),
(12332, 254, 142, 'Frostburg', 10000, 1),
(12333, 254, 160, 'Nazareth', 10000, 1),
(12334, 254, 152, 'Pompton Lakes', 10000, 1),
(12335, 14, 1, 'Cobram', 10000, 1),
(12339, 254, 160, 'New Kensington', 10000, 1),
(12340, 254, 126, 'North Hollywood', 10000, 1),
(12341, 254, 160, 'Phoenixville', 10000, 1),
(12343, 254, 158, 'Afton', 10000, 1),
(12344, 254, 152, 'Egg Harbor City', 10000, 1),
(12345, 254, 172, 'Colchester', 10000, 1),
(12346, 254, 128, 'Colchester', 10000, 1),
(12347, 254, 131, 'Panama City Beach', 10000, 1),
(12349, 254, 152, 'Lavallette', 10000, 1),
(12350, 43, 37, 'Courtice', 10000, 1),
(12351, 254, 122, 'Boaz', 10000, 1),
(12352, 254, 132, 'Bonaire', 10000, 1),
(12353, 254, 132, 'Kathleen', 10000, 1),
(12354, 254, 135, 'Glencoe', 10000, 1),
(12355, 149, 2903, 'Ipoh', 10000, 1),
(12357, 43, 37, 'Valley East', 10000, 1),
(12358, 254, 154, 'Cedarhurst', 10000, 1),
(12359, 254, 125, 'Bella Vista', 10000, 1),
(12360, 254, 141, 'Lincoln', 10000, 1),
(12361, 33, 29, 'Petr', 10000, 1),
(12362, 254, 167, 'Rockbridge Baths', 10000, 1),
(12363, 33, 15, 'Uni', 10000, 1),
(12365, 254, 169, 'Beaver', 10000, 1),
(12366, 254, 159, 'Molalla', 10000, 1),
(12367, 91, 1913, 'Allersberg', 10000, 1),
(12368, 119, 2252, 'Augusta', 10000, 1),
(12369, 254, 126, 'Castroville', 10000, 1),
(12370, 43, 43, 'North Vancouver', 10000, 1),
(12373, 234, 4040, 'Schaffhausen', 10000, 1),
(12374, 253, 5392, 'Eastrea', 10000, 1),
(12375, 43, 43, 'Fort Nelson', 10000, 1),
(12376, 91, 1918, 'Ahaus', 10000, 1),
(12377, 254, 146, 'Olive Branch', 10000, 1),
(12378, 233, 4000, 'Orminge', 10000, 1),
(12379, 254, 147, 'Fair Grove', 10000, 1),
(12381, 195, 3450, 'Muntinlupa', 10000, 1),
(12382, 119, 2253, 'Pistoia', 10000, 1),
(12383, 65, 1500, 'Kolding', 10000, 1),
(12384, 185, 3007, 'Kristiansand', 10000, 1),
(12385, 43, 37, 'North York', 10000, 1),
(12388, 149, 2898, 'Kulim', 10000, 1),
(12389, 149, 2905, 'Bayan Lepas', 10000, 1),
(12390, 198, 3313, 'Maia', 10000, 1),
(12391, 254, 167, 'Vienna', 10000, 1),
(12392, 43, 35, 'Saint-Casimir', 10000, 1),
(12393, 254, 141, 'Guilford', 10000, 1),
(12397, 254, 144, 'Tecumseh', 10000, 1),
(12398, 254, 165, 'Smithville', 10000, 1),
(12399, 15, 1082, 'Bregenz', 10000, 1),
(12400, 14, 4, 'Burwood', 10000, 1),
(12401, 185, 2998, 'Namsos', 10000, 1),
(12402, 253, 5392, 'Basingstoke', 10000, 1),
(12403, 119, 2246, 'Mantova', 10000, 1),
(12406, 224, 3684, 'Sandton', 10000, 1),
(12407, 233, 3986, 'Karlskrona', 10000, 1),
(12408, 82, 1814, 'Neuf-Brisach', 10000, 1),
(12410, 254, 157, 'South Lebanon', 10000, 1),
(12411, 233, 4007, 'V', 10000, 1),
(12412, 254, 125, 'White Hall', 10000, 1),
(12413, 254, 131, 'Gulf Breeze', 10000, 1),
(12415, 254, 157, 'Pataskala', 10000, 1),
(12416, 253, 5392, 'Maidenhead', 10000, 1),
(12417, 254, 159, 'Cornelius', 10000, 1),
(12418, 254, 135, 'Johnston City', 10000, 1),
(12419, 21, 1104, 'Bridgetown', 10000, 1),
(12420, 253, 5392, 'Hornchurch', 10000, 1),
(12421, 254, 170, 'Two Rivers', 10000, 1),
(12422, 254, 131, 'Tarpon Springs', 10000, 1),
(12423, 91, 1916, 'Bad Orb', 10000, 1),
(12425, 254, 160, 'Shrewsbury', 10000, 1),
(12426, 254, 165, 'Happy', 10000, 1),
(12428, 254, 124, 'Benson', 10000, 1),
(12429, 254, 126, 'San Pedro', 10000, 1),
(12431, 254, 167, 'Hallieford', 10000, 1),
(12434, 254, 126, 'Granada Hills', 10000, 1),
(12435, 254, 127, 'Meeker', 10000, 1),
(12436, 254, 124, 'Ash Fork', 10000, 1),
(12437, 254, 145, 'Wyoming', 10000, 1),
(12438, 43, 43, 'Armstrong', 10000, 1),
(12439, 185, 2997, 'Narvik', 10000, 1),
(12445, 253, 5389, 'Bangor', 10000, 1),
(12446, 59, 1434, 'Playas del Coco', 10000, 1),
(12447, 81, 4879, 'Imatra', 10000, 1),
(12448, 254, 126, 'Calabasas', 10000, 1),
(12449, 233, 4006, 'H', 10000, 1),
(12450, 254, 131, 'Williston', 10000, 1),
(12451, 254, 131, 'Jensen Beach', 10000, 1),
(12452, 43, 43, 'Sidney', 10000, 1),
(12453, 111, 2067, 'Kecskemet', 10000, 1),
(12455, 233, 3991, '', 10000, 1),
(12458, 254, 124, 'Clarkdale', 10000, 1),
(12460, 254, 168, 'Camano Island', 10000, 1),
(12461, 175, 2980, 'Gemert', 10000, 1),
(12462, 254, 166, 'Kaysville', 10000, 1),
(12463, 81, 4879, 'Kouvola', 10000, 1),
(12464, 254, 126, 'Guerneville', 10000, 1),
(12466, 15, 1077, 'Baden', 10000, 1),
(12467, 15, 1076, 'D', 10000, 1),
(12468, 254, 126, 'Grover Beach', 10000, 1),
(12469, 254, 126, 'Rancho Santa Margarita', 10000, 1),
(12470, 75, 1639, 'Kuressaare', 10000, 1),
(12471, 43, 37, 'Fort Frances', 10000, 1),
(12472, 254, 136, 'Moores Hill', 10000, 1),
(12473, 43, 36, 'Stettler', 10000, 1),
(12474, 14, 4, 'Blacktown', 10000, 1),
(12475, 43, 37, 'Kanata', 10000, 1),
(12476, 234, 4047, 'Vevey', 10000, 1),
(12477, 254, 128, 'Cheshire', 10000, 1),
(12479, 254, 154, 'Wappingers Falls', 10000, 1),
(12480, 253, 5392, 'Bournemouth', 10000, 1),
(12481, 254, 170, 'Oconomowoc', 10000, 1),
(12482, 234, 4049, 'Kloten', 10000, 1),
(12483, 254, 165, 'Portland', 10000, 1),
(12485, 254, 154, 'Nassau', 10000, 1),
(12486, 254, 157, 'Oxford', 10000, 1),
(12487, 254, 145, 'North Branch', 10000, 1),
(12488, 254, 154, 'Ballston Lake', 10000, 1),
(12489, 43, 36, 'Legal', 10000, 1),
(12490, 178, 3089, 'Hastings', 10000, 1),
(12491, 254, 126, 'Corning', 10000, 1),
(12492, 254, 135, 'Vernon Hills', 10000, 1),
(12493, 65, 1500, 'Vejle', 10000, 1),
(12497, 254, 126, 'Foresthill', 10000, 1),
(12498, 99, 636, 'Dededo', 10000, 1),
(12499, 65, 1489, 'Skanderborg', 10000, 1),
(12501, 253, 5392, 'Eastbourne', 10000, 1),
(12502, 254, 170, 'De Pere', 10000, 1),
(12503, 254, 122, 'Eclectic', 10000, 1),
(12504, 254, 147, 'Union', 10000, 1),
(12505, 254, 154, 'Highland Mills', 10000, 1),
(12506, 33, 32, 'Tr', 10000, 1),
(12507, 254, 160, 'Hawley', 10000, 1),
(12508, 254, 144, 'Manchester', 10000, 1),
(12509, 254, 128, 'Watertown', 10000, 1),
(12510, 198, 3311, 'Torres Vedras', 10000, 1),
(12511, 185, 2998, 'Stjordal', 10000, 1),
(12513, 254, 167, 'Colonial Beach', 10000, 1),
(12514, 254, 168, 'Bainbridge Island', 10000, 1),
(12515, 207, 3944, 'Castries', 10000, 1),
(12516, 254, 135, 'Pawnee', 10000, 1),
(12517, 254, 162, 'Ridgeville', 10000, 1),
(12518, 43, 37, 'Stoney Creek', 10000, 1),
(12519, 254, 141, 'Rockland', 10000, 1),
(12520, 254, 157, 'Kingston', 10000, 1),
(12521, 254, 124, 'Yarnell', 10000, 1),
(12522, 175, 2977, 'Arnhem', 10000, 1),
(12523, 119, 2249, 'Moncalieri', 10000, 1),
(12524, 253, 5392, 'Wimborne Minster', 10000, 1),
(12525, 91, 1912, 'Ludwigsburg', 10000, 1),
(12526, 253, 5392, 'Bolton', 10000, 1),
(12528, 253, 5392, 'Wellington', 10000, 1),
(12529, 253, 5389, 'Haverfordwest', 10000, 1),
(12530, 253, 5392, 'Welwyn Garden City', 10000, 1),
(12531, 175, 2984, 'Middelburg', 10000, 1),
(12532, 234, 4029, 'Burgdorf', 10000, 1),
(12533, 178, 3129, 'New Plymouth', 10000, 1),
(12534, 14, 3, 'Redcliffe', 10000, 1),
(12535, 24, 5305, 'Grez-Doiceau', 10000, 1),
(12536, 254, 170, 'Delavan', 10000, 1),
(12539, 254, 135, 'Streator', 10000, 1),
(12540, 149, 2898, 'Alor Setar', 10000, 1),
(12542, 233, 4002, 'Katrineholm', 10000, 1),
(12543, 254, 135, 'Knoxville', 10000, 1),
(12544, 254, 160, 'Titusville', 10000, 1),
(12546, 254, 167, 'Yorktown', 10000, 1),
(12547, 33, 27, 'Juiz de For a', 10000, 1),
(12548, 254, 135, 'Flanagan', 10000, 1),
(12549, 185, 2997, 'Bodo', 10000, 1),
(12550, 233, 3986, 'S', 10000, 1),
(12551, 253, 5392, 'Winchester', 10000, 1),
(12553, 43, 37, 'Kapuskasing', 10000, 1),
(12554, 113, 2190, 'Udaipur', 10000, 1),
(12555, 175, 2980, 'Bergen op Zoom', 10000, 1),
(12556, 185, 2998, 'Steinkjer', 10000, 1),
(12557, 91, 1913, 'Zangberg', 10000, 1),
(12558, 91, 1913, 'Burgbernheim', 10000, 1),
(12559, 254, 143, 'Swampscott', 10000, 1),
(12560, 65, 1503, 'Frederiksberg', 10000, 1),
(12562, 253, 5392, 'Gloucester', 10000, 1),
(12564, 254, 125, 'Osceola', 10000, 1),
(12565, 175, 2980, 'Oss', 10000, 1),
(12569, 254, 170, 'Hudson', 10000, 1),
(12570, 254, 142, 'Linthicum Heights', 10000, 1),
(12571, 254, 168, 'Enumclaw', 10000, 1),
(12572, 14, 4, 'Armidale', 10000, 1),
(12573, 254, 168, 'Freeland', 10000, 1),
(12574, 114, 2148, 'Purwokerto', 10000, 1),
(12575, 43, 37, 'Cambridge', 10000, 1),
(12576, 254, 146, 'Kiln', 10000, 1),
(12577, 254, 160, 'Saegertown', 10000, 1),
(12578, 254, 164, 'Kingston', 10000, 1),
(12579, 254, 142, 'Snow Hill', 10000, 1),
(12580, 203, 3562, 'Khabarovsk', 10000, 1),
(12581, 254, 157, 'Fredericktown', 10000, 1),
(12583, 254, 126, 'Pomona', 10000, 1),
(12584, 254, 172, 'Barre', 10000, 1),
(12585, 254, 152, 'Clark', 10000, 1),
(12586, 254, 160, 'Wilkes Barre', 10000, 1),
(12587, 254, 147, 'Herculaneum', 10000, 1),
(12588, 254, 126, 'Fairfax', 10000, 1),
(12589, 168, 2810, 'Tafraout', 10000, 1),
(12590, 157, 2828, 'Port Louis', 10000, 1),
(12591, 233, 4010, 'G', 10000, 1),
(12592, 14, 4, 'Oberon', 10000, 1),
(12593, 254, 127, 'Golden', 10000, 1),
(12597, 254, 163, 'Hudson', 10000, 1),
(12598, 65, 1499, 'Naestved', 10000, 1),
(12599, 254, 126, 'Pauma Valley', 10000, 1),
(12600, 254, 165, 'Mexia', 10000, 1),
(12602, 14, 4, 'Pyrmont', 10000, 1),
(12603, 254, 133, 'Haleiwa', 10000, 1),
(12604, 5, 1023, 'Andorra La Vella', 10000, 1),
(12605, 5, 5052, 'Escaldes', 10000, 1),
(12606, 254, 152, 'Flemington', 10000, 1),
(12607, 233, 4010, 'Ulricehamn', 10000, 1),
(12608, 254, 139, 'Corydon', 10000, 1),
(12609, 14, 1, 'Warrnambool', 10000, 1),
(12610, 14, 4, 'Bathurst', 10000, 1),
(12611, 254, 152, 'Brick', 10000, 1),
(12612, 233, 3987, 'Ljusdal', 10000, 1),
(12613, 122, 2337, 'Meguro', 10000, 1),
(12614, 175, 2982, 'Zwolle', 10000, 1),
(12615, 175, 2980, 'Waalwijk', 10000, 1),
(12616, 233, 4010, 'Ljungskile', 10000, 1),
(12617, 185, 3002, 'Haugesund', 10000, 1),
(12618, 119, 2256, 'Aosta', 10000, 1),
(12620, 24, 1132, 'Verviers', 10000, 1),
(12621, 185, 3005, 'Porsgrunn', 10000, 1),
(12622, 81, 5023, 'Jyv', 10000, 1),
(12623, 195, 3505, 'Pasig', 10000, 1),
(12624, 233, 3999, 'Lindesberg', 10000, 1),
(12625, 24, 5051, 'Leuven', 10000, 1),
(12626, 253, 5392, 'Gravesend', 10000, 1),
(12629, 91, 1913, 'Parsberg', 10000, 1),
(12630, 233, 3992, 'Vetlanda', 10000, 1),
(12631, 175, 2981, 'Haarlem', 10000, 1),
(12632, 252, 5005, 'Sharjah ', 10000, 1),
(12633, 119, 2253, 'Prato', 10000, 1),
(12634, 14, 4, 'Port Macquarie', 10000, 1),
(12635, 119, 2252, 'Catania', 10000, 1),
(12636, 43, 37, 'Pickering', 10000, 1),
(12637, 175, 2983, 'Amersfoort', 10000, 1),
(12638, 254, 147, 'Osage Beach', 10000, 1),
(12639, 233, 3987, 'S', 10000, 1),
(12641, 119, 2242, 'Parma', 10000, 1),
(12642, 99, 636, 'Tamuning', 10000, 1),
(12644, 254, 152, 'Marlton', 10000, 1),
(12645, 254, 144, 'Mackinaw City', 10000, 1),
(12647, 61, 5039, 'Supetar', 10000, 1),
(12648, 224, 3683, 'Port Elizabeth', 10000, 1),
(12649, 254, 143, 'North Adams', 10000, 1),
(12650, 254, 154, 'Brewster', 10000, 1),
(12651, 175, 2979, 'Helden', 10000, 1),
(12652, 254, 154, 'Cambria Heights', 10000, 1),
(12653, 234, 4030, 'Fribourg', 10000, 1),
(12655, 43, 35, 'Ormstown', 10000, 1),
(12656, 43, 37, 'Nepean', 10000, 1),
(12657, 254, 139, 'Bandana', 10000, 1),
(12659, 254, 143, 'Northfield', 10000, 1),
(12660, 254, 160, 'Girard', 10000, 1),
(12661, 254, 126, 'Corte Madera', 10000, 1),
(12662, 226, 3935, 'Matar', 10000, 1),
(12663, 254, 140, 'Sterlington', 10000, 1),
(12666, 254, 148, 'Whitefish', 10000, 1),
(12667, 254, 165, 'Mansfield', 10000, 1),
(12668, 254, 135, 'Gridley', 10000, 1),
(12669, 254, 126, 'Antelope', 10000, 1),
(12670, 254, 136, 'Preble', 10000, 1),
(12671, 254, 168, 'Issaquah', 10000, 1),
(12672, 254, 152, 'Liberty Corner', 10000, 1),
(12674, 185, 2992, 'Drammen', 10000, 1),
(12677, 199, 736, 'Bayamon', 10000, 1),
(12678, 254, 131, 'North Palm Beach', 10000, 1),
(12679, 233, 4008, 'S', 10000, 1),
(12680, 254, 126, 'Reseda', 10000, 1),
(12681, 254, 124, 'Dragoon', 10000, 1),
(12682, 254, 142, 'Finksburg', 10000, 1),
(12683, 254, 168, 'Duvall', 10000, 1),
(12684, 185, 3008, 'Horten', 10000, 1),
(12685, 265, 802, 'Hawthorne', 10000, 1),
(12687, 254, 152, 'Hawthorne', 10000, 1),
(12688, 254, 145, 'Springfield', 10000, 1),
(12690, 233, 3998, 'Pite', 10000, 1),
(12692, 254, 168, 'Prosser', 10000, 1),
(12693, 254, 126, 'Chino Hills', 10000, 1),
(12694, 233, 4009, 'Trelleborg', 10000, 1),
(12695, 198, 3312, 'Elvas', 10000, 1),
(12696, 254, 158, 'Glenpool', 10000, 1),
(12697, 254, 126, 'Cayucos', 10000, 1),
(12698, 65, 1493, 'R', 10000, 1),
(12699, 197, 3275, 'Bydgoszcz', 10000, 1),
(12700, 233, 4010, 'Alings', 10000, 1),
(12701, 234, 4044, 'Lugano', 10000, 1),
(12702, 43, 43, 'Chetwynd', 10000, 1),
(12704, 221, 5398, 'Ravne na Koroskem', 10000, 1),
(12706, 65, 1499, 'N', 10000, 1),
(12707, 149, 2911, 'Tawau', 10000, 1),
(12708, 254, 155, 'Butner', 10000, 1),
(12710, 254, 140, 'Angola', 10000, 1),
(12711, 254, 126, 'Pine Grove', 10000, 1),
(12712, 254, 164, 'Greenbrier', 10000, 1),
(12713, 254, 141, 'Rockwood', 10000, 1),
(12714, 65, 1495, 'Esbjerg', 10000, 1),
(12715, 254, 152, 'Atco', 10000, 1),
(12716, 254, 152, 'Voorhees', 10000, 1),
(12717, 253, 5392, 'Stafford', 10000, 1),
(12718, 119, 2253, 'Livorno', 10000, 1),
(12719, 43, 39, 'Lower Sackville', 10000, 1),
(12720, 254, 144, 'Fennville', 10000, 1),
(12721, 254, 139, 'Prospect', 10000, 1),
(12723, 254, 131, 'New Symrna Beach', 10000, 1),
(12724, 224, 3689, 'Stellenbosch', 10000, 1),
(12725, 254, 135, 'Montgomery', 10000, 1),
(12726, 254, 126, 'Twain Harte', 10000, 1),
(12727, 254, 152, 'Red Bank', 10000, 1),
(12728, 254, 126, 'Fairfield', 10000, 1),
(12729, 254, 158, 'Weatherford', 10000, 1),
(12730, 197, 3280, 'Warsaw', 10000, 1),
(12731, 254, 154, 'Endicott', 10000, 1),
(12732, 254, 135, 'West Chicago', 10000, 1),
(12733, 254, 133, 'Laie', 10000, 1),
(12734, 233, 4010, 'Mariestad', 10000, 1),
(12735, 254, 159, 'Reedsport', 10000, 1),
(12737, 254, 137, 'Elgin', 10000, 1),
(12738, 254, 144, 'Oakland', 10000, 1),
(12739, 254, 168, 'Port Orchard', 10000, 1),
(12740, 254, 145, 'Northfield', 10000, 1),
(12741, 254, 158, 'Newalla', 10000, 1),
(12743, 43, 41, 'Carbonear', 10000, 1),
(12744, 254, 165, 'Hitchcock', 10000, 1),
(12745, 254, 142, 'Rockville', 10000, 1),
(12747, 254, 157, 'Nova', 10000, 1),
(12748, 254, 166, 'Centerville', 10000, 1),
(12749, 254, 126, 'Pacific Grove', 10000, 1),
(12750, 43, 35, 'Saint-R', 10000, 1),
(12751, 254, 131, 'Debary', 10000, 1),
(12752, 253, 5392, 'Grimsby', 10000, 1),
(12753, 254, 157, 'Shelby', 10000, 1),
(12754, 254, 154, 'Nanuet', 10000, 1),
(12755, 254, 158, 'Tonkawa', 10000, 1),
(12756, 254, 164, 'Crockett Mills', 10000, 1),
(12758, 254, 139, 'Harold', 10000, 1),
(12759, 254, 126, 'Crestline', 10000, 1),
(12760, 254, 136, 'Geneva', 10000, 1),
(12761, 254, 157, 'Harrison', 10000, 1),
(12762, 43, 37, 'Gloucester', 10000, 1),
(12763, 254, 160, 'Cresson', 10000, 1),
(12764, 254, 141, 'Warren', 10000, 1),
(12766, 254, 160, 'Fairfield', 10000, 1),
(12767, 254, 157, 'Hilliard', 10000, 1),
(12768, 14, 1, 'Diamond Creek', 10000, 1),
(12770, 254, 158, 'Agra', 10000, 1),
(12771, 254, 160, 'Alum Bank', 10000, 1),
(12772, 226, 3935, 'Barber', 10000, 1),
(12773, 199, 736, 'San Juan', 10000, 1),
(12774, 254, 159, 'Rhododendron', 10000, 1),
(12775, 254, 123, 'Elmendorf Afb', 10000, 1),
(12776, 254, 146, 'Horn Lake', 10000, 1),
(12778, 254, 168, 'Moses Lake', 10000, 1),
(12779, 195, 3448, 'Angeles City', 10000, 1),
(12780, 254, 142, 'Clarksburg', 10000, 1),
(12781, 254, 145, 'Bagley', 10000, 1),
(12782, 239, 4064, 'Chiang Mai', 10000, 1),
(12783, 254, 172, 'Saint Albans', 10000, 1),
(12784, 254, 154, 'Huntington', 10000, 1),
(12785, 43, 36, 'Spruce Grove', 10000, 1),
(12786, 43, 39, 'Dartmouth', 10000, 1),
(12787, 219, 756, 'Tampines', 10000, 1),
(12788, 254, 162, 'Greer', 10000, 1),
(12789, 254, 144, 'Flushing', 10000, 1),
(12790, 254, 157, 'North Olmsted', 10000, 1),
(12791, 254, 151, 'Wolfeboro', 10000, 1),
(12792, 195, 3441, 'Cagayan De Oro', 10000, 1),
(12793, 254, 128, 'Wilton', 10000, 1),
(12794, 254, 126, 'Aliso Viejo', 10000, 1),
(12795, 33, 32, 'Passo Fundo', 10000, 1),
(12796, 254, 125, 'Sulphur Springs', 10000, 1),
(12797, 254, 166, 'Lindon', 10000, 1),
(12798, 43, 37, 'Listowel', 10000, 1),
(12799, 254, 135, 'Fairview Heights', 10000, 1),
(12800, 254, 154, 'Scarsdale', 10000, 1),
(12802, 43, 37, 'Parkhill', 10000, 1),
(12803, 254, 166, 'Saint George', 10000, 1),
(12804, 254, 122, 'Daphne', 10000, 1),
(12805, 254, 157, 'Delta', 10000, 1),
(12806, 254, 124, 'Mayer', 10000, 1),
(12808, 254, 159, 'Junction City', 10000, 1),
(12809, 64, 5130, 'Pardubice', 10000, 1),
(12810, 24, 1131, 'Braine-Le-Comte', 10000, 1),
(12811, 254, 126, 'Harbor City', 10000, 1),
(12812, 254, 158, 'Blanchard', 10000, 1),
(12813, 254, 144, 'Paris', 10000, 1),
(12814, 43, 43, 'Delta', 10000, 1),
(12815, 175, 2983, 'Bilthoven', 10000, 1),
(12816, 65, 1494, 'Frederikshavn', 10000, 1),
(12817, 65, 1491, 'Gilleleje', 10000, 1),
(12818, 114, 2166, 'Padang', 10000, 1),
(12819, 254, 139, 'South Shore', 10000, 1),
(12820, 24, 1131, 'Mons', 10000, 1),
(12821, 185, 2997, 'Mo i Rana', 10000, 1),
(12822, 65, 1491, 'H', 10000, 1),
(12823, 233, 3996, 'Ljungby', 10000, 1),
(12824, 82, 1803, 'Gennevilliers', 10000, 1),
(12825, 82, 1810, 'Pr', 10000, 1),
(12826, 14, 6, 'Armadale', 10000, 1),
(12827, 91, 1912, 'Karlsruhe', 10000, 1),
(12828, 195, 3449, 'Dagupan City', 10000, 1),
(12829, 253, 5392, 'Fleet', 10000, 1),
(12831, 91, 1917, 'Oldenburg', 10000, 1),
(12832, 82, 1803, 'Versailles', 10000, 1),
(12833, 152, 689, 'Siggiewi', 10000, 1),
(12834, 185, 3002, 'Sandnes', 10000, 1),
(12835, 199, 736, 'Aguadilla', 10000, 1),
(12836, 253, 5390, 'Lerwick', 10000, 1),
(12837, 91, 1913, 'Bamberg', 10000, 1),
(12838, 253, 5389, 'Aberystwyth', 10000, 1),
(12839, 226, 3935, 'El Prat De Llobregat', 10000, 1),
(12840, 175, 2983, 'Maarssen', 10000, 1),
(12841, 82, 1810, 'Amiens', 10000, 1),
(12842, 254, 155, 'Hudson', 10000, 1),
(12843, 185, 2990, 'Son', 10000, 1),
(12844, 82, 1796, 'Beaune', 10000, 1),
(12845, 254, 131, 'Santa Rosa Beach', 10000, 1),
(12846, 254, 154, 'Shoreham', 10000, 1),
(12847, 254, 126, 'North Fork', 10000, 1),
(12848, 254, 143, 'Westminster', 10000, 1),
(12849, 254, 168, 'Fall City', 10000, 1),
(12851, 199, 736, 'Caguas', 10000, 1),
(12852, 198, 3319, 'Madalena', 10000, 1),
(12853, 253, 5392, 'Swindon', 10000, 1),
(12855, 14, 5, 'Reynella', 10000, 1),
(12856, 119, 2246, 'Vigevano', 10000, 1),
(12857, 43, 40, 'Prince Albert', 10000, 1),
(12858, 254, 165, 'Buda', 10000, 1),
(12859, 254, 143, 'Groton', 10000, 1),
(12860, 254, 131, 'Edgewater', 10000, 1),
(12861, 91, 1917, 'Hameln', 10000, 1),
(12862, 254, 160, 'Conshohocken', 10000, 1),
(12863, 24, 5306, 'Grimbergen', 10000, 1),
(12864, 91, 1918, 'Duisburg', 10000, 1),
(12865, 91, 1913, 'Oberbergkirchen', 10000, 1),
(12867, 15, 1081, 'Zirl', 10000, 1),
(12868, 254, 155, 'Murfreesboro', 10000, 1),
(12872, 243, 4058, 'Saint Augustine', 10000, 1),
(12874, 118, 2233, 'Ness Ziona', 10000, 1),
(12875, 254, 164, 'Antioch', 10000, 1),
(12876, 14, 1, 'Prahran', 10000, 1),
(12877, 254, 144, 'Saint Joseph', 10000, 1),
(12878, 254, 168, 'Aberdeen', 10000, 1),
(12879, 254, 152, 'Shrewsbury', 10000, 1),
(12880, 254, 154, 'Jefferson Valley', 10000, 1),
(12881, 256, 4503, 'San Jos', 10000, 1),
(12882, 254, 145, 'Rushmore', 10000, 1),
(12883, 253, 5392, 'Ely', 10000, 1),
(12884, 14, 3, 'Ipswich', 10000, 1),
(12886, 254, 131, 'Rockledge', 10000, 1),
(12887, 254, 157, 'Archbold', 10000, 1),
(12888, 149, 2907, 'Selayang Jaya', 10000, 1),
(12889, 254, 168, 'Silverdale', 10000, 1),
(12890, 254, 152, 'Holmdel', 10000, 1),
(12891, 254, 142, 'Hyattsville', 10000, 1),
(12892, 254, 154, 'Saugerties', 10000, 1),
(12893, 243, 4055, 'Port of Spain', 10000, 1),
(12894, 254, 147, 'Hazelwood', 10000, 1),
(12895, 254, 129, 'Dover', 10000, 1),
(12896, 254, 152, 'Metuchen', 10000, 1),
(12897, 149, 2901, 'Kuala Pilah', 10000, 1),
(12898, 14, 5, 'Brighton', 10000, 1),
(12900, 149, 2901, 'Seremban', 10000, 1),
(12901, 97, 5361, 'Hillsborough', 10000, 1),
(12902, 91, 1917, 'Clausthal-Zellerfeld', 10000, 1),
(12904, 254, 154, 'Rego Park', 10000, 1),
(12905, 254, 152, 'Bridgewater', 10000, 1),
(12907, 199, 736, 'Guaynabo', 10000, 1),
(12908, 109, 646, 'Kwun Tong', 10000, 1),
(12910, 254, 158, 'Calera', 10000, 1),
(12911, 254, 134, 'Rathdrum', 10000, 1),
(12912, 91, 1912, 'Waiblingen', 10000, 1),
(12913, 254, 152, 'Highland Park', 10000, 1),
(12914, 254, 128, 'Avon', 10000, 1),
(12915, 91, 1918, 'Minden', 10000, 1),
(12916, 254, 154, 'Oxford', 10000, 1),
(12917, 114, 2166, 'Medan', 10000, 1),
(12918, 109, 646, 'Kowloon', 10000, 1),
(12919, 149, 2906, 'Kuching', 10000, 1),
(12920, 254, 137, 'Oelwein', 10000, 1),
(12921, 254, 137, 'Kalona', 10000, 1),
(12923, 199, 736, 'Mayag', 10000, 1),
(12924, 254, 126, 'Los Alamitos', 10000, 1),
(12925, 254, 168, 'Toledo', 10000, 1),
(12926, 254, 154, 'Greenvale', 10000, 1),
(12927, 254, 154, 'Williston Park', 10000, 1),
(12928, 175, 2981, 'Zaandam', 10000, 1),
(12929, 119, 2245, 'Bordighera', 10000, 1),
(12931, 254, 152, 'Waldwick', 10000, 1),
(12932, 254, 154, 'Armonk', 10000, 1),
(12933, 254, 131, 'Shalimar', 10000, 1),
(12934, 65, 1501, 'Struer', 10000, 1),
(12935, 254, 169, 'Danville', 10000, 1),
(12937, 33, 24, 'S', 10000, 1),
(12938, 24, 1137, 'Izegem', 10000, 1),
(12939, 254, 154, 'Jamaica', 10000, 1),
(12940, 254, 126, 'Del Rey', 10000, 1),
(12941, 233, 4008, 'Norrt', 10000, 1),
(12942, 185, 3008, 'Larvik', 10000, 1),
(12943, 91, 1918, 'Bielefeld', 10000, 1),
(12944, 82, 1795, 'Granville', 10000, 1),
(12945, 175, 2980, 'Helmond', 10000, 1),
(12946, 118, 2236, 'Holon', 10000, 1),
(12947, 64, 5124, 'Jihlava', 10000, 1),
(12948, 253, 5389, 'Betws-y-Coed', 10000, 1),
(12950, 254, 154, 'North Babylon', 10000, 1),
(12951, 226, 3930, 'Aroche', 10000, 1),
(12952, 254, 154, 'Homer', 10000, 1),
(12953, 80, 1784, 'Suva', 10000, 1),
(12954, 254, 154, 'Old Westbury', 10000, 1),
(12955, 254, 135, 'Christopher', 10000, 1),
(12956, 15, 1081, 'W', 10000, 1),
(12957, 254, 152, 'Bordentown', 10000, 1),
(12958, 233, 4009, 'B', 10000, 1),
(12960, 220, 2588, 'Banska Bystrica', 10000, 1),
(12961, 254, 154, 'Potsdam', 10000, 1),
(12962, 65, 1489, '', 10000, 1),
(12963, 254, 132, 'Centerville', 10000, 1),
(12964, 65, 1490, 'Roenne', 10000, 1),
(12965, 254, 124, 'Litchfield Park', 10000, 1),
(12966, 254, 137, 'New London', 10000, 1),
(12967, 254, 169, 'Saint Albans', 10000, 1),
(12969, 254, 153, 'San Juan Pueblo', 10000, 1),
(12970, 43, 37, 'Thornhill', 10000, 1),
(12971, 254, 165, 'Stamford', 10000, 1),
(12972, 254, 168, 'Clarkston', 10000, 1),
(12973, 254, 152, 'Bellmawr', 10000, 1),
(12974, 254, 149, 'Culbertson', 10000, 1),
(12975, 14, 3, 'Toowoomba', 10000, 1),
(12976, 8, 4761, 'Molodesjnaja', 10000, 1),
(12977, 233, 3990, 'Skummesl', 10000, 1),
(12978, 254, 154, 'Hawthorne', 10000, 1),
(12981, 152, 689, 'Zebbug', 10000, 1),
(12982, 253, 5392, 'Woking', 10000, 1),
(12983, 14, 1, 'Ballarat', 10000, 1),
(12984, 254, 159, 'Westlake', 10000, 1),
(12985, 253, 5392, 'Aylesbury', 10000, 1),
(12986, 254, 131, 'Palm City', 10000, 1),
(12987, 43, 36, 'Fox Creek', 10000, 1),
(12988, 91, 1918, 'Remscheid', 10000, 1),
(12989, 254, 157, 'Galion', 10000, 1),
(12990, 254, 152, 'Boonton', 10000, 1),
(12991, 254, 135, 'Gurnee', 10000, 1),
(12992, 254, 164, 'Millington', 10000, 1),
(12993, 254, 125, 'West Fork', 10000, 1),
(12994, 254, 143, 'North Attleboro', 10000, 1),
(12995, 254, 157, 'Shadyside', 10000, 1),
(12996, 254, 172, 'Hartland', 10000, 1),
(12997, 254, 154, 'Babylon', 10000, 1),
(13001, 254, 134, 'Meridian', 10000, 1),
(13002, 43, 40, 'Estevan', 10000, 1),
(13003, 254, 157, 'Proctorville', 10000, 1),
(13004, 254, 160, 'Corry', 10000, 1),
(13005, 254, 161, 'North Kingstown', 10000, 1),
(13006, 254, 122, 'Arab', 10000, 1),
(13007, 254, 126, 'San Lorenzo', 10000, 1),
(13009, 149, 2907, 'Shah Alam', 10000, 1),
(13010, 254, 135, 'Barrington', 10000, 1),
(13011, 43, 36, 'Saint Albert', 10000, 1),
(13012, 254, 159, 'Hubbard', 10000, 1),
(13013, 91, 1912, 'Forst', 10000, 1),
(13014, 254, 127, 'Morrison', 10000, 1),
(13015, 119, 2252, 'messina', 10000, 1),
(13016, 254, 132, 'Flowery Branch', 10000, 1),
(13017, 82, 1814, 'Mulhouse', 10000, 1),
(13019, 253, 5392, 'High Wycombe', 10000, 1),
(13020, 254, 160, 'Mount Carmel', 10000, 1),
(13021, 109, 646, 'Fanling', 10000, 1),
(13022, 43, 43, 'Ganges', 10000, 1),
(13023, 119, 2249, 'Verbania', 10000, 1),
(13025, 254, 167, 'Basye', 10000, 1),
(13026, 224, 3684, 'Lenasia', 10000, 1),
(13027, 254, 126, 'El Segundo', 10000, 1),
(13028, 91, 1918, 'Haan', 10000, 1),
(13029, 185, 2991, 'Grimstad', 10000, 1),
(13031, 254, 126, 'Midway City', 10000, 1),
(13032, 254, 167, 'Quinton', 10000, 1),
(13033, 254, 146, 'Petal', 10000, 1),
(13034, 254, 154, 'Lake Placid', 10000, 1),
(13035, 254, 144, 'Glenn', 10000, 1),
(13037, 254, 154, 'Williamson', 10000, 1),
(13038, 254, 170, 'Barron', 10000, 1),
(13039, 109, 646, 'Sheung Shui', 10000, 1),
(13040, 254, 152, 'Lafayette', 10000, 1),
(13042, 226, 3934, 'Valladolid', 10000, 1),
(13043, 254, 154, 'Hauppauge', 10000, 1),
(13044, 254, 139, 'Fort Thomas', 10000, 1),
(13045, 226, 3939, 'Orihuela', 10000, 1),
(13046, 254, 160, 'Roulette', 10000, 1),
(13048, 187, 3219, 'Multan', 10000, 1),
(13049, 187, 3219, 'Muzaffargarh', 10000, 1),
(13050, 43, 43, 'Salt Spring Island', 10000, 1),
(13051, 175, 2979, 'Heerlen', 10000, 1),
(13052, 24, 1137, 'Ostend', 10000, 1),
(13053, 254, 147, 'Slater', 10000, 1),
(13054, 233, 4003, 'Tierp', 10000, 1),
(13055, 254, 142, 'Bel Air', 10000, 1),
(13057, 254, 141, 'Ellsworth', 10000, 1),
(13058, 254, 132, 'Lithia Springs', 10000, 1),
(13059, 43, 37, 'Schomberg', 10000, 1),
(13060, 254, 126, 'Playa del Rey', 10000, 1),
(13062, 253, 5392, 'Bracknell', 10000, 1),
(13063, 65, 1501, 'Ribe', 10000, 1),
(13064, 254, 144, 'Leslie', 10000, 1),
(13065, 254, 125, 'Lakeview', 10000, 1),
(13066, 185, 2998, 'Levanger', 10000, 1),
(13067, 254, 126, 'Marina Del Rey', 10000, 1),
(13068, 185, 2999, 'Domb', 10000, 1),
(13069, 254, 147, 'Carthage', 10000, 1),
(13070, 124, 661, 'St Helier', 10000, 1),
(13071, 24, 1133, 'Genk', 10000, 1),
(13073, 254, 168, 'East Wenatche', 10000, 1),
(13074, 75, 1635, 'Rakvere', 10000, 1),
(13075, 254, 126, 'Venice', 10000, 1),
(13076, 254, 126, 'Pacific Palasaides', 10000, 1),
(13077, 254, 154, 'Tully', 10000, 1),
(13078, 61, 5043, 'Trogir', 10000, 1),
(13079, 254, 126, 'Hermosa Beach', 10000, 1),
(13080, 75, 1635, 'Tapa', 10000, 1),
(13081, 233, 4008, 'Nyn', 10000, 1),
(13082, 171, 4635, 'Windhoek', 10000, 1),
(13083, 142, 2606, 'Vaduz', 10000, 1),
(13084, 233, 4009, '', 10000, 1),
(13085, 254, 154, 'Baldwinsville', 10000, 1),
(13086, 254, 137, 'Larchwood', 10000, 1),
(13087, 185, 2996, 'Kristiansund', 10000, 1),
(13089, 254, 131, 'New Port Richey', 10000, 1),
(13090, 254, 165, 'Krum', 10000, 1),
(13091, 254, 136, 'Bloomfield', 10000, 1),
(13092, 254, 157, 'Gates Mills', 10000, 1),
(13093, 65, 1495, 'Grindsted', 10000, 1),
(13094, 221, 3752, 'Koper', 10000, 1),
(13097, 233, 3998, 'Lule', 10000, 1),
(13098, 254, 154, 'Richmond Hill', 10000, 1),
(13099, 254, 139, 'Hazard', 10000, 1),
(13100, 254, 135, 'Saint Charles', 10000, 1),
(13101, 254, 158, 'Colbert', 10000, 1),
(13102, 112, 2118, '', 10000, 1),
(13104, 254, 165, 'Bowie', 10000, 1),
(13106, 114, 2157, 'Mataram', 10000, 1),
(13107, 43, 37, 'Dunrobin', 10000, 1),
(13108, 239, 4081, 'Udon Thani', 10000, 1),
(13109, 254, 126, 'Agoura Hills', 10000, 1),
(13110, 233, 3990, 'Kungsbacka', 10000, 1),
(13111, 254, 157, 'Hamler', 10000, 1),
(13112, 43, 35, 'Laval', 10000, 1),
(13113, 43, 37, 'Novar', 10000, 1),
(13114, 254, 160, 'Langhorne', 10000, 1),
(13115, 254, 154, 'Hudson', 10000, 1),
(13117, 254, 168, 'Maple Valley', 10000, 1),
(13118, 254, 152, 'Manasquan', 10000, 1),
(13120, 254, 151, 'Windham', 10000, 1),
(13121, 254, 127, 'Sedalia', 10000, 1),
(13123, 254, 168, 'Lake Stevens', 10000, 1),
(13124, 254, 143, 'Brighton', 10000, 1),
(13125, 254, 157, 'Lakeside Marblehead', 10000, 1),
(13126, 254, 126, 'Foothill Ranch', 10000, 1),
(13127, 254, 165, 'Alamo', 10000, 1),
(13128, 239, 4109, 'Rayong', 10000, 1),
(13129, 254, 138, 'Hesston', 10000, 1),
(13130, 233, 4005, 'Nordmaling', 10000, 1),
(13132, 149, 2903, 'Kampar', 10000, 1),
(13133, 65, 1501, 'Ringsted', 10000, 1),
(13134, 14, 4, 'Tweed Heads', 10000, 1),
(13135, 253, 5392, 'Leek', 10000, 1),
(13137, 176, 5047, 'Willemstad', 10000, 1),
(13138, 65, 1501, 'Silkeborg', 10000, 1),
(13139, 234, 4028, 'Basel', 10000, 1),
(13140, 33, 24, 'Limeira', 10000, 1),
(13141, 33, 24, 'Bauru', 10000, 1),
(13142, 233, 4008, 'Gustavsberg', 10000, 1),
(13143, 254, 160, 'Aspers', 10000, 1),
(13144, 254, 131, 'Orange Park', 10000, 1),
(13145, 221, 3782, 'Murska Sobota', 10000, 1),
(13146, 61, 5028, 'Pula', 10000, 1),
(13147, 113, 2191, 'Chennai', 10000, 1),
(13149, 254, 155, 'Garner', 10000, 1),
(13150, 254, 157, 'Maineville', 10000, 1),
(13151, 254, 145, 'Chisholm', 10000, 1),
(13153, 254, 157, 'Salineville', 10000, 1),
(13154, 175, 2985, 'Noordwijk', 10000, 1),
(13155, 254, 159, 'Phoenix', 10000, 1),
(13156, 254, 165, 'Muenster', 10000, 1),
(13157, 18, 1085, 'Awali', 10000, 1),
(13158, 248, 785, 'Balfour Town', 10000, 1),
(13159, 91, 1917, 'Cuxhaven', 10000, 1),
(13160, 91, 1918, 'Moers', 10000, 1),
(13162, 254, 132, 'Tybee Island', 10000, 1),
(13163, 43, 37, 'Newmarket', 10000, 1),
(13165, 185, 2994, 'Moelv', 10000, 1),
(13166, 254, 158, 'Hennessey', 10000, 1),
(13167, 254, 145, 'Forest Lake', 10000, 1),
(13169, 24, 5305, 'Wavre', 10000, 1),
(13172, 119, 2246, 'Sondrio', 10000, 1),
(13173, 91, 1913, 'Waldkirchen', 10000, 1),
(13174, 65, 1498, 'Sonderborg', 10000, 1),
(13175, 65, 1498, 'Augustenborg', 10000, 1),
(13176, 14, 3, 'Noosa', 10000, 1),
(13177, 254, 152, 'Forked River', 10000, 1),
(13178, 253, 5392, 'Slough', 10000, 1),
(13179, 59, 1436, 'Barra Del Colorado', 10000, 1),
(13180, 254, 152, 'West Long Branch', 10000, 1),
(13182, 253, 5392, 'Lancaster', 10000, 1),
(13183, 254, 127, 'Gypsum', 10000, 1),
(13184, 224, 3688, 'Klerksdorp', 10000, 1),
(13185, 233, 3992, 'Hillerstorp', 10000, 1),
(13186, 233, 4010, 'Karlsborg', 10000, 1),
(13187, 24, 5306, 'Overijse', 10000, 1),
(13188, 254, 131, 'Alachua', 10000, 1),
(13189, 254, 159, 'Gladstone', 10000, 1),
(13191, 254, 154, 'Rye', 10000, 1),
(13192, 254, 147, 'Saint Charles', 10000, 1),
(13193, 254, 152, 'Englishtown', 10000, 1),
(13194, 43, 35, 'L', 10000, 1),
(13195, 254, 152, 'Pennsville', 10000, 1),
(13196, 254, 132, 'Stone Mountain', 10000, 1),
(13199, 202, 3369, 'Oravita', 10000, 1),
(13200, 254, 152, 'Frenchtown', 10000, 1),
(13201, 24, 1137, 'Harelbeke', 10000, 1),
(13203, 198, 3307, 'Tavira', 10000, 1),
(13204, 33, 24, 'Tremembe', 10000, 1),
(13205, 254, 143, 'Pembroke', 10000, 1),
(13206, 175, 2989, 'Dronten', 10000, 1),
(13207, 226, 3930, 'Algeciras', 10000, 1),
(13208, 254, 143, 'Boxford', 10000, 1),
(13209, 91, 1918, 'Hagen', 10000, 1),
(13210, 254, 147, 'Tea', 10000, 1),
(13211, 199, 736, 'Fajardo', 10000, 1),
(13213, 224, 3683, 'East london', 10000, 1),
(13214, 43, 35, 'Saint-Lazare', 10000, 1),
(13215, 195, 3412, 'Tuguegarao City', 10000, 1),
(13216, 119, 2242, 'Ravenna', 10000, 1),
(13217, 91, 1923, 'Neustrelitz', 10000, 1),
(13220, 254, 162, 'Ladson', 10000, 1),
(13221, 254, 168, 'Grandview', 10000, 1),
(13223, 254, 137, 'Slater', 10000, 1),
(13225, 233, 3986, 'Pukavik', 10000, 1),
(13226, 254, 154, 'Syosset', 10000, 1),
(13227, 197, 3283, 'Bialystok', 10000, 1),
(13228, 91, 1921, 'Flensburg', 10000, 1),
(13229, 233, 3992, 'Tran', 10000, 1),
(13230, 175, 2985, 'Vlaardingen', 10000, 1),
(13231, 234, 4049, 'Windlach', 10000, 1),
(13232, 254, 165, 'Somerville', 10000, 1),
(13233, 254, 135, 'Geneva', 10000, 1),
(13235, 254, 136, 'Dunkirk', 10000, 1),
(13236, 254, 144, 'Calumet', 10000, 1),
(13237, 65, 1501, 'Haslev', 10000, 1),
(13238, 254, 154, 'Tuxedo Park', 10000, 1),
(13239, 24, 1132, 'Eupen', 10000, 1),
(13241, 254, 136, 'Elwood', 10000, 1),
(13242, 233, 4004, 'Arvika', 10000, 1),
(13243, 254, 143, 'Amesbury', 10000, 1),
(13245, 59, 1438, 'San Francisco De Dos Rios', 10000, 1),
(13246, 254, 134, 'Driggs', 10000, 1),
(13247, 43, 35, 'Boucherville', 10000, 1),
(13249, 119, 2251, 'Selargius', 10000, 1),
(13251, 254, 151, 'Jefferson', 10000, 1),
(13252, 254, 168, 'Westport', 10000, 1),
(13253, 254, 135, 'Lexington', 10000, 1),
(13255, 10, 1051, 'Turdera', 10000, 1),
(13257, 254, 158, 'Disney', 10000, 1),
(13258, 254, 158, 'Eucha', 10000, 1),
(13259, 254, 170, 'Hartford', 10000, 1),
(13261, 53, 1421, 'Ibagu', 10000, 1),
(13262, 254, 144, 'Morenci', 10000, 1),
(13263, 254, 152, 'Lanoka Harbor', 10000, 1),
(13264, 254, 143, 'Sharon', 10000, 1),
(13265, 43, 35, 'Saint-Hippolyte-de-Kilkenny', 10000, 1),
(13266, 254, 126, 'El Granada', 10000, 1),
(13267, 254, 131, 'Boynton Beach', 10000, 1),
(13268, 43, 37, 'Ajax', 10000, 1),
(13269, 254, 159, 'Sixes', 10000, 1),
(13270, 254, 141, 'Van Buren', 10000, 1),
(13271, 254, 154, 'Washingtonville', 10000, 1),
(13272, 254, 135, 'Renault', 10000, 1),
(13273, 43, 37, 'Uxbridge', 10000, 1),
(13274, 254, 135, 'Barber''s Corner', 10000, 1),
(13275, 14, 4, 'Windsor', 10000, 1),
(13277, 149, 2897, 'Kota Tinggi', 10000, 1),
(13278, 254, 124, 'Elgin', 10000, 1),
(13279, 254, 157, 'Bluffton', 10000, 1),
(13280, 254, 152, 'Dumont', 10000, 1),
(13281, 254, 157, 'Bellaire', 10000, 1),
(13282, 254, 140, 'Ponchatoula', 10000, 1),
(13283, 175, 2989, 'Almere', 10000, 1),
(13284, 254, 126, 'Oakdale', 10000, 1),
(13285, 53, 1399, 'Rionegro', 10000, 1),
(13286, 65, 1501, 'Ulstrup', 10000, 1),
(13287, 253, 5392, 'Wolverhampton', 10000, 1),
(13288, 119, 2253, 'viareggio', 10000, 1),
(13289, 253, 5389, 'Beddgelert', 10000, 1),
(13290, 254, 136, 'Winona Lake', 10000, 1),
(13291, 254, 126, 'Manchester', 10000, 1),
(13292, 119, 2249, 'Borgomanero', 10000, 1),
(13294, 234, 4039, 'Rapperswil', 10000, 1),
(13295, 43, 43, 'Qualicum Beach', 10000, 1),
(13296, 253, 5392, 'Huntingdon', 10000, 1),
(13297, 91, 1912, 'Aalen', 10000, 1),
(13298, 254, 145, 'Collegeville', 10000, 1),
(13299, 203, 3577, 'Troitsk', 10000, 1),
(13301, 175, 2985, 'Lisse', 10000, 1),
(13303, 24, 1131, 'Hennuyeres', 10000, 1),
(13304, 117, 1619, 'Mullingar', 10000, 1),
(13305, 233, 4008, 'Sundbyberg', 10000, 1),
(13306, 91, 1918, 'Viersen', 10000, 1),
(13307, 119, 2245, 'Rapallo', 10000, 1),
(13308, 253, 5392, 'Whitehaven', 10000, 1),
(13309, 254, 133, 'Waimea', 10000, 1),
(13310, 254, 144, 'Milford', 10000, 1),
(13311, 91, 1913, 'Schongau', 10000, 1),
(13312, 239, 4100, 'Non Buri ', 10000, 1),
(13314, 43, 37, 'Saint Marys', 10000, 1),
(13315, 43, 39, 'Portuguese Cove', 10000, 1),
(13316, 33, 24, 'S', 10000, 1),
(13317, 15, 1077, 'Korneuburg', 10000, 1),
(13319, 254, 152, 'Burlington', 10000, 1),
(13320, 254, 154, 'Catskill', 10000, 1),
(13321, 254, 143, 'North Andover', 10000, 1),
(13322, 149, 2907, 'Kajang', 10000, 1),
(13323, 185, 3003, 'F', 10000, 1),
(13324, 81, 5023, 'Valkeakoski', 10000, 1),
(13325, 43, 35, 'Bellefeuille', 10000, 1),
(13326, 33, 24, 'Diadema', 10000, 1),
(13327, 91, 1912, 'Villingen-Schwenningen', 10000, 1),
(13328, 91, 1918, 'Havixbeck', 10000, 1),
(13330, 254, 126, 'Lake Tahoe', 10000, 1),
(13331, 185, 2990, 'Jessheim', 10000, 1),
(13332, 185, 3008, 'T', 10000, 1),
(13333, 254, 144, 'Clarkston', 10000, 1),
(13334, 24, 1129, 'Turnhout', 10000, 1),
(13335, 254, 142, 'Brunswick', 10000, 1),
(13336, 233, 4003, 'Grillby', 10000, 1),
(13337, 61, 5034, 'Osijek', 10000, 1),
(13338, 254, 170, 'Sister Bay', 10000, 1),
(13339, 159, 2895, 'Tuxpan', 10000, 1),
(13340, 254, 159, 'Tualatin', 10000, 1),
(13342, 254, 144, 'Hancock', 10000, 1),
(13343, 254, 144, 'Croswell', 10000, 1),
(13344, 226, 3932, 'Puerto de la Cruz', 10000, 1),
(13345, 254, 135, 'Hinsdale', 10000, 1),
(13347, 254, 127, 'Ridgway', 10000, 1),
(13348, 254, 144, 'Harbor Beach', 10000, 1),
(13349, 254, 166, 'Parowan', 10000, 1),
(13351, 254, 162, 'Conway', 10000, 1),
(13352, 254, 126, 'Redway', 10000, 1),
(13353, 185, 3005, 'Notodden', 10000, 1),
(13354, 254, 143, 'Harvard', 10000, 1),
(13355, 233, 4010, 'Grebbestad', 10000, 1),
(13356, 91, 1913, 'Helmbrechts', 10000, 1),
(13358, 175, 2977, 'Ede', 10000, 1),
(13359, 254, 152, 'Chester', 10000, 1),
(13360, 65, 1491, 'Aller', 10000, 1),
(13361, 254, 143, 'Vineyard Haven', 10000, 1),
(13362, 254, 126, 'Stonyford', 10000, 1),
(13363, 233, 4006, 'Liden', 10000, 1),
(13364, 15, 1077, 'Wieselburg', 10000, 1),
(13365, 254, 154, 'Westhampton Beach', 10000, 1),
(13366, 253, 5392, 'Wells', 10000, 1),
(13367, 254, 164, 'Oneida', 10000, 1),
(13369, 254, 136, 'Newburgh', 10000, 1),
(13370, 254, 132, 'Temple', 10000, 1),
(13372, 254, 154, 'Seneca Falls', 10000, 1),
(13373, 254, 153, 'Espanola', 10000, 1),
(13374, 81, 5022, 'Varkaus', 10000, 1),
(13375, 185, 3005, 'Langesund', 10000, 1),
(13376, 254, 126, 'Kelseyville', 10000, 1),
(13377, 233, 4003, 'Enk', 10000, 1),
(13378, 233, 4010, 'Tanumshede', 10000, 1),
(13379, 254, 126, 'Idyllwild', 10000, 1),
(13380, 81, 5022, 'Nilsi', 10000, 1),
(13381, 119, 2251, 'Nuoro', 10000, 1),
(13382, 91, 1916, 'Bad Vilbel', 10000, 1);
INSERT INTO `[[dbprefix]]geo_cities` VALUES
(13383, 254, 128, 'Durham', 10000, 1),
(13384, 254, 143, 'Belchertown', 10000, 1),
(13385, 254, 145, 'Saint Charles', 10000, 1),
(13386, 254, 143, 'Tyngsboro', 10000, 1),
(13387, 253, 5392, 'Letchworth', 10000, 1),
(13388, 254, 126, 'Yucca Valley', 10000, 1),
(13389, 43, 36, 'Valleyview', 10000, 1),
(13390, 175, 2980, 'Drunen', 10000, 1),
(13391, 254, 167, 'Colonial Heights', 10000, 1),
(13392, 254, 126, 'Lower Lake', 10000, 1),
(13393, 10, 1051, 'Castelar', 10000, 1),
(13394, 254, 157, 'Upper Sandusky', 10000, 1),
(13395, 254, 144, 'Huntington Woods', 10000, 1),
(13396, 254, 141, 'Saco', 10000, 1),
(13397, 254, 131, 'Branford', 10000, 1),
(13398, 254, 143, 'Shirley', 10000, 1),
(13399, 178, 3089, 'Napier', 10000, 1),
(13400, 254, 170, 'Merrillan', 10000, 1),
(13401, 198, 3311, 'Ericeira', 10000, 1),
(13402, 91, 1923, 'Neubrandenburg', 10000, 1),
(13403, 254, 145, 'Lake Elmo', 10000, 1),
(13404, 91, 1923, 'Wesenberg', 10000, 1),
(13405, 91, 1922, 'F', 10000, 1),
(13406, 254, 152, 'Dayton', 10000, 1),
(13407, 254, 160, 'Towanda', 10000, 1),
(13408, 254, 126, 'Coarsegold', 10000, 1),
(13409, 254, 145, 'Dassel', 10000, 1),
(13410, 254, 144, 'Cedar Springs', 10000, 1),
(13411, 254, 145, 'Angle Inlet', 10000, 1),
(13412, 254, 142, 'Crisfield', 10000, 1),
(13414, 239, 4124, 'Phuket', 10000, 1),
(13415, 254, 150, 'Pahrump', 10000, 1),
(13416, 254, 144, 'Walker', 10000, 1),
(13417, 10, 1051, 'Haedo', 10000, 1),
(13418, 254, 157, 'Amherst', 10000, 1),
(13421, 254, 126, 'Weed', 10000, 1),
(13422, 254, 144, 'Trenton', 10000, 1),
(13424, 254, 136, 'Shipshewana', 10000, 1),
(13425, 254, 155, 'Jamestown', 10000, 1),
(13426, 254, 144, 'Cassopolis', 10000, 1),
(13429, 254, 135, 'Georgetown', 10000, 1),
(13430, 254, 163, 'Beresford', 10000, 1),
(13431, 254, 163, 'Fairview', 10000, 1),
(13432, 254, 163, 'Worthing', 10000, 1),
(13433, 254, 163, 'Alcester', 10000, 1),
(13434, 254, 160, 'Pen Argyl', 10000, 1),
(13435, 43, 36, 'Strathmore', 10000, 1),
(13436, 254, 144, 'Vassar', 10000, 1),
(13437, 254, 131, 'Labelle', 10000, 1),
(13438, 254, 160, 'Narberth', 10000, 1),
(13439, 15, 1075, 'Pinkafeld', 10000, 1),
(13440, 254, 142, 'Emmitsburg', 10000, 1),
(13442, 253, 5389, 'Llandrindod Well', 10000, 1),
(13443, 256, 4492, 'Durazno', 10000, 1),
(13444, 175, 2980, 'Woensdrecht', 10000, 1),
(13445, 91, 1916, 'Gie', 10000, 1),
(13447, 254, 164, 'Collierville', 10000, 1),
(13449, 43, 43, 'Powell River', 10000, 1),
(13450, 254, 140, 'DeRidder', 10000, 1),
(13451, 175, 2982, 'Kampen', 10000, 1),
(13452, 233, 3999, '', 10000, 1),
(13453, 14, 1, 'South Yarra', 10000, 1),
(13455, 198, 3318, 'Viseu', 10000, 1),
(13456, 175, 2982, 'Raalte', 10000, 1),
(13457, 24, 1133, 'Tongeren', 10000, 1),
(13459, 175, 2985, 'Leiderdorp', 10000, 1),
(13460, 254, 172, 'Fairfax', 10000, 1),
(13462, 175, 2985, 'Capelle Aan Den Ijssel', 10000, 1),
(13463, 10, 1051, 'Mar del Plata', 10000, 1),
(13464, 233, 4004, 'Skillingsfors', 10000, 1),
(13465, 65, 1494, 'Br', 10000, 1),
(13466, 254, 146, 'Itta Bena', 10000, 1),
(13467, 91, 1913, 'Bayreuth', 10000, 1),
(13468, 119, 2246, 'Pavia', 10000, 1),
(13470, 91, 1912, 'Konstanz', 10000, 1),
(13471, 99, 636, 'Agat', 10000, 1),
(13473, 233, 4010, 'Vanersborg', 10000, 1),
(13474, 254, 122, 'Summerdale', 10000, 1),
(13475, 254, 145, 'Frazee', 10000, 1),
(13477, 43, 37, 'Elliot lake', 10000, 1),
(13478, 254, 165, 'Mabank', 10000, 1),
(13479, 119, 2248, 'Frosolone', 10000, 1),
(13480, 254, 164, 'Rives', 10000, 1),
(13481, 91, 1918, 'Wassenberg', 10000, 1),
(13482, 33, 30, 'Joinville', 10000, 1),
(13483, 254, 142, 'Owings Mills', 10000, 1),
(13484, 226, 3935, 'Torrelles de Llobregat', 10000, 1),
(13485, 256, 4491, 'Carmelo', 10000, 1),
(13486, 43, 42, 'Bathurst', 10000, 1),
(13487, 43, 37, 'Newcastle', 10000, 1),
(13488, 253, 5392, 'Leamington', 10000, 1),
(13490, 254, 142, 'Havre De Grace', 10000, 1),
(13491, 119, 2253, 'Grosseto', 10000, 1),
(13492, 254, 154, 'Floral Park', 10000, 1),
(13493, 254, 167, 'Honaker', 10000, 1),
(13494, 159, 2888, 'Mexico', 10000, 1),
(13496, 254, 160, 'Scottdale', 10000, 1),
(13497, 254, 165, 'Magnolia', 10000, 1),
(13498, 119, 2245, 'San Remo', 10000, 1),
(13499, 254, 135, 'Minonk', 10000, 1),
(13500, 254, 160, 'Murrysville', 10000, 1),
(13501, 254, 126, 'Studio City', 10000, 1),
(13502, 254, 151, 'Meredith', 10000, 1),
(13503, 254, 158, 'Bixby', 10000, 1),
(13504, 219, 756, 'Toa Payoh', 10000, 1),
(13505, 81, 4879, 'Kotka', 10000, 1),
(13506, 234, 4049, 'Uster', 10000, 1),
(13507, 254, 160, 'Waynesboro', 10000, 1),
(13508, 254, 145, 'Isanti', 10000, 1),
(13510, 254, 128, 'New Milford', 10000, 1),
(13511, 43, 43, 'Revelstoke', 10000, 1),
(13512, 254, 142, 'Mount Rainier', 10000, 1),
(13513, 254, 144, 'Mohawk', 10000, 1),
(13514, 43, 36, 'Cardston', 10000, 1),
(13515, 149, 2906, 'Sibu', 10000, 1),
(13516, 254, 135, 'Marengo', 10000, 1),
(13517, 254, 157, 'Luckey', 10000, 1),
(13518, 254, 128, 'Southbury', 10000, 1),
(13519, 49, 1361, 'Guangdong', 10000, 1),
(13521, 254, 170, 'Wisconsin Rapids', 10000, 1),
(13523, 243, 4060, 'San Fernando', 10000, 1),
(13524, 254, 135, 'Richmond', 10000, 1),
(13526, 145, 2683, 'Macau', 10000, 1),
(13527, 254, 155, 'Hampstead', 10000, 1),
(13529, 224, 3680, 'Newcastle', 10000, 1),
(13530, 233, 3992, 'Eksjo', 10000, 1),
(13531, 254, 135, 'Herrin', 10000, 1),
(13532, 254, 159, 'Rockaway Beach', 10000, 1),
(13533, 239, 4122, 'Koh Samui', 10000, 1),
(13534, 178, 3137, 'Taupo', 10000, 1),
(13537, 254, 154, 'Rock Hill', 10000, 1),
(13538, 14, 4, 'Gosford', 10000, 1),
(13539, 254, 133, 'Makawao', 10000, 1),
(13542, 43, 43, 'Kitimat', 10000, 1),
(13543, 197, 3277, 'Lublin', 10000, 1),
(13544, 254, 167, 'Catlett', 10000, 1),
(13545, 149, 2907, 'Subang Jaya', 10000, 1),
(13546, 253, 5392, 'Lichfield', 10000, 1),
(13547, 119, 2257, 'Malcesine', 10000, 1),
(13548, 43, 35, 'Baie-Comeau', 10000, 1),
(13549, 14, 1, 'Hurstbridge', 10000, 1),
(13551, 226, 3935, 'Lleida', 10000, 1),
(13552, 254, 152, 'Maple Shade', 10000, 1),
(13553, 82, 1813, 'Lyon', 10000, 1),
(13554, 33, 24, 'Pirassununga', 10000, 1),
(13555, 100, 1985, 'San Jose Pinula', 10000, 1),
(13556, 149, 2897, 'Pontian', 10000, 1),
(13557, 15, 1081, 'Jochberg', 10000, 1),
(13558, 254, 155, 'Hiddenite', 10000, 1),
(13559, 233, 4010, 'Uddevalla', 10000, 1),
(13560, 152, 689, 'Luqa', 10000, 1),
(13561, 109, 646, 'Chai Wan', 10000, 1),
(13562, 254, 165, 'Nazareth', 10000, 1),
(13563, 43, 35, 'Saint-Laurent', 10000, 1),
(13564, 254, 172, 'Stowe', 10000, 1),
(13565, 43, 42, 'Campbellton', 10000, 1),
(13566, 234, 4029, 'Lengnau', 10000, 1),
(13567, 254, 135, 'Broadview', 10000, 1),
(13568, 254, 155, 'Stony Point', 10000, 1),
(13569, 254, 164, 'Mount Juliet', 10000, 1),
(13571, 254, 126, 'Livingston', 10000, 1),
(13572, 254, 160, 'Fredericksburg', 10000, 1),
(13574, 43, 35, 'Cantley', 10000, 1),
(13575, 253, 5392, 'Crawley', 10000, 1),
(13576, 254, 131, 'Apopka', 10000, 1),
(13577, 24, 1136, 'Merelbeke', 10000, 1),
(13578, 91, 1919, 'Landau', 10000, 1),
(13579, 226, 3931, 'Huesca', 10000, 1),
(13581, 254, 157, 'Perrysburg', 10000, 1),
(13582, 254, 165, 'Pflugerville', 10000, 1),
(13583, 175, 2980, '''S-Hertogenbosch', 10000, 1),
(13584, 185, 2996, 'Molde', 10000, 1),
(13587, 254, 131, 'Loxahatchee', 10000, 1),
(13589, 254, 170, 'Minocqua', 10000, 1),
(13590, 175, 2980, 'Breda', 10000, 1),
(13591, 254, 143, 'Florence', 10000, 1),
(13593, 254, 131, 'Zephyrhills', 10000, 1),
(13594, 91, 1913, 'Kaufbeuren', 10000, 1),
(13595, 254, 151, 'Atkinson', 10000, 1),
(13596, 254, 152, 'Manchester Township', 10000, 1),
(13597, 254, 160, 'Jersey Shore', 10000, 1),
(13599, 254, 169, 'Sistersville', 10000, 1),
(13600, 254, 126, 'Desert Hot Springs', 10000, 1),
(13601, 254, 154, 'New Windsor', 10000, 1),
(13602, 254, 149, 'Syracuse', 10000, 1),
(13603, 254, 144, 'Hartford', 10000, 1),
(13604, 254, 128, 'Terryville', 10000, 1),
(13605, 254, 160, 'Moscow', 10000, 1),
(13606, 43, 43, 'Quesnel', 10000, 1),
(13607, 254, 165, 'Addison', 10000, 1),
(13608, 254, 144, 'Armada', 10000, 1),
(13609, 114, 49, 'Klungkung', 10000, 1),
(13610, 254, 160, 'Ellwood City', 10000, 1),
(13612, 226, 3935, 'Igualada', 10000, 1),
(13613, 254, 147, 'Centralia', 10000, 1),
(13614, 226, 3935, 'Esparreguera', 10000, 1),
(13615, 195, 3505, 'Las Pinas City', 10000, 1),
(13616, 81, 5023, 'M', 10000, 1),
(13617, 254, 135, 'Rock Falls', 10000, 1),
(13618, 128, 2456, 'Kostanai', 10000, 1),
(13619, 175, 2983, 'Veenendaal', 10000, 1),
(13620, 175, 2982, 'Oldenzaal', 10000, 1),
(13621, 185, 2993, 'Vads', 10000, 1),
(13623, 233, 4006, 'Sollefte', 10000, 1),
(13624, 175, 2977, 'Zaltbommel', 10000, 1),
(13625, 15, 1077, 'Wiener Neustadt', 10000, 1),
(13626, 65, 1500, 'Almind', 10000, 1),
(13627, 91, 1919, 'Neuwied', 10000, 1),
(13628, 254, 123, 'Glennallen', 10000, 1),
(13629, 253, 5392, 'Northallerton', 10000, 1),
(13630, 253, 5392, 'Yarm', 10000, 1),
(13631, 253, 5392, 'Barking', 10000, 1),
(13633, 175, 2983, 'Woerden', 10000, 1),
(13634, 91, 1912, 'Heilbronn', 10000, 1),
(13635, 175, 2982, 'Hengelo', 10000, 1),
(13637, 119, 2257, 'Treviso', 10000, 1),
(13638, 233, 3990, 'Varberg', 10000, 1),
(13639, 149, 2903, 'Kuala Kangsar', 10000, 1),
(13640, 246, 4236, 'Manisa', 10000, 1),
(13641, 253, 5392, 'Chelmsford', 10000, 1),
(13643, 253, 5392, 'Hoddesdon', 10000, 1),
(13645, 254, 144, 'Blissfield', 10000, 1),
(13646, 254, 137, 'North Liberty', 10000, 1),
(13647, 254, 167, 'Smithfield', 10000, 1),
(13648, 254, 167, 'Stuarts Draft', 10000, 1),
(13649, 65, 1497, 'Roskilde', 10000, 1),
(13651, 198, 3307, 'Albufeira', 10000, 1),
(13652, 175, 2981, 'Enkhuizen', 10000, 1),
(13653, 14, 1, 'Echuca', 10000, 1),
(13655, 10, 1051, 'Caseros', 10000, 1),
(13656, 43, 39, 'Wolfville', 10000, 1),
(13657, 175, 2985, 'Alphen Aan Den Rijn', 10000, 1),
(13664, 254, 127, 'Conifer', 10000, 1),
(13665, 254, 169, 'Chapmanville', 10000, 1),
(13667, 254, 137, 'Hiawatha', 10000, 1),
(13669, 254, 127, 'Evergreen', 10000, 1),
(13670, 233, 3990, 'Falkenberg', 10000, 1),
(13671, 43, 35, 'Victoriaville', 10000, 1),
(13672, 254, 155, 'Morrisville', 10000, 1),
(13673, 254, 140, 'Rayne', 10000, 1),
(13674, 254, 132, 'Morrow', 10000, 1),
(13676, 254, 154, 'Geneva', 10000, 1),
(13678, 254, 157, 'Conneaut', 10000, 1),
(13679, 254, 160, 'King of Prussia', 10000, 1),
(13680, 254, 126, 'Felton', 10000, 1),
(13681, 254, 157, 'Miamisburg', 10000, 1),
(13682, 43, 37, 'Richmond Hill', 10000, 1),
(13683, 254, 152, 'Califon', 10000, 1),
(13684, 254, 160, 'Bryn Mawr', 10000, 1),
(13685, 254, 126, 'Terra Bella', 10000, 1),
(13686, 226, 3935, 'Sabadell', 10000, 1),
(13687, 226, 3935, 'Matadepera', 10000, 1),
(13688, 234, 4048, 'Zug', 10000, 1),
(13689, 91, 1914, 'Bremen', 10000, 1),
(13690, 113, 2174, 'Delhi', 10000, 1),
(13691, 119, 2241, 'solofra', 10000, 1),
(13692, 219, 756, 'Woodlands', 10000, 1),
(13693, 254, 165, 'Vidor', 10000, 1),
(13694, 65, 1496, 'Tim', 10000, 1),
(13695, 254, 126, 'Anza', 10000, 1),
(13696, 253, 5392, 'Dorchester', 10000, 1),
(13700, 254, 164, 'Goodlettsville', 10000, 1),
(13701, 254, 157, 'Oak Harbor', 10000, 1),
(13703, 254, 151, 'Londonderry', 10000, 1),
(13704, 254, 152, 'Lincoln Park', 10000, 1),
(13705, 254, 147, 'Seligman', 10000, 1),
(13706, 185, 2994, 'Elverum', 10000, 1),
(13707, 91, 1912, 'Albstadt', 10000, 1),
(13708, 254, 144, 'Coloma', 10000, 1),
(13709, 185, 2996, '', 10000, 1),
(13710, 233, 4009, '', 10000, 1),
(13711, 253, 5392, 'Dartford', 10000, 1),
(13712, 185, 2996, 'Isfjorden', 10000, 1),
(13714, 254, 170, 'Menasha', 10000, 1),
(13715, 254, 164, 'Bulls Gap', 10000, 1),
(13716, 113, 2191, 'Cuddalore', 10000, 1),
(13717, 43, 43, 'White Rock', 10000, 1),
(13718, 254, 164, 'Viola', 10000, 1),
(13719, 254, 164, 'Blountville', 10000, 1),
(13721, 233, 4010, 'Nossebro', 10000, 1),
(13722, 81, 4879, 'Vantaa', 10000, 1),
(13723, 254, 123, 'Whittier', 10000, 1),
(13725, 254, 155, 'Mount Airy', 10000, 1),
(13726, 178, 3106, 'Blenheim', 10000, 1),
(13727, 254, 144, 'Mason', 10000, 1),
(13728, 185, 2992, 'H', 10000, 1),
(13731, 43, 43, 'Heriot Bay', 10000, 1),
(13733, 159, 203, 'San Luis Potos', 10000, 1),
(13734, 254, 157, 'Dresden', 10000, 1),
(13735, 254, 167, 'Occoquan', 10000, 1),
(13737, 254, 162, 'Easley', 10000, 1),
(13738, 254, 162, 'Pickens', 10000, 1),
(13741, 111, 2072, 'H', 10000, 1),
(13742, 254, 135, 'South Elgin', 10000, 1),
(13743, 254, 160, 'Saxton', 10000, 1),
(13744, 254, 135, 'Kincaid', 10000, 1),
(13745, 254, 170, 'Athens', 10000, 1),
(13746, 254, 140, 'DeQuincy', 10000, 1),
(13747, 254, 133, 'Holualoa', 10000, 1),
(13748, 254, 147, 'Qulin', 10000, 1),
(13749, 254, 158, 'Wellston', 10000, 1),
(13750, 254, 162, 'Manning', 10000, 1),
(13751, 65, 1501, 'Ringkobing', 10000, 1),
(13752, 254, 126, 'Topanga', 10000, 1),
(13754, 254, 132, 'Rex', 10000, 1),
(13756, 254, 144, 'Grand Ledge', 10000, 1),
(13757, 159, 71, 'Valle de Santiago', 10000, 1),
(13758, 254, 167, 'Franklin', 10000, 1),
(13759, 254, 133, 'Waianae', 10000, 1),
(13761, 254, 166, 'Wellsville', 10000, 1),
(13763, 81, 4879, 'H', 10000, 1),
(13766, 254, 157, 'Wellington', 10000, 1),
(13767, 254, 168, 'Tonasket', 10000, 1),
(13770, 254, 136, 'Greentown', 10000, 1),
(13771, 91, 1916, 'Marburg', 10000, 1),
(13772, 202, 3386, 'Ploiesti', 10000, 1),
(13774, 254, 123, 'Delta Junction', 10000, 1),
(13775, 65, 1494, 'Hj', 10000, 1),
(13776, 82, 1814, 'Mutzig', 10000, 1),
(13777, 254, 126, 'Pacoima', 10000, 1),
(13779, 91, 1919, 'Rudesheim', 10000, 1),
(13780, 118, 2232, 'Beer-Sheva', 10000, 1),
(13781, 234, 4043, 'Frauenfeld', 10000, 1),
(13782, 234, 4043, 'Kreuzlingen', 10000, 1),
(13783, 254, 160, 'Loganton', 10000, 1),
(13785, 254, 143, 'Southbridge', 10000, 1),
(13786, 254, 152, 'Dover', 10000, 1),
(13788, 175, 2981, 'Hoofddorp', 10000, 1),
(13790, 119, 2249, 'Settimo Torinese', 10000, 1),
(13791, 254, 142, 'Savage', 10000, 1),
(13792, 111, 2103, 'Szombathely', 10000, 1),
(13793, 213, 3631, 'Jubail', 10000, 1),
(13794, 254, 142, 'Damascus', 10000, 1),
(13795, 33, 17, 'Campina Grande', 10000, 1),
(13796, 195, 3505, 'Malabon', 10000, 1),
(13797, 254, 165, 'Leming', 10000, 1),
(13799, 254, 138, 'Derby', 10000, 1),
(13800, 254, 132, 'Acworth', 10000, 1),
(13801, 15, 1077, 'Zwettl ', 10000, 1),
(13803, 65, 1501, 'Hee', 10000, 1),
(13804, 254, 157, 'Liberty Center', 10000, 1),
(13805, 254, 159, 'Shady Cove', 10000, 1),
(13806, 254, 160, 'Kempton', 10000, 1),
(13807, 134, 2439, 'Khalidia', 10000, 1),
(13808, 65, 1497, 'Greve', 10000, 1),
(13809, 254, 155, 'Elon College', 10000, 1),
(13810, 254, 168, 'Nordland', 10000, 1),
(13811, 254, 144, 'Saint Ignace', 10000, 1),
(13812, 253, 5392, 'Bury', 10000, 1),
(13813, 254, 145, 'Albany', 10000, 1),
(13814, 254, 144, 'West Branch', 10000, 1),
(13815, 254, 170, 'Cedarburg', 10000, 1),
(13816, 254, 147, 'Pilot Grove', 10000, 1),
(13818, 137, 2511, 'Sigulda', 10000, 1),
(13819, 254, 157, 'Berea', 10000, 1),
(13820, 254, 164, 'Strawberry Plains', 10000, 1),
(13822, 254, 143, 'Charlestown', 10000, 1),
(13823, 175, 2976, 'Heerenveen', 10000, 1),
(13824, 254, 145, 'Renville', 10000, 1),
(13825, 254, 165, 'Aransas Pass', 10000, 1),
(13826, 254, 155, 'Weaverville', 10000, 1),
(13827, 254, 168, 'Langley', 10000, 1),
(13828, 254, 136, 'Fountain City', 10000, 1),
(13829, 254, 152, 'Hasbrouck Heights', 10000, 1),
(13830, 82, 1813, 'Annecy', 10000, 1),
(13831, 251, 4435, 'Donetsk', 10000, 1),
(13832, 254, 126, 'Esparto', 10000, 1),
(13833, 198, 3313, 'Trofa', 10000, 1),
(13834, 254, 144, 'Hudson', 10000, 1),
(13835, 254, 147, 'Bolivar', 10000, 1),
(13836, 254, 154, 'Red Creek', 10000, 1),
(13837, 254, 142, 'Lothian', 10000, 1),
(13838, 254, 143, 'Westford', 10000, 1),
(13842, 82, 1803, 'Les Ulis', 10000, 1),
(13844, 254, 154, 'Bayport', 10000, 1),
(13845, 254, 157, 'Avon', 10000, 1),
(13846, 254, 154, 'Holtsville', 10000, 1),
(13847, 61, 5036, 'Rijeka', 10000, 1),
(13848, 254, 168, 'Curlew', 10000, 1),
(13849, 254, 148, 'Ronan', 10000, 1),
(13851, 254, 122, 'Hartselle', 10000, 1),
(13852, 43, 41, 'Mount Pearl', 10000, 1),
(13853, 254, 126, 'Cedarpines Park', 10000, 1),
(13854, 254, 154, 'Nesconset', 10000, 1),
(13855, 99, 636, 'Hagatna', 10000, 1),
(13858, 91, 1913, 'weiden', 10000, 1),
(13859, 65, 1500, 'Fredericia', 10000, 1),
(13860, 254, 152, 'Glen Ridge', 10000, 1),
(13861, 43, 38, 'Grunthal', 10000, 1),
(13862, 254, 132, 'Woodstock', 10000, 1),
(13863, 254, 155, 'Fuqua-Varina', 10000, 1),
(13864, 254, 168, 'Manson', 10000, 1),
(13865, 254, 126, 'La Honda', 10000, 1),
(13866, 254, 162, 'Fort Mill', 10000, 1),
(13867, 254, 135, 'Lincoln', 10000, 1),
(13868, 91, 1920, 'Lebach', 10000, 1),
(13869, 254, 131, 'Ocoee', 10000, 1),
(13870, 233, 4009, 'H', 10000, 1),
(13871, 254, 155, 'Carrboro', 10000, 1),
(13872, 254, 168, 'Ilwaco', 10000, 1),
(13873, 254, 157, 'Loveland', 10000, 1),
(13874, 253, 5392, 'Benfleet', 10000, 1),
(13875, 254, 139, 'Salvisa', 10000, 1),
(13876, 152, 689, 'Tarxien', 10000, 1),
(13878, 254, 147, 'Canton', 10000, 1),
(13879, 254, 133, 'Wahiawa', 10000, 1),
(13881, 175, 2983, 'Driebergen', 10000, 1),
(13882, 254, 138, 'Augusta', 10000, 1),
(13883, 43, 38, 'Winkler', 10000, 1),
(13884, 43, 38, 'Altona', 10000, 1),
(13887, 254, 134, 'Hayden', 10000, 1),
(13888, 254, 142, 'Accokeek', 10000, 1),
(13889, 43, 37, 'Carleton Place', 10000, 1),
(13890, 254, 151, 'Suncook', 10000, 1),
(13891, 254, 145, 'Andover', 10000, 1),
(13893, 14, 3, 'Rockhampton', 10000, 1),
(13894, 254, 160, 'Collegeville', 10000, 1),
(13895, 254, 137, 'Norwalk', 10000, 1),
(13897, 254, 152, 'Middletown', 10000, 1),
(13898, 254, 160, 'Camp Hill', 10000, 1),
(13899, 14, 1, 'Morwell', 10000, 1),
(13902, 254, 134, 'Emmett', 10000, 1),
(13903, 224, 3685, 'White River', 10000, 1),
(13904, 43, 36, 'Leduc', 10000, 1),
(13905, 43, 37, 'Lively', 10000, 1),
(13906, 24, 5306, 'Boortmeerbeek', 10000, 1),
(13907, 254, 136, 'Jasonville', 10000, 1),
(13908, 82, 1803, 'Chantilly', 10000, 1),
(13909, 65, 1491, 'Frederikssund', 10000, 1),
(13910, 82, 1803, 'Levallois-Perret', 10000, 1),
(13911, 175, 2977, 'Wageningen', 10000, 1),
(13912, 233, 3992, 'Bankeryd', 10000, 1),
(13913, 253, 5392, 'Croydon', 10000, 1),
(13914, 226, 3908, 'Villanueva de la Ca', 10000, 1),
(13915, 233, 3993, 'F', 10000, 1),
(13916, 119, 2257, 'Thiene', 10000, 1),
(13917, 82, 1801, 'Besancon', 10000, 1),
(13918, 82, 1801, 'Lons-le-Saunier', 10000, 1),
(13919, 219, 756, 'Paya Lebar', 10000, 1),
(13920, 233, 4010, 'Lidkoping', 10000, 1),
(13921, 82, 1811, 'Poitiers', 10000, 1),
(13922, 254, 160, 'Marysville', 10000, 1),
(13923, 254, 156, 'Zap', 10000, 1),
(13924, 251, 4434, 'Dnepropetrovsk', 10000, 1),
(13926, 91, 1918, 'Neuss', 10000, 1),
(13927, 233, 3992, 'N', 10000, 1),
(13928, 254, 170, 'Redgranite', 10000, 1),
(13930, 254, 157, 'Broadview Heights.', 10000, 1),
(13931, 91, 1916, 'Hofgeismar', 10000, 1),
(13932, 233, 3999, 'Kumla', 10000, 1),
(13933, 254, 160, 'Dillsburg', 10000, 1),
(13935, 43, 37, 'Durham', 10000, 1),
(13936, 251, 4435, 'Makeevka', 10000, 1),
(13937, 254, 167, 'Bridgewater', 10000, 1),
(13939, 185, 3006, 'Oksfjord', 10000, 1),
(13940, 185, 3006, 'S', 10000, 1),
(13941, 33, 24, 'Valinhos', 10000, 1),
(13942, 119, 2246, 'Cologno Monzese', 10000, 1),
(13943, 254, 156, 'Burlington', 10000, 1),
(13944, 254, 156, 'Tioga', 10000, 1),
(13945, 199, 736, 'Barranquitas', 10000, 1),
(13946, 91, 1918, 'Kamp-Lintfort', 10000, 1),
(13947, 119, 2253, 'Cecina', 10000, 1),
(13948, 254, 159, 'Trail', 10000, 1),
(13949, 254, 144, 'Comstock Park', 10000, 1),
(13950, 254, 144, 'South Branch', 10000, 1),
(13951, 233, 4002, 'Str', 10000, 1),
(13954, 254, 156, 'Saint John', 10000, 1),
(13955, 254, 143, 'Bellingham', 10000, 1),
(13957, 254, 157, 'Canal Winchester', 10000, 1),
(13959, 65, 1489, 'Mygind', 10000, 1),
(13960, 254, 154, 'Arcade', 10000, 1),
(13962, 254, 152, 'Ramsey', 10000, 1),
(13963, 91, 1916, 'Wetzlar', 10000, 1),
(13964, 91, 1916, 'Hofheim', 10000, 1),
(13965, 65, 1498, 'Ravsted', 10000, 1),
(13966, 254, 165, 'Cypress', 10000, 1),
(13967, 111, 2084, 'Ny', 10000, 1),
(13968, 175, 2979, 'Sittard', 10000, 1),
(13969, 254, 162, 'Woodruff', 10000, 1),
(13970, 253, 5392, 'Southport', 10000, 1),
(13971, 254, 154, 'Ardsley', 10000, 1),
(13972, 254, 144, 'Ferrysburg', 10000, 1),
(13973, 253, 5392, 'Telford', 10000, 1),
(13975, 253, 5392, 'Seaford', 10000, 1),
(13976, 254, 154, 'Cold Spring', 10000, 1),
(13977, 253, 5392, 'Hastings', 10000, 1),
(13980, 91, 1913, 'Fuerth', 10000, 1),
(13981, 254, 160, 'East Greenville', 10000, 1),
(13982, 254, 145, 'Clarks Grove', 10000, 1),
(13983, 254, 144, 'Suttons Bay', 10000, 1),
(13984, 254, 164, 'Tullahoma', 10000, 1),
(13986, 254, 170, 'Onalaska', 10000, 1),
(13987, 254, 157, 'Pickerington', 10000, 1),
(13988, 144, 2625, 'Hesperange', 10000, 1),
(13989, 254, 126, 'Aromas', 10000, 1),
(13991, 37, 1239, 'Burgas', 10000, 1),
(13992, 254, 165, 'Taylor', 10000, 1),
(13993, 254, 154, 'Cape Vincent', 10000, 1),
(13994, 254, 154, 'Milford', 10000, 1),
(13995, 254, 170, 'Mukwonago', 10000, 1),
(13996, 254, 152, 'Howell', 10000, 1),
(13997, 254, 144, 'Mulliken', 10000, 1),
(13998, 254, 156, 'White Earth', 10000, 1),
(13999, 254, 156, 'Kenmare', 10000, 1),
(14000, 10, 1051, 'Lomas De Zamora', 10000, 1),
(14001, 43, 37, 'Milton', 10000, 1),
(14002, 254, 160, 'Tobyhanna', 10000, 1),
(14004, 254, 135, 'Bradley', 10000, 1),
(14006, 254, 126, 'Lincoln', 10000, 1),
(14007, 254, 154, 'Endwell', 10000, 1),
(14008, 254, 152, 'Pitman', 10000, 1),
(14009, 254, 135, 'Pinckneyville', 10000, 1),
(14010, 254, 144, 'Stockbridge', 10000, 1),
(14011, 254, 142, 'Cockeysville', 10000, 1),
(14012, 254, 156, 'New Town', 10000, 1),
(14013, 254, 160, 'Hanover', 10000, 1),
(14014, 254, 157, 'Raymond', 10000, 1),
(14015, 254, 131, 'Lake Mary', 10000, 1),
(14016, 254, 136, 'Economy', 10000, 1),
(14017, 254, 134, 'Athol', 10000, 1),
(14018, 254, 165, 'Haltom City', 10000, 1),
(14019, 254, 136, 'Pendleton', 10000, 1),
(14020, 254, 156, 'Golden Valley', 10000, 1),
(14021, 254, 168, 'Clinton', 10000, 1),
(14023, 253, 5392, 'Luton', 10000, 1),
(14024, 226, 3932, 'Los Llanos De Aridane', 10000, 1),
(14026, 114, 2163, 'Manado', 10000, 1),
(14027, 114, 2163, 'Tondano', 10000, 1),
(14028, 82, 1804, 'Beziers', 10000, 1),
(14029, 114, 2163, 'Tomohon', 10000, 1),
(14030, 254, 154, 'Taberg', 10000, 1),
(14031, 95, 1970, 'Chania', 10000, 1),
(14032, 254, 156, 'Hazen', 10000, 1),
(14033, 254, 156, 'Maddock', 10000, 1),
(14034, 254, 165, 'Webster', 10000, 1),
(14035, 254, 172, 'Waitsfield', 10000, 1),
(14036, 254, 168, 'Granite Falls', 10000, 1),
(14037, 254, 144, 'Fenton', 10000, 1),
(14039, 254, 135, 'Monmouth', 10000, 1),
(14040, 254, 152, 'Wayne', 10000, 1),
(14041, 114, 2157, 'Kuta', 10000, 1),
(14042, 114, 2157, 'Praya', 10000, 1),
(14043, 254, 143, 'Douglas', 10000, 1),
(14044, 114, 2157, 'Selong', 10000, 1),
(14045, 254, 159, 'Yachats', 10000, 1),
(14047, 254, 152, 'Keyport', 10000, 1),
(14048, 91, 1913, 'Lindau', 10000, 1),
(14049, 233, 3990, 'Laholm', 10000, 1),
(14050, 254, 156, 'Richardton', 10000, 1),
(14051, 253, 5391, 'Stanmore', 10000, 1),
(14052, 253, 5392, 'Saint Albans', 10000, 1),
(14054, 254, 145, 'Lamberton', 10000, 1),
(14055, 43, 43, 'Chilliwack', 10000, 1),
(14056, 253, 5392, 'Church Stretton', 10000, 1),
(14057, 254, 145, 'Clinton', 10000, 1),
(14058, 254, 154, 'Depew', 10000, 1),
(14060, 254, 160, 'Gladwyne', 10000, 1),
(14061, 254, 124, 'Cave Creek', 10000, 1),
(14062, 175, 2975, 'Emmen', 10000, 1),
(14063, 119, 2250, 'Bari', 10000, 1),
(14064, 254, 132, 'Lilburn', 10000, 1),
(14065, 253, 5391, 'Carrickfergus', 10000, 1),
(14067, 253, 5390, 'Dunfermline', 10000, 1),
(14068, 254, 159, 'Jefferson', 10000, 1),
(14070, 221, 3786, 'Gorizia', 10000, 1),
(14071, 43, 43, 'Langley', 10000, 1),
(14072, 254, 160, 'Bellwood', 10000, 1),
(14073, 254, 159, 'Otis', 10000, 1),
(14074, 24, 1135, 'Ciney', 10000, 1),
(14075, 185, 2990, 'Gjerdrum', 10000, 1),
(14076, 254, 138, 'Haysville', 10000, 1),
(14078, 254, 165, 'Eustace', 10000, 1),
(14079, 43, 38, 'Flin Flon', 10000, 1),
(14080, 119, 2253, 'Siena', 10000, 1),
(14082, 43, 37, 'Tecumseh', 10000, 1),
(14083, 254, 138, 'Baldwin City', 10000, 1),
(14084, 254, 147, 'Elsberry', 10000, 1),
(14085, 254, 144, 'Iron River', 10000, 1),
(14086, 114, 49, 'Nusa Dua', 10000, 1),
(14087, 114, 49, 'Kuta', 10000, 1),
(14088, 114, 49, 'Ubud', 10000, 1),
(14089, 254, 160, 'Newville', 10000, 1),
(14090, 254, 144, 'Albion', 10000, 1),
(14091, 254, 156, 'Leeds', 10000, 1),
(14092, 122, 2357, 'Takatsuki', 10000, 1),
(14093, 254, 144, 'Caledonia', 10000, 1),
(14094, 254, 155, 'Speed', 10000, 1),
(14095, 33, 29, 'Teres', 10000, 1),
(14096, 254, 136, 'Alexandria', 10000, 1),
(14097, 43, 815, 'Carcross', 10000, 1),
(14098, 254, 136, 'New Richmond', 10000, 1),
(14099, 254, 170, 'Chaseburg', 10000, 1),
(14100, 254, 140, 'Covington', 10000, 1),
(14103, 254, 135, 'Williamsville', 10000, 1),
(14104, 254, 152, 'Oradell', 10000, 1),
(14107, 254, 164, 'Clinton', 10000, 1),
(14108, 175, 2980, 'Roosendaal', 10000, 1),
(14110, 175, 2977, 'Barneveld', 10000, 1),
(14111, 65, 1492, 'Nyborg', 10000, 1),
(14112, 254, 142, 'Hollywood', 10000, 1),
(14113, 65, 1501, 'Thisted', 10000, 1),
(14114, 254, 152, 'Short Hills', 10000, 1),
(14115, 175, 2985, 'Zoetermeer', 10000, 1),
(14116, 226, 3932, 'Las Palmas', 10000, 1),
(14117, 91, 1916, 'Gross-Zimmern', 10000, 1),
(14118, 254, 154, 'Fairport', 10000, 1),
(14119, 82, 1794, 'Biot', 10000, 1),
(14120, 254, 141, 'Skowhegan', 10000, 1),
(14121, 254, 122, 'Daleville', 10000, 1),
(14123, 254, 164, 'Eidson', 10000, 1),
(14124, 254, 135, 'Coal City', 10000, 1),
(14125, 65, 1494, 'Klokkerholm', 10000, 1),
(14126, 254, 160, 'Plymouth', 10000, 1),
(14127, 61, 5030, 'Koprivnica', 10000, 1),
(14128, 233, 4007, 'Arboga', 10000, 1),
(14129, 43, 37, 'Picton', 10000, 1),
(14131, 254, 165, 'Schertz', 10000, 1),
(14132, 254, 132, 'Loganville', 10000, 1),
(14133, 254, 142, 'Taneytown', 10000, 1),
(14134, 226, 3938, 'San Sebastian', 10000, 1),
(14135, 226, 3931, 'Zaragoza', 10000, 1),
(14136, 254, 136, 'Reelsville', 10000, 1),
(14137, 254, 160, 'New Alexandria', 10000, 1),
(14138, 254, 122, 'Fyffe', 10000, 1),
(14139, 199, 736, 'Rincon', 10000, 1),
(14140, 254, 149, 'La Vista', 10000, 1),
(14141, 254, 154, 'Middle Island', 10000, 1),
(14142, 254, 143, 'Dracut', 10000, 1),
(14144, 254, 126, 'Westwood', 10000, 1),
(14146, 254, 154, 'Beacon', 10000, 1),
(14147, 254, 127, 'Whitewater', 10000, 1),
(14148, 254, 153, 'Loving', 10000, 1),
(14150, 254, 152, 'Bound Brook', 10000, 1),
(14151, 254, 135, 'Lena', 10000, 1),
(14153, 254, 142, 'Hampstead', 10000, 1),
(14154, 254, 158, 'Perkins', 10000, 1),
(14155, 254, 126, 'Los Osos', 10000, 1),
(14156, 43, 43, 'Hope', 10000, 1),
(14158, 175, 2975, 'Hoogeveen', 10000, 1),
(14159, 254, 126, 'Olancha', 10000, 1),
(14160, 253, 5392, 'Horsham', 10000, 1),
(14162, 254, 126, 'San Martin', 10000, 1),
(14163, 254, 135, 'Lockport', 10000, 1),
(14166, 254, 133, 'Kula', 10000, 1),
(14167, 254, 149, 'Champion', 10000, 1),
(14168, 254, 154, 'Orchard Park', 10000, 1),
(14169, 254, 162, 'Ridge Spring', 10000, 1),
(14170, 254, 154, 'Rockaway Park', 10000, 1),
(14171, 254, 167, 'Norton', 10000, 1),
(14173, 254, 170, 'Casco', 10000, 1),
(14174, 254, 144, 'Norway', 10000, 1),
(14175, 254, 168, 'Coupeville', 10000, 1),
(14176, 254, 131, 'Safety Harbor', 10000, 1),
(14177, 254, 153, 'Questa', 10000, 1),
(14179, 254, 142, 'California', 10000, 1),
(14180, 126, 2389, 'Karak', 10000, 1),
(14181, 234, 4049, 'Schlieren', 10000, 1),
(14182, 254, 157, 'Mingo Junction', 10000, 1),
(14183, 119, 2243, 'Udine', 10000, 1),
(14184, 175, 2985, 'Maassluis', 10000, 1),
(14186, 254, 135, 'Antioch', 10000, 1),
(14187, 43, 43, 'Parksville', 10000, 1),
(14188, 14, 3, 'Bundaberg', 10000, 1),
(14189, 254, 126, 'Sanger', 10000, 1),
(14190, 226, 3930, 'Almeria', 10000, 1),
(14191, 234, 4025, 'Bremgarten', 10000, 1),
(14192, 119, 2253, 'Arezzo', 10000, 1),
(14193, 119, 2252, 'Castelvetrano', 10000, 1),
(14194, 118, 2233, 'Natanya', 10000, 1),
(14195, 81, 5023, 'Jamsankoski', 10000, 1),
(14196, 81, 5022, 'Joensuu', 10000, 1),
(14197, 91, 1916, 'Idstein', 10000, 1),
(14198, 253, 5392, 'Stockton-on-Tees', 10000, 1),
(14199, 233, 4010, '', 10000, 1),
(14200, 24, 1136, 'Aalst', 10000, 1),
(14201, 91, 1918, 'Willich', 10000, 1),
(14202, 81, 4879, 'Riihimaki', 10000, 1),
(14203, 254, 154, 'Red Hook', 10000, 1),
(14205, 254, 161, 'Foster', 10000, 1),
(14206, 233, 3990, 'V', 10000, 1),
(14207, 254, 157, 'Seville', 10000, 1),
(14208, 253, 5392, 'Poole', 10000, 1),
(14209, 234, 4032, 'Glarus', 10000, 1),
(14210, 119, 2247, 'Ancona', 10000, 1),
(14211, 254, 155, 'Thomasville', 10000, 1),
(14212, 254, 157, 'Franklin', 10000, 1),
(14213, 43, 35, 'Jonquiere', 10000, 1),
(14215, 226, 3935, 'Girona', 10000, 1),
(14216, 254, 160, 'Hermitage', 10000, 1),
(14217, 253, 5390, 'Dunblane', 10000, 1),
(14218, 226, 3934, 'Segovia', 10000, 1),
(14219, 254, 131, 'Mount Dora', 10000, 1),
(14220, 233, 3987, 'Sandviken', 10000, 1),
(14222, 254, 161, 'Middletown', 10000, 1),
(14223, 220, 2592, 'Poprad', 10000, 1),
(14224, 233, 4000, 'Motala', 10000, 1),
(14225, 254, 136, 'Dillsboro', 10000, 1),
(14226, 254, 122, 'Satsuma', 10000, 1),
(14227, 254, 140, 'Transylvania', 10000, 1),
(14229, 254, 126, 'Inyokern', 10000, 1),
(14230, 254, 152, 'Absecon', 10000, 1),
(14231, 91, 1912, 'Baden-Baden', 10000, 1),
(14232, 43, 35, 'Chateauguay', 10000, 1),
(14233, 254, 164, 'Del Rio', 10000, 1),
(14234, 254, 143, 'Westwood', 10000, 1),
(14235, 254, 122, 'Garden City', 10000, 1),
(14236, 254, 135, 'Brighton', 10000, 1),
(14237, 254, 144, 'Farmington', 10000, 1),
(14239, 233, 4002, 'Nyk', 10000, 1),
(14241, 254, 145, 'Sartell', 10000, 1),
(14242, 254, 160, 'Malvern', 10000, 1),
(14243, 254, 145, 'Hayward', 10000, 1),
(14244, 223, 3872, 'Galkacyo', 10000, 1),
(14246, 254, 157, 'Mineral Ridge', 10000, 1),
(14247, 91, 1912, 'Weinstadt', 10000, 1),
(14249, 91, 1918, 'Geilenkirchen', 10000, 1),
(14250, 254, 157, 'Antwerp', 10000, 1),
(14251, 81, 1772, 'Mariehamn', 10000, 1),
(14252, 254, 144, 'Maple Rapids', 10000, 1),
(14253, 24, 1137, 'Middelkerke', 10000, 1),
(14254, 48, 1367, 'Victoria', 10000, 1),
(14255, 254, 151, 'Merrimack', 10000, 1),
(14256, 254, 144, 'Vestaburg', 10000, 1),
(14257, 271, 5062, 'Herceg-Novi', 10000, 1),
(14258, 254, 145, 'Halstad', 10000, 1),
(14259, 254, 168, 'Kelso', 10000, 1),
(14260, 253, 5392, 'Bristol', 10000, 1),
(14261, 254, 145, 'Belgrade', 10000, 1),
(14262, 254, 168, 'Sammamish', 10000, 1),
(14263, 254, 139, 'Virgie', 10000, 1),
(14264, 254, 126, 'Tarzana', 10000, 1),
(14267, 254, 157, 'Monroe', 10000, 1),
(14268, 119, 2244, 'Civitavecchia', 10000, 1),
(14269, 119, 2244, 'Fregene', 10000, 1),
(14270, 175, 2980, 'Zundert', 10000, 1),
(14271, 119, 2244, 'santa Marinella', 10000, 1),
(14272, 224, 3689, 'George', 10000, 1),
(14273, 254, 144, 'Wayne', 10000, 1),
(14274, 254, 144, 'Buchanan', 10000, 1),
(14275, 254, 141, 'Bucksport', 10000, 1),
(14278, 43, 35, 'Gasp', 10000, 1),
(14279, 254, 135, 'Utica', 10000, 1),
(14280, 254, 132, 'Hiram', 10000, 1),
(14281, 233, 3993, 'Kalmar', 10000, 1),
(14282, 254, 147, 'Hurdland', 10000, 1),
(14283, 254, 133, 'Kapaa', 10000, 1),
(14284, 120, 2386, 'Kingston', 10000, 1),
(14286, 233, 3994, 'Falun', 10000, 1),
(14287, 175, 2985, 'Naaldwijk', 10000, 1),
(14288, 254, 145, 'Ottertail', 10000, 1),
(14289, 233, 3994, 'Avesta', 10000, 1),
(14290, 24, 1136, 'Gentbrugge', 10000, 1),
(14291, 254, 142, 'Crofton', 10000, 1),
(14292, 254, 167, 'Bristol', 10000, 1),
(14293, 234, 4047, 'Yverdon', 10000, 1),
(14294, 254, 170, 'Oak Creek', 10000, 1),
(14295, 254, 147, 'Lone Jack', 10000, 1),
(14296, 254, 159, 'Neotsu', 10000, 1),
(14297, 254, 147, 'Chula', 10000, 1),
(14298, 254, 147, 'Seymour', 10000, 1),
(14299, 254, 160, 'Bethel', 10000, 1),
(14301, 254, 126, 'Santa Fe Springs', 10000, 1),
(14303, 254, 147, 'Bunceton', 10000, 1),
(14304, 254, 160, 'Guys Mills', 10000, 1),
(14305, 254, 131, 'Hobe Sound', 10000, 1),
(14306, 198, 3313, 'Matosinhos', 10000, 1),
(14307, 254, 152, 'Hillsborough', 10000, 1),
(14312, 236, 4273, 'Yung Kang City', 10000, 1),
(14313, 254, 165, 'Castroville', 10000, 1),
(14314, 117, 1611, 'Castlebar', 10000, 1),
(14315, 43, 43, 'Oliver', 10000, 1),
(14316, 254, 143, 'Wrentham', 10000, 1),
(14317, 254, 155, 'Balsam Grove', 10000, 1),
(14318, 43, 42, 'Rothesay', 10000, 1),
(14319, 254, 137, 'Fayette', 10000, 1),
(14321, 254, 136, 'Crown Point', 10000, 1),
(14322, 254, 163, 'Summit', 10000, 1),
(14323, 254, 159, 'Cove', 10000, 1),
(14324, 14, 3, 'Torquay', 10000, 1),
(14325, 175, 2981, 'Hilversum', 10000, 1),
(14327, 254, 165, 'Sutherland Springs', 10000, 1),
(14328, 65, 1489, 'Skibby', 10000, 1),
(14329, 91, 1918, 'Guetersloh', 10000, 1),
(14330, 185, 2996, 'Volda', 10000, 1),
(14331, 143, 2572, 'Elektrenai', 10000, 1),
(14332, 175, 2981, 'Alkmaar', 10000, 1),
(14333, 65, 1491, 'Hiller', 10000, 1),
(14334, 254, 160, 'Vandergrift', 10000, 1),
(14335, 198, 3309, 'Guarda', 10000, 1),
(14336, 175, 2985, 'Pijnacker', 10000, 1),
(14337, 119, 2241, 'Avellino', 10000, 1),
(14338, 233, 4009, 'Barseb', 10000, 1),
(14340, 254, 155, 'Clemmons', 10000, 1),
(14342, 254, 152, 'Matawan', 10000, 1),
(14343, 226, 3908, 'Alcal', 10000, 1),
(14344, 254, 142, 'Dameron', 10000, 1),
(14345, 43, 42, 'Florenceville', 10000, 1),
(14346, 254, 131, 'Fountain', 10000, 1),
(14347, 254, 160, 'Chadds Ford', 10000, 1),
(14348, 175, 2985, 'Dordrecht', 10000, 1),
(14351, 43, 37, 'Ethel', 10000, 1),
(14352, 233, 3992, 'Huskvarna', 10000, 1),
(14354, 254, 135, 'Capron', 10000, 1),
(14355, 226, 3936, 'Badajoz', 10000, 1),
(14356, 254, 157, 'Aurora', 10000, 1),
(14357, 254, 131, 'Havana', 10000, 1),
(14358, 254, 159, 'Sweet Home', 10000, 1),
(14359, 233, 3994, 'T', 10000, 1),
(14360, 254, 170, 'East Troy', 10000, 1),
(14361, 15, 1080, 'Leoben', 10000, 1),
(14363, 254, 159, 'Vernonia', 10000, 1),
(14365, 254, 159, 'Enterprise', 10000, 1),
(14366, 254, 132, 'Yatesville', 10000, 1),
(14367, 233, 4004, 'Kristinehamn', 10000, 1),
(14368, 254, 154, 'Valhalla', 10000, 1),
(14369, 119, 2250, 'Conversano', 10000, 1),
(14370, 254, 151, 'Ashland', 10000, 1),
(14371, 254, 159, 'Warrenton', 10000, 1),
(14372, 233, 4008, 'Kista', 10000, 1),
(14373, 254, 132, 'Grovetown', 10000, 1),
(14374, 254, 160, 'Boyertown', 10000, 1),
(14375, 254, 129, 'Middletown', 10000, 1),
(14376, 199, 736, 'Canovanas', 10000, 1),
(14377, 254, 152, 'Westwood', 10000, 1),
(14378, 119, 2250, 'Foggia', 10000, 1),
(14380, 254, 135, 'Grayslake', 10000, 1),
(14381, 233, 4010, 'Kinna', 10000, 1),
(14382, 254, 145, 'Perham', 10000, 1),
(14383, 24, 1129, 'Bornem', 10000, 1),
(14385, 254, 152, 'Lyndhurst', 10000, 1),
(14386, 185, 2997, 'Svolv', 10000, 1),
(14387, 254, 144, 'Clare', 10000, 1),
(14388, 95, 1941, 'Kavala', 10000, 1),
(14389, 198, 3302, 'Braga', 10000, 1),
(14390, 254, 154, 'High Falls', 10000, 1),
(14391, 10, 1057, 'Buenos Aires', 10000, 1),
(14392, 254, 154, 'Ellenville', 10000, 1),
(14393, 119, 2239, 'Genzano Di Lucania', 10000, 1),
(14394, 254, 156, 'Mayville', 10000, 1),
(14396, 254, 135, 'Glen Carbon', 10000, 1),
(14397, 152, 689, 'Attard', 10000, 1),
(14398, 254, 144, 'Franklin', 10000, 1),
(14399, 254, 145, 'Mabel', 10000, 1),
(14400, 254, 165, 'Cleveland', 10000, 1),
(14401, 43, 43, 'Enderby', 10000, 1),
(14402, 254, 168, 'Stanwood', 10000, 1),
(14403, 254, 154, 'Keeseville', 10000, 1),
(14404, 254, 167, 'Madison Heights', 10000, 1),
(14405, 254, 152, 'Sewell', 10000, 1),
(14406, 254, 164, 'Hermitage', 10000, 1),
(14407, 254, 129, 'Lewes', 10000, 1),
(14408, 254, 135, 'Batavia', 10000, 1),
(14409, 43, 46, 'Alert', 10000, 1),
(14410, 254, 157, 'Buchanan', 10000, 1),
(14411, 254, 152, 'Clinton', 10000, 1),
(14412, 254, 136, 'Milford', 10000, 1),
(14413, 254, 140, 'Gray', 10000, 1),
(14414, 254, 154, 'Rocky Point', 10000, 1),
(14416, 33, 24, 'Ara', 10000, 1),
(14417, 198, 3311, 'Amadora', 10000, 1),
(14418, 254, 144, 'Lowell', 10000, 1),
(14419, 254, 155, 'Kernersville', 10000, 1),
(14420, 254, 143, 'Townsend', 10000, 1),
(14421, 43, 41, 'Corner Brook', 10000, 1),
(14422, 254, 165, 'Eddy', 10000, 1),
(14423, 14, 1, 'Bairnsdale', 10000, 1),
(14424, 254, 137, 'Gowrie', 10000, 1),
(14425, 254, 160, 'Fredericktown', 10000, 1),
(14426, 254, 144, 'Owendale', 10000, 1),
(14427, 254, 168, 'Marysville', 10000, 1),
(14429, 254, 147, 'Park Hills', 10000, 1),
(14431, 43, 38, 'Killarney', 10000, 1),
(14432, 254, 131, 'Homosassa', 10000, 1),
(14433, 226, 3918, 'Santander', 10000, 1),
(14434, 254, 126, 'Wilton', 10000, 1),
(14435, 65, 1493, 'Lyngby', 10000, 1),
(14436, 81, 5022, 'Mikkeli', 10000, 1),
(14438, 119, 2257, 'Rovigo', 10000, 1),
(14439, 14, 3, 'Gympie', 10000, 1),
(14440, 226, 3933, 'Cuenca', 10000, 1),
(14441, 226, 3933, 'Huete', 10000, 1),
(14443, 253, 5392, 'Carlisle', 10000, 1),
(14444, 65, 1501, 'Slagelse', 10000, 1),
(14445, 175, 2979, 'Maastricht', 10000, 1),
(14446, 253, 5392, 'Banbury', 10000, 1),
(14447, 198, 3302, 'Guimar', 10000, 1),
(14448, 251, 4450, 'Sevastopol', 10000, 1),
(14449, 254, 154, 'Miller Place', 10000, 1),
(14450, 33, 27, 'Itamogi', 10000, 1),
(14451, 33, 27, 'S', 10000, 1),
(14452, 24, 5306, 'Vilvoorde', 10000, 1),
(14453, 254, 160, 'Ambler', 10000, 1),
(14455, 254, 164, 'Oliver Springs', 10000, 1),
(14456, 254, 154, 'Clifton Park', 10000, 1),
(14458, 254, 160, 'Landisville', 10000, 1),
(14459, 254, 141, 'Scarborough', 10000, 1),
(14460, 254, 160, 'Cogan Station', 10000, 1),
(14462, 254, 160, 'Exton', 10000, 1),
(14463, 185, 2997, 'Sortland', 10000, 1),
(14464, 149, 2897, 'Muar', 10000, 1),
(14465, 254, 126, 'Littlerock', 10000, 1),
(14467, 254, 172, 'Passumpsic', 10000, 1),
(14470, 254, 135, 'Cary', 10000, 1),
(14471, 254, 154, 'Northport', 10000, 1),
(14473, 254, 135, 'Fox River Grove', 10000, 1),
(14474, 254, 167, 'Great Falls', 10000, 1),
(14475, 119, 2246, 'Lainate', 10000, 1),
(14476, 254, 134, 'Buhl', 10000, 1),
(14477, 81, 5023, 'Pori', 10000, 1),
(14478, 119, 2241, 'Salerno', 10000, 1),
(14479, 254, 136, 'Oakland City', 10000, 1),
(14480, 254, 160, 'Montgomery', 10000, 1),
(14482, 134, 2441, 'Bayan', 10000, 1),
(14484, 254, 126, 'Buellton', 10000, 1),
(14485, 33, 29, 'Niter', 10000, 1),
(14486, 175, 2984, 'Hengstdijk', 10000, 1),
(14487, 114, 2166, 'Binjei', 10000, 1),
(14489, 254, 141, 'Newport', 10000, 1),
(14493, 254, 149, 'Wilsonville', 10000, 1),
(14494, 254, 136, 'Albion', 10000, 1),
(14495, 254, 126, 'Tujunga', 10000, 1),
(14496, 254, 126, 'Aptos', 10000, 1),
(14497, 178, 4706, 'Manukau City', 10000, 1),
(14498, 254, 134, 'Cottonwood', 10000, 1),
(14499, 254, 160, 'Athens', 10000, 1),
(14500, 43, 37, 'Tobermory', 10000, 1),
(14501, 254, 152, 'Great Meadows', 10000, 1),
(14502, 254, 131, 'Merritt Island', 10000, 1),
(14503, 65, 1491, 'Birker', 10000, 1),
(14505, 153, 690, 'Douglas', 10000, 1),
(14506, 253, 5392, 'Guilford', 10000, 1),
(14507, 254, 134, 'Post Falls', 10000, 1),
(14508, 254, 131, 'Port Richey', 10000, 1),
(14509, 81, 5023, 'Nokia', 10000, 1),
(14510, 253, 5392, 'Epsom', 10000, 1),
(14511, 254, 128, 'Mystic', 10000, 1),
(14512, 254, 157, 'Wadsworth', 10000, 1),
(14513, 254, 167, 'Chatham', 10000, 1),
(14514, 91, 1912, 'Balingen', 10000, 1),
(14516, 49, 1344, 'Huang Shi City', 10000, 1),
(14518, 175, 2985, 'Poortugaal', 10000, 1),
(14519, 48, 1372, 'Corral', 10000, 1),
(14520, 65, 1491, 'Helsing', 10000, 1),
(14521, 254, 135, 'Harvard', 10000, 1),
(14522, 254, 143, 'Marblehead', 10000, 1),
(14523, 254, 168, 'Shelton', 10000, 1),
(14524, 253, 5392, 'Southend-on-Sea', 10000, 1),
(14525, 254, 154, 'Roslyn', 10000, 1),
(14526, 221, 3754, 'Kranj', 10000, 1),
(14527, 254, 136, 'Cambridge City', 10000, 1),
(14528, 198, 3311, 'Carcavelos', 10000, 1),
(14529, 33, 15, 'Cascavel', 10000, 1),
(14530, 253, 5392, 'Bicester', 10000, 1),
(14531, 254, 155, 'Richlands', 10000, 1),
(14532, 175, 2981, 'Berkhout', 10000, 1),
(14534, 254, 148, 'Stevensville', 10000, 1),
(14535, 178, 4744, 'Alexandra', 10000, 1),
(14536, 254, 143, 'Gardner', 10000, 1),
(14537, 254, 168, 'Woodland', 10000, 1),
(14538, 254, 154, 'Seaford', 10000, 1),
(14539, 43, 37, 'Paris', 10000, 1),
(14543, 119, 2249, 'Alpignano', 10000, 1),
(14545, 133, 2432, 'P''yongt''aek', 10000, 1),
(14546, 254, 144, 'Lakeview', 10000, 1),
(14547, 91, 1926, 'Jena', 10000, 1),
(14548, 91, 1922, 'Cottbus', 10000, 1),
(14549, 91, 1922, 'Herzberg', 10000, 1),
(14550, 82, 1803, 'Orsay', 10000, 1),
(14551, 254, 157, 'Wellston', 10000, 1),
(14552, 119, 2242, 'Cattolica', 10000, 1),
(14553, 254, 122, 'Coker', 10000, 1),
(14554, 175, 2975, 'Roden', 10000, 1),
(14555, 91, 1912, 'Ellwangen', 10000, 1),
(14556, 254, 128, 'Ansonia', 10000, 1),
(14557, 33, 27, 'Uberl', 10000, 1),
(14559, 82, 1801, 'Morez', 10000, 1),
(14560, 43, 35, 'Trois-Rivi', 10000, 1),
(14561, 254, 127, 'Larkspur', 10000, 1),
(14563, 254, 165, 'Needville', 10000, 1),
(14564, 233, 4009, 'Ystad', 10000, 1),
(14565, 61, 5035, 'Pakrac', 10000, 1),
(14566, 63, 1485, 'Larnaca', 10000, 1),
(14567, 254, 126, 'Newman', 10000, 1),
(14568, 254, 168, 'College Place', 10000, 1),
(14569, 150, 2881, 'Male', 10000, 1),
(14570, 254, 147, 'Cassville', 10000, 1),
(14571, 254, 150, 'Overton', 10000, 1),
(14572, 254, 146, 'Sardis', 10000, 1),
(14573, 254, 134, 'Spencer', 10000, 1),
(14574, 91, 1912, 'Bad Wildbad', 10000, 1),
(14575, 43, 35, 'Montmagny', 10000, 1),
(14577, 65, 1500, 'Horsens', 10000, 1),
(14578, 254, 160, 'Thorndale', 10000, 1),
(14579, 254, 165, 'Bluffton', 10000, 1),
(14580, 254, 165, 'Tow', 10000, 1),
(14581, 254, 126, 'Orange Cove', 10000, 1),
(14582, 254, 126, 'Ferndale', 10000, 1),
(14583, 24, 1129, 'Geel', 10000, 1),
(14585, 254, 160, 'Kunkletown', 10000, 1),
(14586, 24, 5305, 'Waterloo', 10000, 1),
(14587, 234, 4029, 'Biel', 10000, 1),
(14588, 254, 131, 'Beverly Hills', 10000, 1),
(14589, 254, 158, 'Langston', 10000, 1),
(14590, 254, 168, 'Graham', 10000, 1),
(14591, 91, 1912, 'Urbach', 10000, 1),
(14592, 253, 5392, 'Blackburn', 10000, 1),
(14593, 254, 126, 'Colfax', 10000, 1),
(14595, 226, 3911, 'Los Arcos', 10000, 1),
(14597, 175, 2981, 'Heemskerk', 10000, 1),
(14598, 175, 2981, 'Weesp', 10000, 1),
(14599, 254, 135, 'Lemont', 10000, 1),
(14600, 254, 154, 'Monroe', 10000, 1),
(14601, 119, 2246, 'Arese', 10000, 1),
(14603, 175, 2981, 'Medemblik', 10000, 1),
(14604, 253, 5392, 'Farnham', 10000, 1),
(14605, 254, 145, 'Byron', 10000, 1),
(14606, 254, 170, 'Mishicot', 10000, 1),
(14608, 254, 140, 'Eunice', 10000, 1),
(14609, 254, 141, 'Oakland', 10000, 1),
(14611, 254, 131, 'Land O Lakes', 10000, 1),
(14612, 43, 35, 'Val-Belair', 10000, 1),
(14614, 254, 157, 'Belpre', 10000, 1),
(14616, 43, 35, 'Verdun', 10000, 1),
(14618, 198, 3310, 'Leiria', 10000, 1),
(14621, 254, 144, 'Richmond', 10000, 1),
(14622, 254, 136, 'Loogootee', 10000, 1),
(14623, 254, 139, 'Rockholds', 10000, 1),
(14624, 254, 160, 'Elizabeth', 10000, 1),
(14625, 91, 1918, 'Kempen', 10000, 1),
(14629, 119, 2246, 'Varese', 10000, 1),
(14631, 91, 1919, 'Hachenburg', 10000, 1),
(14632, 254, 157, 'Senecaville', 10000, 1),
(14633, 33, 24, 'Taubat', 10000, 1),
(14635, 220, 2592, 'Presov', 10000, 1),
(14636, 14, 5, 'Murray Bridge', 10000, 1),
(14637, 254, 170, 'Muskego', 10000, 1),
(14638, 233, 3992, 'Varnamo', 10000, 1),
(14639, 175, 2977, 'Doetinchem', 10000, 1),
(14640, 254, 155, 'Hillsborough', 10000, 1),
(14641, 43, 37, 'Port Elgin', 10000, 1),
(14642, 254, 126, 'Greenville', 10000, 1),
(14643, 91, 1918, 'Witten', 10000, 1),
(14644, 254, 147, 'Cuba', 10000, 1),
(14645, 226, 3938, 'Bergara', 10000, 1),
(14646, 254, 142, 'Sykesville', 10000, 1),
(14648, 254, 142, 'Mount Airy', 10000, 1),
(14649, 254, 132, 'Mount Airy', 10000, 1),
(14650, 254, 131, 'Saint Marks', 10000, 1),
(14652, 254, 126, 'Middletown', 10000, 1),
(14653, 254, 158, 'Watts', 10000, 1),
(14654, 253, 5392, 'Burnley', 10000, 1),
(14655, 254, 158, 'Ballard', 10000, 1),
(14656, 254, 147, 'Hume', 10000, 1),
(14658, 254, 140, 'Kaplan', 10000, 1),
(14660, 43, 42, 'Sackville', 10000, 1),
(14661, 254, 138, 'Greeley', 10000, 1),
(14662, 254, 139, 'Corbin', 10000, 1),
(14663, 254, 163, 'Valley Springs', 10000, 1),
(14664, 254, 126, 'Cottonwood', 10000, 1),
(14665, 254, 150, 'Lake Tahoe', 10000, 1),
(14667, 254, 131, 'Valrico', 10000, 1),
(14668, 254, 126, 'Janesville', 10000, 1),
(14669, 254, 144, 'Clinton Township', 10000, 1),
(14670, 254, 136, 'Sheridan', 10000, 1),
(14671, 254, 170, 'Boscobel', 10000, 1),
(14672, 254, 145, 'Big Lake', 10000, 1),
(14673, 253, 5392, 'Rochester', 10000, 1),
(14674, 252, 5002, 'Bur Dubai', 10000, 1),
(14675, 254, 140, 'Galliano', 10000, 1),
(14676, 197, 3279, 'Krakow', 10000, 1),
(14677, 254, 158, 'Mustang', 10000, 1),
(14678, 10, 1055, 'Rio Tercero', 10000, 1),
(14679, 254, 140, 'Hessmer', 10000, 1),
(14680, 254, 154, 'East Setauket', 10000, 1),
(14681, 254, 140, 'Moreauville', 10000, 1),
(14682, 119, 2238, 'L''Aquila', 10000, 1),
(14683, 254, 126, 'La Palma', 10000, 1),
(14684, 254, 165, 'Chandler', 10000, 1),
(14685, 254, 147, 'Bonne Terre', 10000, 1),
(14686, 253, 5392, 'Blackpool', 10000, 1),
(14687, 254, 154, 'Fleischmanns', 10000, 1),
(14688, 195, 3450, 'Cainta', 10000, 1),
(14689, 254, 147, 'Mount Vernon', 10000, 1),
(14690, 254, 154, 'Tillson', 10000, 1),
(14691, 149, 2904, 'Kangar', 10000, 1),
(14692, 254, 170, 'New Lisbon', 10000, 1),
(14693, 254, 135, 'Cottage Hills', 10000, 1),
(14694, 254, 171, 'Powell', 10000, 1),
(14695, 254, 165, 'Joshua', 10000, 1),
(14696, 254, 124, 'Buckeye', 10000, 1),
(14697, 65, 1497, 'Koege', 10000, 1),
(14698, 254, 146, 'Magnolia', 10000, 1),
(14699, 8, 4763, 'McMurdo Station', 10000, 1),
(14700, 254, 132, 'Lenox', 10000, 1),
(14701, 234, 4025, 'Zofingen', 10000, 1),
(14702, 65, 1501, 'Viborg', 10000, 1),
(14703, 91, 1918, 'Leverkusen', 10000, 1),
(14704, 15, 1076, 'Feldkirchen', 10000, 1),
(14705, 24, 1131, 'Tournai', 10000, 1),
(14706, 253, 5392, 'Redditch', 10000, 1),
(14707, 119, 2257, 'Bassano Del Grappa', 10000, 1),
(14708, 253, 5392, 'Solihull', 10000, 1),
(14709, 254, 127, 'Manzanola', 10000, 1),
(14710, 119, 2246, 'Carugate', 10000, 1),
(14711, 95, 1970, 'Souda', 10000, 1),
(14712, 43, 37, 'Kincardine', 10000, 1),
(14713, 253, 5392, 'Harrow', 10000, 1),
(14714, 175, 2977, 'Zutphen', 10000, 1),
(14715, 175, 2983, 'Nieuwegein', 10000, 1),
(14718, 233, 4010, 'M', 10000, 1),
(14719, 254, 140, 'Denham Springs', 10000, 1),
(14721, 49, 1361, 'Shantou', 10000, 1),
(14722, 253, 5392, 'Manchester', 10000, 1),
(14723, 254, 160, 'Southampton', 10000, 1),
(14724, 254, 139, 'Regina', 10000, 1),
(14725, 15, 1082, 'Dornbirn', 10000, 1),
(14726, 254, 152, 'Ocean Grove', 10000, 1),
(14727, 91, 1916, 'Fulda', 10000, 1),
(14728, 254, 155, 'Apex', 10000, 1),
(14729, 254, 158, 'Bristow', 10000, 1),
(14730, 254, 144, 'Jenison', 10000, 1),
(14732, 254, 147, 'Louisiana', 10000, 1),
(14733, 254, 168, 'Lakebay', 10000, 1),
(14734, 254, 149, 'Milford', 10000, 1),
(14736, 254, 160, 'Chalfont', 10000, 1),
(14737, 43, 36, 'Drayton Valley', 10000, 1),
(14738, 254, 153, 'Peralta', 10000, 1),
(14739, 233, 4002, 'Julita', 10000, 1),
(14740, 254, 167, 'James City County', 10000, 1),
(14741, 254, 137, 'Everly', 10000, 1),
(14743, 254, 149, 'Shickley', 10000, 1),
(14744, 82, 1803, 'Nanterre', 10000, 1),
(14745, 239, 4109, 'Banchang', 10000, 1),
(14747, 254, 126, 'Albany', 10000, 1),
(14748, 254, 168, 'Washougal', 10000, 1),
(14749, 91, 1917, 'G', 10000, 1),
(14750, 119, 2250, 'Lecce', 10000, 1),
(14751, 65, 1493, 'Virum', 10000, 1),
(14752, 25, 1166, 'San Ignacio', 10000, 1),
(14753, 33, 24, 'Araraquara', 10000, 1),
(14754, 254, 147, 'Willard', 10000, 1),
(14755, 254, 126, 'Somerset', 10000, 1),
(14756, 254, 157, 'Bellevue', 10000, 1),
(14757, 254, 131, 'Waldo', 10000, 1),
(14758, 43, 43, 'Shawnigan Lake', 10000, 1),
(14759, 195, 3455, 'San Juan', 10000, 1),
(14760, 254, 136, 'Hartsville', 10000, 1),
(14761, 254, 170, 'Pewaukee', 10000, 1),
(14762, 82, 1793, 'Terrasson', 10000, 1),
(14763, 254, 135, 'Altona', 10000, 1),
(14765, 254, 167, 'Keysville', 10000, 1),
(14766, 91, 1912, 'Neuenb', 10000, 1),
(14767, 33, 32, 'S', 10000, 1),
(14768, 33, 24, 'S', 10000, 1),
(14769, 24, 1136, 'Lochristi', 10000, 1),
(14771, 33, 24, 'Ribeir', 10000, 1),
(14772, 254, 162, 'Monetta', 10000, 1),
(14773, 43, 37, 'Bancroft', 10000, 1),
(14774, 43, 37, 'Fergus', 10000, 1),
(14775, 234, 4025, 'Aarau', 10000, 1),
(14776, 33, 24, 'Ribeir', 10000, 1),
(14778, 119, 2246, 'Brembate', 10000, 1),
(14779, 254, 126, 'Fall River Mills', 10000, 1),
(14780, 254, 158, 'Bokoshe', 10000, 1),
(14781, 178, 5010, 'Nelson', 10000, 1),
(14783, 224, 3688, 'Rustenburg', 10000, 1),
(14784, 175, 2981, 'Hoorn', 10000, 1),
(14785, 175, 2982, 'Bathmen', 10000, 1),
(14787, 43, 41, 'Stephenville', 10000, 1),
(14788, 175, 2985, 'Moordrecht', 10000, 1),
(14789, 195, 3530, 'Zamboanga City', 10000, 1),
(14790, 14, 2, 'Burnie', 10000, 1),
(14791, 114, 2149, 'Malang', 10000, 1),
(14792, 254, 135, 'Canton', 10000, 1),
(14793, 254, 131, 'Satellite Beach', 10000, 1),
(14794, 14, 1, 'Ascot Vale', 10000, 1),
(14796, 254, 159, 'Rogue River', 10000, 1),
(14797, 254, 159, 'Gold Beach', 10000, 1),
(14798, 254, 144, 'Burt', 10000, 1),
(14799, 113, 2174, 'New Delhi', 10000, 1),
(14801, 253, 5392, 'Hyde', 10000, 1),
(14802, 234, 4047, 'Nyon', 10000, 1),
(14803, 175, 2984, 'Westkapelle', 10000, 1),
(14804, 175, 2981, 'Purmerend', 10000, 1),
(14805, 254, 154, 'Pine Bush', 10000, 1),
(14806, 254, 142, 'Indian Head', 10000, 1),
(14807, 254, 144, 'Manton', 10000, 1),
(14808, 68, 1534, 'Sos', 10000, 1),
(14809, 91, 1912, 'Bad Urach', 10000, 1),
(14810, 43, 37, 'Beaverton', 10000, 1),
(14811, 254, 154, 'South Cairo', 10000, 1),
(14812, 254, 171, 'Story', 10000, 1),
(14813, 254, 135, 'Thomson', 10000, 1),
(14814, 254, 157, 'Brewster', 10000, 1),
(14816, 254, 135, 'Taylor Ridge', 10000, 1),
(14817, 254, 136, 'Bristow', 10000, 1),
(14818, 254, 153, 'Springer', 10000, 1),
(14819, 254, 160, 'Glenolden', 10000, 1),
(14821, 254, 132, 'Martin', 10000, 1),
(14823, 254, 145, 'Hopkins', 10000, 1),
(14824, 118, 2234, 'Nazareth Illit', 10000, 1),
(14825, 119, 2243, 'Lignano', 10000, 1),
(14826, 91, 1918, 'Borgholzhausen', 10000, 1),
(14827, 256, 4496, 'Punta del Este', 10000, 1),
(14828, 43, 37, 'Aylmer', 10000, 1),
(14829, 122, 2354, 'Urasa', 10000, 1),
(14830, 254, 165, 'Dublin', 10000, 1),
(14831, 254, 142, 'Grantsville', 10000, 1),
(14832, 65, 1498, 'Vojens', 10000, 1),
(14834, 254, 134, 'Saint Anthony', 10000, 1),
(14835, 43, 43, 'Port Alberni', 10000, 1),
(14836, 254, 136, 'New Paris', 10000, 1),
(14837, 254, 145, 'La Crescent', 10000, 1),
(14839, 254, 157, 'West Jefferson', 10000, 1),
(14840, 254, 164, 'Smyrna', 10000, 1),
(14842, 254, 151, 'Somersworth', 10000, 1),
(14843, 114, 2147, 'Depok', 10000, 1),
(14844, 195, 3505, 'Mandaluyong City', 10000, 1),
(14845, 233, 3992, 'Gislaved', 10000, 1),
(14848, 82, 1807, 'Saint-Gaudens', 10000, 1),
(14849, 109, 646, 'Tsuen Wan', 10000, 1),
(14850, 254, 154, 'Latham', 10000, 1),
(14851, 91, 1912, 'Gengenbach', 10000, 1),
(14853, 43, 41, 'Happy Valley-Goose Bay', 10000, 1),
(14854, 91, 1917, 'Lueneburg', 10000, 1),
(14855, 113, 2175, 'Gandhinagar', 10000, 1),
(14856, 254, 154, 'Huntington Station', 10000, 1),
(14857, 254, 132, 'Dry Branch', 10000, 1),
(14858, 254, 135, 'Washington', 10000, 1),
(14859, 254, 166, 'Draper', 10000, 1),
(14860, 15, 1078, 'Bad Hall', 10000, 1),
(14861, 254, 160, 'Portage', 10000, 1),
(14862, 254, 135, 'Red Bud', 10000, 1),
(14863, 254, 135, 'Cambridge', 10000, 1),
(14865, 254, 126, 'Biggs', 10000, 1),
(14866, 254, 143, 'Mansfield', 10000, 1),
(14867, 254, 138, 'Altamont', 10000, 1),
(14869, 43, 37, 'Chesley', 10000, 1),
(14871, 91, 1913, 'Burghausen', 10000, 1),
(14872, 175, 2981, 'Huizen', 10000, 1),
(14873, 254, 154, 'Port Jefferson Station', 10000, 1),
(14874, 159, 197, 'Tecom', 10000, 1),
(14875, 254, 170, 'Plymouth', 10000, 1),
(14876, 254, 148, 'Florence', 10000, 1),
(14877, 254, 126, 'El Dorado Hills', 10000, 1),
(14880, 254, 126, 'Joshua Tree', 10000, 1),
(14881, 254, 160, 'North Apollo', 10000, 1),
(14883, 254, 135, 'Midlothian', 10000, 1),
(14884, 254, 166, 'Hill AFB', 10000, 1),
(14885, 254, 159, 'Beavercreek', 10000, 1),
(14886, 24, 1136, 'Maldegem', 10000, 1),
(14887, 81, 1779, 'Ylivieska', 10000, 1),
(14889, 254, 160, 'Green Lane', 10000, 1),
(14890, 17, 1157, 'Fresh Creek', 10000, 1),
(14891, 254, 161, 'Ashaway', 10000, 1),
(14892, 254, 140, 'Scott', 10000, 1),
(14895, 254, 168, 'Sultan', 10000, 1),
(14896, 213, 3636, 'Jeddah', 10000, 1),
(14897, 254, 148, 'Choteau', 10000, 1),
(14898, 254, 126, 'Sun Valley', 10000, 1),
(14899, 91, 1916, 'Lampertheim', 10000, 1),
(14900, 254, 126, 'Shingle Springs', 10000, 1),
(14901, 254, 137, 'Otho', 10000, 1),
(14903, 254, 126, 'Homewood', 10000, 1),
(14904, 254, 160, 'Bernville', 10000, 1);
INSERT INTO `[[dbprefix]]geo_cities` VALUES
(14905, 199, 736, 'Carolina', 10000, 1),
(14906, 254, 154, 'Middleburgh', 10000, 1),
(14909, 224, 3689, 'Kuils River', 10000, 1),
(14910, 254, 142, 'Abingdon', 10000, 1),
(14912, 254, 154, 'Slate Hill', 10000, 1),
(14914, 81, 5022, 'Iisalmi', 10000, 1),
(14915, 254, 152, 'Allendale', 10000, 1),
(14916, 233, 3991, 'Br', 10000, 1),
(14917, 253, 5392, 'Hatfield', 10000, 1),
(14919, 254, 166, 'Midway', 10000, 1),
(14920, 254, 144, 'Mount Morris', 10000, 1),
(14921, 254, 163, 'Canistota', 10000, 1),
(14922, 175, 2979, 'Weert', 10000, 1),
(14923, 24, 1129, 'Arendonk', 10000, 1),
(14928, 254, 167, 'Cristal City', 10000, 1),
(14929, 254, 126, 'Cotati', 10000, 1),
(14930, 254, 168, 'North Bend', 10000, 1),
(14931, 254, 126, 'Anderson', 10000, 1),
(14932, 254, 159, 'Myrtle Creek', 10000, 1),
(14933, 95, 1932, 'Serres', 10000, 1),
(14934, 233, 4010, 'Svanesund', 10000, 1),
(14935, 175, 2980, 'Aarle-Rixtel', 10000, 1),
(14936, 233, 4010, 'Kung', 10000, 1),
(14937, 233, 3998, 'Boden', 10000, 1),
(14938, 109, 646, 'Hong Kong', 10000, 1),
(14939, 254, 135, 'Somonauk', 10000, 1),
(14940, 254, 162, 'Central', 10000, 1),
(14941, 233, 4010, 'Stenungsund', 10000, 1),
(14943, 254, 144, 'Carsonville', 10000, 1),
(14944, 254, 144, 'Lawrence', 10000, 1),
(14945, 254, 157, 'Homeworth', 10000, 1),
(14946, 18, 1085, 'Ar Rifa', 10000, 1),
(14947, 48, 1364, 'Llay-Llay', 10000, 1),
(14948, 175, 2977, 'Harderwijk', 10000, 1),
(14949, 159, 2889, 'Metepec', 10000, 1),
(14950, 254, 154, 'Ancramdale', 10000, 1),
(14951, 65, 1500, 'Vonge', 10000, 1),
(14952, 254, 154, 'Stanfordville', 10000, 1),
(14954, 118, 2235, 'Hadera', 10000, 1),
(14956, 152, 689, 'Sliema', 10000, 1),
(14957, 43, 35, 'Entrelacs', 10000, 1),
(14958, 254, 166, 'Toquerville', 10000, 1),
(14959, 91, 1917, 'Wagenhoff', 10000, 1),
(14960, 53, 1427, 'Santaf', 10000, 1),
(14961, 254, 164, 'Newbern', 10000, 1),
(14962, 43, 37, 'Englehart', 10000, 1),
(14963, 185, 3002, 'N', 10000, 1),
(14966, 254, 157, 'West Salem', 10000, 1),
(14967, 254, 168, 'Arlington', 10000, 1),
(14968, 254, 158, 'skiatook', 10000, 1),
(14969, 254, 170, 'Prescott', 10000, 1),
(14970, 254, 160, 'Stewartstown', 10000, 1),
(14971, 254, 123, 'Klawock', 10000, 1),
(14972, 254, 153, 'Edgewood', 10000, 1),
(14974, 226, 3935, 'Badalona', 10000, 1),
(14976, 254, 145, 'West Concord', 10000, 1),
(14977, 254, 145, 'Kasson', 10000, 1),
(14978, 254, 165, 'Newark', 10000, 1),
(14980, 254, 159, 'Saint Helens', 10000, 1),
(14982, 254, 135, 'Rockton', 10000, 1),
(14983, 254, 165, 'Rhome', 10000, 1),
(14984, 14, 3, 'Caboolture', 10000, 1),
(14985, 119, 2249, 'Acqui Terme', 10000, 1),
(14986, 91, 1913, 'Utting', 10000, 1),
(14987, 113, 2170, 'Tezpur', 10000, 1),
(14988, 254, 143, 'Shrewsbury', 10000, 1),
(14989, 254, 152, 'Pittstown', 10000, 1),
(14990, 254, 126, 'Garberville', 10000, 1),
(14991, 254, 142, 'Leitersburg', 10000, 1),
(14992, 43, 43, 'New Westminster', 10000, 1),
(14993, 91, 1912, 'Altdorf', 10000, 1),
(14994, 254, 149, 'Wauneta', 10000, 1),
(14998, 254, 159, 'Allegany', 10000, 1),
(14999, 253, 5392, 'Hertford', 10000, 1),
(15002, 119, 2249, 'Biella', 10000, 1),
(15003, 15, 1075, 'Neud', 10000, 1),
(15004, 234, 4042, 'Haerkingen', 10000, 1),
(15005, 82, 1814, 'Blotzheim', 10000, 1),
(15006, 24, 5305, 'Nivelles', 10000, 1),
(15007, 74, 611, 'Taiping', 10000, 1),
(15008, 254, 152, 'Basking Ridge', 10000, 1),
(15009, 254, 160, 'Irwin', 10000, 1),
(15010, 254, 140, 'Mandeville', 10000, 1),
(15011, 253, 5392, 'Louth', 10000, 1),
(15012, 254, 126, 'Capitola', 10000, 1),
(15014, 254, 145, 'Glenville', 10000, 1),
(15015, 254, 131, 'Clermont', 10000, 1),
(15016, 233, 3986, 'Karlshamn', 10000, 1),
(15017, 254, 145, 'Medford', 10000, 1),
(15018, 61, 5036, 'Krk', 10000, 1),
(15019, 254, 152, 'Eatontown', 10000, 1),
(15020, 254, 160, 'Amity', 10000, 1),
(15022, 119, 2244, 'Latina', 10000, 1),
(15023, 43, 35, 'Macamic', 10000, 1),
(15024, 43, 35, 'La Sarre', 10000, 1),
(15025, 43, 35, 'Rouyn-Noranda', 10000, 1),
(15026, 254, 144, 'Brooklyn', 10000, 1),
(15029, 43, 35, 'Amqui', 10000, 1),
(15030, 254, 126, 'Diamond Springs', 10000, 1),
(15031, 119, 2246, 'Lissone', 10000, 1),
(15032, 65, 1489, 'Odder', 10000, 1),
(15033, 197, 3284, 'Gda', 10000, 1),
(15034, 254, 131, 'Grayton Beach', 10000, 1),
(15035, 253, 5392, 'Loughborough', 10000, 1),
(15036, 43, 37, 'Iroquois Falls', 10000, 1),
(15037, 254, 136, 'Ellettsville', 10000, 1),
(15038, 254, 136, 'Cromwell', 10000, 1),
(15039, 254, 154, 'Bloomingburg', 10000, 1),
(15040, 254, 133, 'Naalehu', 10000, 1),
(15041, 254, 154, 'Pleasantville', 10000, 1),
(15042, 254, 154, 'Houghton', 10000, 1),
(15045, 254, 145, 'Gilbert', 10000, 1),
(15046, 175, 2984, 'Aagtekerke', 10000, 1),
(15048, 24, 1136, 'Oudenaarde', 10000, 1),
(15049, 254, 138, 'Gardner', 10000, 1),
(15050, 254, 160, 'Broad Top', 10000, 1),
(15051, 254, 152, 'Edgewater', 10000, 1),
(15052, 254, 131, 'Cape Canaveral', 10000, 1),
(15054, 254, 157, 'Lodi', 10000, 1),
(15055, 226, 3910, 'San Pedro del Pinatar', 10000, 1),
(15056, 254, 144, 'Hazel Park', 10000, 1),
(15057, 254, 168, 'Ione', 10000, 1),
(15058, 224, 3684, 'Randburg', 10000, 1),
(15059, 254, 155, 'Hot Springs', 10000, 1),
(15060, 254, 144, 'Bangor', 10000, 1),
(15061, 61, 5027, 'Orebic', 10000, 1),
(15062, 254, 126, 'Comptche', 10000, 1),
(15063, 175, 2989, 'Emmeloord', 10000, 1),
(15065, 254, 152, 'New Providence', 10000, 1),
(15067, 195, 3505, 'Para', 10000, 1),
(15069, 26, 1198, 'Cotonou', 10000, 1),
(15071, 254, 160, 'Catasauqua', 10000, 1),
(15072, 254, 131, 'Plantation Acres', 10000, 1),
(15073, 43, 43, 'Squamish', 10000, 1),
(15074, 254, 168, 'Malaga', 10000, 1),
(15075, 254, 160, 'Manheim', 10000, 1),
(15076, 254, 128, 'Coventry', 10000, 1),
(15077, 254, 141, 'Yarmouth', 10000, 1),
(15078, 254, 128, 'Glastonbury', 10000, 1),
(15079, 254, 140, 'Vivian', 10000, 1),
(15080, 253, 5392, 'Norwich', 10000, 1),
(15081, 254, 154, 'Horseheads', 10000, 1),
(15082, 253, 5392, 'Bedford', 10000, 1),
(15083, 254, 168, 'Grand Coulee', 10000, 1),
(15084, 254, 165, 'Keller', 10000, 1),
(15085, 254, 122, 'Aliceville', 10000, 1),
(15086, 254, 126, 'Newhall', 10000, 1),
(15087, 254, 160, 'Mechanicsburg', 10000, 1),
(15088, 119, 2242, 'Guastalla', 10000, 1),
(15089, 195, 3434, 'San Fernando', 10000, 1),
(15091, 14, 4, 'Dural', 10000, 1),
(15093, 43, 35, 'Sainte-Foy', 10000, 1),
(15094, 254, 166, 'Morgan', 10000, 1),
(15095, 254, 144, 'Grand Blanc', 10000, 1),
(15096, 254, 168, 'Davenport', 10000, 1),
(15097, 254, 168, 'Sprague', 10000, 1),
(15099, 175, 2981, 'Laren', 10000, 1),
(15100, 178, 4706, 'Waitakere', 10000, 1),
(15101, 175, 2977, 'Neede', 10000, 1),
(15102, 254, 138, 'Cottonwood Falls', 10000, 1),
(15103, 254, 154, 'Hurleyville', 10000, 1),
(15105, 254, 144, 'Rogers City', 10000, 1),
(15106, 254, 122, 'Oxford', 10000, 1),
(15107, 254, 131, 'Zolfo Springs', 10000, 1),
(15108, 254, 165, 'Pilot Point', 10000, 1),
(15109, 254, 165, 'Brazoria', 10000, 1),
(15113, 254, 131, 'Bowling Green', 10000, 1),
(15114, 254, 132, 'Roopville', 10000, 1),
(15115, 254, 154, 'Rensselaer', 10000, 1),
(15116, 254, 155, 'Wake Forest', 10000, 1),
(15117, 254, 165, 'Yantis', 10000, 1),
(15118, 254, 122, 'Catherine', 10000, 1),
(15120, 226, 3939, 'Benicasim', 10000, 1),
(15121, 226, 3939, 'Vistabella del Maestrazgo', 10000, 1),
(15123, 226, 3939, 'Castell', 10000, 1),
(15124, 226, 3939, 'Oropesa', 10000, 1),
(15125, 226, 3939, 'Alcora', 10000, 1),
(15127, 254, 122, 'Furman', 10000, 1),
(15128, 254, 162, 'Edgemoor', 10000, 1),
(15129, 254, 152, 'Totowa', 10000, 1),
(15130, 118, 2236, 'Bat Yam', 10000, 1),
(15131, 202, 3380, 'Iasi', 10000, 1),
(15133, 254, 159, 'Vale', 10000, 1),
(15134, 254, 170, 'De Soto', 10000, 1),
(15136, 119, 2246, 'Treviglio', 10000, 1),
(15137, 254, 122, 'Florala', 10000, 1),
(15138, 254, 165, 'Kilgore', 10000, 1),
(15139, 254, 160, 'Mars', 10000, 1),
(15140, 254, 159, 'Butte Falls', 10000, 1),
(15141, 254, 126, 'Cassel', 10000, 1),
(15143, 43, 43, 'Cumberland', 10000, 1),
(15144, 254, 139, 'Berea', 10000, 1),
(15145, 254, 144, 'Dexter', 10000, 1),
(15146, 254, 142, 'Joppa', 10000, 1),
(15147, 254, 122, 'Centre', 10000, 1),
(15148, 14, 3, 'Southport', 10000, 1),
(15149, 82, 1813, 'Saint-Etienne', 10000, 1),
(15151, 254, 147, 'King City', 10000, 1),
(15152, 254, 126, 'Panorama City', 10000, 1),
(15153, 195, 3414, 'Naga City', 10000, 1),
(15154, 221, 3713, 'Celje', 10000, 1),
(15155, 254, 127, 'New Castle', 10000, 1),
(15156, 254, 153, 'Jemez Springs', 10000, 1),
(15157, 254, 135, 'Morton', 10000, 1),
(15158, 178, 4706, 'North Shore', 10000, 1),
(15160, 233, 4002, 'Flen', 10000, 1),
(15161, 254, 137, 'Holstein', 10000, 1),
(15162, 254, 136, 'Grovertown', 10000, 1),
(15163, 242, 4144, 'Nukualofa', 10000, 1),
(15164, 254, 160, 'Glenside', 10000, 1),
(15165, 254, 126, 'Calistoga', 10000, 1),
(15166, 254, 145, 'Jeffers', 10000, 1),
(15168, 254, 135, 'Frankfort', 10000, 1),
(15169, 254, 155, 'Lattimore', 10000, 1),
(15170, 14, 4, 'Nelson Bay', 10000, 1),
(15172, 82, 1808, 'Hondschoote', 10000, 1),
(15175, 254, 155, 'Rutherfordton', 10000, 1),
(15176, 149, 2907, 'Cyberjaya', 10000, 1),
(15178, 254, 122, 'Trussville', 10000, 1),
(15179, 254, 170, 'Kohler', 10000, 1),
(15180, 254, 129, 'New Castle', 10000, 1),
(15181, 253, 5392, 'Millom', 10000, 1),
(15183, 254, 137, 'Solon', 10000, 1),
(15185, 119, 2247, 'Ascoli Piceno', 10000, 1),
(15186, 254, 168, 'Eatonville', 10000, 1),
(15187, 233, 3998, 'Kalix', 10000, 1),
(15188, 8, 4761, 'Reading', 10000, 1),
(15189, 224, 3684, 'Alberton', 10000, 1),
(15190, 254, 167, 'Richlands', 10000, 1),
(15191, 254, 126, 'Forestville', 10000, 1),
(15192, 254, 133, 'Ewa Beach', 10000, 1),
(15193, 234, 4029, 'Arch', 10000, 1),
(15194, 254, 161, 'Warren', 10000, 1),
(15195, 43, 37, 'Bowmanville', 10000, 1),
(15196, 254, 165, 'Belton', 10000, 1),
(15197, 119, 2250, 'Taranto', 10000, 1),
(15199, 254, 160, 'Darby', 10000, 1),
(15200, 199, 736, 'Rio Grande', 10000, 1),
(15204, 254, 131, 'Lutz', 10000, 1),
(15205, 254, 158, 'Seminole', 10000, 1),
(15206, 122, 2329, 'Nagareyama', 10000, 1),
(15207, 10, 1055, 'Villa Mar', 10000, 1),
(15208, 254, 144, 'Fair Haven', 10000, 1),
(15209, 254, 172, 'Bennington', 10000, 1),
(15210, 119, 2243, 'Pordenone', 10000, 1),
(15211, 254, 165, 'Bridgeport', 10000, 1),
(15212, 254, 155, 'Beaufort', 10000, 1),
(15213, 119, 2238, 'Chieti', 10000, 1),
(15214, 254, 160, 'Brookhaven', 10000, 1),
(15215, 43, 38, 'Plumas', 10000, 1),
(15216, 254, 151, 'Gilmanton', 10000, 1),
(15219, 43, 37, 'Hearst', 10000, 1),
(15220, 254, 154, 'Locust Valley', 10000, 1),
(15221, 118, 2232, 'Dimona', 10000, 1),
(15223, 254, 145, 'Wabasso', 10000, 1),
(15224, 254, 157, 'West Chester', 10000, 1),
(15225, 233, 4002, 'Trosa', 10000, 1),
(15227, 254, 144, 'Spring Lake', 10000, 1),
(15228, 175, 2982, 'Deventer', 10000, 1),
(15229, 254, 144, 'Nunica', 10000, 1),
(15230, 99, 636, 'Mangilao', 10000, 1),
(15231, 254, 148, 'Troy', 10000, 1),
(15232, 254, 136, 'Butlerville', 10000, 1),
(15233, 254, 152, 'Browns Mills', 10000, 1),
(15234, 43, 38, 'Selkirk', 10000, 1),
(15235, 254, 159, 'Philomath', 10000, 1),
(15236, 254, 168, 'Long Beach', 10000, 1),
(15237, 43, 37, 'Sioux Lookout', 10000, 1),
(15238, 43, 39, 'Antigonish', 10000, 1),
(15239, 254, 160, 'Delmont', 10000, 1),
(15240, 254, 122, 'Sulligent', 10000, 1),
(15241, 254, 131, 'Niceville', 10000, 1),
(15243, 43, 35, 'Saint Jean sur Richelieu', 10000, 1),
(15244, 254, 144, 'Brighton', 10000, 1),
(15245, 178, 3126, 'Gore', 10000, 1),
(15246, 234, 4047, 'Payerne', 10000, 1),
(15248, 254, 136, 'Morocco', 10000, 1),
(15249, 254, 148, 'Townsend', 10000, 1),
(15251, 43, 35, 'Saint-J', 10000, 1),
(15252, 33, 24, 'Bragan', 10000, 1),
(15253, 254, 157, 'West Liberty', 10000, 1),
(15254, 254, 122, 'Linden', 10000, 1),
(15256, 254, 147, 'Cottleville', 10000, 1),
(15257, 254, 124, 'Surprise', 10000, 1),
(15258, 233, 4009, 'Malm', 10000, 1),
(15259, 254, 164, 'Orlinda', 10000, 1),
(15260, 233, 3987, 'Hudiksvall', 10000, 1),
(15261, 254, 144, 'Hudsonville', 10000, 1),
(15262, 149, 2897, 'Kluang', 10000, 1),
(15263, 117, 1600, 'Letterkenny', 10000, 1),
(15265, 254, 145, 'Paynesville', 10000, 1),
(15267, 254, 127, 'Minturn', 10000, 1),
(15268, 33, 16, 'Sao Miguel dos Campos', 10000, 1),
(15269, 254, 154, 'Climax', 10000, 1),
(15270, 254, 167, 'Ferrum', 10000, 1),
(15272, 254, 151, 'Conway', 10000, 1),
(15273, 233, 4009, 'H', 10000, 1),
(15274, 43, 37, 'Chelmsford', 10000, 1),
(15275, 24, 1129, 'Herentals', 10000, 1),
(15276, 119, 2246, 'Voghera', 10000, 1),
(15277, 187, 3217, 'Quetta', 10000, 1),
(15278, 254, 126, 'Gualala', 10000, 1),
(15279, 187, 3219, 'sialkot', 10000, 1),
(15280, 43, 43, 'Merritt', 10000, 1),
(15282, 43, 43, 'Richmond', 10000, 1),
(15284, 254, 132, 'Pine Lake', 10000, 1),
(15285, 254, 165, 'Trenton', 10000, 1),
(15286, 149, 2898, 'Sungai Petani', 10000, 1),
(15287, 133, 2432, 'Kunp''o', 10000, 1),
(15288, 119, 2245, 'Albenga', 10000, 1),
(15289, 253, 5392, 'Runcorn', 10000, 1),
(15290, 81, 4879, 'Sipoo', 10000, 1),
(15291, 233, 4000, 'Valdemarsvik', 10000, 1),
(15292, 254, 165, 'Bulverde', 10000, 1),
(15293, 226, 3939, 'Burriana', 10000, 1),
(15294, 254, 165, 'Trinity', 10000, 1),
(15295, 226, 3938, 'Getxo', 10000, 1),
(15296, 254, 170, 'Mason', 10000, 1),
(15300, 254, 144, 'Frankenmuth', 10000, 1),
(15302, 253, 5392, 'Hereford', 10000, 1),
(15303, 212, 4168, 'Sao Tome', 10000, 1),
(15304, 254, 152, 'Keansburg', 10000, 1),
(15305, 197, 3285, 'Tychy', 10000, 1),
(15307, 254, 165, 'Sundown', 10000, 1),
(15308, 254, 152, 'West Creek', 10000, 1),
(15309, 254, 138, 'Valley Center', 10000, 1),
(15310, 254, 160, 'Weston', 10000, 1),
(15311, 254, 168, 'Woodinville', 10000, 1),
(15313, 224, 3680, 'Eshowe', 10000, 1),
(15314, 254, 167, 'Stephens City', 10000, 1),
(15315, 254, 126, 'Emeryville', 10000, 1),
(15317, 10, 1061, 'Santa Rosa', 10000, 1),
(15318, 91, 1919, 'Frankenthal', 10000, 1),
(15320, 254, 129, 'Milford', 10000, 1),
(15321, 254, 132, 'Willacoochee', 10000, 1),
(15323, 254, 143, 'Athol', 10000, 1),
(15324, 254, 135, 'Troy', 10000, 1),
(15326, 254, 139, 'Walton', 10000, 1),
(15327, 43, 37, 'Cobourg', 10000, 1),
(15328, 254, 125, 'Maumelle', 10000, 1),
(15329, 254, 138, 'Rose Hill', 10000, 1),
(15331, 254, 157, 'Plumwood', 10000, 1),
(15332, 14, 1, 'Deer Park', 10000, 1),
(15333, 198, 3311, 'Queluz', 10000, 1),
(15334, 254, 126, 'Loomis', 10000, 1),
(15335, 254, 126, 'Cardiff by the Sea', 10000, 1),
(15337, 254, 147, 'Excelsior Springs', 10000, 1),
(15338, 254, 151, 'North Conway', 10000, 1),
(15339, 254, 141, 'Grand Lake Stream', 10000, 1),
(15341, 43, 35, 'Becancour', 10000, 1),
(15342, 254, 122, 'Gurley', 10000, 1),
(15343, 254, 122, 'Montrose', 10000, 1),
(15344, 254, 147, 'Peculiar', 10000, 1),
(15346, 48, 1364, 'Vi', 10000, 1),
(15347, 43, 43, 'Salmon Arm', 10000, 1),
(15348, 152, 689, 'Cospicua', 10000, 1),
(15351, 91, 1912, 'Wertheim', 10000, 1),
(15353, 254, 145, 'Cosmos', 10000, 1),
(15354, 254, 135, 'Peru', 10000, 1),
(15355, 65, 1494, 'Saltum', 10000, 1),
(15356, 226, 3935, 'Sentmenat', 10000, 1),
(15357, 254, 136, 'Lowell', 10000, 1),
(15358, 10, 1054, 'Puerto Madryn', 10000, 1),
(15359, 43, 36, 'Ponoka', 10000, 1),
(15362, 254, 140, 'Youngsville', 10000, 1),
(15363, 43, 42, 'Riverview', 10000, 1),
(15364, 43, 41, 'Labrador City', 10000, 1),
(15365, 254, 144, 'Davison', 10000, 1),
(15366, 117, 1621, 'Wicklow', 10000, 1),
(15367, 254, 128, 'Stafford Springs', 10000, 1),
(15368, 233, 3994, 'Ludvika', 10000, 1),
(15369, 82, 1803, 'Coubert', 10000, 1),
(15370, 185, 2997, '', 10000, 1),
(15371, 185, 2997, 'Engav', 10000, 1),
(15372, 254, 141, 'Fairfield', 10000, 1),
(15373, 254, 145, 'Melrose', 10000, 1),
(15375, 254, 159, 'Boring', 10000, 1),
(15376, 119, 2251, 'La Maddalena', 10000, 1),
(15377, 253, 5392, 'Dorking', 10000, 1),
(15378, 254, 155, 'Pfafftown', 10000, 1),
(15379, 226, 3939, 'Alicante', 10000, 1),
(15380, 254, 144, 'Shelby', 10000, 1),
(15381, 254, 144, 'Linden', 10000, 1),
(15382, 122, 2337, 'Fukagawa', 10000, 1),
(15383, 119, 2254, 'Merano', 10000, 1),
(15384, 254, 165, 'Winnie', 10000, 1),
(15386, 185, 3001, 'Halden', 10000, 1),
(15387, 14, 6, 'Dongara', 10000, 1),
(15388, 254, 145, 'Round Lake', 10000, 1),
(15392, 254, 154, 'Lakewood', 10000, 1),
(15393, 254, 157, 'Arcanum', 10000, 1),
(15394, 254, 160, 'Archbald', 10000, 1),
(15395, 254, 141, 'Presque Isle', 10000, 1),
(15396, 43, 43, 'Crofton', 10000, 1),
(15397, 254, 140, 'Westwego', 10000, 1),
(15398, 254, 154, 'Jackson Heights', 10000, 1),
(15399, 43, 36, 'Standard', 10000, 1),
(15400, 48, 1367, 'Temuco', 10000, 1),
(15401, 48, 1375, 'Isla De Maipo', 10000, 1),
(15402, 43, 37, 'Edys Mills', 10000, 1),
(15403, 254, 160, 'Coopersburg', 10000, 1),
(15404, 159, 69, 'Allende', 10000, 1),
(15405, 24, 1137, 'Brugge', 10000, 1),
(15406, 254, 144, 'Corunna', 10000, 1),
(15407, 15, 1080, 'Kindberg', 10000, 1),
(15408, 254, 136, 'Cedar Lake', 10000, 1),
(15409, 254, 152, 'Cranbury', 10000, 1),
(15410, 253, 5392, 'Crewe', 10000, 1),
(15411, 254, 138, 'Louisburg', 10000, 1),
(15412, 233, 3987, 'Hofors', 10000, 1),
(15413, 149, 2908, 'Dungun', 10000, 1),
(15414, 226, 3931, 'Teruel', 10000, 1),
(15415, 254, 122, 'Lexington', 10000, 1),
(15416, 43, 43, 'Port Moody', 10000, 1),
(15417, 133, 2432, 'Osan', 10000, 1),
(15418, 254, 142, 'Deale', 10000, 1),
(15419, 14, 4, 'Ballina', 10000, 1),
(15420, 65, 1500, 'Jelling', 10000, 1),
(15422, 253, 5392, 'Oxshott', 10000, 1),
(15423, 119, 2243, 'Maniago', 10000, 1),
(15424, 82, 1812, 'Beauvezer', 10000, 1),
(15425, 253, 5389, 'Lampeter', 10000, 1),
(15426, 233, 3999, 'Fr', 10000, 1),
(15427, 254, 144, 'Gowen', 10000, 1),
(15428, 254, 142, 'Upper Marlboro', 10000, 1),
(15429, 14, 1, 'Wodonga', 10000, 1),
(15431, 254, 170, 'Big Bend', 10000, 1),
(15433, 254, 152, 'Kendall Park', 10000, 1),
(15434, 175, 2977, 'Culemborg', 10000, 1),
(15435, 254, 168, 'Cosmopolis', 10000, 1),
(15436, 254, 160, 'Sewickley', 10000, 1),
(15437, 65, 1501, 'Skive', 10000, 1),
(15440, 254, 154, 'Westfield', 10000, 1),
(15441, 185, 2997, 'Bronnoysund', 10000, 1),
(15442, 33, 15, 'S', 10000, 1),
(15444, 254, 158, 'Chattanooga', 10000, 1),
(15445, 224, 3686, 'Loxton', 10000, 1),
(15446, 254, 154, 'Cherry Valley', 10000, 1),
(15448, 254, 125, 'Judsonia', 10000, 1),
(15449, 254, 136, 'Fort Branch', 10000, 1),
(15451, 43, 35, 'Shawinigan', 10000, 1),
(15452, 118, 2232, 'Kiryat Gat', 10000, 1),
(15453, 254, 152, 'Highland Lakes', 10000, 1),
(15454, 33, 30, 'Crici', 10000, 1),
(15455, 254, 141, 'Monmouth', 10000, 1),
(15456, 146, 5208, 'Ohrid', 10000, 1),
(15457, 254, 167, 'Callaway', 10000, 1),
(15458, 82, 1804, 'Carcassonne', 10000, 1),
(15459, 254, 136, 'Peru', 10000, 1),
(15460, 10, 1051, 'Miramar', 10000, 1),
(15461, 117, 1619, 'Athlone', 10000, 1),
(15462, 254, 131, 'High Springs', 10000, 1),
(15463, 175, 2980, 'Terheijden', 10000, 1),
(15464, 254, 170, 'Rewey', 10000, 1),
(15467, 15, 1076, 'Klagenfurt', 10000, 1),
(15468, 254, 157, 'Covington', 10000, 1),
(15469, 93, 630, 'Gibraltar', 10000, 1),
(15470, 254, 165, 'Wylie', 10000, 1),
(15471, 119, 2257, 'Castelfranco Veneto', 10000, 1),
(15473, 254, 124, 'Marana', 10000, 1),
(15475, 43, 36, 'Coaldale', 10000, 1),
(15476, 254, 172, 'Essex Junction', 10000, 1),
(15478, 91, 1918, 'Wuppertal', 10000, 1),
(15480, 43, 37, 'Bradford', 10000, 1),
(15482, 43, 35, 'Lebel-sur-Quevillon', 10000, 1),
(15483, 10, 1051, 'San Isidro', 10000, 1),
(15484, 43, 37, 'Sauble Beach', 10000, 1),
(15485, 254, 166, 'Magna', 10000, 1),
(15487, 254, 135, 'Mason City', 10000, 1),
(15488, 254, 138, 'Bogue', 10000, 1),
(15489, 254, 136, 'Aurora', 10000, 1),
(15491, 254, 135, 'Montrose', 10000, 1),
(15492, 254, 157, 'Tallmadge', 10000, 1),
(15493, 254, 154, 'Dansville', 10000, 1),
(15494, 43, 36, 'Sherwood Park', 10000, 1),
(15495, 254, 128, 'Gales Ferry', 10000, 1),
(15496, 254, 165, 'Nederland', 10000, 1),
(15498, 119, 2248, 'Campobasso', 10000, 1),
(15501, 254, 162, 'Pelzer', 10000, 1),
(15502, 254, 152, 'Beachwood', 10000, 1),
(15503, 254, 167, 'Rocky Gap', 10000, 1),
(15504, 254, 134, 'American Falls', 10000, 1),
(15507, 254, 170, 'Juneau', 10000, 1),
(15508, 113, 2182, 'Thane', 10000, 1),
(15509, 81, 1779, 'N', 10000, 1),
(15510, 254, 123, 'North Pole', 10000, 1),
(15511, 64, 5131, 'Plzen', 10000, 1),
(15512, 254, 144, 'Berrien Springs', 10000, 1),
(15513, 81, 5023, 'Kannus', 10000, 1),
(15514, 253, 5392, 'Berkhamsted', 10000, 1),
(15515, 114, 2159, 'Batam', 10000, 1),
(15517, 119, 2249, 'Burolo', 10000, 1),
(15518, 253, 5391, 'Loughgall', 10000, 1),
(15519, 202, 3375, 'Galati', 10000, 1),
(15521, 254, 160, 'Wattsburg', 10000, 1),
(15522, 253, 5392, 'Ripon', 10000, 1),
(15523, 226, 3938, 'Basauri', 10000, 1),
(15524, 91, 1912, 'Rottenburg', 10000, 1),
(15525, 149, 2907, 'Dengkil', 10000, 1),
(15526, 254, 122, 'Alabaster', 10000, 1),
(15527, 254, 154, 'Tarrytown', 10000, 1),
(15529, 43, 37, 'Parry Sound', 10000, 1),
(15530, 254, 152, 'Northvale', 10000, 1),
(15531, 254, 124, 'Vail', 10000, 1),
(15534, 254, 145, 'Sauk Centre', 10000, 1),
(15535, 254, 160, 'Hyde', 10000, 1),
(15536, 254, 126, 'Dorris', 10000, 1),
(15537, 254, 157, 'Holgate', 10000, 1),
(15538, 254, 152, 'Moorestown', 10000, 1),
(15539, 65, 1494, 'Hobro', 10000, 1),
(15542, 82, 1794, 'Le Cendre', 10000, 1),
(15545, 224, 3684, 'Vereeniging', 10000, 1),
(15547, 254, 144, 'Newaygo', 10000, 1),
(15550, 254, 157, 'Killbuck', 10000, 1),
(15551, 253, 5389, 'Pontypridd', 10000, 1),
(15552, 65, 1494, 'Aalestrup', 10000, 1),
(15553, 253, 5392, 'Harlow', 10000, 1),
(15554, 254, 165, 'Fort Davis', 10000, 1),
(15555, 254, 166, 'Lehi', 10000, 1),
(15556, 254, 142, 'Friendsville', 10000, 1),
(15557, 15, 1077, 'M', 10000, 1),
(15558, 254, 154, 'Irvington', 10000, 1),
(15559, 254, 145, 'Waconia', 10000, 1),
(15560, 10, 1051, 'Ramos Mejia', 10000, 1),
(15561, 48, 1371, 'San Fernando', 10000, 1),
(15562, 254, 146, 'Southaven', 10000, 1),
(15563, 59, 1434, 'S', 10000, 1),
(15564, 43, 37, 'Georgetown', 10000, 1),
(15565, 133, 2426, 'Chongju', 10000, 1),
(15566, 254, 155, 'Buxton', 10000, 1),
(15567, 137, 2518, 'Ventspils', 10000, 1),
(15568, 137, 2511, 'Jurmala', 10000, 1),
(15569, 82, 1803, 'Sevres', 10000, 1),
(15570, 185, 3003, 'Sogndal', 10000, 1),
(15571, 226, 3935, 'Tarrasa', 10000, 1),
(15572, 149, 2911, 'Beaufort', 10000, 1),
(15574, 119, 2247, 'Pesaro', 10000, 1),
(15575, 254, 160, 'Morrisville', 10000, 1),
(15576, 14, 1, 'Portland', 10000, 1),
(15577, 149, 2906, 'Sri Aman', 10000, 1),
(15578, 43, 43, 'Aldergrove', 10000, 1),
(15579, 159, 206, 'Juan Aldama', 10000, 1),
(15581, 59, 1438, 'Tibas', 10000, 1),
(15582, 254, 126, 'Mission Hills', 10000, 1),
(15583, 152, 689, 'Paola', 10000, 1),
(15584, 254, 136, 'Milan', 10000, 1),
(15585, 254, 160, 'Donora', 10000, 1),
(15586, 254, 144, 'Algonac', 10000, 1),
(15587, 254, 165, 'Port Neches', 10000, 1),
(15589, 43, 37, 'Wasaga Beach', 10000, 1),
(15591, 254, 165, 'Blessing', 10000, 1),
(15592, 254, 126, 'Penn Valley', 10000, 1),
(15595, 254, 137, 'Camanche', 10000, 1),
(15596, 24, 1133, 'Kinrooi', 10000, 1),
(15597, 175, 2984, 'Renesse', 10000, 1),
(15598, 175, 2984, 'Zierikzee', 10000, 1),
(15599, 254, 165, 'El Campo', 10000, 1),
(15600, 81, 4879, 'Lohja', 10000, 1),
(15601, 254, 135, 'Lebanon', 10000, 1),
(15602, 91, 1918, 'Solingen', 10000, 1),
(15604, 91, 1913, 'Steinach', 10000, 1),
(15605, 91, 1926, 'Steinach', 10000, 1),
(15606, 254, 154, 'Elmhurst', 10000, 1),
(15607, 254, 162, 'Laurens', 10000, 1),
(15608, 91, 1913, 'Neuburg', 10000, 1),
(15609, 91, 1917, 'Meppen', 10000, 1),
(15610, 233, 4007, 'Sala', 10000, 1),
(15611, 254, 126, 'Valley Springs', 10000, 1),
(15612, 254, 156, 'Colfax', 10000, 1),
(15613, 234, 4046, 'Sion', 10000, 1),
(15614, 48, 1371, 'San Vicente De Tagua Tagua', 10000, 1),
(15615, 43, 37, 'Prescott', 10000, 1),
(15616, 15, 1077, 'Neulengbach', 10000, 1),
(15617, 254, 135, 'Bunker Hill', 10000, 1),
(15619, 254, 141, 'Windham', 10000, 1),
(15620, 254, 147, 'Reeds Spring', 10000, 1),
(15621, 254, 124, 'Mohave Valley', 10000, 1),
(15622, 254, 132, 'Mineral Bluff', 10000, 1),
(15623, 81, 5022, 'Juuka', 10000, 1),
(15625, 254, 138, 'Plainville', 10000, 1),
(15626, 254, 170, 'Watertown', 10000, 1),
(15628, 61, 5035, 'Nasice', 10000, 1),
(15629, 254, 135, 'Oswego', 10000, 1),
(15631, 254, 159, 'Rickreall', 10000, 1),
(15632, 254, 145, 'Randolph', 10000, 1),
(15633, 254, 166, 'East Carbon', 10000, 1),
(15634, 254, 122, 'Lillian', 10000, 1),
(15636, 254, 142, 'Fort Washington', 10000, 1),
(15637, 254, 147, 'Wheeling', 10000, 1),
(15638, 254, 155, 'Spencer', 10000, 1),
(15639, 254, 167, 'Crewe', 10000, 1),
(15641, 254, 135, 'Palestine', 10000, 1),
(15642, 175, 2981, 'Julianadorp', 10000, 1),
(15644, 254, 124, 'Queen Creek', 10000, 1),
(15645, 14, 4, 'Bondi', 10000, 1),
(15646, 254, 141, 'Bristol', 10000, 1),
(15647, 254, 159, 'Lebanon', 10000, 1),
(15648, 236, 4275, 'Taoyuan', 10000, 1),
(15649, 254, 131, 'Saint Cloud', 10000, 1),
(15650, 14, 2, 'Wynyard', 10000, 1),
(15651, 254, 170, 'Solon Springs', 10000, 1),
(15652, 254, 146, 'Madison', 10000, 1),
(15653, 43, 42, 'Richibucto', 10000, 1),
(15654, 113, 2188, 'Pondicherry', 10000, 1),
(15656, 203, 3601, 'Sredneural''sk', 10000, 1),
(15658, 254, 135, 'Prairie du Rocher', 10000, 1),
(15659, 254, 152, 'Rochelle Park', 10000, 1),
(15660, 254, 132, 'Saint Marys', 10000, 1),
(15661, 254, 122, 'Wetumpka', 10000, 1),
(15662, 254, 168, 'Mead', 10000, 1),
(15663, 43, 37, 'Dundalk', 10000, 1),
(15664, 164, 701, 'Monaco', 10000, 1),
(15665, 75, 1633, 'J', 10000, 1),
(15666, 254, 131, 'Orange City', 10000, 1),
(15667, 254, 151, 'Exeter', 10000, 1),
(15669, 95, 1951, 'Volos', 10000, 1),
(15670, 91, 1913, 'Neustadt', 10000, 1),
(15671, 95, 1951, 'Agria', 10000, 1),
(15674, 254, 152, 'Succasunna', 10000, 1),
(15675, 254, 144, 'Mayville', 10000, 1),
(15676, 254, 154, 'Sag Harbor', 10000, 1),
(15677, 254, 129, 'Bethany Beach', 10000, 1),
(15678, 254, 172, 'Chester', 10000, 1),
(15679, 226, 3932, 'Santa Cruz de Tenerife', 10000, 1),
(15680, 254, 167, 'Fort Belvoir', 10000, 1),
(15681, 33, 27, 'Vi', 10000, 1),
(15682, 233, 4009, 'Bj', 10000, 1),
(15683, 254, 165, 'Spring Branch', 10000, 1),
(15684, 81, 1777, 'Kemij', 10000, 1),
(15685, 49, 1340, 'Daqing', 10000, 1),
(15686, 254, 160, 'Bangor', 10000, 1),
(15687, 254, 146, 'Moss Point', 10000, 1),
(15689, 254, 155, 'Lansing', 10000, 1),
(15690, 254, 144, 'Alanson', 10000, 1),
(15692, 91, 1913, 'Bad Neustadt', 10000, 1),
(15693, 126, 2394, 'Irbid', 10000, 1),
(15696, 159, 69, 'San Nicolas de los Garza', 10000, 1),
(15697, 254, 166, 'American Fork', 10000, 1),
(15698, 233, 3987, 'Alfta', 10000, 1),
(15699, 33, 24, 'Piracicaba', 10000, 1),
(15700, 198, 3307, 'Quarteira', 10000, 1),
(15701, 33, 24, 'Itatiba', 10000, 1),
(15702, 91, 1918, 'Siegen', 10000, 1),
(15703, 254, 160, 'Havertown', 10000, 1),
(15705, 254, 170, 'Tomahawk', 10000, 1),
(15706, 91, 1918, 'Hilden', 10000, 1),
(15707, 253, 5392, 'Aldershot', 10000, 1),
(15708, 254, 152, 'Roselle Park', 10000, 1),
(15710, 254, 144, 'Kingsford', 10000, 1),
(15711, 43, 35, 'Joliette', 10000, 1),
(15712, 43, 35, 'Saint-Hubert', 10000, 1),
(15713, 254, 160, 'Youngwood', 10000, 1),
(15714, 91, 1917, 'Leiferde', 10000, 1),
(15715, 128, 2458, 'Semipalatinsk', 10000, 1),
(15717, 65, 1491, 'Humleb', 10000, 1),
(15719, 65, 1493, 'Herlev', 10000, 1),
(15721, 185, 2991, 'Arendal', 10000, 1),
(15722, 254, 142, 'Saint Leonard', 10000, 1),
(15723, 254, 137, 'Grinnell', 10000, 1),
(15724, 65, 1501, 'Davding', 10000, 1),
(15725, 254, 152, 'Wyckoff', 10000, 1),
(15726, 254, 142, 'Odenton', 10000, 1),
(15727, 10, 1071, 'Suardi', 10000, 1),
(15728, 254, 154, 'Highland Falls', 10000, 1),
(15729, 254, 144, 'Montrose', 10000, 1),
(15731, 14, 6, 'Rockingham', 10000, 1),
(15732, 117, 1599, 'Bantry', 10000, 1),
(15734, 254, 131, 'Charlotte Harbor', 10000, 1),
(15736, 254, 157, 'Coldwater', 10000, 1),
(15737, 254, 162, 'Cottageville', 10000, 1),
(15738, 254, 169, 'Wellsburg', 10000, 1),
(15739, 254, 135, 'Bensenville', 10000, 1),
(15740, 254, 141, 'North Waterboro', 10000, 1),
(15741, 254, 170, 'Lomira', 10000, 1),
(15742, 254, 157, 'Waldo', 10000, 1),
(15743, 254, 152, 'Elmer', 10000, 1),
(15744, 14, 6, 'York', 10000, 1),
(15746, 254, 125, 'Cabot', 10000, 1),
(15747, 254, 144, 'Rives Junction', 10000, 1),
(15748, 119, 2247, 'Macerata', 10000, 1),
(15749, 254, 140, 'Erath', 10000, 1),
(15750, 254, 144, 'Three Oaks', 10000, 1),
(15751, 14, 1, 'Bright', 10000, 1),
(15752, 254, 172, 'Brattleboro', 10000, 1),
(15753, 254, 141, 'Nobleboro', 10000, 1),
(15754, 254, 126, 'Canoga Park', 10000, 1),
(15755, 254, 137, 'Blue Grass', 10000, 1),
(15756, 10, 1051, 'Salto', 10000, 1),
(15758, 254, 139, 'Weeksbury', 10000, 1),
(15759, 43, 43, 'North Delta', 10000, 1),
(15761, 254, 124, 'Paradise Valley', 10000, 1),
(15762, 14, 1, 'Mooroolbark', 10000, 1),
(15763, 49, 1358, 'Shituan', 10000, 1),
(15764, 91, 1913, 'wackersdorf', 10000, 1),
(15765, 254, 139, 'Caneyville', 10000, 1),
(15766, 233, 4008, 'Jakobsberg', 10000, 1),
(15767, 14, 1, 'Traralgon', 10000, 1),
(15768, 14, 4, 'Padstow', 10000, 1),
(15770, 175, 2985, 'Katwijk', 10000, 1),
(15771, 113, 2175, 'Vadodara', 10000, 1),
(15772, 113, 5268, 'Ranchi', 10000, 1),
(15773, 43, 37, 'Orleans', 10000, 1),
(15775, 254, 144, 'Delton', 10000, 1),
(15776, 48, 1370, 'Coquimbo', 10000, 1),
(15777, 95, 1976, 'Naousa', 10000, 1),
(15779, 175, 2977, 'Winterswijk', 10000, 1),
(15780, 24, 1137, 'Waregem', 10000, 1),
(15781, 254, 167, 'Quinby', 10000, 1),
(15782, 43, 37, 'Vaughan', 10000, 1),
(15786, 175, 2981, 'Amstelveen', 10000, 1),
(15789, 254, 143, 'Weymouth', 10000, 1),
(15791, 254, 165, 'Iowa Park', 10000, 1),
(15792, 254, 142, 'Reisterstown', 10000, 1),
(15793, 175, 2976, 'Sneek', 10000, 1),
(15794, 254, 135, 'Flat Rock', 10000, 1),
(15795, 254, 172, 'East Arlington', 10000, 1),
(15797, 254, 165, 'Sanger', 10000, 1),
(15798, 61, 5042, 'Sotin', 10000, 1),
(15799, 254, 149, 'Gering', 10000, 1),
(15800, 254, 144, 'Carleton', 10000, 1),
(15801, 226, 3935, 'Premi', 10000, 1),
(15802, 43, 35, 'Rimouski', 10000, 1),
(15803, 254, 154, 'Lancaster', 10000, 1),
(15804, 24, 1136, 'Lokeren', 10000, 1),
(15805, 254, 125, 'Mabelvale', 10000, 1),
(15806, 144, 2624, 'Petange', 10000, 1),
(15807, 254, 164, 'Surgoinsville', 10000, 1),
(15808, 82, 1796, 'Auxerre', 10000, 1),
(15809, 43, 36, 'Airdrie', 10000, 1),
(15810, 254, 135, 'Bethalto', 10000, 1),
(15811, 254, 158, 'Mooreland', 10000, 1),
(15813, 254, 164, 'Spring City', 10000, 1),
(15814, 91, 1921, 'Bargteheide', 10000, 1),
(15815, 14, 5, 'Loxton', 10000, 1),
(15816, 254, 132, 'Oakwood', 10000, 1),
(15818, 254, 126, 'San Marino', 10000, 1),
(15819, 43, 37, 'Kingsville', 10000, 1),
(15820, 43, 43, 'Ta
Showing 512.00 KB of 1.85 MB. Use Edit/Download for full content.

Directory Contents

Dirs: 6 × Files: 15

Name Size Perms Modified Actions
images DIR
- drwxr-xr-x 2026-03-10 21:04:49
Edit Download
php53 DIR
- drwxr-xr-x 2026-03-10 21:04:49
Edit Download
php56 DIR
- drwxr-xr-x 2026-03-10 21:04:49
Edit Download
php71 DIR
- drwxr-xr-x 2026-03-10 21:04:49
Edit Download
php81 DIR
- drwxr-xr-x 2026-03-10 21:04:49
Edit Download
php82 DIR
- drwxr-xr-x 2026-03-10 21:04:49
Edit Download
3.22 KB lrw-r--r-- 2025-06-09 10:13:16
Edit Download
4.61 KB lrw-r--r-- 2026-03-10 12:45:30
Edit Download
447 B lrw-r--r-- 2025-05-22 09:49:54
Edit Download
9.88 KB lrw-r--r-- 2026-03-10 12:45:30
Edit Download
141 B lrw-r--r-- 2025-04-21 06:39:02
Edit Download
3.34 KB lrw-r--r-- 2026-03-10 12:45:30
Edit Download
1.90 KB lrw-r--r-- 2026-03-10 07:40:40
Edit Download
924 B lrw-r--r-- 2025-04-21 06:39:02
Edit Download
5.24 KB lrw-r--r-- 2026-03-10 12:45:30
Edit Download
1.65 KB lrw-r--r-- 2025-04-21 06:39:02
Edit Download
1.85 MB lrw-r--r-- 2026-03-10 07:40:40
Edit Download
10.78 MB lrw-r--r-- 2026-03-10 07:40:40
Edit Download
3.19 KB lrw-r--r-- 2026-03-10 12:45:30
Edit Download
1.04 KB lrw-r--r-- 2025-04-23 05:45:26
Edit Download
497 B lrw-r--r-- 2025-04-21 06:39:02
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).