shop.balmet.com

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

opencart.sql (350463B)


      1 -----------------------------------------------------------
      2 
      3 --
      4 -- Database: `opencart`
      5 --
      6 
      7 -----------------------------------------------------------
      8 
      9 SET sql_mode = '';
     10 
     11 --
     12 -- Table structure for table `oc_address`
     13 --
     14 
     15 DROP TABLE IF EXISTS `oc_address`;
     16 CREATE TABLE `oc_address` (
     17   `address_id` int(11) NOT NULL AUTO_INCREMENT,
     18   `customer_id` int(11) NOT NULL,
     19   `firstname` varchar(32) NOT NULL,
     20   `lastname` varchar(32) NOT NULL,
     21   `company` varchar(40) NOT NULL,
     22   `address_1` varchar(128) NOT NULL,
     23   `address_2` varchar(128) NOT NULL,
     24   `city` varchar(128) NOT NULL,
     25   `postcode` varchar(10) NOT NULL,
     26   `country_id` int(11) NOT NULL DEFAULT '0',
     27   `zone_id` int(11) NOT NULL DEFAULT '0',
     28   `custom_field` text NOT NULL,
     29   PRIMARY KEY (`address_id`),
     30   KEY `customer_id` (`customer_id`)
     31 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
     32 
     33 -----------------------------------------------------------
     34 
     35 --
     36 -- Table structure for table `oc_api`
     37 --
     38 
     39 DROP TABLE IF EXISTS `oc_api`;
     40 CREATE TABLE `oc_api` (
     41   `api_id` int(11) NOT NULL AUTO_INCREMENT,
     42   `username` varchar(64) NOT NULL,
     43   `key` text NOT NULL,
     44   `status` tinyint(1) NOT NULL,
     45   `date_added` datetime NOT NULL,
     46   `date_modified` datetime NOT NULL,
     47   PRIMARY KEY (`api_id`)
     48 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
     49 
     50 -----------------------------------------------------------
     51 
     52 --
     53 -- Table structure for table `oc_api_ip`
     54 --
     55 
     56 DROP TABLE IF EXISTS `oc_api_ip`;
     57 CREATE TABLE `oc_api_ip` (
     58   `api_ip_id` int(11) NOT NULL AUTO_INCREMENT,
     59   `api_id` int(11) NOT NULL,
     60   `ip` varchar(40) NOT NULL,
     61   PRIMARY KEY (`api_ip_id`)
     62 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
     63 
     64 -----------------------------------------------------------
     65 
     66 --
     67 -- Table structure for table `oc_api_session`
     68 --
     69 
     70 DROP TABLE IF EXISTS `oc_api_session`;
     71 CREATE TABLE `oc_api_session` (
     72   `api_session_id` int(11) NOT NULL AUTO_INCREMENT,
     73   `api_id` int(11) NOT NULL,
     74   `session_id` varchar(32) NOT NULL,
     75   `ip` varchar(40) NOT NULL,
     76   `date_added` datetime NOT NULL,
     77   `date_modified` datetime NOT NULL,
     78   PRIMARY KEY (`api_session_id`)
     79 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
     80 
     81 -----------------------------------------------------------
     82 
     83 --
     84 -- Table structure for table `oc_attribute`
     85 --
     86 
     87 DROP TABLE IF EXISTS `oc_attribute`;
     88 CREATE TABLE `oc_attribute` (
     89   `attribute_id` int(11) NOT NULL AUTO_INCREMENT,
     90   `attribute_group_id` int(11) NOT NULL,
     91   `sort_order` int(3) NOT NULL,
     92   PRIMARY KEY (`attribute_id`)
     93 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
     94 
     95 --
     96 -- Dumping data for table `oc_attribute`
     97 --
     98 
     99 INSERT INTO `oc_attribute` (`attribute_id`, `attribute_group_id`, `sort_order`) VALUES
    100 (1, 6, 1),
    101 (2, 6, 5),
    102 (3, 6, 3),
    103 (4, 3, 1),
    104 (5, 3, 2),
    105 (6, 3, 3),
    106 (7, 3, 4),
    107 (8, 3, 5),
    108 (9, 3, 6),
    109 (10, 3, 7),
    110 (11, 3, 8);
    111 
    112 -----------------------------------------------------------
    113 
    114 --
    115 -- Table structure for table `oc_attribute_description`
    116 --
    117 
    118 DROP TABLE IF EXISTS `oc_attribute_description`;
    119 CREATE TABLE `oc_attribute_description` (
    120   `attribute_id` int(11) NOT NULL,
    121   `language_id` int(11) NOT NULL,
    122   `name` varchar(64) NOT NULL,
    123   PRIMARY KEY (`attribute_id`,`language_id`)
    124 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
    125 
    126 --
    127 -- Dumping data for table `oc_attribute_description`
    128 --
    129 
    130 INSERT INTO `oc_attribute_description` (`attribute_id`, `language_id`, `name`) VALUES
    131 (1, 1, 'Description'),
    132 (2, 1, 'No. of Cores'),
    133 (4, 1, 'test 1'),
    134 (5, 1, 'test 2'),
    135 (6, 1, 'test 3'),
    136 (7, 1, 'test 4'),
    137 (8, 1, 'test 5'),
    138 (9, 1, 'test 6'),
    139 (10, 1, 'test 7'),
    140 (11, 1, 'test 8'),
    141 (3, 1, 'Clockspeed');
    142 
    143 -----------------------------------------------------------
    144 
    145 --
    146 -- Table structure for table `oc_attribute_group`
    147 --
    148 
    149 DROP TABLE IF EXISTS `oc_attribute_group`;
    150 CREATE TABLE `oc_attribute_group` (
    151   `attribute_group_id` int(11) NOT NULL AUTO_INCREMENT,
    152   `sort_order` int(3) NOT NULL,
    153   PRIMARY KEY (`attribute_group_id`)
    154 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
    155 
    156 --
    157 -- Dumping data for table `oc_attribute_group`
    158 --
    159 
    160 INSERT INTO `oc_attribute_group` (`attribute_group_id`, `sort_order`) VALUES
    161 (3, 2),
    162 (4, 1),
    163 (5, 3),
    164 (6, 4);
    165 
    166 -----------------------------------------------------------
    167 
    168 --
    169 -- Table structure for table `oc_attribute_group_description`
    170 --
    171 
    172 DROP TABLE IF EXISTS `oc_attribute_group_description`;
    173 CREATE TABLE `oc_attribute_group_description` (
    174   `attribute_group_id` int(11) NOT NULL,
    175   `language_id` int(11) NOT NULL,
    176   `name` varchar(64) NOT NULL,
    177   PRIMARY KEY (`attribute_group_id`,`language_id`)
    178 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
    179 
    180 --
    181 -- Dumping data for table `oc_attribute_group_description`
    182 --
    183 
    184 INSERT INTO `oc_attribute_group_description` (`attribute_group_id`, `language_id`, `name`) VALUES
    185 (3, 1, 'Memory'),
    186 (4, 1, 'Technical'),
    187 (5, 1, 'Motherboard'),
    188 (6, 1, 'Processor');
    189 
    190 -----------------------------------------------------------
    191 
    192 --
    193 -- Table structure for table `oc_banner`
    194 --
    195 
    196 DROP TABLE IF EXISTS `oc_banner`;
    197 CREATE TABLE `oc_banner` (
    198   `banner_id` int(11) NOT NULL AUTO_INCREMENT,
    199   `name` varchar(64) NOT NULL,
    200   `status` tinyint(1) NOT NULL,
    201   PRIMARY KEY (`banner_id`)
    202 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
    203 
    204 --
    205 -- Dumping data for table `oc_banner`
    206 --
    207 
    208 INSERT INTO `oc_banner` (`banner_id`, `name`, `status`) VALUES
    209 (6, 'HP Products', 1),
    210 (7, 'Home Page Slideshow', 1),
    211 (8, 'Manufacturers', 1);
    212 
    213 -----------------------------------------------------------
    214 
    215 --
    216 -- Table structure for table `oc_banner_image`
    217 --
    218 
    219 DROP TABLE IF EXISTS `oc_banner_image`;
    220 CREATE TABLE `oc_banner_image` (
    221   `banner_image_id` int(11) NOT NULL AUTO_INCREMENT,
    222   `banner_id` int(11) NOT NULL,
    223   `language_id` int(11) NOT NULL,
    224   `title` varchar(64) NOT NULL,
    225   `link` varchar(255) NOT NULL,
    226   `image` varchar(255) NOT NULL,
    227   `sort_order` int(3) NOT NULL DEFAULT '0',
    228   PRIMARY KEY (`banner_image_id`)
    229 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
    230 
    231 --
    232 -- Dumping data for table `oc_banner_image`
    233 --
    234 
    235 INSERT INTO `oc_banner_image` (`banner_image_id`, `banner_id`, `language_id`, `title`, `link`, `image`, `sort_order`) VALUES
    236 (79, 7, 1, 'iPhone 6', 'index.php?route=product/product&path=57&product_id=49', 'catalog/demo/banners/iPhone6.jpg', 0),
    237 (87, 6, 1, 'HP Banner', 'index.php?route=product/manufacturer/info&manufacturer_id=7', 'catalog/demo/compaq_presario.jpg', 0),
    238 (94, 8, 1, 'NFL', '', 'catalog/demo/manufacturer/nfl.png', 0),
    239 (95, 8, 1, 'RedBull', '', 'catalog/demo/manufacturer/redbull.png', 0),
    240 (96, 8, 1, 'Sony', '', 'catalog/demo/manufacturer/sony.png', 0),
    241 (91, 8, 1, 'Coca Cola', '', 'catalog/demo/manufacturer/cocacola.png', 0),
    242 (92, 8, 1, 'Burger King', '', 'catalog/demo/manufacturer/burgerking.png', 0),
    243 (93, 8, 1, 'Canon', '', 'catalog/demo/manufacturer/canon.png', 0),
    244 (88, 8, 1, 'Harley Davidson', '', 'catalog/demo/manufacturer/harley.png', 0),
    245 (89, 8, 1, 'Dell', '', 'catalog/demo/manufacturer/dell.png', 0),
    246 (90, 8, 1, 'Disney', '', 'catalog/demo/manufacturer/disney.png', 0),
    247 (80, 7, 1, 'MacBookAir', '', 'catalog/demo/banners/MacBookAir.jpg', 0),
    248 (97, 8, 1, 'Starbucks', '', 'catalog/demo/manufacturer/starbucks.png', 0),
    249 (98, 8, 1, 'Nintendo', '', 'catalog/demo/manufacturer/nintendo.png', 0);
    250 
    251 -----------------------------------------------------------
    252 
    253 --
    254 -- Table structure for table `oc_cart`
    255 --
    256 
    257 DROP TABLE IF EXISTS `oc_cart`;
    258 CREATE TABLE `oc_cart` (
    259   `cart_id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT,
    260   `api_id` int(11) NOT NULL,
    261   `customer_id` int(11) NOT NULL,
    262   `session_id` varchar(32) NOT NULL,
    263   `product_id` int(11) NOT NULL,
    264   `recurring_id` int(11) NOT NULL,
    265   `option` text NOT NULL,
    266   `quantity` int(5) NOT NULL,
    267   `date_added` datetime NOT NULL,
    268   PRIMARY KEY (`cart_id`),
    269   KEY `cart_id` (`api_id`,`customer_id`,`session_id`,`product_id`,`recurring_id`)
    270 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
    271 
    272 -----------------------------------------------------------
    273 
    274 --
    275 -- Table structure for table `oc_category`
    276 --
    277 
    278 DROP TABLE IF EXISTS `oc_category`;
    279 CREATE TABLE `oc_category` (
    280   `category_id` int(11) NOT NULL AUTO_INCREMENT,
    281   `image` varchar(255) DEFAULT NULL,
    282   `parent_id` int(11) NOT NULL DEFAULT '0',
    283   `top` tinyint(1) NOT NULL,
    284   `column` int(3) NOT NULL,
    285   `sort_order` int(3) NOT NULL DEFAULT '0',
    286   `status` tinyint(1) NOT NULL,
    287   `date_added` datetime NOT NULL,
    288   `date_modified` datetime NOT NULL,
    289   PRIMARY KEY (`category_id`),
    290   KEY `parent_id` (`parent_id`)
    291 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
    292 
    293 --
    294 -- Dumping data for table `oc_category`
    295 --
    296 
    297 INSERT INTO `oc_category` (`category_id`, `image`, `parent_id`, `top`, `column`, `sort_order`, `status`, `date_added`, `date_modified`) VALUES
    298 (25, '', 0, 1, 1, 3, 1, '2009-01-31 01:04:25', '2011-05-30 12:14:55'),
    299 (27, '', 20, 0, 0, 2, 1, '2009-01-31 01:55:34', '2010-08-22 06:32:15'),
    300 (20, 'catalog/demo/compaq_presario.jpg', 0, 1, 1, 1, 1, '2009-01-05 21:49:43', '2011-07-16 02:14:42'),
    301 (24, '', 0, 1, 1, 5, 1, '2009-01-20 02:36:26', '2011-05-30 12:15:18'),
    302 (18, 'catalog/demo/hp_2.jpg', 0, 1, 0, 2, 1, '2009-01-05 21:49:15', '2011-05-30 12:13:55'),
    303 (17, '', 0, 1, 1, 4, 1, '2009-01-03 21:08:57', '2011-05-30 12:15:11'),
    304 (28, '', 25, 0, 0, 1, 1, '2009-02-02 13:11:12', '2010-08-22 06:32:46'),
    305 (26, '', 20, 0, 0, 1, 1, '2009-01-31 01:55:14', '2010-08-22 06:31:45'),
    306 (29, '', 25, 0, 0, 1, 1, '2009-02-02 13:11:37', '2010-08-22 06:32:39'),
    307 (30, '', 25, 0, 0, 1, 1, '2009-02-02 13:11:59', '2010-08-22 06:33:00'),
    308 (31, '', 25, 0, 0, 1, 1, '2009-02-03 14:17:24', '2010-08-22 06:33:06'),
    309 (32, '', 25, 0, 0, 1, 1, '2009-02-03 14:17:34', '2010-08-22 06:33:12'),
    310 (33, '', 0, 1, 1, 6, 1, '2009-02-03 14:17:55', '2011-05-30 12:15:25'),
    311 (34, 'catalog/demo/ipod_touch_4.jpg', 0, 1, 4, 7, 1, '2009-02-03 14:18:11', '2011-05-30 12:15:31'),
    312 (35, '', 28, 0, 0, 0, 1, '2010-09-17 10:06:48', '2010-09-18 14:02:42'),
    313 (36, '', 28, 0, 0, 0, 1, '2010-09-17 10:07:13', '2010-09-18 14:02:55'),
    314 (37, '', 34, 0, 0, 0, 1, '2010-09-18 14:03:39', '2011-04-22 01:55:08'),
    315 (38, '', 34, 0, 0, 0, 1, '2010-09-18 14:03:51', '2010-09-18 14:03:51'),
    316 (39, '', 34, 0, 0, 0, 1, '2010-09-18 14:04:17', '2011-04-22 01:55:20'),
    317 (40, '', 34, 0, 0, 0, 1, '2010-09-18 14:05:36', '2010-09-18 14:05:36'),
    318 (41, '', 34, 0, 0, 0, 1, '2010-09-18 14:05:49', '2011-04-22 01:55:30'),
    319 (42, '', 34, 0, 0, 0, 1, '2010-09-18 14:06:34', '2010-11-07 20:31:04'),
    320 (43, '', 34, 0, 0, 0, 1, '2010-09-18 14:06:49', '2011-04-22 01:55:40'),
    321 (44, '', 34, 0, 0, 0, 1, '2010-09-21 15:39:21', '2010-11-07 20:30:55'),
    322 (45, '', 18, 0, 0, 0, 1, '2010-09-24 18:29:16', '2011-04-26 08:52:11'),
    323 (46, '', 18, 0, 0, 0, 1, '2010-09-24 18:29:31', '2011-04-26 08:52:23'),
    324 (47, '', 34, 0, 0, 0, 1, '2010-11-07 11:13:16', '2010-11-07 11:13:16'),
    325 (48, '', 34, 0, 0, 0, 1, '2010-11-07 11:13:33', '2010-11-07 11:13:33'),
    326 (49, '', 34, 0, 0, 0, 1, '2010-11-07 11:14:04', '2010-11-07 11:14:04'),
    327 (50, '', 34, 0, 0, 0, 1, '2010-11-07 11:14:23', '2011-04-22 01:16:01'),
    328 (51, '', 34, 0, 0, 0, 1, '2010-11-07 11:14:38', '2011-04-22 01:16:13'),
    329 (52, '', 34, 0, 0, 0, 1, '2010-11-07 11:16:09', '2011-04-22 01:54:57'),
    330 (53, '', 34, 0, 0, 0, 1, '2010-11-07 11:28:53', '2011-04-22 01:14:36'),
    331 (54, '', 34, 0, 0, 0, 1, '2010-11-07 11:29:16', '2011-04-22 01:16:50'),
    332 (55, '', 34, 0, 0, 0, 1, '2010-11-08 10:31:32', '2010-11-08 10:31:32'),
    333 (56, '', 34, 0, 0, 0, 1, '2010-11-08 10:31:50', '2011-04-22 01:16:37'),
    334 (57, '', 0, 1, 1, 3, 1, '2011-04-26 08:53:16', '2011-05-30 12:15:05'),
    335 (58, '', 52, 0, 0, 0, 1, '2011-05-08 13:44:16', '2011-05-08 13:44:16');
    336 
    337 -----------------------------------------------------------
    338 
    339 --
    340 -- Table structure for table `oc_category_description`
    341 --
    342 
    343 DROP TABLE IF EXISTS `oc_category_description`;
    344 CREATE TABLE `oc_category_description` (
    345   `category_id` int(11) NOT NULL,
    346   `language_id` int(11) NOT NULL,
    347   `name` varchar(255) NOT NULL,
    348   `description` text NOT NULL,
    349   `meta_title` varchar(255) NOT NULL,
    350   `meta_description` varchar(255) NOT NULL,
    351   `meta_keyword` varchar(255) NOT NULL,
    352   PRIMARY KEY (`category_id`,`language_id`),
    353   KEY `name` (`name`)
    354 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
    355 
    356 --
    357 -- Dumping data for table `oc_category_description`
    358 --
    359 
    360 INSERT INTO `oc_category_description` (`category_id`, `language_id`, `name`, `description`, `meta_title`, `meta_description`, `meta_keyword`) VALUES
    361 (28, 1, 'Monitors', '', 'Monitors', '', ''),
    362 (33, 1, 'Cameras', '', 'Cameras', '', ''),
    363 (32, 1, 'Web Cameras', '', 'Web Cameras', '', ''),
    364 (31, 1, 'Scanners', '', 'Scanners', '', ''),
    365 (30, 1, 'Printers', '', 'Printers', '', ''),
    366 (29, 1, 'Mice and Trackballs', '', 'Mice and Trackballs', '', ''),
    367 (27, 1, 'Mac', '', 'Mac', '', ''),
    368 (26, 1, 'PC', '', 'PC', '', ''),
    369 (17, 1, 'Software', '', 'Software', '', ''),
    370 (25, 1, 'Components', '', 'Components', '', ''),
    371 (24, 1, 'Phones & PDAs', '', 'Phones & PDAs', '', ''),
    372 (20, 1, 'Desktops', '<p>\r\n	Example of category description text</p>\r\n', 'Desktops', 'Example of category description', ''),
    373 (35, 1, 'test 1', '', 'test 1', '', ''),
    374 (36, 1, 'test 2', '', 'test 2', '', ''),
    375 (37, 1, 'test 5', '', 'test 5', '', ''),
    376 (38, 1, 'test 4', '', 'test 4', '', ''),
    377 (39, 1, 'test 6', '', 'test 6', '', ''),
    378 (40, 1, 'test 7', '', 'test 7', '', ''),
    379 (41, 1, 'test 8', '', 'test 8', '', ''),
    380 (42, 1, 'test 9', '', 'test 9', '', ''),
    381 (43, 1, 'test 11', '', 'test 11', '', ''),
    382 (34, 1, 'MP3 Players', '<p>\r\n	Shop Laptop feature only the best laptop deals on the market. By comparing laptop deals from the likes of PC World, Comet, Dixons, The Link and Carphone Warehouse, Shop Laptop has the most comprehensive selection of laptops on the internet. At Shop Laptop, we pride ourselves on offering customers the very best laptop deals. From refurbished laptops to netbooks, Shop Laptop ensures that every laptop - in every colour, style, size and technical spec - is featured on the site at the lowest possible price.</p>\r\n', 'MP3 Players', '', ''),
    383 (18, 1, 'Laptops & Notebooks', '<p>\r\n	Shop Laptop feature only the best laptop deals on the market. By comparing laptop deals from the likes of PC World, Comet, Dixons, The Link and Carphone Warehouse, Shop Laptop has the most comprehensive selection of laptops on the internet. At Shop Laptop, we pride ourselves on offering customers the very best laptop deals. From refurbished laptops to netbooks, Shop Laptop ensures that every laptop - in every colour, style, size and technical spec - is featured on the site at the lowest possible price.</p>\r\n', 'Laptops & Notebooks', '', ''),
    384 (44, 1, 'test 12', '', 'test 12', '', ''),
    385 (45, 1, 'Windows', '', 'Windows', '', ''),
    386 (46, 1, 'Macs', '', 'Macs', '', ''),
    387 (47, 1, 'test 15', '', 'test 15', '', ''),
    388 (48, 1, 'test 16', '', 'test 16', '', ''),
    389 (49, 1, 'test 17', '', 'test 17', '', ''),
    390 (50, 1, 'test 18', '', 'test 18', '', ''),
    391 (51, 1, 'test 19', '', 'test 19', '', ''),
    392 (52, 1, 'test 20', '', 'test 20', '', ''),
    393 (53, 1, 'test 21', '', 'test 21', '', ''),
    394 (54, 1, 'test 22', '', 'test 22', '', ''),
    395 (55, 1, 'test 23', '', 'test 23', '', ''),
    396 (56, 1, 'test 24', '', 'test 24', '', ''),
    397 (57, 1, 'Tablets', '', 'Tablets', '', ''),
    398 (58, 1, 'test 25', '', 'test 25', '', '');
    399 
    400 -----------------------------------------------------------
    401 
    402 --
    403 -- Table structure for table `oc_category_filter`
    404 --
    405 
    406 DROP TABLE IF EXISTS `oc_category_filter`;
    407 CREATE TABLE `oc_category_filter` (
    408   `category_id` int(11) NOT NULL,
    409   `filter_id` int(11) NOT NULL,
    410   PRIMARY KEY (`category_id`,`filter_id`)
    411 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
    412 
    413 -----------------------------------------------------------
    414 
    415 --
    416 -- Table structure for table `oc_category_path`
    417 --
    418 
    419 DROP TABLE IF EXISTS `oc_category_path`;
    420 CREATE TABLE `oc_category_path` (
    421   `category_id` int(11) NOT NULL,
    422   `path_id` int(11) NOT NULL,
    423   `level` int(11) NOT NULL,
    424   PRIMARY KEY (`category_id`,`path_id`)
    425 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
    426 
    427 --
    428 -- Dumping data for table `oc_category_path`
    429 --
    430 
    431 INSERT INTO `oc_category_path` (`category_id`, `path_id`, `level`) VALUES
    432 (25, 25, 0),
    433 (28, 25, 0),
    434 (28, 28, 1),
    435 (35, 25, 0),
    436 (35, 28, 1),
    437 (35, 35, 2),
    438 (36, 25, 0),
    439 (36, 28, 1),
    440 (36, 36, 2),
    441 (29, 25, 0),
    442 (29, 29, 1),
    443 (30, 25, 0),
    444 (30, 30, 1),
    445 (31, 25, 0),
    446 (31, 31, 1),
    447 (32, 25, 0),
    448 (32, 32, 1),
    449 (20, 20, 0),
    450 (27, 20, 0),
    451 (27, 27, 1),
    452 (26, 20, 0),
    453 (26, 26, 1),
    454 (24, 24, 0),
    455 (18, 18, 0),
    456 (45, 18, 0),
    457 (45, 45, 1),
    458 (46, 18, 0),
    459 (46, 46, 1),
    460 (17, 17, 0),
    461 (33, 33, 0),
    462 (34, 34, 0),
    463 (37, 34, 0),
    464 (37, 37, 1),
    465 (38, 34, 0),
    466 (38, 38, 1),
    467 (39, 34, 0),
    468 (39, 39, 1),
    469 (40, 34, 0),
    470 (40, 40, 1),
    471 (41, 34, 0),
    472 (41, 41, 1),
    473 (42, 34, 0),
    474 (42, 42, 1),
    475 (43, 34, 0),
    476 (43, 43, 1),
    477 (44, 34, 0),
    478 (44, 44, 1),
    479 (47, 34, 0),
    480 (47, 47, 1),
    481 (48, 34, 0),
    482 (48, 48, 1),
    483 (49, 34, 0),
    484 (49, 49, 1),
    485 (50, 34, 0),
    486 (50, 50, 1),
    487 (51, 34, 0),
    488 (51, 51, 1),
    489 (52, 34, 0),
    490 (52, 52, 1),
    491 (58, 34, 0),
    492 (58, 52, 1),
    493 (58, 58, 2),
    494 (53, 34, 0),
    495 (53, 53, 1),
    496 (54, 34, 0),
    497 (54, 54, 1),
    498 (55, 34, 0),
    499 (55, 55, 1),
    500 (56, 34, 0),
    501 (56, 56, 1),
    502 (57, 57, 0);
    503 
    504 -----------------------------------------------------------
    505 
    506 --
    507 -- Table structure for table `oc_category_to_layout`
    508 --
    509 
    510 DROP TABLE IF EXISTS `oc_category_to_layout`;
    511 CREATE TABLE `oc_category_to_layout` (
    512   `category_id` int(11) NOT NULL,
    513   `store_id` int(11) NOT NULL,
    514   `layout_id` int(11) NOT NULL,
    515   PRIMARY KEY (`category_id`,`store_id`)
    516 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
    517 
    518 -----------------------------------------------------------
    519 
    520 --
    521 -- Table structure for table `oc_category_to_store`
    522 --
    523 
    524 DROP TABLE IF EXISTS `oc_category_to_store`;
    525 CREATE TABLE `oc_category_to_store` (
    526   `category_id` int(11) NOT NULL,
    527   `store_id` int(11) NOT NULL,
    528   PRIMARY KEY (`category_id`,`store_id`)
    529 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
    530 
    531 --
    532 -- Dumping data for table `oc_category_to_store`
    533 --
    534 
    535 INSERT INTO `oc_category_to_store` (`category_id`, `store_id`) VALUES
    536 (17, 0),
    537 (18, 0),
    538 (20, 0),
    539 (24, 0),
    540 (25, 0),
    541 (26, 0),
    542 (27, 0),
    543 (28, 0),
    544 (29, 0),
    545 (30, 0),
    546 (31, 0),
    547 (32, 0),
    548 (33, 0),
    549 (34, 0),
    550 (35, 0),
    551 (36, 0),
    552 (37, 0),
    553 (38, 0),
    554 (39, 0),
    555 (40, 0),
    556 (41, 0),
    557 (42, 0),
    558 (43, 0),
    559 (44, 0),
    560 (45, 0),
    561 (46, 0),
    562 (47, 0),
    563 (48, 0),
    564 (49, 0),
    565 (50, 0),
    566 (51, 0),
    567 (52, 0),
    568 (53, 0),
    569 (54, 0),
    570 (55, 0),
    571 (56, 0),
    572 (57, 0),
    573 (58, 0);
    574 
    575 -----------------------------------------------------------
    576 
    577 --
    578 -- Table structure for table `oc_country`
    579 --
    580 
    581 DROP TABLE IF EXISTS `oc_country`;
    582 CREATE TABLE `oc_country` (
    583   `country_id` int(11) NOT NULL AUTO_INCREMENT,
    584   `name` varchar(128) NOT NULL,
    585   `iso_code_2` varchar(2) NOT NULL,
    586   `iso_code_3` varchar(3) NOT NULL,
    587   `address_format` text NOT NULL,
    588   `postcode_required` tinyint(1) NOT NULL,
    589   `status` tinyint(1) NOT NULL DEFAULT '1',
    590   PRIMARY KEY (`country_id`)
    591 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
    592 
    593 --
    594 -- Dumping data for table `oc_country`
    595 --
    596 
    597 INSERT INTO `oc_country` (`country_id`, `name`, `iso_code_2`, `iso_code_3`, `address_format`, `postcode_required`, `status`) VALUES
    598 (1, 'Afghanistan', 'AF', 'AFG', '', 0, 1),
    599 (2, 'Albania', 'AL', 'ALB', '', 0, 1),
    600 (3, 'Algeria', 'DZ', 'DZA', '', 0, 1),
    601 (4, 'American Samoa', 'AS', 'ASM', '', 0, 1),
    602 (5, 'Andorra', 'AD', 'AND', '', 0, 1),
    603 (6, 'Angola', 'AO', 'AGO', '', 0, 1),
    604 (7, 'Anguilla', 'AI', 'AIA', '', 0, 1),
    605 (8, 'Antarctica', 'AQ', 'ATA', '', 0, 1),
    606 (9, 'Antigua and Barbuda', 'AG', 'ATG', '', 0, 1),
    607 (10, 'Argentina', 'AR', 'ARG', '', 0, 1),
    608 (11, 'Armenia', 'AM', 'ARM', '', 0, 1),
    609 (12, 'Aruba', 'AW', 'ABW', '', 0, 1),
    610 (13, 'Australia', 'AU', 'AUS', '', 0, 1),
    611 (14, 'Austria', 'AT', 'AUT', '', 0, 1),
    612 (15, 'Azerbaijan', 'AZ', 'AZE', '', 0, 1),
    613 (16, 'Bahamas', 'BS', 'BHS', '', 0, 1),
    614 (17, 'Bahrain', 'BH', 'BHR', '', 0, 1),
    615 (18, 'Bangladesh', 'BD', 'BGD', '', 0, 1),
    616 (19, 'Barbados', 'BB', 'BRB', '', 0, 1),
    617 (20, 'Belarus', 'BY', 'BLR', '', 0, 1),
    618 (21, 'Belgium', 'BE', 'BEL', '{firstname} {lastname}\r\n{company}\r\n{address_1}\r\n{address_2}\r\n{postcode} {city}\r\n{country}', 0, 1),
    619 (22, 'Belize', 'BZ', 'BLZ', '', 0, 1),
    620 (23, 'Benin', 'BJ', 'BEN', '', 0, 1),
    621 (24, 'Bermuda', 'BM', 'BMU', '', 0, 1),
    622 (25, 'Bhutan', 'BT', 'BTN', '', 0, 1),
    623 (26, 'Bolivia', 'BO', 'BOL', '', 0, 1),
    624 (27, 'Bosnia and Herzegovina', 'BA', 'BIH', '', 0, 1),
    625 (28, 'Botswana', 'BW', 'BWA', '', 0, 1),
    626 (29, 'Bouvet Island', 'BV', 'BVT', '', 0, 1),
    627 (30, 'Brazil', 'BR', 'BRA', '', 0, 1),
    628 (31, 'British Indian Ocean Territory', 'IO', 'IOT', '', 0, 1),
    629 (32, 'Brunei Darussalam', 'BN', 'BRN', '', 0, 1),
    630 (33, 'Bulgaria', 'BG', 'BGR', '', 0, 1),
    631 (34, 'Burkina Faso', 'BF', 'BFA', '', 0, 1),
    632 (35, 'Burundi', 'BI', 'BDI', '', 0, 1),
    633 (36, 'Cambodia', 'KH', 'KHM', '', 0, 1),
    634 (37, 'Cameroon', 'CM', 'CMR', '', 0, 1),
    635 (38, 'Canada', 'CA', 'CAN', '', 0, 1),
    636 (39, 'Cape Verde', 'CV', 'CPV', '', 0, 1),
    637 (40, 'Cayman Islands', 'KY', 'CYM', '', 0, 1),
    638 (41, 'Central African Republic', 'CF', 'CAF', '', 0, 1),
    639 (42, 'Chad', 'TD', 'TCD', '', 0, 1),
    640 (43, 'Chile', 'CL', 'CHL', '', 0, 1),
    641 (44, 'China', 'CN', 'CHN', '', 0, 1),
    642 (45, 'Christmas Island', 'CX', 'CXR', '', 0, 1),
    643 (46, 'Cocos (Keeling) Islands', 'CC', 'CCK', '', 0, 1),
    644 (47, 'Colombia', 'CO', 'COL', '', 0, 1),
    645 (48, 'Comoros', 'KM', 'COM', '', 0, 1),
    646 (49, 'Congo', 'CG', 'COG', '', 0, 1),
    647 (50, 'Cook Islands', 'CK', 'COK', '', 0, 1),
    648 (51, 'Costa Rica', 'CR', 'CRI', '', 0, 1),
    649 (52, 'Cote D''Ivoire', 'CI', 'CIV', '', 0, 1),
    650 (53, 'Croatia', 'HR', 'HRV', '', 0, 1),
    651 (54, 'Cuba', 'CU', 'CUB', '', 0, 1),
    652 (55, 'Cyprus', 'CY', 'CYP', '', 0, 1),
    653 (56, 'Czech Republic', 'CZ', 'CZE', '', 0, 1),
    654 (57, 'Denmark', 'DK', 'DNK', '', 0, 1),
    655 (58, 'Djibouti', 'DJ', 'DJI', '', 0, 1),
    656 (59, 'Dominica', 'DM', 'DMA', '', 0, 1),
    657 (60, 'Dominican Republic', 'DO', 'DOM', '', 0, 1),
    658 (61, 'East Timor', 'TL', 'TLS', '', 0, 1),
    659 (62, 'Ecuador', 'EC', 'ECU', '', 0, 1),
    660 (63, 'Egypt', 'EG', 'EGY', '', 0, 1),
    661 (64, 'El Salvador', 'SV', 'SLV', '', 0, 1),
    662 (65, 'Equatorial Guinea', 'GQ', 'GNQ', '', 0, 1),
    663 (66, 'Eritrea', 'ER', 'ERI', '', 0, 1),
    664 (67, 'Estonia', 'EE', 'EST', '', 0, 1),
    665 (68, 'Ethiopia', 'ET', 'ETH', '', 0, 1),
    666 (69, 'Falkland Islands (Malvinas)', 'FK', 'FLK', '', 0, 1),
    667 (70, 'Faroe Islands', 'FO', 'FRO', '', 0, 1),
    668 (71, 'Fiji', 'FJ', 'FJI', '', 0, 1),
    669 (72, 'Finland', 'FI', 'FIN', '', 0, 1),
    670 (74, 'France, Metropolitan', 'FR', 'FRA', '{firstname} {lastname}\r\n{company}\r\n{address_1}\r\n{address_2}\r\n{postcode} {city}\r\n{country}', 1, 1),
    671 (75, 'French Guiana', 'GF', 'GUF', '', 0, 1),
    672 (76, 'French Polynesia', 'PF', 'PYF', '', 0, 1),
    673 (77, 'French Southern Territories', 'TF', 'ATF', '', 0, 1),
    674 (78, 'Gabon', 'GA', 'GAB', '', 0, 1),
    675 (79, 'Gambia', 'GM', 'GMB', '', 0, 1),
    676 (80, 'Georgia', 'GE', 'GEO', '', 0, 1),
    677 (81, 'Germany', 'DE', 'DEU', '{company}\r\n{firstname} {lastname}\r\n{address_1}\r\n{address_2}\r\n{postcode} {city}\r\n{country}', 1, 1),
    678 (82, 'Ghana', 'GH', 'GHA', '', 0, 1),
    679 (83, 'Gibraltar', 'GI', 'GIB', '', 0, 1),
    680 (84, 'Greece', 'GR', 'GRC', '', 0, 1),
    681 (85, 'Greenland', 'GL', 'GRL', '', 0, 1),
    682 (86, 'Grenada', 'GD', 'GRD', '', 0, 1),
    683 (87, 'Guadeloupe', 'GP', 'GLP', '', 0, 1),
    684 (88, 'Guam', 'GU', 'GUM', '', 0, 1),
    685 (89, 'Guatemala', 'GT', 'GTM', '', 0, 1),
    686 (90, 'Guinea', 'GN', 'GIN', '', 0, 1),
    687 (91, 'Guinea-Bissau', 'GW', 'GNB', '', 0, 1),
    688 (92, 'Guyana', 'GY', 'GUY', '', 0, 1),
    689 (93, 'Haiti', 'HT', 'HTI', '', 0, 1),
    690 (94, 'Heard and Mc Donald Islands', 'HM', 'HMD', '', 0, 1),
    691 (95, 'Honduras', 'HN', 'HND', '', 0, 1),
    692 (96, 'Hong Kong', 'HK', 'HKG', '', 0, 1),
    693 (97, 'Hungary', 'HU', 'HUN', '', 0, 1),
    694 (98, 'Iceland', 'IS', 'ISL', '', 0, 1),
    695 (99, 'India', 'IN', 'IND', '', 0, 1),
    696 (100, 'Indonesia', 'ID', 'IDN', '', 0, 1),
    697 (101, 'Iran (Islamic Republic of)', 'IR', 'IRN', '', 0, 1),
    698 (102, 'Iraq', 'IQ', 'IRQ', '', 0, 1),
    699 (103, 'Ireland', 'IE', 'IRL', '', 0, 1),
    700 (104, 'Israel', 'IL', 'ISR', '', 0, 1),
    701 (105, 'Italy', 'IT', 'ITA', '', 0, 1),
    702 (106, 'Jamaica', 'JM', 'JAM', '', 0, 1),
    703 (107, 'Japan', 'JP', 'JPN', '', 0, 1),
    704 (108, 'Jordan', 'JO', 'JOR', '', 0, 1),
    705 (109, 'Kazakhstan', 'KZ', 'KAZ', '', 0, 1),
    706 (110, 'Kenya', 'KE', 'KEN', '', 0, 1),
    707 (111, 'Kiribati', 'KI', 'KIR', '', 0, 1),
    708 (112, 'North Korea', 'KP', 'PRK', '', 0, 1),
    709 (113, 'South Korea', 'KR', 'KOR', '', 0, 1),
    710 (114, 'Kuwait', 'KW', 'KWT', '', 0, 1),
    711 (115, 'Kyrgyzstan', 'KG', 'KGZ', '', 0, 1),
    712 (116, 'Lao People''s Democratic Republic', 'LA', 'LAO', '', 0, 1),
    713 (117, 'Latvia', 'LV', 'LVA', '', 0, 1),
    714 (118, 'Lebanon', 'LB', 'LBN', '', 0, 1),
    715 (119, 'Lesotho', 'LS', 'LSO', '', 0, 1),
    716 (120, 'Liberia', 'LR', 'LBR', '', 0, 1),
    717 (121, 'Libyan Arab Jamahiriya', 'LY', 'LBY', '', 0, 1),
    718 (122, 'Liechtenstein', 'LI', 'LIE', '', 0, 1),
    719 (123, 'Lithuania', 'LT', 'LTU', '', 0, 1),
    720 (124, 'Luxembourg', 'LU', 'LUX', '', 0, 1),
    721 (125, 'Macau', 'MO', 'MAC', '', 0, 1),
    722 (126, 'FYROM', 'MK', 'MKD', '', 0, 1),
    723 (127, 'Madagascar', 'MG', 'MDG', '', 0, 1),
    724 (128, 'Malawi', 'MW', 'MWI', '', 0, 1),
    725 (129, 'Malaysia', 'MY', 'MYS', '', 0, 1),
    726 (130, 'Maldives', 'MV', 'MDV', '', 0, 1),
    727 (131, 'Mali', 'ML', 'MLI', '', 0, 1),
    728 (132, 'Malta', 'MT', 'MLT', '', 0, 1),
    729 (133, 'Marshall Islands', 'MH', 'MHL', '', 0, 1),
    730 (134, 'Martinique', 'MQ', 'MTQ', '', 0, 1),
    731 (135, 'Mauritania', 'MR', 'MRT', '', 0, 1),
    732 (136, 'Mauritius', 'MU', 'MUS', '', 0, 1),
    733 (137, 'Mayotte', 'YT', 'MYT', '', 0, 1),
    734 (138, 'Mexico', 'MX', 'MEX', '', 0, 1),
    735 (139, 'Micronesia, Federated States of', 'FM', 'FSM', '', 0, 1),
    736 (140, 'Moldova, Republic of', 'MD', 'MDA', '', 0, 1),
    737 (141, 'Monaco', 'MC', 'MCO', '', 0, 1),
    738 (142, 'Mongolia', 'MN', 'MNG', '', 0, 1),
    739 (143, 'Montserrat', 'MS', 'MSR', '', 0, 1),
    740 (144, 'Morocco', 'MA', 'MAR', '', 0, 1),
    741 (145, 'Mozambique', 'MZ', 'MOZ', '', 0, 1),
    742 (146, 'Myanmar', 'MM', 'MMR', '', 0, 1),
    743 (147, 'Namibia', 'NA', 'NAM', '', 0, 1),
    744 (148, 'Nauru', 'NR', 'NRU', '', 0, 1),
    745 (149, 'Nepal', 'NP', 'NPL', '', 0, 1),
    746 (150, 'Netherlands', 'NL', 'NLD', '', 0, 1),
    747 (151, 'Netherlands Antilles', 'AN', 'ANT', '', 0, 1),
    748 (152, 'New Caledonia', 'NC', 'NCL', '', 0, 1),
    749 (153, 'New Zealand', 'NZ', 'NZL', '', 0, 1),
    750 (154, 'Nicaragua', 'NI', 'NIC', '', 0, 1),
    751 (155, 'Niger', 'NE', 'NER', '', 0, 1),
    752 (156, 'Nigeria', 'NG', 'NGA', '', 0, 1),
    753 (157, 'Niue', 'NU', 'NIU', '', 0, 1),
    754 (158, 'Norfolk Island', 'NF', 'NFK', '', 0, 1),
    755 (159, 'Northern Mariana Islands', 'MP', 'MNP', '', 0, 1),
    756 (160, 'Norway', 'NO', 'NOR', '', 0, 1),
    757 (161, 'Oman', 'OM', 'OMN', '', 0, 1),
    758 (162, 'Pakistan', 'PK', 'PAK', '', 0, 1),
    759 (163, 'Palau', 'PW', 'PLW', '', 0, 1),
    760 (164, 'Panama', 'PA', 'PAN', '', 0, 1),
    761 (165, 'Papua New Guinea', 'PG', 'PNG', '', 0, 1),
    762 (166, 'Paraguay', 'PY', 'PRY', '', 0, 1),
    763 (167, 'Peru', 'PE', 'PER', '', 0, 1),
    764 (168, 'Philippines', 'PH', 'PHL', '', 0, 1),
    765 (169, 'Pitcairn', 'PN', 'PCN', '', 0, 1),
    766 (170, 'Poland', 'PL', 'POL', '', 0, 1),
    767 (171, 'Portugal', 'PT', 'PRT', '', 0, 1),
    768 (172, 'Puerto Rico', 'PR', 'PRI', '', 0, 1),
    769 (173, 'Qatar', 'QA', 'QAT', '', 0, 1),
    770 (174, 'Reunion', 'RE', 'REU', '', 0, 1),
    771 (175, 'Romania', 'RO', 'ROM', '', 0, 1),
    772 (176, 'Russian Federation', 'RU', 'RUS', '', 0, 1),
    773 (177, 'Rwanda', 'RW', 'RWA', '', 0, 1),
    774 (178, 'Saint Kitts and Nevis', 'KN', 'KNA', '', 0, 1),
    775 (179, 'Saint Lucia', 'LC', 'LCA', '', 0, 1),
    776 (180, 'Saint Vincent and the Grenadines', 'VC', 'VCT', '', 0, 1),
    777 (181, 'Samoa', 'WS', 'WSM', '', 0, 1),
    778 (182, 'San Marino', 'SM', 'SMR', '', 0, 1),
    779 (183, 'Sao Tome and Principe', 'ST', 'STP', '', 0, 1),
    780 (184, 'Saudi Arabia', 'SA', 'SAU', '', 0, 1),
    781 (185, 'Senegal', 'SN', 'SEN', '', 0, 1),
    782 (186, 'Seychelles', 'SC', 'SYC', '', 0, 1),
    783 (187, 'Sierra Leone', 'SL', 'SLE', '', 0, 1),
    784 (188, 'Singapore', 'SG', 'SGP', '', 0, 1),
    785 (189, 'Slovak Republic', 'SK', 'SVK', '{firstname} {lastname}\r\n{company}\r\n{address_1}\r\n{address_2}\r\n{city} {postcode}\r\n{zone}\r\n{country}', 0, 1),
    786 (190, 'Slovenia', 'SI', 'SVN', '', 0, 1),
    787 (191, 'Solomon Islands', 'SB', 'SLB', '', 0, 1),
    788 (192, 'Somalia', 'SO', 'SOM', '', 0, 1),
    789 (193, 'South Africa', 'ZA', 'ZAF', '', 0, 1),
    790 (194, 'South Georgia & South Sandwich Islands', 'GS', 'SGS', '', 0, 1),
    791 (195, 'Spain', 'ES', 'ESP', '', 0, 1),
    792 (196, 'Sri Lanka', 'LK', 'LKA', '', 0, 1),
    793 (197, 'St. Helena', 'SH', 'SHN', '', 0, 1),
    794 (198, 'St. Pierre and Miquelon', 'PM', 'SPM', '', 0, 1),
    795 (199, 'Sudan', 'SD', 'SDN', '', 0, 1),
    796 (200, 'Suriname', 'SR', 'SUR', '', 0, 1),
    797 (201, 'Svalbard and Jan Mayen Islands', 'SJ', 'SJM', '', 0, 1),
    798 (202, 'Swaziland', 'SZ', 'SWZ', '', 0, 1),
    799 (203, 'Sweden', 'SE', 'SWE', '{company}\r\n{firstname} {lastname}\r\n{address_1}\r\n{address_2}\r\n{postcode} {city}\r\n{country}', 1, 1),
    800 (204, 'Switzerland', 'CH', 'CHE', '', 0, 1),
    801 (205, 'Syrian Arab Republic', 'SY', 'SYR', '', 0, 1),
    802 (206, 'Taiwan', 'TW', 'TWN', '', 0, 1),
    803 (207, 'Tajikistan', 'TJ', 'TJK', '', 0, 1),
    804 (208, 'Tanzania, United Republic of', 'TZ', 'TZA', '', 0, 1),
    805 (209, 'Thailand', 'TH', 'THA', '', 0, 1),
    806 (210, 'Togo', 'TG', 'TGO', '', 0, 1),
    807 (211, 'Tokelau', 'TK', 'TKL', '', 0, 1),
    808 (212, 'Tonga', 'TO', 'TON', '', 0, 1),
    809 (213, 'Trinidad and Tobago', 'TT', 'TTO', '', 0, 1),
    810 (214, 'Tunisia', 'TN', 'TUN', '', 0, 1),
    811 (215, 'Turkey', 'TR', 'TUR', '', 0, 1),
    812 (216, 'Turkmenistan', 'TM', 'TKM', '', 0, 1),
    813 (217, 'Turks and Caicos Islands', 'TC', 'TCA', '', 0, 1),
    814 (218, 'Tuvalu', 'TV', 'TUV', '', 0, 1),
    815 (219, 'Uganda', 'UG', 'UGA', '', 0, 1),
    816 (220, 'Ukraine', 'UA', 'UKR', '', 0, 1),
    817 (221, 'United Arab Emirates', 'AE', 'ARE', '', 0, 1),
    818 (222, 'United Kingdom', 'GB', 'GBR', '', 1, 1),
    819 (223, 'United States', 'US', 'USA', '{firstname} {lastname}\r\n{company}\r\n{address_1}\r\n{address_2}\r\n{city}, {zone} {postcode}\r\n{country}', 0, 1),
    820 (224, 'United States Minor Outlying Islands', 'UM', 'UMI', '', 0, 1),
    821 (225, 'Uruguay', 'UY', 'URY', '', 0, 1),
    822 (226, 'Uzbekistan', 'UZ', 'UZB', '', 0, 1),
    823 (227, 'Vanuatu', 'VU', 'VUT', '', 0, 1),
    824 (228, 'Vatican City State (Holy See)', 'VA', 'VAT', '', 0, 1),
    825 (229, 'Venezuela', 'VE', 'VEN', '', 0, 1),
    826 (230, 'Viet Nam', 'VN', 'VNM', '', 0, 1),
    827 (231, 'Virgin Islands (British)', 'VG', 'VGB', '', 0, 1),
    828 (232, 'Virgin Islands (U.S.)', 'VI', 'VIR', '', 0, 1),
    829 (233, 'Wallis and Futuna Islands', 'WF', 'WLF', '', 0, 1),
    830 (234, 'Western Sahara', 'EH', 'ESH', '', 0, 1),
    831 (235, 'Yemen', 'YE', 'YEM', '', 0, 1),
    832 (237, 'Democratic Republic of Congo', 'CD', 'COD', '', 0, 1),
    833 (238, 'Zambia', 'ZM', 'ZMB', '', 0, 1),
    834 (239, 'Zimbabwe', 'ZW', 'ZWE', '', 0, 1),
    835 (242, 'Montenegro', 'ME', 'MNE', '', 0, 1),
    836 (243, 'Serbia', 'RS', 'SRB', '', 0, 1),
    837 (244, 'Aaland Islands', 'AX', 'ALA', '', 0, 1),
    838 (245, 'Bonaire, Sint Eustatius and Saba', 'BQ', 'BES', '', 0, 1),
    839 (246, 'Curacao', 'CW', 'CUW', '', 0, 1),
    840 (247, 'Palestinian Territory, Occupied', 'PS', 'PSE', '', 0, 1),
    841 (248, 'South Sudan', 'SS', 'SSD', '', 0, 1),
    842 (249, 'St. Barthelemy', 'BL', 'BLM', '', 0, 1),
    843 (250, 'St. Martin (French part)', 'MF', 'MAF', '', 0, 1),
    844 (251, 'Canary Islands', 'IC', 'ICA', '', 0, 1),
    845 (252, 'Ascension Island (British)', 'AC', 'ASC', '', 0, 1),
    846 (253, 'Kosovo, Republic of', 'XK', 'UNK', '', 0, 1),
    847 (254, 'Isle of Man', 'IM', 'IMN', '', 0, 1),
    848 (255, 'Tristan da Cunha', 'TA', 'SHN', '', 0, 1),
    849 (256, 'Guernsey', 'GG', 'GGY', '', 0, 1),
    850 (257, 'Jersey', 'JE', 'JEY', '', 0, 1);
    851 
    852 -----------------------------------------------------------
    853 
    854 --
    855 -- Table structure for table `oc_coupon`
    856 --
    857 
    858 DROP TABLE IF EXISTS `oc_coupon`;
    859 CREATE TABLE `oc_coupon` (
    860   `coupon_id` int(11) NOT NULL AUTO_INCREMENT,
    861   `name` varchar(128) NOT NULL,
    862   `code` varchar(20) NOT NULL,
    863   `type` char(1) NOT NULL,
    864   `discount` decimal(15,4) NOT NULL,
    865   `logged` tinyint(1) NOT NULL,
    866   `shipping` tinyint(1) NOT NULL,
    867   `total` decimal(15,4) NOT NULL,
    868   `date_start` date NOT NULL DEFAULT '0000-00-00',
    869   `date_end` date NOT NULL DEFAULT '0000-00-00',
    870   `uses_total` int(11) NOT NULL,
    871   `uses_customer` varchar(11) NOT NULL,
    872   `status` tinyint(1) NOT NULL,
    873   `date_added` datetime NOT NULL,
    874   PRIMARY KEY (`coupon_id`)
    875 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
    876 
    877 --
    878 -- Dumping data for table `oc_coupon`
    879 --
    880 
    881 INSERT INTO `oc_coupon` (`coupon_id`, `name`, `code`, `type`, `discount`, `logged`, `shipping`, `total`, `date_start`, `date_end`, `uses_total`, `uses_customer`, `status`, `date_added`) VALUES
    882 (4, '-10% Discount', '2222', 'P', '10.0000', 0, 0, '0.0000', '2014-01-01', '2020-01-01', 10, '10', 0, '2009-01-27 13:55:03'),
    883 (5, 'Free Shipping', '3333', 'P', '0.0000', 0, 1, '100.0000', '2014-01-01', '2014-02-01', 10, '10', 0, '2009-03-14 21:13:53'),
    884 (6, '-10.00 Discount', '1111', 'F', '10.0000', 0, 0, '10.0000', '2014-01-01', '2020-01-01', 100000, '10000', 0, '2009-03-14 21:15:18');
    885 
    886 -----------------------------------------------------------
    887 
    888 --
    889 -- Table structure for table `oc_coupon_category`
    890 --
    891 
    892 DROP TABLE IF EXISTS `oc_coupon_category`;
    893 CREATE TABLE `oc_coupon_category` (
    894   `coupon_id` int(11) NOT NULL,
    895   `category_id` int(11) NOT NULL,
    896   PRIMARY KEY (`coupon_id`,`category_id`)
    897 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
    898 
    899 -----------------------------------------------------------
    900 
    901 --
    902 -- Table structure for table `oc_coupon_history`
    903 --
    904 
    905 DROP TABLE IF EXISTS `oc_coupon_history`;
    906 CREATE TABLE `oc_coupon_history` (
    907   `coupon_history_id` int(11) NOT NULL AUTO_INCREMENT,
    908   `coupon_id` int(11) NOT NULL,
    909   `order_id` int(11) NOT NULL,
    910   `customer_id` int(11) NOT NULL,
    911   `amount` decimal(15,4) NOT NULL,
    912   `date_added` datetime NOT NULL,
    913   PRIMARY KEY (`coupon_history_id`)
    914 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
    915 
    916 -----------------------------------------------------------
    917 
    918 --
    919 -- Table structure for table `oc_coupon_product`
    920 --
    921 
    922 DROP TABLE IF EXISTS `oc_coupon_product`;
    923 CREATE TABLE `oc_coupon_product` (
    924   `coupon_product_id` int(11) NOT NULL AUTO_INCREMENT,
    925   `coupon_id` int(11) NOT NULL,
    926   `product_id` int(11) NOT NULL,
    927   PRIMARY KEY (`coupon_product_id`)
    928 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
    929 
    930 -----------------------------------------------------------
    931 
    932 --
    933 -- Table structure for table `oc_currency`
    934 --
    935 
    936 DROP TABLE IF EXISTS `oc_currency`;
    937 CREATE TABLE `oc_currency` (
    938   `currency_id` int(11) NOT NULL AUTO_INCREMENT,
    939   `title` varchar(32) NOT NULL,
    940   `code` varchar(3) NOT NULL,
    941   `symbol_left` varchar(12) NOT NULL,
    942   `symbol_right` varchar(12) NOT NULL,
    943   `decimal_place` char(1) NOT NULL,
    944   `value` double(15,8) NOT NULL,
    945   `status` tinyint(1) NOT NULL,
    946   `date_modified` datetime NOT NULL,
    947   PRIMARY KEY (`currency_id`)
    948 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
    949 
    950 --
    951 -- Dumping data for table `oc_currency`
    952 --
    953 
    954 INSERT INTO `oc_currency` (`currency_id`, `title`, `code`, `symbol_left`, `symbol_right`, `decimal_place`, `value`, `status`, `date_modified`) VALUES
    955 (1, 'Pound Sterling', 'GBP', '£', '', '2', 0.61250001, 1, '2014-09-25 14:40:00'),
    956 (2, 'US Dollar', 'USD', '$', '', '2', 1.00000000, 1, '2014-09-25 14:40:00'),
    957 (3, 'Euro', 'EUR', '', '€', '2', 0.78460002, 1, '2014-09-25 14:40:00');
    958 
    959 -----------------------------------------------------------
    960 
    961 --
    962 -- Table structure for table `oc_customer`
    963 --
    964 
    965 DROP TABLE IF EXISTS `oc_customer`;
    966 CREATE TABLE `oc_customer` (
    967   `customer_id` int(11) NOT NULL AUTO_INCREMENT,
    968   `customer_group_id` int(11) NOT NULL,
    969   `store_id` int(11) NOT NULL DEFAULT '0',
    970   `language_id` int(11) NOT NULL,
    971   `firstname` varchar(32) NOT NULL,
    972   `lastname` varchar(32) NOT NULL,
    973   `email` varchar(96) NOT NULL,
    974   `telephone` varchar(32) NOT NULL,
    975   `fax` varchar(32) NOT NULL,
    976   `password` varchar(40) NOT NULL,
    977   `salt` varchar(9) NOT NULL,
    978   `cart` text,
    979   `wishlist` text,
    980   `newsletter` tinyint(1) NOT NULL DEFAULT '0',
    981   `address_id` int(11) NOT NULL DEFAULT '0',
    982   `custom_field` text NOT NULL,
    983   `ip` varchar(40) NOT NULL,
    984   `status` tinyint(1) NOT NULL,
    985   `safe` tinyint(1) NOT NULL,
    986   `token` text NOT NULL,
    987   `code` varchar(40) NOT NULL,
    988   `date_added` datetime NOT NULL,
    989   PRIMARY KEY (`customer_id`)
    990 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
    991 
    992 -----------------------------------------------------------
    993 
    994 --
    995 -- Table structure for table `oc_customer_activity`
    996 --
    997 
    998 DROP TABLE IF EXISTS `oc_customer_activity`;
    999 CREATE TABLE `oc_customer_activity` (
   1000   `customer_activity_id` int(11) NOT NULL AUTO_INCREMENT,
   1001   `customer_id` int(11) NOT NULL,
   1002   `key` varchar(64) NOT NULL,
   1003   `data` text NOT NULL,
   1004   `ip` varchar(40) NOT NULL,
   1005   `date_added` datetime NOT NULL,
   1006   PRIMARY KEY (`customer_activity_id`)
   1007 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   1008 
   1009 -----------------------------------------------------------
   1010 
   1011 --
   1012 -- Table structure for table `oc_affiliate`
   1013 --
   1014 
   1015 DROP TABLE IF EXISTS `oc_customer_affiliate`;
   1016 CREATE TABLE `oc_customer_affiliate` (
   1017   `customer_id` int(11) NOT NULL,
   1018   `company` varchar(40) NOT NULL,
   1019   `website` varchar(255) NOT NULL,
   1020   `tracking` varchar(64) NOT NULL,
   1021   `commission` decimal(4,2) NOT NULL DEFAULT '0.00',
   1022   `tax` varchar(64) NOT NULL,
   1023   `payment` varchar(6) NOT NULL,
   1024   `cheque` varchar(100) NOT NULL,
   1025   `paypal` varchar(64) NOT NULL,
   1026   `bank_name` varchar(64) NOT NULL,
   1027   `bank_branch_number` varchar(64) NOT NULL,
   1028   `bank_swift_code` varchar(64) NOT NULL,
   1029   `bank_account_name` varchar(64) NOT NULL,
   1030   `bank_account_number` varchar(64) NOT NULL,
   1031   `custom_field` text NOT NULL,
   1032   `status` tinyint(1) NOT NULL,
   1033   `date_added` datetime NOT NULL,
   1034   PRIMARY KEY (`customer_id`)
   1035 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   1036 
   1037 -----------------------------------------------------------
   1038 
   1039 --
   1040 -- Table structure for table `oc_customer_approval`
   1041 --
   1042 
   1043 DROP TABLE IF EXISTS `oc_customer_approval`;
   1044 CREATE TABLE `oc_customer_approval` (
   1045   `customer_approval_id` int(11) NOT NULL AUTO_INCREMENT,
   1046   `customer_id` int(11) NOT NULL,
   1047   `type` varchar(9) NOT NULL,
   1048   `date_added` datetime NOT NULL,
   1049   PRIMARY KEY (`customer_approval_id`)
   1050 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   1051 
   1052 -----------------------------------------------------------
   1053 
   1054 --
   1055 -- Table structure for table `oc_customer_group`
   1056 --
   1057 
   1058 DROP TABLE IF EXISTS `oc_customer_group`;
   1059 CREATE TABLE `oc_customer_group` (
   1060   `customer_group_id` int(11) NOT NULL AUTO_INCREMENT,
   1061   `approval` int(1) NOT NULL,
   1062   `sort_order` int(3) NOT NULL,
   1063   PRIMARY KEY (`customer_group_id`)
   1064 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   1065 
   1066 --
   1067 -- Dumping data for table `oc_customer_group`
   1068 --
   1069 
   1070 INSERT INTO `oc_customer_group` (`customer_group_id`, `approval`, `sort_order`) VALUES
   1071 (1, 0, 1);
   1072 
   1073 -----------------------------------------------------------
   1074 
   1075 --
   1076 -- Table structure for table `oc_customer_group_description`
   1077 --
   1078 
   1079 DROP TABLE IF EXISTS `oc_customer_group_description`;
   1080 CREATE TABLE `oc_customer_group_description` (
   1081   `customer_group_id` int(11) NOT NULL,
   1082   `language_id` int(11) NOT NULL,
   1083   `name` varchar(32) NOT NULL,
   1084   `description` text NOT NULL,
   1085   PRIMARY KEY (`customer_group_id`,`language_id`)
   1086 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   1087 
   1088 --
   1089 -- Dumping data for table `oc_customer_group_description`
   1090 --
   1091 
   1092 INSERT INTO `oc_customer_group_description` (`customer_group_id`, `language_id`, `name`, `description`) VALUES
   1093 (1, 1, 'Default', 'test');
   1094 
   1095 -----------------------------------------------------------
   1096 
   1097 --
   1098 -- Table structure for table `oc_customer_history`
   1099 --
   1100 
   1101 DROP TABLE IF EXISTS `oc_customer_history`;
   1102 CREATE TABLE `oc_customer_history` (
   1103   `customer_history_id` int(11) NOT NULL AUTO_INCREMENT,
   1104   `customer_id` int(11) NOT NULL,
   1105   `comment` text NOT NULL,
   1106   `date_added` datetime NOT NULL,
   1107   PRIMARY KEY (`customer_history_id`)
   1108 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   1109 
   1110 -----------------------------------------------------------
   1111 
   1112 --
   1113 -- Table structure for table `oc_customer_login`
   1114 --
   1115 
   1116 DROP TABLE IF EXISTS `oc_customer_login`;
   1117 CREATE TABLE `oc_customer_login` (
   1118   `customer_login_id` int(11) NOT NULL AUTO_INCREMENT,
   1119   `email` varchar(96) NOT NULL,
   1120   `ip` varchar(40) NOT NULL,
   1121   `total` int(4) NOT NULL,
   1122   `date_added` datetime NOT NULL,
   1123   `date_modified` datetime NOT NULL,
   1124   PRIMARY KEY (`customer_login_id`),
   1125   KEY `email` (`email`),
   1126   KEY `ip` (`ip`)
   1127 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   1128 
   1129 -----------------------------------------------------------
   1130 
   1131 --
   1132 -- Table structure for table `oc_customer_ip`
   1133 --
   1134 
   1135 DROP TABLE IF EXISTS `oc_customer_ip`;
   1136 CREATE TABLE `oc_customer_ip` (
   1137   `customer_ip_id` int(11) NOT NULL AUTO_INCREMENT,
   1138   `customer_id` int(11) NOT NULL,
   1139   `ip` varchar(40) NOT NULL,
   1140   `date_added` datetime NOT NULL,
   1141   PRIMARY KEY (`customer_ip_id`),
   1142   KEY `ip` (`ip`)
   1143 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   1144 
   1145 -----------------------------------------------------------
   1146 
   1147 --
   1148 -- Table structure for table `oc_customer_online`
   1149 --
   1150 
   1151 DROP TABLE IF EXISTS `oc_customer_online`;
   1152 CREATE TABLE `oc_customer_online` (
   1153   `ip` varchar(40) NOT NULL,
   1154   `customer_id` int(11) NOT NULL,
   1155   `url` text NOT NULL,
   1156   `referer` text NOT NULL,
   1157   `date_added` datetime NOT NULL,
   1158   PRIMARY KEY (`ip`)
   1159 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   1160 
   1161 -----------------------------------------------------------
   1162 
   1163 --
   1164 -- Table structure for table `oc_customer_reward`
   1165 --
   1166 
   1167 DROP TABLE IF EXISTS `oc_customer_reward`;
   1168 CREATE TABLE `oc_customer_reward` (
   1169   `customer_reward_id` int(11) NOT NULL AUTO_INCREMENT,
   1170   `customer_id` int(11) NOT NULL DEFAULT '0',
   1171   `order_id` int(11) NOT NULL DEFAULT '0',
   1172   `description` text NOT NULL,
   1173   `points` int(8) NOT NULL DEFAULT '0',
   1174   `date_added` datetime NOT NULL,
   1175   PRIMARY KEY (`customer_reward_id`)
   1176 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   1177 
   1178 -----------------------------------------------------------
   1179 
   1180 --
   1181 -- Table structure for table `oc_customer_transaction`
   1182 --
   1183 
   1184 DROP TABLE IF EXISTS `oc_customer_transaction`;
   1185 CREATE TABLE `oc_customer_transaction` (
   1186   `customer_transaction_id` int(11) NOT NULL AUTO_INCREMENT,
   1187   `customer_id` int(11) NOT NULL,
   1188   `order_id` int(11) NOT NULL,
   1189   `description` text NOT NULL,
   1190   `amount` decimal(15,4) NOT NULL,
   1191   `date_added` datetime NOT NULL,
   1192   PRIMARY KEY (`customer_transaction_id`)
   1193 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   1194 
   1195 -----------------------------------------------------------
   1196 
   1197 --
   1198 -- Table structure for table `oc_customer_search`
   1199 --
   1200 
   1201 DROP TABLE IF EXISTS `oc_customer_search`;
   1202 CREATE TABLE `oc_customer_search` (
   1203   `customer_search_id` int(11) NOT NULL AUTO_INCREMENT,
   1204   `store_id` int(11) NOT NULL,
   1205   `language_id` int(11) NOT NULL,
   1206   `customer_id` int(11) NOT NULL,
   1207   `keyword` varchar(255) NOT NULL,
   1208   `category_id` int(11),
   1209   `sub_category` tinyint(1) NOT NULL,
   1210   `description` tinyint(1) NOT NULL,
   1211   `products` int(11) NOT NULL,
   1212   `ip` varchar(40) NOT NULL,
   1213   `date_added` datetime NOT NULL,
   1214   PRIMARY KEY (`customer_search_id`)
   1215 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   1216 
   1217 -----------------------------------------------------------
   1218 
   1219 --
   1220 -- Table structure for table `oc_customer_wishlist`
   1221 --
   1222 
   1223 DROP TABLE IF EXISTS `oc_customer_wishlist`;
   1224 CREATE TABLE `oc_customer_wishlist` (
   1225   `customer_id` int(11) NOT NULL,
   1226   `product_id` int(11) NOT NULL,
   1227   `date_added` datetime NOT NULL,
   1228   PRIMARY KEY (`customer_id`,`product_id`)
   1229 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   1230 
   1231 -----------------------------------------------------------
   1232 
   1233 --
   1234 -- Table structure for table `oc_custom_field`
   1235 --
   1236 
   1237 DROP TABLE IF EXISTS `oc_custom_field`;
   1238 CREATE TABLE `oc_custom_field` (
   1239   `custom_field_id` int(11) NOT NULL AUTO_INCREMENT,
   1240   `type` varchar(32) NOT NULL,
   1241   `value` text NOT NULL,
   1242   `validation` varchar(255) NOT NULL,
   1243   `location` varchar(10) NOT NULL,
   1244   `status` tinyint(1) NOT NULL,
   1245   `sort_order` int(3) NOT NULL,
   1246   PRIMARY KEY (`custom_field_id`)
   1247 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   1248 
   1249 -----------------------------------------------------------
   1250 
   1251 --
   1252 -- Table structure for table `oc_custom_field_customer_group`
   1253 --
   1254 
   1255 DROP TABLE IF EXISTS `oc_custom_field_customer_group`;
   1256 CREATE TABLE `oc_custom_field_customer_group` (
   1257   `custom_field_id` int(11) NOT NULL,
   1258   `customer_group_id` int(11) NOT NULL,
   1259   `required` tinyint(1) NOT NULL,
   1260   PRIMARY KEY (`custom_field_id`,`customer_group_id`)
   1261 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   1262 
   1263 -----------------------------------------------------------
   1264 
   1265 --
   1266 -- Table structure for table `oc_custom_field_description`
   1267 --
   1268 
   1269 DROP TABLE IF EXISTS `oc_custom_field_description`;
   1270 CREATE TABLE `oc_custom_field_description` (
   1271   `custom_field_id` int(11) NOT NULL,
   1272   `language_id` int(11) NOT NULL,
   1273   `name` varchar(128) NOT NULL,
   1274   PRIMARY KEY (`custom_field_id`,`language_id`)
   1275 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   1276 
   1277 -----------------------------------------------------------
   1278 
   1279 --
   1280 -- Table structure for table `oc_custom_field_value`
   1281 --
   1282 
   1283 DROP TABLE IF EXISTS `oc_custom_field_value`;
   1284 CREATE TABLE `oc_custom_field_value` (
   1285   `custom_field_value_id` int(11) NOT NULL AUTO_INCREMENT,
   1286   `custom_field_id` int(11) NOT NULL,
   1287   `sort_order` int(3) NOT NULL,
   1288   PRIMARY KEY (`custom_field_value_id`)
   1289 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   1290 
   1291 -----------------------------------------------------------
   1292 
   1293 --
   1294 -- Table structure for table `oc_custom_field_value_description`
   1295 --
   1296 
   1297 DROP TABLE IF EXISTS `oc_custom_field_value_description`;
   1298 CREATE TABLE `oc_custom_field_value_description` (
   1299   `custom_field_value_id` int(11) NOT NULL,
   1300   `language_id` int(11) NOT NULL,
   1301   `custom_field_id` int(11) NOT NULL,
   1302   `name` varchar(128) NOT NULL,
   1303   PRIMARY KEY (`custom_field_value_id`,`language_id`)
   1304 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   1305 
   1306 -----------------------------------------------------------
   1307 
   1308 --
   1309 -- Table structure for table `oc_download`
   1310 --
   1311 
   1312 DROP TABLE IF EXISTS `oc_download`;
   1313 CREATE TABLE `oc_download` (
   1314   `download_id` int(11) NOT NULL AUTO_INCREMENT,
   1315   `filename` varchar(160) NOT NULL,
   1316   `mask` varchar(128) NOT NULL,
   1317   `date_added` datetime NOT NULL,
   1318   PRIMARY KEY (`download_id`)
   1319 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   1320 
   1321 -----------------------------------------------------------
   1322 
   1323 --
   1324 -- Table structure for table `oc_download_description`
   1325 --
   1326 
   1327 DROP TABLE IF EXISTS `oc_download_description`;
   1328 CREATE TABLE `oc_download_description` (
   1329   `download_id` int(11) NOT NULL,
   1330   `language_id` int(11) NOT NULL,
   1331   `name` varchar(64) NOT NULL,
   1332   PRIMARY KEY (`download_id`,`language_id`)
   1333 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   1334 
   1335 -----------------------------------------------------------
   1336 
   1337 --
   1338 -- Table structure for table `oc_event`
   1339 --
   1340 
   1341 DROP TABLE IF EXISTS `oc_event`;
   1342 CREATE TABLE `oc_event` (
   1343   `event_id` int(11) NOT NULL AUTO_INCREMENT,
   1344   `code` varchar(64) NOT NULL,
   1345   `trigger` text NOT NULL,
   1346   `action` text NOT NULL,
   1347   `status` tinyint(1) NOT NULL,
   1348   `sort_order` int(3) NOT NULL,
   1349   PRIMARY KEY (`event_id`)
   1350 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   1351 
   1352 --
   1353 -- Dumping data for table `oc_event`
   1354 --
   1355 
   1356 INSERT INTO `oc_event` (`event_id`, `code`, `trigger`, `action`, `status`) VALUES
   1357 (1, 'activity_customer_add', 'catalog/model/account/customer/addCustomer/after', 'event/activity/addCustomer', 1);
   1358 INSERT INTO `oc_event` (`event_id`, `code`, `trigger`, `action`, `status`) VALUES
   1359 (2, 'activity_customer_edit', 'catalog/model/account/customer/editCustomer/after', 'event/activity/editCustomer', 1);
   1360 INSERT INTO `oc_event` (`event_id`, `code`, `trigger`, `action`, `status`) VALUES
   1361 (3, 'activity_customer_password', 'catalog/model/account/customer/editPassword/after', 'event/activity/editPassword', 1);
   1362 INSERT INTO `oc_event` (`event_id`, `code`, `trigger`, `action`, `status`) VALUES
   1363 (4, 'activity_customer_forgotten', 'catalog/model/account/customer/editCode/after', 'event/activity/forgotten', 1);
   1364 INSERT INTO `oc_event` (`event_id`, `code`, `trigger`, `action`, `status`) VALUES
   1365 (5, 'activity_transaction', 'catalog/model/account/customer/addTransaction/after', 'event/activity/addTransaction', 1);
   1366 INSERT INTO `oc_event` (`event_id`, `code`, `trigger`, `action`, `status`) VALUES
   1367 (6, 'activity_customer_login', 'catalog/model/account/customer/deleteLoginAttempts/after', 'event/activity/login', 1);
   1368 INSERT INTO `oc_event` (`event_id`, `code`, `trigger`, `action`, `status`) VALUES
   1369 (7, 'activity_address_add', 'catalog/model/account/address/addAddress/after', 'event/activity/addAddress', 1);
   1370 INSERT INTO `oc_event` (`event_id`, `code`, `trigger`, `action`, `status`) VALUES
   1371 (8, 'activity_address_edit', 'catalog/model/account/address/editAddress/after', 'event/activity/editAddress', 1);
   1372 INSERT INTO `oc_event` (`event_id`, `code`, `trigger`, `action`, `status`) VALUES
   1373 (9, 'activity_address_delete', 'catalog/model/account/address/deleteAddress/after', 'event/activity/deleteAddress', 1);
   1374 INSERT INTO `oc_event` (`event_id`, `code`, `trigger`, `action`, `status`) VALUES
   1375 (10, 'activity_affiliate_add', 'catalog/model/account/customer/addAffiliate/after', 'event/activity/addAffiliate', 1);
   1376 INSERT INTO `oc_event` (`event_id`, `code`, `trigger`, `action`, `status`) VALUES
   1377 (11, 'activity_affiliate_edit', 'catalog/model/account/customer/editAffiliate/after', 'event/activity/editAffiliate', 1);
   1378 INSERT INTO `oc_event` (`event_id`, `code`, `trigger`, `action`, `status`) VALUES
   1379 (12, 'activity_order_add', 'catalog/model/checkout/order/addOrderHistory/before', 'event/activity/addOrderHistory', 1);
   1380 INSERT INTO `oc_event` (`event_id`, `code`, `trigger`, `action`, `status`) VALUES
   1381 (13, 'activity_return_add', 'catalog/model/account/return/addReturn/after', 'event/activity/addReturn', 1);
   1382 INSERT INTO `oc_event` (`event_id`, `code`, `trigger`, `action`, `status`) VALUES
   1383 (14, 'mail_transaction', 'catalog/model/account/customer/addTransaction/after', 'mail/transaction', 1);
   1384 INSERT INTO `oc_event` (`event_id`, `code`, `trigger`, `action`, `status`) VALUES
   1385 (15, 'mail_forgotten', 'catalog/model/account/customer/editCode/after', 'mail/forgotten', 1);
   1386 INSERT INTO `oc_event` (`event_id`, `code`, `trigger`, `action`, `status`) VALUES
   1387 (16, 'mail_customer_add', 'catalog/model/account/customer/addCustomer/after', 'mail/register', 1);
   1388 INSERT INTO `oc_event` (`event_id`, `code`, `trigger`, `action`, `status`) VALUES
   1389 (17, 'mail_customer_alert', 'catalog/model/account/customer/addCustomer/after', 'mail/register/alert', 1);
   1390 INSERT INTO `oc_event` (`event_id`, `code`, `trigger`, `action`, `status`) VALUES
   1391 (18, 'mail_affiliate_add', 'catalog/model/account/customer/addAffiliate/after', 'mail/affiliate', 1);
   1392 INSERT INTO `oc_event` (`event_id`, `code`, `trigger`, `action`, `status`) VALUES
   1393 (19, 'mail_affiliate_alert', 'catalog/model/account/customer/addAffiliate/after', 'mail/affiliate/alert', 1);
   1394 INSERT INTO `oc_event` (`event_id`, `code`, `trigger`, `action`, `status`) VALUES
   1395 (20, 'mail_voucher', 'catalog/model/checkout/order/addOrderHistory/after', 'extension/total/voucher/send', 1);
   1396 INSERT INTO `oc_event` (`event_id`, `code`, `trigger`, `action`, `status`) VALUES
   1397 (21, 'mail_order_add', 'catalog/model/checkout/order/addOrderHistory/before', 'mail/order', 1);
   1398 INSERT INTO `oc_event` (`event_id`, `code`, `trigger`, `action`, `status`) VALUES
   1399 (22, 'mail_order_alert', 'catalog/model/checkout/order/addOrderHistory/before', 'mail/order/alert', 1);
   1400 INSERT INTO `oc_event` (`event_id`, `code`, `trigger`, `action`, `status`) VALUES
   1401 (23, 'statistics_review_add', 'catalog/model/catalog/review/addReview/after', 'event/statistics/addReview', 1);
   1402 INSERT INTO `oc_event` (`event_id`, `code`, `trigger`, `action`, `status`) VALUES
   1403 (24, 'statistics_return_add', 'catalog/model/account/return/addReturn/after', 'event/statistics/addReturn', 1);
   1404 INSERT INTO `oc_event` (`event_id`, `code`, `trigger`, `action`, `status`) VALUES
   1405 (25, 'statistics_order_history', 'catalog/model/checkout/order/addOrderHistory/after', 'event/statistics/addOrderHistory', 1);
   1406 INSERT INTO `oc_event` (`event_id`, `code`, `trigger`, `action`, `status`) VALUES
   1407 (26, 'admin_mail_affiliate_approve', 'admin/model/customer/customer_approval/approveAffiliate/after', 'mail/affiliate/approve', 1);
   1408 INSERT INTO `oc_event` (`event_id`, `code`, `trigger`, `action`, `status`) VALUES
   1409 (27, 'admin_mail_affiliate_deny', 'admin/model/customer/customer_approval/denyAffiliate/after', 'mail/affiliate/deny', 1);
   1410 INSERT INTO `oc_event` (`event_id`, `code`, `trigger`, `action`, `status`) VALUES
   1411 (28, 'admin_mail_customer_approve', 'admin/model/customer/customer_approval/approveCustomer/after', 'mail/customer/approve', 1);
   1412 INSERT INTO `oc_event` (`event_id`, `code`, `trigger`, `action`, `status`) VALUES
   1413 (29, 'admin_mail_customer_deny', 'admin/model/customer/customer_approval/denyCustomer/after', 'mail/customer/deny', 1);
   1414 INSERT INTO `oc_event` (`event_id`, `code`, `trigger`, `action`, `status`) VALUES
   1415 (30, 'admin_mail_reward', 'admin/model/customer/customer/addReward/after', 'mail/reward', 1);
   1416 INSERT INTO `oc_event` (`event_id`, `code`, `trigger`, `action`, `status`) VALUES
   1417 (31, 'admin_mail_transaction', 'admin/model/customer/customer/addTransaction/after', 'mail/transaction', 1);
   1418 INSERT INTO `oc_event` (`event_id`, `code`, `trigger`, `action`, `status`) VALUES
   1419 (32, 'admin_mail_return', 'admin/model/sale/return/addReturn/after', 'mail/return', 1);
   1420 INSERT INTO `oc_event` (`event_id`, `code`, `trigger`, `action`, `status`) VALUES
   1421 (33, 'admin_mail_forgotten', 'admin/model/user/user/editCode/after', 'mail/forgotten', 1);
   1422 
   1423 -----------------------------------------------------------
   1424 
   1425 --
   1426 -- Table structure for table `oc_extension`
   1427 --
   1428 
   1429 DROP TABLE IF EXISTS `oc_extension`;
   1430 CREATE TABLE `oc_extension` (
   1431   `extension_id` int(11) NOT NULL AUTO_INCREMENT,
   1432   `type` varchar(32) NOT NULL,
   1433   `code` varchar(32) NOT NULL,
   1434   PRIMARY KEY (`extension_id`)
   1435 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   1436 
   1437 --
   1438 -- Dumping data for table `oc_extension`
   1439 --
   1440 
   1441 INSERT INTO `oc_extension` (`extension_id`, `type`, `code`) VALUES
   1442 (1, 'payment', 'cod'),
   1443 (2, 'total', 'shipping'),
   1444 (3, 'total', 'sub_total'),
   1445 (4, 'total', 'tax'),
   1446 (5, 'total', 'total'),
   1447 (6, 'module', 'banner'),
   1448 (7, 'module', 'carousel'),
   1449 (8, 'total', 'credit'),
   1450 (9, 'shipping', 'flat'),
   1451 (10, 'total', 'handling'),
   1452 (11, 'total', 'low_order_fee'),
   1453 (12, 'total', 'coupon'),
   1454 (13, 'module', 'category'),
   1455 (14, 'module', 'account'),
   1456 (15, 'total', 'reward'),
   1457 (16, 'total', 'voucher'),
   1458 (17, 'payment', 'free_checkout'),
   1459 (18, 'module', 'featured'),
   1460 (19, 'module', 'slideshow'),
   1461 (20, 'theme', 'default'),
   1462 (21, 'dashboard', 'activity'),
   1463 (22, 'dashboard', 'sale'),
   1464 (23, 'dashboard', 'recent'),
   1465 (24, 'dashboard', 'order'),
   1466 (25, 'dashboard', 'online'),
   1467 (26, 'dashboard', 'map'),
   1468 (27, 'dashboard', 'customer'),
   1469 (28, 'dashboard', 'chart'),
   1470 (29, 'report', 'sale_coupon'),
   1471 (31, 'report', 'customer_search'),
   1472 (32, 'report', 'customer_transaction'),
   1473 (33, 'report', 'product_purchased'),
   1474 (34, 'report', 'product_viewed'),
   1475 (35, 'report', 'sale_return'),
   1476 (36, 'report', 'sale_order'),
   1477 (37, 'report', 'sale_shipping'),
   1478 (38, 'report', 'sale_tax'),
   1479 (39, 'report', 'customer_activity'),
   1480 (40, 'report', 'customer_order'),
   1481 (41, 'report', 'customer_reward');
   1482 
   1483 -----------------------------------------------------------
   1484 
   1485 --
   1486 -- Table structure for table `oc_extension_install`
   1487 --
   1488 
   1489 DROP TABLE IF EXISTS `oc_extension_install`;
   1490 CREATE TABLE `oc_extension_install` (
   1491   `extension_install_id` int(11) NOT NULL AUTO_INCREMENT,
   1492   `extension_download_id` int(11) NOT NULL,
   1493   `filename` varchar(255) NOT NULL,
   1494   `date_added` datetime NOT NULL,
   1495   PRIMARY KEY (`extension_install_id`)
   1496 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   1497 
   1498 -----------------------------------------------------------
   1499 
   1500 --
   1501 -- Table structure for table `oc_extension_path`
   1502 --
   1503 
   1504 DROP TABLE IF EXISTS `oc_extension_path`;
   1505 CREATE TABLE `oc_extension_path` (
   1506   `extension_path_id` int(11) NOT NULL AUTO_INCREMENT,
   1507   `extension_install_id` int(11) NOT NULL,
   1508   `path` varchar(255) NOT NULL,
   1509   `date_added` datetime NOT NULL,
   1510   PRIMARY KEY (`extension_path_id`)
   1511 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   1512 
   1513 -----------------------------------------------------------
   1514 
   1515 --
   1516 -- Table structure for table `oc_filter`
   1517 --
   1518 
   1519 DROP TABLE IF EXISTS `oc_filter`;
   1520 CREATE TABLE `oc_filter` (
   1521   `filter_id` int(11) NOT NULL AUTO_INCREMENT,
   1522   `filter_group_id` int(11) NOT NULL,
   1523   `sort_order` int(3) NOT NULL,
   1524   PRIMARY KEY (`filter_id`)
   1525 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   1526 
   1527 -----------------------------------------------------------
   1528 
   1529 --
   1530 -- Table structure for table `oc_filter_description`
   1531 --
   1532 
   1533 DROP TABLE IF EXISTS `oc_filter_description`;
   1534 CREATE TABLE `oc_filter_description` (
   1535   `filter_id` int(11) NOT NULL,
   1536   `language_id` int(11) NOT NULL,
   1537   `filter_group_id` int(11) NOT NULL,
   1538   `name` varchar(64) NOT NULL,
   1539   PRIMARY KEY (`filter_id`,`language_id`)
   1540 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   1541 
   1542 -----------------------------------------------------------
   1543 
   1544 --
   1545 -- Table structure for table `oc_filter_group`
   1546 --
   1547 
   1548 DROP TABLE IF EXISTS `oc_filter_group`;
   1549 CREATE TABLE `oc_filter_group` (
   1550   `filter_group_id` int(11) NOT NULL AUTO_INCREMENT,
   1551   `sort_order` int(3) NOT NULL,
   1552   PRIMARY KEY (`filter_group_id`)
   1553 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   1554 
   1555 -----------------------------------------------------------
   1556 
   1557 --
   1558 -- Table structure for table `oc_filter_group_description`
   1559 --
   1560 
   1561 DROP TABLE IF EXISTS `oc_filter_group_description`;
   1562 CREATE TABLE `oc_filter_group_description` (
   1563   `filter_group_id` int(11) NOT NULL,
   1564   `language_id` int(11) NOT NULL,
   1565   `name` varchar(64) NOT NULL,
   1566   PRIMARY KEY (`filter_group_id`,`language_id`)
   1567 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   1568 
   1569 -----------------------------------------------------------
   1570 
   1571 --
   1572 -- Table structure for table `oc_geo_zone`
   1573 --
   1574 
   1575 DROP TABLE IF EXISTS `oc_geo_zone`;
   1576 CREATE TABLE `oc_geo_zone` (
   1577   `geo_zone_id` int(11) NOT NULL AUTO_INCREMENT,
   1578   `name` varchar(32) NOT NULL,
   1579   `description` varchar(255) NOT NULL,
   1580   `date_added` datetime NOT NULL,
   1581   `date_modified` datetime NOT NULL,
   1582   PRIMARY KEY (`geo_zone_id`)
   1583 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   1584 
   1585 --
   1586 -- Dumping data for table `oc_geo_zone`
   1587 --
   1588 
   1589 INSERT INTO `oc_geo_zone` (`geo_zone_id`, `name`, `description`, `date_modified`, `date_added`) VALUES
   1590 (3, 'UK VAT Zone', 'UK VAT', '2010-02-26 22:33:24', '2009-01-06 23:26:25'),
   1591 (4, 'UK Shipping', 'UK Shipping Zones', '2010-12-15 15:18:13', '2009-06-23 01:14:53');
   1592 
   1593 -----------------------------------------------------------
   1594 
   1595 --
   1596 -- Table structure for table `oc_information`
   1597 --
   1598 
   1599 DROP TABLE IF EXISTS `oc_information`;
   1600 CREATE TABLE `oc_information` (
   1601   `information_id` int(11) NOT NULL AUTO_INCREMENT,
   1602   `bottom` int(1) NOT NULL DEFAULT '0',
   1603   `sort_order` int(3) NOT NULL DEFAULT '0',
   1604   `status` tinyint(1) NOT NULL DEFAULT '1',
   1605   PRIMARY KEY (`information_id`)
   1606 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   1607 
   1608 --
   1609 -- Dumping data for table `oc_information`
   1610 --
   1611 
   1612 INSERT INTO `oc_information` (`information_id`, `bottom`, `sort_order`, `status`) VALUES
   1613 (3, 1, 3, 1),
   1614 (4, 1, 1, 1),
   1615 (5, 1, 4, 1),
   1616 (6, 1, 2, 1);
   1617 
   1618 -----------------------------------------------------------
   1619 
   1620 --
   1621 -- Table structure for table `oc_information_description`
   1622 --
   1623 
   1624 DROP TABLE IF EXISTS `oc_information_description`;
   1625 CREATE TABLE `oc_information_description` (
   1626   `information_id` int(11) NOT NULL,
   1627   `language_id` int(11) NOT NULL,
   1628   `title` varchar(64) NOT NULL,
   1629   `description` mediumtext NOT NULL,
   1630   `meta_title` varchar(255) NOT NULL,
   1631   `meta_description` varchar(255) NOT NULL,
   1632   `meta_keyword` varchar(255) NOT NULL,
   1633   PRIMARY KEY (`information_id`,`language_id`)
   1634 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   1635 
   1636 --
   1637 -- Dumping data for table `oc_information_description`
   1638 --
   1639 
   1640 INSERT INTO `oc_information_description` (`information_id`, `language_id`, `title`, `description`, `meta_title`, `meta_description`, `meta_keyword`) VALUES
   1641 (4, 1, 'About Us', '<p>\r\n	About Us</p>\r\n', 'About Us', '', ''),
   1642 (5, 1, 'Terms & Conditions', '<p>\r\n	Terms & Conditions</p>\r\n', 'Terms & Conditions', '', ''),
   1643 (3, 1, 'Privacy Policy', '<p>\r\n	Privacy Policy</p>\r\n', 'Privacy Policy', '', ''),
   1644 (6, 1, 'Delivery Information', '<p>\r\n	Delivery Information</p>\r\n', 'Delivery Information', '', '');
   1645 
   1646 -----------------------------------------------------------
   1647 
   1648 --
   1649 -- Table structure for table `oc_information_to_layout`
   1650 --
   1651 
   1652 DROP TABLE IF EXISTS `oc_information_to_layout`;
   1653 CREATE TABLE `oc_information_to_layout` (
   1654   `information_id` int(11) NOT NULL,
   1655   `store_id` int(11) NOT NULL,
   1656   `layout_id` int(11) NOT NULL,
   1657   PRIMARY KEY (`information_id`,`store_id`)
   1658 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   1659 
   1660 -----------------------------------------------------------
   1661 
   1662 --
   1663 -- Table structure for table `oc_information_to_store`
   1664 --
   1665 
   1666 DROP TABLE IF EXISTS `oc_information_to_store`;
   1667 CREATE TABLE `oc_information_to_store` (
   1668   `information_id` int(11) NOT NULL,
   1669   `store_id` int(11) NOT NULL,
   1670   PRIMARY KEY (`information_id`,`store_id`)
   1671 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   1672 
   1673 --
   1674 -- Dumping data for table `oc_information_to_store`
   1675 --
   1676 
   1677 INSERT INTO `oc_information_to_store` (`information_id`, `store_id`) VALUES
   1678 (3, 0),
   1679 (4, 0),
   1680 (5, 0),
   1681 (6, 0);
   1682 
   1683 -----------------------------------------------------------
   1684 
   1685 --
   1686 -- Table structure for table `oc_language`
   1687 --
   1688 
   1689 DROP TABLE IF EXISTS `oc_language`;
   1690 CREATE TABLE `oc_language` (
   1691   `language_id` int(11) NOT NULL AUTO_INCREMENT,
   1692   `name` varchar(32) NOT NULL,
   1693   `code` varchar(5) NOT NULL,
   1694   `locale` varchar(255) NOT NULL,
   1695   `image` varchar(64) NOT NULL,
   1696   `directory` varchar(32) NOT NULL,
   1697   `sort_order` int(3) NOT NULL DEFAULT '0',
   1698   `status` tinyint(1) NOT NULL,
   1699   PRIMARY KEY (`language_id`),
   1700   KEY `name` (`name`)
   1701 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   1702 
   1703 --
   1704 -- Dumping data for table `oc_language`
   1705 --
   1706 
   1707 INSERT INTO `oc_language` (`language_id`, `name`, `code`, `locale`, `image`, `directory`, `sort_order`, `status`) VALUES
   1708 (1, 'English', 'en-gb', 'en-US,en_US.UTF-8,en_US,en-gb,english', 'gb.png', 'english', 1, 1);
   1709 
   1710 -----------------------------------------------------------
   1711 
   1712 --
   1713 -- Table structure for table `oc_layout`
   1714 --
   1715 
   1716 DROP TABLE IF EXISTS `oc_layout`;
   1717 CREATE TABLE `oc_layout` (
   1718   `layout_id` int(11) NOT NULL AUTO_INCREMENT,
   1719   `name` varchar(64) NOT NULL,
   1720   PRIMARY KEY (`layout_id`)
   1721 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   1722 
   1723 --
   1724 -- Dumping data for table `oc_layout`
   1725 --
   1726 
   1727 INSERT INTO `oc_layout` (`layout_id`, `name`) VALUES
   1728 (1, 'Home'),
   1729 (2, 'Product'),
   1730 (3, 'Category'),
   1731 (4, 'Default'),
   1732 (5, 'Manufacturer'),
   1733 (6, 'Account'),
   1734 (7, 'Checkout'),
   1735 (8, 'Contact'),
   1736 (9, 'Sitemap'),
   1737 (10, 'Affiliate'),
   1738 (11, 'Information'),
   1739 (12, 'Compare'),
   1740 (13, 'Search');
   1741 
   1742 -----------------------------------------------------------
   1743 
   1744 --
   1745 -- Table structure for table `oc_layout_module`
   1746 --
   1747 
   1748 DROP TABLE IF EXISTS `oc_layout_module`;
   1749 CREATE TABLE `oc_layout_module` (
   1750   `layout_module_id` int(11) NOT NULL AUTO_INCREMENT,
   1751   `layout_id` int(11) NOT NULL,
   1752   `code` varchar(64) NOT NULL,
   1753   `position` varchar(14) NOT NULL,
   1754   `sort_order` int(3) NOT NULL,
   1755   PRIMARY KEY (`layout_module_id`)
   1756 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   1757 
   1758 --
   1759 -- Dumping data for table `oc_layout_module`
   1760 --
   1761 
   1762 INSERT INTO `oc_layout_module` (`layout_module_id`, `layout_id`, `code`, `position`, `sort_order`) VALUES
   1763 (2, 4, '0', 'content_top', 0),
   1764 (3, 4, '0', 'content_top', 1),
   1765 (20, 5, '0', 'column_left', 2),
   1766 (69, 10, 'account', 'column_right', 1),
   1767 (68, 6, 'account', 'column_right', 1),
   1768 (67, 1, 'carousel.29', 'content_top', 3),
   1769 (66, 1, 'slideshow.27', 'content_top', 1),
   1770 (65, 1, 'featured.28', 'content_top', 2),
   1771 (72, 3, 'category', 'column_left', 1),
   1772 (73, 3, 'banner.30', 'column_left', 2);
   1773 
   1774 -----------------------------------------------------------
   1775 
   1776 --
   1777 -- Table structure for table `oc_layout_route`
   1778 --
   1779 
   1780 DROP TABLE IF EXISTS `oc_layout_route`;
   1781 CREATE TABLE `oc_layout_route` (
   1782   `layout_route_id` int(11) NOT NULL AUTO_INCREMENT,
   1783   `layout_id` int(11) NOT NULL,
   1784   `store_id` int(11) NOT NULL,
   1785   `route` varchar(64) NOT NULL,
   1786   PRIMARY KEY (`layout_route_id`)
   1787 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   1788 
   1789 --
   1790 -- Dumping data for table `oc_layout_route`
   1791 --
   1792 
   1793 INSERT INTO `oc_layout_route` (`layout_route_id`, `layout_id`, `store_id`, `route`) VALUES
   1794 (38, 6, 0, 'account/%'),
   1795 (17, 10, 0, 'affiliate/%'),
   1796 (44, 3, 0, 'product/category'),
   1797 (42, 1, 0, 'common/home'),
   1798 (20, 2, 0, 'product/product'),
   1799 (24, 11, 0, 'information/information'),
   1800 (23, 7, 0, 'checkout/%'),
   1801 (31, 8, 0, 'information/contact'),
   1802 (32, 9, 0, 'information/sitemap'),
   1803 (34, 4, 0, ''),
   1804 (45, 5, 0, 'product/manufacturer'),
   1805 (52, 12, 0, 'product/compare'),
   1806 (53, 13, 0, 'product/search');
   1807 
   1808 -----------------------------------------------------------
   1809 
   1810 --
   1811 -- Table structure for table `oc_length_class`
   1812 --
   1813 
   1814 DROP TABLE IF EXISTS `oc_length_class`;
   1815 CREATE TABLE `oc_length_class` (
   1816   `length_class_id` int(11) NOT NULL AUTO_INCREMENT,
   1817   `value` decimal(15,8) NOT NULL,
   1818   PRIMARY KEY (`length_class_id`)
   1819 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   1820 
   1821 --
   1822 -- Dumping data for table `oc_length_class`
   1823 --
   1824 
   1825 INSERT INTO `oc_length_class` (`length_class_id`, `value`) VALUES
   1826 (1, '1.00000000'),
   1827 (2, '10.00000000'),
   1828 (3, '0.39370000');
   1829 
   1830 -----------------------------------------------------------
   1831 
   1832 --
   1833 -- Table structure for table `oc_length_class_description`
   1834 --
   1835 
   1836 DROP TABLE IF EXISTS `oc_length_class_description`;
   1837 CREATE TABLE `oc_length_class_description` (
   1838   `length_class_id` int(11) NOT NULL,
   1839   `language_id` int(11) NOT NULL,
   1840   `title` varchar(32) NOT NULL,
   1841   `unit` varchar(4) NOT NULL,
   1842   PRIMARY KEY (`length_class_id`,`language_id`)
   1843 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   1844 
   1845 --
   1846 -- Dumping data for table `oc_length_class_description`
   1847 --
   1848 
   1849 INSERT INTO `oc_length_class_description` (`length_class_id`, `language_id`, `title`, `unit`) VALUES
   1850 (1, 1, 'Centimeter', 'cm'),
   1851 (2, 1, 'Millimeter', 'mm'),
   1852 (3, 1, 'Inch', 'in');
   1853 
   1854 -----------------------------------------------------------
   1855 
   1856 --
   1857 -- Table structure for table `oc_location`
   1858 --
   1859 
   1860 DROP TABLE IF EXISTS `oc_location`;
   1861 CREATE TABLE `oc_location` (
   1862   `location_id` int(11) NOT NULL AUTO_INCREMENT,
   1863   `name` varchar(32) NOT NULL,
   1864   `address` text NOT NULL,
   1865   `telephone` varchar(32) NOT NULL,
   1866   `fax` varchar(32) NOT NULL,
   1867   `geocode` varchar(32) NOT NULL,
   1868   `image` varchar(255) DEFAULT NULL,
   1869   `open` text NOT NULL,
   1870   `comment` text NOT NULL,
   1871   PRIMARY KEY (`location_id`),
   1872   KEY `name` (`name`)
   1873 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   1874 
   1875 -----------------------------------------------------------
   1876 
   1877 --
   1878 -- Table structure for table `oc_manufacturer`
   1879 --
   1880 
   1881 DROP TABLE IF EXISTS `oc_manufacturer`;
   1882 CREATE TABLE `oc_manufacturer` (
   1883   `manufacturer_id` int(11) NOT NULL AUTO_INCREMENT,
   1884   `name` varchar(64) NOT NULL,
   1885   `image` varchar(255) DEFAULT NULL,
   1886   `sort_order` int(3) NOT NULL,
   1887   PRIMARY KEY (`manufacturer_id`)
   1888 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   1889 
   1890 --
   1891 -- Dumping data for table `oc_manufacturer`
   1892 --
   1893 
   1894 INSERT INTO `oc_manufacturer` (`manufacturer_id`, `name`, `image`, `sort_order`) VALUES
   1895 (5, 'HTC', 'catalog/demo/htc_logo.jpg', 0),
   1896 (6, 'Palm', 'catalog/demo/palm_logo.jpg', 0),
   1897 (7, 'Hewlett-Packard', 'catalog/demo/hp_logo.jpg', 0),
   1898 (8, 'Apple', 'catalog/demo/apple_logo.jpg', 0),
   1899 (9, 'Canon', 'catalog/demo/canon_logo.jpg', 0),
   1900 (10, 'Sony', 'catalog/demo/sony_logo.jpg', 0);
   1901 
   1902 -----------------------------------------------------------
   1903 
   1904 --
   1905 -- Table structure for table `oc_manufacturer_to_store`
   1906 --
   1907 
   1908 DROP TABLE IF EXISTS `oc_manufacturer_to_store`;
   1909 CREATE TABLE `oc_manufacturer_to_store` (
   1910   `manufacturer_id` int(11) NOT NULL,
   1911   `store_id` int(11) NOT NULL,
   1912   PRIMARY KEY (`manufacturer_id`,`store_id`)
   1913 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   1914 
   1915 --
   1916 -- Dumping data for table `oc_manufacturer_to_store`
   1917 --
   1918 
   1919 INSERT INTO `oc_manufacturer_to_store` (`manufacturer_id`, `store_id`) VALUES
   1920 (5, 0),
   1921 (6, 0),
   1922 (7, 0),
   1923 (8, 0),
   1924 (9, 0),
   1925 (10, 0);
   1926 
   1927 -----------------------------------------------------------
   1928 
   1929 --
   1930 -- Table structure for table `oc_marketing`
   1931 --
   1932 
   1933 DROP TABLE IF EXISTS `oc_marketing`;
   1934 CREATE TABLE `oc_marketing` (
   1935   `marketing_id` int(11) NOT NULL AUTO_INCREMENT,
   1936   `name` varchar(32) NOT NULL,
   1937   `description` text NOT NULL,
   1938   `code` varchar(64) NOT NULL,
   1939   `clicks` int(5) NOT NULL DEFAULT '0',
   1940   `date_added` datetime NOT NULL,
   1941   PRIMARY KEY (`marketing_id`)
   1942 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   1943 
   1944 -------------------------------------------------------------
   1945 
   1946 --
   1947 -- Table structure for table `oc_modification`
   1948 --
   1949 
   1950 DROP TABLE IF EXISTS `oc_modification`;
   1951 CREATE TABLE `oc_modification` (
   1952   `modification_id` int(11) NOT NULL AUTO_INCREMENT,
   1953   `extension_install_id` int(11) NOT NULL,
   1954   `name` varchar(64) NOT NULL,
   1955   `code` varchar(64) NOT NULL,
   1956   `author` varchar(64) NOT NULL,
   1957   `version` varchar(32) NOT NULL,
   1958   `link` varchar(255) NOT NULL,
   1959   `xml` mediumtext NOT NULL,
   1960   `status` tinyint(1) NOT NULL,
   1961   `date_added` datetime NOT NULL,
   1962   PRIMARY KEY (`modification_id`)
   1963 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   1964 
   1965 -------------------------------------------------------------
   1966 
   1967 -- Table structure for table `oc_module`
   1968 --
   1969 
   1970 DROP TABLE IF EXISTS `oc_module`;
   1971 CREATE TABLE `oc_module` (
   1972   `module_id` int(11) NOT NULL AUTO_INCREMENT,
   1973   `name` varchar(64) NOT NULL,
   1974   `code` varchar(32) NOT NULL,
   1975   `setting` text NOT NULL,
   1976   PRIMARY KEY (`module_id`)
   1977 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   1978 
   1979 --
   1980 -- Dumping data for table `oc_module`
   1981 --
   1982 
   1983 INSERT INTO `oc_module` (`module_id`, `name`, `code`, `setting`) VALUES
   1984 (30, 'Category', 'banner', '{"name":"Category","banner_id":"6","width":"182","height":"182","status":"1"}'),
   1985 (29, 'Home Page', 'carousel', '{"name":"Home Page","banner_id":"8","width":"130","height":"100","status":"1"}'),
   1986 (28, 'Home Page', 'featured', '{"name":"Home Page","product":["43","40","42","30"],"limit":"4","width":"200","height":"200","status":"1"}'),
   1987 (27, 'Home Page', 'slideshow', '{"name":"Home Page","banner_id":"7","width":"1140","height":"380","status":"1"}'),
   1988 (31, 'Banner 1', 'banner', '{"name":"Banner 1","banner_id":"6","width":"182","height":"182","status":"1"}');
   1989 
   1990 -----------------------------------------------------------
   1991 
   1992 --
   1993 -- Table structure for table `oc_option`
   1994 --
   1995 
   1996 DROP TABLE IF EXISTS `oc_option`;
   1997 CREATE TABLE `oc_option` (
   1998   `option_id` int(11) NOT NULL AUTO_INCREMENT,
   1999   `type` varchar(32) NOT NULL,
   2000   `sort_order` int(3) NOT NULL,
   2001   PRIMARY KEY (`option_id`)
   2002 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   2003 
   2004 --
   2005 -- Dumping data for table `oc_option`
   2006 --
   2007 
   2008 INSERT INTO `oc_option` (`option_id`, `type`, `sort_order`) VALUES
   2009 (1, 'radio', 1),
   2010 (2, 'checkbox', 2),
   2011 (4, 'text', 3),
   2012 (5, 'select', 4),
   2013 (6, 'textarea', 5),
   2014 (7, 'file', 6),
   2015 (8, 'date', 7),
   2016 (9, 'time', 8),
   2017 (10, 'datetime', 9),
   2018 (11, 'select', 10),
   2019 (12, 'date', 11);
   2020 
   2021 -----------------------------------------------------------
   2022 
   2023 --
   2024 -- Table structure for table `oc_option_description`
   2025 --
   2026 
   2027 DROP TABLE IF EXISTS `oc_option_description`;
   2028 CREATE TABLE `oc_option_description` (
   2029   `option_id` int(11) NOT NULL,
   2030   `language_id` int(11) NOT NULL,
   2031   `name` varchar(128) NOT NULL,
   2032   PRIMARY KEY (`option_id`,`language_id`)
   2033 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   2034 
   2035 --
   2036 -- Dumping data for table `oc_option_description`
   2037 --
   2038 
   2039 INSERT INTO `oc_option_description` (`option_id`, `language_id`, `name`) VALUES
   2040 (1, 1, 'Radio'),
   2041 (2, 1, 'Checkbox'),
   2042 (4, 1, 'Text'),
   2043 (6, 1, 'Textarea'),
   2044 (8, 1, 'Date'),
   2045 (7, 1, 'File'),
   2046 (5, 1, 'Select'),
   2047 (9, 1, 'Time'),
   2048 (10, 1, 'Date & Time'),
   2049 (12, 1, 'Delivery Date'),
   2050 (11, 1, 'Size');
   2051 
   2052 -----------------------------------------------------------
   2053 
   2054 --
   2055 -- Table structure for table `oc_option_value`
   2056 --
   2057 
   2058 DROP TABLE IF EXISTS `oc_option_value`;
   2059 CREATE TABLE `oc_option_value` (
   2060   `option_value_id` int(11) NOT NULL AUTO_INCREMENT,
   2061   `option_id` int(11) NOT NULL,
   2062   `image` varchar(255) NOT NULL,
   2063   `sort_order` int(3) NOT NULL,
   2064   PRIMARY KEY (`option_value_id`)
   2065 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   2066 
   2067 --
   2068 -- Dumping data for table `oc_option_value`
   2069 --
   2070 
   2071 INSERT INTO `oc_option_value` (`option_value_id`, `option_id`, `image`, `sort_order`) VALUES
   2072 (43, 1, '', 3),
   2073 (32, 1, '', 1),
   2074 (45, 2, '', 4),
   2075 (44, 2, '', 3),
   2076 (42, 5, '', 4),
   2077 (41, 5, '', 3),
   2078 (39, 5, '', 1),
   2079 (40, 5, '', 2),
   2080 (31, 1, '', 2),
   2081 (23, 2, '', 1),
   2082 (24, 2, '', 2),
   2083 (46, 11, '', 1),
   2084 (47, 11, '', 2),
   2085 (48, 11, '', 3);
   2086 
   2087 -----------------------------------------------------------
   2088 
   2089 --
   2090 -- Table structure for table `oc_option_value_description`
   2091 --
   2092 
   2093 DROP TABLE IF EXISTS `oc_option_value_description`;
   2094 CREATE TABLE `oc_option_value_description` (
   2095   `option_value_id` int(11) NOT NULL,
   2096   `language_id` int(11) NOT NULL,
   2097   `option_id` int(11) NOT NULL,
   2098   `name` varchar(128) NOT NULL,
   2099   PRIMARY KEY (`option_value_id`,`language_id`)
   2100 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   2101 
   2102 --
   2103 -- Dumping data for table `oc_option_value_description`
   2104 --
   2105 
   2106 INSERT INTO `oc_option_value_description` (`option_value_id`, `language_id`, `option_id`, `name`) VALUES
   2107 (43, 1, 1, 'Large'),
   2108 (32, 1, 1, 'Small'),
   2109 (45, 1, 2, 'Checkbox 4'),
   2110 (44, 1, 2, 'Checkbox 3'),
   2111 (31, 1, 1, 'Medium'),
   2112 (42, 1, 5, 'Yellow'),
   2113 (41, 1, 5, 'Green'),
   2114 (39, 1, 5, 'Red'),
   2115 (40, 1, 5, 'Blue'),
   2116 (23, 1, 2, 'Checkbox 1'),
   2117 (24, 1, 2, 'Checkbox 2'),
   2118 (48, 1, 11, 'Large'),
   2119 (47, 1, 11, 'Medium'),
   2120 (46, 1, 11, 'Small');
   2121 
   2122 -----------------------------------------------------------
   2123 
   2124 --
   2125 -- Table structure for table `oc_order`
   2126 --
   2127 
   2128 DROP TABLE IF EXISTS `oc_order`;
   2129 CREATE TABLE `oc_order` (
   2130   `order_id` int(11) NOT NULL AUTO_INCREMENT,
   2131   `invoice_no` int(11) NOT NULL DEFAULT '0',
   2132   `invoice_prefix` varchar(26) NOT NULL,
   2133   `store_id` int(11) NOT NULL DEFAULT '0',
   2134   `store_name` varchar(64) NOT NULL,
   2135   `store_url` varchar(255) NOT NULL,
   2136   `customer_id` int(11) NOT NULL DEFAULT '0',
   2137   `customer_group_id` int(11) NOT NULL DEFAULT '0',
   2138   `firstname` varchar(32) NOT NULL,
   2139   `lastname` varchar(32) NOT NULL,
   2140   `email` varchar(96) NOT NULL,
   2141   `telephone` varchar(32) NOT NULL,
   2142   `fax` varchar(32) NOT NULL,
   2143   `custom_field` text NOT NULL,
   2144   `payment_firstname` varchar(32) NOT NULL,
   2145   `payment_lastname` varchar(32) NOT NULL,
   2146   `payment_company` varchar(60) NOT NULL,
   2147   `payment_address_1` varchar(128) NOT NULL,
   2148   `payment_address_2` varchar(128) NOT NULL,
   2149   `payment_city` varchar(128) NOT NULL,
   2150   `payment_postcode` varchar(10) NOT NULL,
   2151   `payment_country` varchar(128) NOT NULL,
   2152   `payment_country_id` int(11) NOT NULL,
   2153   `payment_zone` varchar(128) NOT NULL,
   2154   `payment_zone_id` int(11) NOT NULL,
   2155   `payment_address_format` text NOT NULL,
   2156   `payment_custom_field` text NOT NULL,
   2157   `payment_method` varchar(128) NOT NULL,
   2158   `payment_code` varchar(128) NOT NULL,
   2159   `shipping_firstname` varchar(32) NOT NULL,
   2160   `shipping_lastname` varchar(32) NOT NULL,
   2161   `shipping_company` varchar(40) NOT NULL,
   2162   `shipping_address_1` varchar(128) NOT NULL,
   2163   `shipping_address_2` varchar(128) NOT NULL,
   2164   `shipping_city` varchar(128) NOT NULL,
   2165   `shipping_postcode` varchar(10) NOT NULL,
   2166   `shipping_country` varchar(128) NOT NULL,
   2167   `shipping_country_id` int(11) NOT NULL,
   2168   `shipping_zone` varchar(128) NOT NULL,
   2169   `shipping_zone_id` int(11) NOT NULL,
   2170   `shipping_address_format` text NOT NULL,
   2171   `shipping_custom_field` text NOT NULL,
   2172   `shipping_method` varchar(128) NOT NULL,
   2173   `shipping_code` varchar(128) NOT NULL,
   2174   `comment` text NOT NULL,
   2175   `total` decimal(15,4) NOT NULL DEFAULT '0.0000',
   2176   `order_status_id` int(11) NOT NULL DEFAULT '0',
   2177   `affiliate_id` int(11) NOT NULL,
   2178   `commission` decimal(15,4) NOT NULL,
   2179   `marketing_id` int(11) NOT NULL,
   2180   `tracking` varchar(64) NOT NULL,
   2181   `language_id` int(11) NOT NULL,
   2182   `currency_id` int(11) NOT NULL,
   2183   `currency_code` varchar(3) NOT NULL,
   2184   `currency_value` decimal(15,8) NOT NULL DEFAULT '1.00000000',
   2185   `ip` varchar(40) NOT NULL,
   2186   `forwarded_ip` varchar(40) NOT NULL,
   2187   `user_agent` varchar(255) NOT NULL,
   2188   `accept_language` varchar(255) NOT NULL,
   2189   `date_added` datetime NOT NULL,
   2190   `date_modified` datetime NOT NULL,
   2191   PRIMARY KEY (`order_id`)
   2192 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   2193 
   2194 -----------------------------------------------------------
   2195 
   2196 --
   2197 -- Table structure for table `oc_order_history`
   2198 --
   2199 
   2200 DROP TABLE IF EXISTS `oc_order_history`;
   2201 CREATE TABLE `oc_order_history` (
   2202   `order_history_id` int(11) NOT NULL AUTO_INCREMENT,
   2203   `order_id` int(11) NOT NULL,
   2204   `order_status_id` int(11) NOT NULL,
   2205   `notify` tinyint(1) NOT NULL DEFAULT '0',
   2206   `comment` text NOT NULL,
   2207   `date_added` datetime NOT NULL,
   2208   PRIMARY KEY (`order_history_id`)
   2209 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   2210 
   2211 -----------------------------------------------------------
   2212 
   2213 --
   2214 -- Table structure for table `oc_order_option`
   2215 --
   2216 
   2217 DROP TABLE IF EXISTS `oc_order_option`;
   2218 CREATE TABLE `oc_order_option` (
   2219   `order_option_id` int(11) NOT NULL AUTO_INCREMENT,
   2220   `order_id` int(11) NOT NULL,
   2221   `order_product_id` int(11) NOT NULL,
   2222   `product_option_id` int(11) NOT NULL,
   2223   `product_option_value_id` int(11) NOT NULL DEFAULT '0',
   2224   `name` varchar(255) NOT NULL,
   2225   `value` text NOT NULL,
   2226   `type` varchar(32) NOT NULL,
   2227   PRIMARY KEY (`order_option_id`)
   2228 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   2229 
   2230 -----------------------------------------------------------
   2231 
   2232 --
   2233 -- Table structure for table `oc_order_product`
   2234 --
   2235 
   2236 DROP TABLE IF EXISTS `oc_order_product`;
   2237 CREATE TABLE `oc_order_product` (
   2238   `order_product_id` int(11) NOT NULL AUTO_INCREMENT,
   2239   `order_id` int(11) NOT NULL,
   2240   `product_id` int(11) NOT NULL,
   2241   `name` varchar(255) NOT NULL,
   2242   `model` varchar(64) NOT NULL,
   2243   `quantity` int(4) NOT NULL,
   2244   `price` decimal(15,4) NOT NULL DEFAULT '0.0000',
   2245   `total` decimal(15,4) NOT NULL DEFAULT '0.0000',
   2246   `tax` decimal(15,4) NOT NULL DEFAULT '0.0000',
   2247   `reward` int(8) NOT NULL,
   2248   PRIMARY KEY (`order_product_id`),
   2249   KEY `order_id` (`order_id`)
   2250 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   2251 
   2252 -----------------------------------------------------------
   2253 
   2254 --
   2255 -- Table structure for table `oc_order_recurring`
   2256 --
   2257 
   2258 DROP TABLE IF EXISTS `oc_order_recurring`;
   2259 CREATE TABLE `oc_order_recurring` (
   2260   `order_recurring_id` int(11) NOT NULL AUTO_INCREMENT,
   2261   `order_id` int(11) NOT NULL,
   2262   `reference` varchar(255) NOT NULL,
   2263   `product_id` int(11) NOT NULL,
   2264   `product_name` varchar(255) NOT NULL,
   2265   `product_quantity` int(11) NOT NULL,
   2266   `recurring_id` int(11) NOT NULL,
   2267   `recurring_name` varchar(255) NOT NULL,
   2268   `recurring_description` varchar(255) NOT NULL,
   2269   `recurring_frequency` varchar(25) NOT NULL,
   2270   `recurring_cycle` smallint(6) NOT NULL,
   2271   `recurring_duration` smallint(6) NOT NULL,
   2272   `recurring_price` decimal(10,4) NOT NULL,
   2273   `trial` tinyint(1) NOT NULL,
   2274   `trial_frequency` varchar(25) NOT NULL,
   2275   `trial_cycle` smallint(6) NOT NULL,
   2276   `trial_duration` smallint(6) NOT NULL,
   2277   `trial_price` decimal(10,4) NOT NULL,
   2278   `status` tinyint(4) NOT NULL,
   2279   `date_added` datetime NOT NULL,
   2280   PRIMARY KEY (`order_recurring_id`)
   2281 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   2282 
   2283 -----------------------------------------------------------
   2284 
   2285 --
   2286 -- Table structure for table `oc_order_recurring_transaction`
   2287 --
   2288 
   2289 DROP TABLE IF EXISTS `oc_order_recurring_transaction`;
   2290 CREATE TABLE `oc_order_recurring_transaction` (
   2291   `order_recurring_transaction_id` int(11) NOT NULL AUTO_INCREMENT,
   2292   `order_recurring_id` int(11) NOT NULL,
   2293   `reference` varchar(255) NOT NULL,
   2294   `type` varchar(255) NOT NULL,
   2295   `amount` decimal(10,4) NOT NULL,
   2296   `date_added` datetime NOT NULL,
   2297   PRIMARY KEY (`order_recurring_transaction_id`)
   2298 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   2299 
   2300 -----------------------------------------------------------
   2301 
   2302 --
   2303 -- Table structure for table `oc_order_shipment`
   2304 --
   2305 
   2306 DROP TABLE IF EXISTS `oc_order_shipment`;
   2307 CREATE TABLE `oc_order_shipment` (
   2308   `order_shipment_id` int(11) NOT NULL AUTO_INCREMENT,
   2309   `order_id` int(11) NOT NULL,
   2310   `date_added` datetime NOT NULL,
   2311   `shipping_courier_id` varchar(255) NOT NULL DEFAULT '',
   2312   `tracking_number` varchar(255) NOT NULL DEFAULT '',
   2313   PRIMARY KEY (`order_shipment_id`)
   2314 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
   2315 
   2316 -- --------------------------------------------------------
   2317 
   2318 --
   2319 -- Table structure for table `oc_shipping_courier`
   2320 --
   2321 
   2322 DROP TABLE IF EXISTS `oc_shipping_courier`;
   2323 CREATE TABLE `oc_shipping_courier` (
   2324   `shipping_courier_id` int(11) NOT NULL,
   2325   `shipping_courier_code` varchar(255) NOT NULL DEFAULT '',
   2326   `shipping_courier_name` varchar(255) NOT NULL DEFAULT '',
   2327   PRIMARY KEY (`shipping_courier_id`)
   2328 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
   2329 
   2330 --
   2331 -- Dumping data for table `oc_shipping_courier`
   2332 --
   2333 
   2334 INSERT INTO `oc_shipping_courier` (`shipping_courier_id`, `shipping_courier_code`, `shipping_courier_name`) VALUES
   2335   (1, 'dhl', 'DHL'),
   2336   (2, 'fedex', 'Fedex'),
   2337   (3, 'ups', 'UPS'),
   2338   (4, 'royal-mail', 'Royal Mail'),
   2339   (5, 'usps', 'United States Postal Service'),
   2340   (6, 'auspost', 'Australia Post'),
   2341   (7, 'citylink', 'Citylink');
   2342 
   2343 -----------------------------------------------------------
   2344 
   2345 --
   2346 -- Table structure for table `oc_order_status`
   2347 --
   2348 
   2349 DROP TABLE IF EXISTS `oc_order_status`;
   2350 CREATE TABLE `oc_order_status` (
   2351   `order_status_id` int(11) NOT NULL AUTO_INCREMENT,
   2352   `language_id` int(11) NOT NULL,
   2353   `name` varchar(32) NOT NULL,
   2354   PRIMARY KEY (`order_status_id`,`language_id`)
   2355 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   2356 
   2357 --
   2358 -- Dumping data for table `oc_order_status`
   2359 --
   2360 
   2361 INSERT INTO `oc_order_status` (`order_status_id`, `language_id`, `name`) VALUES
   2362 (2, 1, 'Processing'),
   2363 (3, 1, 'Shipped'),
   2364 (7, 1, 'Canceled'),
   2365 (5, 1, 'Complete'),
   2366 (8, 1, 'Denied'),
   2367 (9, 1, 'Canceled Reversal'),
   2368 (10, 1, 'Failed'),
   2369 (11, 1, 'Refunded'),
   2370 (12, 1, 'Reversed'),
   2371 (13, 1, 'Chargeback'),
   2372 (1, 1, 'Pending'),
   2373 (16, 1, 'Voided'),
   2374 (15, 1, 'Processed'),
   2375 (14, 1, 'Expired');
   2376 
   2377 -----------------------------------------------------------
   2378 
   2379 --
   2380 -- Table structure for table `oc_order_total`
   2381 --
   2382 
   2383 DROP TABLE IF EXISTS `oc_order_total`;
   2384 CREATE TABLE `oc_order_total` (
   2385   `order_total_id` int(10) NOT NULL AUTO_INCREMENT,
   2386   `order_id` int(11) NOT NULL,
   2387   `code` varchar(32) NOT NULL,
   2388   `title` varchar(255) NOT NULL,
   2389   `value` decimal(15,4) NOT NULL DEFAULT '0.0000',
   2390   `sort_order` int(3) NOT NULL,
   2391   PRIMARY KEY (`order_total_id`),
   2392   KEY `order_id` (`order_id`)
   2393 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   2394 
   2395 -----------------------------------------------------------
   2396 
   2397 --
   2398 -- Table structure for table `oc_order_voucher`
   2399 --
   2400 
   2401 DROP TABLE IF EXISTS `oc_order_voucher`;
   2402 CREATE TABLE `oc_order_voucher` (
   2403   `order_voucher_id` int(11) NOT NULL AUTO_INCREMENT,
   2404   `order_id` int(11) NOT NULL,
   2405   `voucher_id` int(11) NOT NULL,
   2406   `description` varchar(255) NOT NULL,
   2407   `code` varchar(10) NOT NULL,
   2408   `from_name` varchar(64) NOT NULL,
   2409   `from_email` varchar(96) NOT NULL,
   2410   `to_name` varchar(64) NOT NULL,
   2411   `to_email` varchar(96) NOT NULL,
   2412   `voucher_theme_id` int(11) NOT NULL,
   2413   `message` text NOT NULL,
   2414   `amount` decimal(15,4) NOT NULL,
   2415   PRIMARY KEY (`order_voucher_id`)
   2416 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   2417 
   2418 -----------------------------------------------------------
   2419 
   2420 --
   2421 -- Table structure for table `oc_product`
   2422 --
   2423 
   2424 DROP TABLE IF EXISTS `oc_product`;
   2425 CREATE TABLE `oc_product` (
   2426   `product_id` int(11) NOT NULL AUTO_INCREMENT,
   2427   `model` varchar(64) NOT NULL,
   2428   `sku` varchar(64) NOT NULL,
   2429   `upc` varchar(12) NOT NULL,
   2430   `ean` varchar(14) NOT NULL,
   2431   `jan` varchar(13) NOT NULL,
   2432   `isbn` varchar(17) NOT NULL,
   2433   `mpn` varchar(64) NOT NULL,
   2434   `location` varchar(128) NOT NULL,
   2435   `quantity` int(4) NOT NULL DEFAULT '0',
   2436   `stock_status_id` int(11) NOT NULL,
   2437   `image` varchar(255) DEFAULT NULL,
   2438   `manufacturer_id` int(11) NOT NULL,
   2439   `shipping` tinyint(1) NOT NULL DEFAULT '1',
   2440   `price` decimal(15,4) NOT NULL DEFAULT '0.0000',
   2441   `points` int(8) NOT NULL DEFAULT '0',
   2442   `tax_class_id` int(11) NOT NULL,
   2443   `date_available` date NOT NULL DEFAULT '0000-00-00',
   2444   `weight` decimal(15,8) NOT NULL DEFAULT '0.00000000',
   2445   `weight_class_id` int(11) NOT NULL DEFAULT '0',
   2446   `length` decimal(15,8) NOT NULL DEFAULT '0.00000000',
   2447   `width` decimal(15,8) NOT NULL DEFAULT '0.00000000',
   2448   `height` decimal(15,8) NOT NULL DEFAULT '0.00000000',
   2449   `length_class_id` int(11) NOT NULL DEFAULT '0',
   2450   `subtract` tinyint(1) NOT NULL DEFAULT '1',
   2451   `minimum` int(11) NOT NULL DEFAULT '1',
   2452   `sort_order` int(11) NOT NULL DEFAULT '0',
   2453   `status` tinyint(1) NOT NULL DEFAULT '0',
   2454   `viewed` int(5) NOT NULL DEFAULT '0',
   2455   `date_added` datetime NOT NULL,
   2456   `date_modified` datetime NOT NULL,
   2457   PRIMARY KEY (`product_id`)
   2458 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   2459 
   2460 --
   2461 -- Dumping data for table `oc_product`
   2462 --
   2463 
   2464 INSERT INTO `oc_product` (`product_id`, `model`, `sku`, `upc`, `ean`, `jan`, `isbn`, `mpn`, `location`, `quantity`, `stock_status_id`, `image`, `manufacturer_id`, `shipping`, `price`, `points`, `tax_class_id`, `date_available`, `weight`, `weight_class_id`, `length`, `width`, `height`, `length_class_id`, `subtract`, `minimum`, `sort_order`, `status`, `viewed`, `date_added`, `date_modified`) VALUES
   2465 (28, 'Product 1', '', '', '', '', '', '', '', 939, 7, 'catalog/demo/htc_touch_hd_1.jpg', 5, 1, '100.0000', 200, 9, '2009-02-03', '146.40000000', 2, '0.00000000', '0.00000000', '0.00000000', 1, 1, 1, 0, 1, 0, '2009-02-03 16:06:50', '2011-09-30 01:05:39'),
   2466 (29, 'Product 2', '', '', '', '', '', '', '', 999, 6, 'catalog/demo/palm_treo_pro_1.jpg', 6, 1, '279.9900', 0, 9, '2009-02-03', '133.00000000', 2, '0.00000000', '0.00000000', '0.00000000', 3, 1, 1, 0, 1, 0, '2009-02-03 16:42:17', '2011-09-30 01:06:08'),
   2467 (30, 'Product 3', '', '', '', '', '', '', '', 7, 6, 'catalog/demo/canon_eos_5d_1.jpg', 9, 1, '100.0000', 0, 9, '2009-02-03', '0.00000000', 1, '0.00000000', '0.00000000', '0.00000000', 1, 1, 1, 0, 1, 0, '2009-02-03 16:59:00', '2011-09-30 01:05:23'),
   2468 (31, 'Product 4', '', '', '', '', '', '', '', 1000, 6, 'catalog/demo/nikon_d300_1.jpg', 0, 1, '80.0000', 0, 9, '2009-02-03', '0.00000000', 1, '0.00000000', '0.00000000', '0.00000000', 3, 1, 1, 0, 1, 0, '2009-02-03 17:00:10', '2011-09-30 01:06:00'),
   2469 (32, 'Product 5', '', '', '', '', '', '', '', 999, 6, 'catalog/demo/ipod_touch_1.jpg', 8, 1, '100.0000', 0, 9, '2009-02-03', '5.00000000', 1, '0.00000000', '0.00000000', '0.00000000', 1, 1, 1, 0, 1, 0, '2009-02-03 17:07:26', '2011-09-30 01:07:22'),
   2470 (33, 'Product 6', '', '', '', '', '', '', '', 1000, 6, 'catalog/demo/samsung_syncmaster_941bw.jpg', 0, 1, '200.0000', 0, 9, '2009-02-03', '5.00000000', 1, '0.00000000', '0.00000000', '0.00000000', 2, 1, 1, 0, 1, 0, '2009-02-03 17:08:31', '2011-09-30 01:06:29'),
   2471 (34, 'Product 7', '', '', '', '', '', '', '', 1000, 6, 'catalog/demo/ipod_shuffle_1.jpg', 8, 1, '100.0000', 0, 9, '2009-02-03', '5.00000000', 1, '0.00000000', '0.00000000', '0.00000000', 2, 1, 1, 0, 1, 0, '2009-02-03 18:07:54', '2011-09-30 01:07:17'),
   2472 (35, 'Product 8', '', '', '', '', '', '', '', 1000, 5, '', 0, 0, '100.0000', 0, 9, '2009-02-03', '5.00000000', 1, '0.00000000', '0.00000000', '0.00000000', 1, 1, 1, 0, 1, 0, '2009-02-03 18:08:31', '2011-09-30 01:06:17'),
   2473 (36, 'Product 9', '', '', '', '', '', '', '', 994, 6, 'catalog/demo/ipod_nano_1.jpg', 8, 0, '100.0000', 100, 9, '2009-02-03', '5.00000000', 1, '0.00000000', '0.00000000', '0.00000000', 2, 1, 1, 0, 1, 0, '2009-02-03 18:09:19', '2011-09-30 01:07:12'),
   2474 (40, 'product 11', '', '', '', '', '', '', '', 970, 5, 'catalog/demo/iphone_1.jpg', 8, 1, '101.0000', 0, 9, '2009-02-03', '10.00000000', 1, '0.00000000', '0.00000000', '0.00000000', 1, 1, 1, 0, 1, 0, '2009-02-03 21:07:12', '2011-09-30 01:06:53'),
   2475 (41, 'Product 14', '', '', '', '', '', '', '', 977, 5, 'catalog/demo/imac_1.jpg', 8, 1, '100.0000', 0, 9, '2009-02-03', '5.00000000', 1, '0.00000000', '0.00000000', '0.00000000', 1, 1, 1, 0, 1, 0, '2009-02-03 21:07:26', '2011-09-30 01:06:44'),
   2476 (42, 'Product 15', '', '', '', '', '', '', '', 990, 5, 'catalog/demo/apple_cinema_30.jpg', 8, 1, '100.0000', 400, 9, '2009-02-04', '12.50000000', 1, '1.00000000', '2.00000000', '3.00000000', 1, 1, 2, 0, 1, 0, '2009-02-03 21:07:37', '2011-09-30 00:46:19'),
   2477 (43, 'Product 16', '', '', '', '', '', '', '', 929, 5, 'catalog/demo/macbook_1.jpg', 8, 0, '500.0000', 0, 9, '2009-02-03', '0.00000000', 1, '0.00000000', '0.00000000', '0.00000000', 2, 1, 1, 0, 1, 0, '2009-02-03 21:07:49', '2011-09-30 01:05:46'),
   2478 (44, 'Product 17', '', '', '', '', '', '', '', 1000, 5, 'catalog/demo/macbook_air_1.jpg', 8, 1, '1000.0000', 0, 9, '2009-02-03', '0.00000000', 1, '0.00000000', '0.00000000', '0.00000000', 2, 1, 1, 0, 1, 0, '2009-02-03 21:08:00', '2011-09-30 01:05:53'),
   2479 (45, 'Product 18', '', '', '', '', '', '', '', 998, 5, 'catalog/demo/macbook_pro_1.jpg', 8, 1, '2000.0000', 0, 100, '2009-02-03', '0.00000000', 1, '0.00000000', '0.00000000', '0.00000000', 2, 1, 1, 0, 1, 0, '2009-02-03 21:08:17', '2011-09-15 22:22:01'),
   2480 (46, 'Product 19', '', '', '', '', '', '', '', 1000, 5, 'catalog/demo/sony_vaio_1.jpg', 10, 1, '1000.0000', 0, 9, '2009-02-03', '0.00000000', 1, '0.00000000', '0.00000000', '0.00000000', 2, 1, 1, 0, 1, 0, '2009-02-03 21:08:29', '2011-09-30 01:06:39'),
   2481 (47, 'Product 21', '', '', '', '', '', '', '', 1000, 5, 'catalog/demo/hp_1.jpg', 7, 1, '100.0000', 400, 9, '2009-02-03', '1.00000000', 1, '0.00000000', '0.00000000', '0.00000000', 1, 0, 1, 0, 1, 0, '2009-02-03 21:08:40', '2011-09-30 01:05:28'),
   2482 (48, 'product 20', 'test 1', '', '', '', '', '', 'test 2', 995, 5, 'catalog/demo/ipod_classic_1.jpg', 8, 1, '100.0000', 0, 9, '2009-02-08', '1.00000000', 1, '0.00000000', '0.00000000', '0.00000000', 2, 1, 1, 0, 1, 0, '2009-02-08 17:21:51', '2011-09-30 01:07:06'),
   2483 (49, 'SAM1', '', '', '', '', '', '', '', 0, 8, 'catalog/demo/samsung_tab_1.jpg', 0, 1, '199.9900', 0, 9, '2011-04-25', '0.00000000', 1, '0.00000000', '0.00000000', '0.00000000', 1, 1, 1, 1, 1, 1, '2011-04-26 08:57:34', '2011-09-30 01:06:23');
   2484 
   2485 -----------------------------------------------------------
   2486 
   2487 --
   2488 -- Table structure for table `oc_product_attribute`
   2489 --
   2490 
   2491 DROP TABLE IF EXISTS `oc_product_attribute`;
   2492 CREATE TABLE `oc_product_attribute` (
   2493   `product_id` int(11) NOT NULL,
   2494   `attribute_id` int(11) NOT NULL,
   2495   `language_id` int(11) NOT NULL,
   2496   `text` text NOT NULL,
   2497   PRIMARY KEY (`product_id`,`attribute_id`,`language_id`)
   2498 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   2499 
   2500 --
   2501 -- Dumping data for table `oc_product_attribute`
   2502 --
   2503 
   2504 INSERT INTO `oc_product_attribute` (`product_id`, `attribute_id`, `language_id`, `text`) VALUES
   2505 (43, 2, 1, '1'),
   2506 (47, 4, 1, '16GB'),
   2507 (43, 4, 1, '8gb'),
   2508 (42, 3, 1, '100mhz'),
   2509 (47, 2, 1, '4');
   2510 
   2511 -----------------------------------------------------------
   2512 
   2513 --
   2514 -- Table structure for table `oc_product_description`
   2515 --
   2516 
   2517 DROP TABLE IF EXISTS `oc_product_description`;
   2518 CREATE TABLE `oc_product_description` (
   2519   `product_id` int(11) NOT NULL,
   2520   `language_id` int(11) NOT NULL,
   2521   `name` varchar(255) NOT NULL,
   2522   `description` text NOT NULL,
   2523   `tag` text NOT NULL,
   2524   `meta_title` varchar(255) NOT NULL,
   2525   `meta_description` varchar(255) NOT NULL,
   2526   `meta_keyword` varchar(255) NOT NULL,
   2527   PRIMARY KEY (`product_id`,`language_id`),
   2528   KEY `name` (`name`)
   2529 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   2530 
   2531 --
   2532 -- Dumping data for table `oc_product_description`
   2533 --
   2534 
   2535 INSERT INTO `oc_product_description` (`product_id`, `language_id`, `name`, `description`, `tag`, `meta_title`, `meta_description`, `meta_keyword`) VALUES
   2536 (35, 1, 'Product 8', '<p>\r\n	Product 8</p>\r\n', '', 'Product 8', '', ''),
   2537 (48, 1, 'iPod Classic', '<div class="cpt_product_description ">\r\n	<div>\r\n		<p>\r\n			<strong>More room to move.</strong></p>\r\n		<p>\r\n			With 80GB or 160GB of storage and up to 40 hours of battery life, the new iPod classic lets you enjoy up to 40,000 songs or up to 200 hours of video or any combination wherever you go.</p>\r\n		<p>\r\n			<strong>Cover Flow.</strong></p>\r\n		<p>\r\n			Browse through your music collection by flipping through album art. Select an album to turn it over and see the track list.</p>\r\n		<p>\r\n			<strong>Enhanced interface.</strong></p>\r\n		<p>\r\n			Experience a whole new way to browse and view your music and video.</p>\r\n		<p>\r\n			<strong>Sleeker design.</strong></p>\r\n		<p>\r\n			Beautiful, durable, and sleeker than ever, iPod classic now features an anodized aluminum and polished stainless steel enclosure with rounded edges.</p>\r\n	</div>\r\n</div>\r\n<!-- cpt_container_end -->', '', 'iPod Classic', '', ''),
   2538 (40, 1, 'iPhone', '<p class="intro">\r\n	iPhone is a revolutionary new mobile phone that allows you to make a call by simply tapping a name or number in your address book, a favorites list, or a call log. It also automatically syncs all your contacts from a PC, Mac, or Internet service. And it lets you select and listen to voicemail messages in whatever order you want just like email.</p>\r\n', '', 'iPhone', '', ''),
   2539 (28, 1, 'HTC Touch HD', '<p>\r\n	HTC Touch - in High Definition. Watch music videos and streaming content in awe-inspiring high definition clarity for a mobile experience you never thought possible. Seductively sleek, the HTC Touch HD provides the next generation of mobile functionality, all at a simple touch. Fully integrated with Windows Mobile Professional 6.1, ultrafast 3.5G, GPS, 5MP camera, plus lots more - all delivered on a breathtakingly crisp 3.8" WVGA touchscreen - you can take control of your mobile world with the HTC Touch HD.</p>\r\n<p>\r\n	<strong>Features</strong></p>\r\n<ul>\r\n	<li>\r\n		Processor Qualcomm® MSM 7201A™ 528 MHz</li>\r\n	<li>\r\n		Windows Mobile® 6.1 Professional Operating System</li>\r\n	<li>\r\n		Memory: 512 MB ROM, 288 MB RAM</li>\r\n	<li>\r\n		Dimensions: 115 mm x 62.8 mm x 12 mm / 146.4 grams</li>\r\n	<li>\r\n		3.8-inch TFT-LCD flat touch-sensitive screen with 480 x 800 WVGA resolution</li>\r\n	<li>\r\n		HSDPA/WCDMA: Europe/Asia: 900/2100 MHz; Up to 2 Mbps up-link and 7.2 Mbps down-link speeds</li>\r\n	<li>\r\n		Quad-band GSM/GPRS/EDGE: Europe/Asia: 850/900/1800/1900 MHz (Band frequency, HSUPA availability, and data speed are operator dependent.)</li>\r\n	<li>\r\n		Device Control via HTC TouchFLO™ 3D & Touch-sensitive front panel buttons</li>\r\n	<li>\r\n		GPS and A-GPS ready</li>\r\n	<li>\r\n		Bluetooth® 2.0 with Enhanced Data Rate and A2DP for wireless stereo headsets</li>\r\n	<li>\r\n		Wi-Fi®: IEEE 802.11 b/g</li>\r\n	<li>\r\n		HTC ExtUSB™ (11-pin mini-USB 2.0)</li>\r\n	<li>\r\n		5 megapixel color camera with auto focus</li>\r\n	<li>\r\n		VGA CMOS color camera</li>\r\n	<li>\r\n		Built-in 3.5 mm audio jack, microphone, speaker, and FM radio</li>\r\n	<li>\r\n		Ring tone formats: AAC, AAC+, eAAC+, AMR-NB, AMR-WB, QCP, MP3, WMA, WAV</li>\r\n	<li>\r\n		40 polyphonic and standard MIDI format 0 and 1 (SMF)/SP MIDI</li>\r\n	<li>\r\n		Rechargeable Lithium-ion or Lithium-ion polymer 1350 mAh battery</li>\r\n	<li>\r\n		Expansion Slot: microSD™ memory card (SD 2.0 compatible)</li>\r\n	<li>\r\n		AC Adapter Voltage range/frequency: 100 ~ 240V AC, 50/60 Hz DC output: 5V and 1A</li>\r\n	<li>\r\n		Special Features: FM Radio, G-Sensor</li>\r\n</ul>\r\n', '', '	 HTC Touch HD', '', ''),
   2540 (44, 1, 'MacBook Air', '<div>\r\n	MacBook Air is ultrathin, ultraportable, and ultra unlike anything else. But you don’t lose inches and pounds overnight. It’s the result of rethinking conventions. Of multiple wireless innovations. And of breakthrough design. With MacBook Air, mobile computing suddenly has a new standard.</div>\r\n', '', 'MacBook Air', '', ''),
   2541 (45, 1, 'MacBook Pro', '<div class="cpt_product_description ">\r\n	<div>\r\n		<p>\r\n			<b>Latest Intel mobile architecture</b></p>\r\n		<p>\r\n			Powered by the most advanced mobile processors from Intel, the new Core 2 Duo MacBook Pro is over 50% faster than the original Core Duo MacBook Pro and now supports up to 4GB of RAM.</p>\r\n		<p>\r\n			<b>Leading-edge graphics</b></p>\r\n		<p>\r\n			The NVIDIA GeForce 8600M GT delivers exceptional graphics processing power. For the ultimate creative canvas, you can even configure the 17-inch model with a 1920-by-1200 resolution display.</p>\r\n		<p>\r\n			<b>Designed for life on the road</b></p>\r\n		<p>\r\n			Innovations such as a magnetic power connection and an illuminated keyboard with ambient light sensor put the MacBook Pro in a class by itself.</p>\r\n		<p>\r\n			<b>Connect. Create. Communicate.</b></p>\r\n		<p>\r\n			Quickly set up a video conference with the built-in iSight camera. Control presentations and media from up to 30 feet away with the included Apple Remote. Connect to high-bandwidth peripherals with FireWire 800 and DVI.</p>\r\n		<p>\r\n			<b>Next-generation wireless</b></p>\r\n		<p>\r\n			Featuring 802.11n wireless technology, the MacBook Pro delivers up to five times the performance and up to twice the range of previous-generation technologies.</p>\r\n	</div>\r\n</div>\r\n<!-- cpt_container_end -->', '', 'MacBook Pro', '', ''),
   2542 (29, 1, 'Palm Treo Pro', '<p>\r\n	Redefine your workday with the Palm Treo Pro smartphone. Perfectly balanced, you can respond to business and personal email, stay on top of appointments and contacts, and use Wi-Fi or GPS when you’re out and about. Then watch a video on YouTube, catch up with news and sports on the web, or listen to a few songs. Balance your work and play the way you like it, with the Palm Treo Pro.</p>\r\n<p>\r\n	<strong>Features</strong></p>\r\n<ul>\r\n	<li>\r\n		Windows Mobile® 6.1 Professional Edition</li>\r\n	<li>\r\n		Qualcomm® MSM7201 400MHz Processor</li>\r\n	<li>\r\n		320x320 transflective colour TFT touchscreen</li>\r\n	<li>\r\n		HSDPA/UMTS/EDGE/GPRS/GSM radio</li>\r\n	<li>\r\n		Tri-band UMTS — 850MHz, 1900MHz, 2100MHz</li>\r\n	<li>\r\n		Quad-band GSM — 850/900/1800/1900</li>\r\n	<li>\r\n		802.11b/g with WPA, WPA2, and 801.1x authentication</li>\r\n	<li>\r\n		Built-in GPS</li>\r\n	<li>\r\n		Bluetooth Version: 2.0 + Enhanced Data Rate</li>\r\n	<li>\r\n		256MB storage (100MB user available), 128MB RAM</li>\r\n	<li>\r\n		2.0 megapixel camera, up to 8x digital zoom and video capture</li>\r\n	<li>\r\n		Removable, rechargeable 1500mAh lithium-ion battery</li>\r\n	<li>\r\n		Up to 5.0 hours talk time and up to 250 hours standby</li>\r\n	<li>\r\n		MicroSDHC card expansion (up to 32GB supported)</li>\r\n	<li>\r\n		MicroUSB 2.0 for synchronization and charging</li>\r\n	<li>\r\n		3.5mm stereo headset jack</li>\r\n	<li>\r\n		60mm (W) x 114mm (L) x 13.5mm (D) / 133g</li>\r\n</ul>\r\n', '', 'Palm Treo Pro', '', ''),
   2543 (36, 1, 'iPod Nano', '<div>\r\n	<p>\r\n		<strong>Video in your pocket.</strong></p>\r\n	<p>\r\n		Its the small iPod with one very big idea: video. The worlds most popular music player now lets you enjoy movies, TV shows, and more on a two-inch display thats 65% brighter than before.</p>\r\n	<p>\r\n		<strong>Cover Flow.</strong></p>\r\n	<p>\r\n		Browse through your music collection by flipping through album art. Select an album to turn it over and see the track list.<strong> </strong></p>\r\n	<p>\r\n		<strong>Enhanced interface.</strong></p>\r\n	<p>\r\n		Experience a whole new way to browse and view your music and video.</p>\r\n	<p>\r\n		<strong>Sleek and colorful.</strong></p>\r\n	<p>\r\n		With an anodized aluminum and polished stainless steel enclosure and a choice of five colors, iPod nano is dressed to impress.</p>\r\n	<p>\r\n		<strong>iTunes.</strong></p>\r\n	<p>\r\n		Available as a free download, iTunes makes it easy to browse and buy millions of songs, movies, TV shows, audiobooks, and games and download free podcasts all at the iTunes Store. And you can import your own music, manage your whole media library, and sync your iPod or iPhone with ease.</p>\r\n</div>\r\n', '', 'iPod Nano', '', ''),
   2544 (46, 1, 'Sony VAIO', '<div>\r\n	Unprecedented power. The next generation of processing technology has arrived. Built into the newest VAIO notebooks lies Intel's latest, most powerful innovation yet: Intel® Centrino® 2 processor technology. Boasting incredible speed, expanded wireless connectivity, enhanced multimedia support and greater energy efficiency, all the high-performance essentials are seamlessly combined into a single chip.</div>\r\n', '', 'Sony VAIO', '', ''),
   2545 (47, 1, 'HP LP3065', '<p>\r\n	Stop your co-workers in their tracks with the stunning new 30-inch diagonal HP LP3065 Flat Panel Monitor. This flagship monitor features best-in-class performance and presentation features on a huge wide-aspect screen while letting you work as comfortably as possible - you might even forget you're at the office</p>\r\n', '', 'HP LP3065', '', ''),
   2546 (32, 1, 'iPod Touch', '<p>\r\n	<strong>Revolutionary multi-touch interface.</strong><br />\r\n	iPod touch features the same multi-touch screen technology as iPhone. Pinch to zoom in on a photo. Scroll through your songs and videos with a flick. Flip through your library by album artwork with Cover Flow.</p>\r\n<p>\r\n	<strong>Gorgeous 3.5-inch widescreen display.</strong><br />\r\n	Watch your movies, TV shows, and photos come alive with bright, vivid color on the 320-by-480-pixel display.</p>\r\n<p>\r\n	<strong>Music downloads straight from iTunes.</strong><br />\r\n	Shop the iTunes Wi-Fi Music Store from anywhere with Wi-Fi.1 Browse or search to find the music youre looking for, preview it, and buy it with just a tap.</p>\r\n<p>\r\n	<strong>Surf the web with Wi-Fi.</strong><br />\r\n	Browse the web using Safari and watch YouTube videos on the first iPod with Wi-Fi built in<br />\r\n	 </p>\r\n', '', '	 iPod Touch', '', ''),
   2547 (41, 1, 'iMac', '<div>\r\n	Just when you thought iMac had everything, now there´s even more. More powerful Intel Core 2 Duo processors. And more memory standard. Combine this with Mac OS X Leopard and iLife ´08, and it´s more all-in-one than ever. iMac packs amazing performance into a stunningly slim space.</div>\r\n', '', 'iMac', '', ''),
   2548 (33, 1, 'Samsung SyncMaster 941BW', '<div>\r\n	Imagine the advantages of going big without slowing down. The big 19" 941BW monitor combines wide aspect ratio with fast pixel response time, for bigger images, more room to work and crisp motion. In addition, the exclusive MagicBright 2, MagicColor and MagicTune technologies help deliver the ideal image in every situation, while sleek, narrow bezels and adjustable stands deliver style just the way you want it. With the Samsung 941BW widescreen analog/digital LCD monitor, it's not hard to imagine.</div>\r\n', '', 'Samsung SyncMaster 941BW', '', ''),
   2549 (34, 1, 'iPod Shuffle', '<div>\r\n	<strong>Born to be worn.</strong>\r\n	<p>\r\n		Clip on the worlds most wearable music player and take up to 240 songs with you anywhere. Choose from five colors including four new hues to make your musical fashion statement.</p>\r\n	<p>\r\n		<strong>Random meets rhythm.</strong></p>\r\n	<p>\r\n		With iTunes autofill, iPod shuffle can deliver a new musical experience every time you sync. For more randomness, you can shuffle songs during playback with the slide of a switch.</p>\r\n	<strong>Everything is easy.</strong>\r\n	<p>\r\n		Charge and sync with the included USB dock. Operate the iPod shuffle controls with one hand. Enjoy up to 12 hours straight of skip-free music playback.</p>\r\n</div>\r\n', '', 'iPod Shuffle', '', ''),
   2550 (43, 1, 'MacBook', '<div>\r\n	<p>\r\n		<b>Intel Core 2 Duo processor</b></p>\r\n	<p>\r\n		Powered by an Intel Core 2 Duo processor at speeds up to 2.16GHz, the new MacBook is the fastest ever.</p>\r\n	<p>\r\n		<b>1GB memory, larger hard drives</b></p>\r\n	<p>\r\n		The new MacBook now comes with 1GB of memory standard and larger hard drives for the entire line perfect for running more of your favorite applications and storing growing media collections.</p>\r\n	<p>\r\n		<b>Sleek, 1.08-inch-thin design</b></p>\r\n	<p>\r\n		MacBook makes it easy to hit the road thanks to its tough polycarbonate case, built-in wireless technologies, and innovative MagSafe Power Adapter that releases automatically if someone accidentally trips on the cord.</p>\r\n	<p>\r\n		<b>Built-in iSight camera</b></p>\r\n	<p>\r\n		Right out of the box, you can have a video chat with friends or family,2 record a video at your desk, or take fun pictures with Photo Booth</p>\r\n</div>\r\n', '', 'MacBook', '', ''),
   2551 (31, 1, 'Nikon D300', '<div class="cpt_product_description ">\r\n	<div>\r\n		Engineered with pro-level features and performance, the 12.3-effective-megapixel D300 combines brand new technologies with advanced features inherited from Nikon's newly announced D3 professional digital SLR camera to offer serious photographers remarkable performance combined with agility.<br />\r\n		<br />\r\n		Similar to the D3, the D300 features Nikon's exclusive EXPEED Image Processing System that is central to driving the speed and processing power needed for many of the camera's new features. The D300 features a new 51-point autofocus system with Nikon's 3D Focus Tracking feature and two new LiveView shooting modes that allow users to frame a photograph using the camera's high-resolution LCD monitor. The D300 shares a similar Scene Recognition System as is found in the D3; it promises to greatly enhance the accuracy of autofocus, autoexposure, and auto white balance by recognizing the subject or scene being photographed and applying this information to the calculations for the three functions.<br />\r\n		<br />\r\n		The D300 reacts with lightning speed, powering up in a mere 0.13 seconds and shooting with an imperceptible 45-millisecond shutter release lag time. The D300 is capable of shooting at a rapid six frames per second and can go as fast as eight frames per second when using the optional MB-D10 multi-power battery pack. In continuous bursts, the D300 can shoot up to 100 shots at full 12.3-megapixel resolution. (NORMAL-LARGE image setting, using a SanDisk Extreme IV 1GB CompactFlash card.)<br />\r\n		<br />\r\n		The D300 incorporates a range of innovative technologies and features that will significantly improve the accuracy, control, and performance photographers can get from their equipment. Its new Scene Recognition System advances the use of Nikon's acclaimed 1,005-segment sensor to recognize colors and light patterns that help the camera determine the subject and the type of scene being photographed before a picture is taken. This information is used to improve the accuracy of autofocus, autoexposure, and auto white balance functions in the D300. For example, the camera can track moving subjects better and by identifying them, it can also automatically select focus points faster and with greater accuracy. It can also analyze highlights and more accurately determine exposure, as well as infer light sources to deliver more accurate white balance detection.</div>\r\n</div>\r\n<!-- cpt_container_end -->', '', 'Nikon D300', '', ''),
   2552 (49, 1, 'Samsung Galaxy Tab 10.1', '<p>\r\n	Samsung Galaxy Tab 10.1, is the world’s thinnest tablet, measuring 8.6 mm thickness, running with Android 3.0 Honeycomb OS on a 1GHz dual-core Tegra 2 processor, similar to its younger brother Samsung Galaxy Tab 8.9.</p>\r\n<p>\r\n	Samsung Galaxy Tab 10.1 gives pure Android 3.0 experience, adding its new TouchWiz UX or TouchWiz 4.0 – includes a live panel, which lets you to customize with different content, such as your pictures, bookmarks, and social feeds, sporting a 10.1 inches WXGA capacitive touch screen with 1280 x 800 pixels of resolution, equipped with 3 megapixel rear camera with LED flash and a 2 megapixel front camera, HSPA+ connectivity up to 21Mbps, 720p HD video recording capability, 1080p HD playback, DLNA support, Bluetooth 2.1, USB 2.0, gyroscope, Wi-Fi 802.11 a/b/g/n, micro-SD slot, 3.5mm headphone jack, and SIM slot, including the Samsung Stick – a Bluetooth microphone that can be carried in a pocket like a pen and sound dock with powered subwoofer.</p>\r\n<p>\r\n	Samsung Galaxy Tab 10.1 will come in 16GB / 32GB / 64GB verities and pre-loaded with Social Hub, Reader’s Hub, Music Hub and Samsung Mini Apps Tray – which gives you access to more commonly used apps to help ease multitasking and it is capable of Adobe Flash Player 10.2, powered by 6860mAh battery that gives you 10hours of video-playback time. äö</p>\r\n', '', 'Samsung Galaxy Tab 10.1', '', ''),
   2553 (42, 1, 'Apple Cinema 30"', '<p>\r\n	<font face="helvetica,geneva,arial" size="2"><font face="Helvetica" size="2">The 30-inch Apple Cinema HD Display delivers an amazing 2560 x 1600 pixel resolution. Designed specifically for the creative professional, this display provides more space for easier access to all the tools and palettes needed to edit, format and composite your work. Combine this display with a Mac Pro, MacBook Pro, or PowerMac G5 and there''s no limit to what you can achieve. <br>\r\n	<br>\r\n	</font><font face="Helvetica" size="2">The Cinema HD features an active-matrix liquid crystal display that produces flicker-free images that deliver twice the brightness, twice the sharpness and twice the contrast ratio of a typical CRT display. Unlike other flat panels, it''s designed with a pure digital interface to deliver distortion-free images that never need adjusting. With over 4 million digital pixels, the display is uniquely suited for scientific and technical applications such as visualizing molecular structures or analyzing geological data. <br>\r\n	<br>\r\n	</font><font face="Helvetica" size="2">Offering accurate, brilliant color performance, the Cinema HD delivers up to 16.7 million colors across a wide gamut allowing you to see subtle nuances between colors from soft pastels to rich jewel tones. A wide viewing angle ensures uniform color from edge to edge. Apple''s ColorSync technology allows you to create custom profiles to maintain consistent color onscreen and in print. The result: You can confidently use this display in all your color-critical applications. <br>\r\n	<br>\r\n	</font><font face="Helvetica" size="2">Housed in a new aluminum design, the display has a very thin bezel that enhances visual accuracy. Each display features two FireWire 400 ports and two USB 2.0 ports, making attachment of desktop peripherals, such as iSight, iPod, digital and still cameras, hard drives, printers and scanners, even more accessible and convenient. Taking advantage of the much thinner and lighter footprint of an LCD, the new displays support the VESA (Video Electronics Standards Association) mounting interface standard. Customers with the optional Cinema Display VESA Mount Adapter kit gain the flexibility to mount their display in locations most appropriate for their work environment. <br>\r\n	<br>\r\n	</font><font face="Helvetica" size="2">The Cinema HD features a single cable design with elegant breakout for the USB 2.0, FireWire 400 and a pure digital connection using the industry standard Digital Video Interface (DVI) interface. The DVI connection allows for a direct pure-digital connection.<br>\r\n	</font></font></p>\r\n<h3>\r\n	Features:</h3>\r\n<p>\r\n	Unrivaled display performance</p>\r\n<ul>\r\n	<li>\r\n		30-inch (viewable) active-matrix liquid crystal display provides breathtaking image quality and vivid, richly saturated color.</li>\r\n	<li>\r\n		Support for 2560-by-1600 pixel resolution for display of high definition still and video imagery.</li>\r\n	<li>\r\n		Wide-format design for simultaneous display of two full pages of text and graphics.</li>\r\n	<li>\r\n		Industry standard DVI connector for direct attachment to Mac- and Windows-based desktops and notebooks</li>\r\n	<li>\r\n		Incredibly wide (170 degree) horizontal and vertical viewing angle for maximum visibility and color performance.</li>\r\n	<li>\r\n		Lightning-fast pixel response for full-motion digital video playback.</li>\r\n	<li>\r\n		Support for 16.7 million saturated colors, for use in all graphics-intensive applications.</li>\r\n</ul>\r\n<p>\r\n	Simple setup and operation</p>\r\n<ul>\r\n	<li>\r\n		Single cable with elegant breakout for connection to DVI, USB and FireWire ports</li>\r\n	<li>\r\n		Built-in two-port USB 2.0 hub for easy connection of desktop peripheral devices.</li>\r\n	<li>\r\n		Two FireWire 400 ports to support iSight and other desktop peripherals</li>\r\n</ul>\r\n<p>\r\n	Sleek, elegant design</p>\r\n<ul>\r\n	<li>\r\n		Huge virtual workspace, very small footprint.</li>\r\n	<li>\r\n		Narrow Bezel design to minimize visual impact of using dual displays</li>\r\n	<li>\r\n		Unique hinge design for effortless adjustment</li>\r\n	<li>\r\n		Support for VESA mounting solutions (Apple Cinema Display VESA Mount Adapter sold separately)</li>\r\n</ul>\r\n<h3>\r\n	Technical specifications</h3>\r\n<p>\r\n	<b>Screen size (diagonal viewable image size)</b></p>\r\n<ul>\r\n	<li>\r\n		Apple Cinema HD Display: 30 inches (29.7-inch viewable)</li>\r\n</ul>\r\n<p>\r\n	<b>Screen type</b></p>\r\n<ul>\r\n	<li>\r\n		Thin film transistor (TFT) active-matrix liquid crystal display (AMLCD)</li>\r\n</ul>\r\n<p>\r\n	<b>Resolutions</b></p>\r\n<ul>\r\n	<li>\r\n		2560 x 1600 pixels (optimum resolution)</li>\r\n	<li>\r\n		2048 x 1280</li>\r\n	<li>\r\n		1920 x 1200</li>\r\n	<li>\r\n		1280 x 800</li>\r\n	<li>\r\n		1024 x 640</li>\r\n</ul>\r\n<p>\r\n	<b>Display colors (maximum)</b></p>\r\n<ul>\r\n	<li>\r\n		16.7 million</li>\r\n</ul>\r\n<p>\r\n	<b>Viewing angle (typical)</b></p>\r\n<ul>\r\n	<li>\r\n		170° horizontal; 170° vertical</li>\r\n</ul>\r\n<p>\r\n	<b>Brightness (typical)</b></p>\r\n<ul>\r\n	<li>\r\n		30-inch Cinema HD Display: 400 cd/m2</li>\r\n</ul>\r\n<p>\r\n	<b>Contrast ratio (typical)</b></p>\r\n<ul>\r\n	<li>\r\n		700:1</li>\r\n</ul>\r\n<p>\r\n	<b>Response time (typical)</b></p>\r\n<ul>\r\n	<li>\r\n		16 ms</li>\r\n</ul>\r\n<p>\r\n	<b>Pixel pitch</b></p>\r\n<ul>\r\n	<li>\r\n		30-inch Cinema HD Display: 0.250 mm</li>\r\n</ul>\r\n<p>\r\n	<b>Screen treatment</b></p>\r\n<ul>\r\n	<li>\r\n		Antiglare hardcoat</li>\r\n</ul>\r\n<p>\r\n	<b>User controls (hardware and software)</b></p>\r\n<ul>\r\n	<li>\r\n		Display Power,</li>\r\n	<li>\r\n		System sleep, wake</li>\r\n	<li>\r\n		Brightness</li>\r\n	<li>\r\n		Monitor tilt</li>\r\n</ul>\r\n<p>\r\n	<b>Connectors and cables</b><br>\r\n	Cable</p>\r\n<ul>\r\n	<li>\r\n		DVI (Digital Visual Interface)</li>\r\n	<li>\r\n		FireWire 400</li>\r\n	<li>\r\n		USB 2.0</li>\r\n	<li>\r\n		DC power (24 V)</li>\r\n</ul>\r\n<p>\r\n	Connectors</p>\r\n<ul>\r\n	<li>\r\n		Two-port, self-powered USB 2.0 hub</li>\r\n	<li>\r\n		Two FireWire 400 ports</li>\r\n	<li>\r\n		Kensington security port</li>\r\n</ul>\r\n<p>\r\n	<b>VESA mount adapter</b><br>\r\n	Requires optional Cinema Display VESA Mount Adapter (M9649G/A)</p>\r\n<ul>\r\n	<li>\r\n		Compatible with VESA FDMI (MIS-D, 100, C) compliant mounting solutions</li>\r\n</ul>\r\n<p>\r\n	<b>Electrical requirements</b></p>\r\n<ul>\r\n	<li>\r\n		Input voltage: 100-240 VAC 50-60Hz</li>\r\n	<li>\r\n		Maximum power when operating: 150W</li>\r\n	<li>\r\n		Energy saver mode: 3W or less</li>\r\n</ul>\r\n<p>\r\n	<b>Environmental requirements</b></p>\r\n<ul>\r\n	<li>\r\n		Operating temperature: 50° to 95° F (10° to 35° C)</li>\r\n	<li>\r\n		Storage temperature: -40° to 116° F (-40° to 47° C)</li>\r\n	<li>\r\n		Operating humidity: 20% to 80% noncondensing</li>\r\n	<li>\r\n		Maximum operating altitude: 10,000 feet</li>\r\n</ul>\r\n<p>\r\n	<b>Agency approvals</b></p>\r\n<ul>\r\n	<li>\r\n		FCC Part 15 Class B</li>\r\n	<li>\r\n		EN55022 Class B</li>\r\n	<li>\r\n		EN55024</li>\r\n	<li>\r\n		VCCI Class B</li>\r\n	<li>\r\n		AS/NZS 3548 Class B</li>\r\n	<li>\r\n		CNS 13438 Class B</li>\r\n	<li>\r\n		ICES-003 Class B</li>\r\n	<li>\r\n		ISO 13406 part 2</li>\r\n	<li>\r\n		MPR II</li>\r\n	<li>\r\n		IEC 60950</li>\r\n	<li>\r\n		UL 60950</li>\r\n	<li>\r\n		CSA 60950</li>\r\n	<li>\r\n		EN60950</li>\r\n	<li>\r\n		ENERGY STAR</li>\r\n	<li>\r\n		TCO ''03</li>\r\n</ul>\r\n<p>\r\n	<b>Size and weight</b><br>\r\n	30-inch Apple Cinema HD Display</p>\r\n<ul>\r\n	<li>\r\n		Height: 21.3 inches (54.3 cm)</li>\r\n	<li>\r\n		Width: 27.2 inches (68.8 cm)</li>\r\n	<li>\r\n		Depth: 8.46 inches (21.5 cm)</li>\r\n	<li>\r\n		Weight: 27.5 pounds (12.5 kg)</li>\r\n</ul>\r\n<p>\r\n	<b>System Requirements</b></p>\r\n<ul>\r\n	<li>\r\n		Mac Pro, all graphic options</li>\r\n	<li>\r\n		MacBook Pro</li>\r\n	<li>\r\n		Power Mac G5 (PCI-X) with ATI Radeon 9650 or better or NVIDIA GeForce 6800 GT DDL or better</li>\r\n	<li>\r\n		Power Mac G5 (PCI Express), all graphics options</li>\r\n	<li>\r\n		PowerBook G4 with dual-link DVI support</li>\r\n	<li>\r\n		Windows PC and graphics card that supports DVI ports with dual-link digital bandwidth and VESA DDC standard for plug-and-play setup</li>\r\n</ul>\r\n', '', 'Apple Cinema 30', '', ''),
   2554 (30, 1, 'Canon EOS 5D', '<p>\r\n	Canon''s press material for the EOS 5D states that it ''defines (a) new D-SLR category'', while we''re not typically too concerned with marketing talk this particular statement is clearly pretty accurate. The EOS 5D is unlike any previous digital SLR in that it combines a full-frame (35 mm sized) high resolution sensor (12.8 megapixels) with a relatively compact body (slightly larger than the EOS 20D, although in your hand it feels noticeably ''chunkier''). The EOS 5D is aimed to slot in between the EOS 20D and the EOS-1D professional digital SLR''s, an important difference when compared to the latter is that the EOS 5D doesn''t have any environmental seals. While Canon don''t specifically refer to the EOS 5D as a ''professional'' digital SLR it will have obvious appeal to professionals who want a high quality digital SLR in a body lighter than the EOS-1D. It will also no doubt appeal to current EOS 20D owners (although lets hope they''ve not bought too many EF-S lenses...) äë</p>\r\n', '', 'sdf', '', '');
   2555 
   2556 -----------------------------------------------------------
   2557 
   2558 --
   2559 -- Table structure for table `oc_product_discount`
   2560 --
   2561 
   2562 DROP TABLE IF EXISTS `oc_product_discount`;
   2563 CREATE TABLE `oc_product_discount` (
   2564   `product_discount_id` int(11) NOT NULL AUTO_INCREMENT,
   2565   `product_id` int(11) NOT NULL,
   2566   `customer_group_id` int(11) NOT NULL,
   2567   `quantity` int(4) NOT NULL DEFAULT '0',
   2568   `priority` int(5) NOT NULL DEFAULT '1',
   2569   `price` decimal(15,4) NOT NULL DEFAULT '0.0000',
   2570   `date_start` date NOT NULL DEFAULT '0000-00-00',
   2571   `date_end` date NOT NULL DEFAULT '0000-00-00',
   2572   PRIMARY KEY (`product_discount_id`),
   2573   KEY `product_id` (`product_id`)
   2574 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   2575 
   2576 --
   2577 -- Dumping data for table `oc_product_discount`
   2578 --
   2579 
   2580 INSERT INTO `oc_product_discount` (`product_discount_id`, `product_id`, `customer_group_id`, `quantity`, `priority`, `price`, `date_start`, `date_end`) VALUES
   2581 (440, 42, 1, 30, 1, '66.0000', '0000-00-00', '0000-00-00'),
   2582 (439, 42, 1, 20, 1, '77.0000', '0000-00-00', '0000-00-00'),
   2583 (438, 42, 1, 10, 1, '88.0000', '0000-00-00', '0000-00-00');
   2584 
   2585 -----------------------------------------------------------
   2586 
   2587 --
   2588 -- Table structure for table `oc_product_filter`
   2589 --
   2590 
   2591 DROP TABLE IF EXISTS `oc_product_filter`;
   2592 CREATE TABLE `oc_product_filter` (
   2593   `product_id` int(11) NOT NULL,
   2594   `filter_id` int(11) NOT NULL,
   2595   PRIMARY KEY (`product_id`,`filter_id`)
   2596 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   2597 
   2598 -----------------------------------------------------------
   2599 
   2600 --
   2601 -- Table structure for table `oc_product_image`
   2602 --
   2603 
   2604 DROP TABLE IF EXISTS `oc_product_image`;
   2605 CREATE TABLE `oc_product_image` (
   2606   `product_image_id` int(11) NOT NULL AUTO_INCREMENT,
   2607   `product_id` int(11) NOT NULL,
   2608   `image` varchar(255) DEFAULT NULL,
   2609   `sort_order` int(3) NOT NULL DEFAULT '0',
   2610   PRIMARY KEY (`product_image_id`),
   2611   KEY `product_id` (`product_id`)
   2612 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   2613 
   2614 --
   2615 -- Dumping data for table `oc_product_image`
   2616 --
   2617 
   2618 INSERT INTO `oc_product_image` (`product_image_id`, `product_id`, `image`, `sort_order`) VALUES
   2619 (2345, 30, 'catalog/demo/canon_eos_5d_2.jpg', 0),
   2620 (2321, 47, 'catalog/demo/hp_3.jpg', 0),
   2621 (2035, 28, 'catalog/demo/htc_touch_hd_2.jpg', 0),
   2622 (2351, 41, 'catalog/demo/imac_3.jpg', 0),
   2623 (1982, 40, 'catalog/demo/iphone_6.jpg', 0),
   2624 (2001, 36, 'catalog/demo/ipod_nano_5.jpg', 0),
   2625 (2000, 36, 'catalog/demo/ipod_nano_4.jpg', 0),
   2626 (2005, 34, 'catalog/demo/ipod_shuffle_5.jpg', 0),
   2627 (2004, 34, 'catalog/demo/ipod_shuffle_4.jpg', 0),
   2628 (2011, 32, 'catalog/demo/ipod_touch_7.jpg', 0),
   2629 (2010, 32, 'catalog/demo/ipod_touch_6.jpg', 0),
   2630 (2009, 32, 'catalog/demo/ipod_touch_5.jpg', 0),
   2631 (1971, 43, 'catalog/demo/macbook_5.jpg', 0),
   2632 (1970, 43, 'catalog/demo/macbook_4.jpg', 0),
   2633 (1974, 44, 'catalog/demo/macbook_air_4.jpg', 0),
   2634 (1973, 44, 'catalog/demo/macbook_air_2.jpg', 0),
   2635 (1977, 45, 'catalog/demo/macbook_pro_2.jpg', 0),
   2636 (1976, 45, 'catalog/demo/macbook_pro_3.jpg', 0),
   2637 (1986, 31, 'catalog/demo/nikon_d300_3.jpg', 0),
   2638 (1985, 31, 'catalog/demo/nikon_d300_2.jpg', 0),
   2639 (1988, 29, 'catalog/demo/palm_treo_pro_3.jpg', 0),
   2640 (1995, 46, 'catalog/demo/sony_vaio_5.jpg', 0),
   2641 (1994, 46, 'catalog/demo/sony_vaio_4.jpg', 0),
   2642 (1991, 48, 'catalog/demo/ipod_classic_4.jpg', 0),
   2643 (1990, 48, 'catalog/demo/ipod_classic_3.jpg', 0),
   2644 (1981, 40, 'catalog/demo/iphone_2.jpg', 0),
   2645 (1980, 40, 'catalog/demo/iphone_5.jpg', 0),
   2646 (2344, 30, 'catalog/demo/canon_eos_5d_3.jpg', 0),
   2647 (2320, 47, 'catalog/demo/hp_2.jpg', 0),
   2648 (2034, 28, 'catalog/demo/htc_touch_hd_3.jpg', 0),
   2649 (2350, 41, 'catalog/demo/imac_2.jpg', 0),
   2650 (1979, 40, 'catalog/demo/iphone_3.jpg', 0),
   2651 (1978, 40, 'catalog/demo/iphone_4.jpg', 0),
   2652 (1989, 48, 'catalog/demo/ipod_classic_2.jpg', 0),
   2653 (1999, 36, 'catalog/demo/ipod_nano_2.jpg', 0),
   2654 (1998, 36, 'catalog/demo/ipod_nano_3.jpg', 0),
   2655 (2003, 34, 'catalog/demo/ipod_shuffle_2.jpg', 0),
   2656 (2002, 34, 'catalog/demo/ipod_shuffle_3.jpg', 0),
   2657 (2008, 32, 'catalog/demo/ipod_touch_2.jpg', 0),
   2658 (2007, 32, 'catalog/demo/ipod_touch_3.jpg', 0),
   2659 (2006, 32, 'catalog/demo/ipod_touch_4.jpg', 0),
   2660 (1969, 43, 'catalog/demo/macbook_2.jpg', 0),
   2661 (1968, 43, 'catalog/demo/macbook_3.jpg', 0),
   2662 (1972, 44, 'catalog/demo/macbook_air_3.jpg', 0),
   2663 (1975, 45, 'catalog/demo/macbook_pro_4.jpg', 0),
   2664 (1984, 31, 'catalog/demo/nikon_d300_4.jpg', 0),
   2665 (1983, 31, 'catalog/demo/nikon_d300_5.jpg', 0),
   2666 (1987, 29, 'catalog/demo/palm_treo_pro_2.jpg', 0),
   2667 (1993, 46, 'catalog/demo/sony_vaio_2.jpg', 0),
   2668 (1992, 46, 'catalog/demo/sony_vaio_3.jpg', 0),
   2669 (2327, 49, 'catalog/demo/samsung_tab_7.jpg', 0),
   2670 (2326, 49, 'catalog/demo/samsung_tab_6.jpg', 0),
   2671 (2325, 49, 'catalog/demo/samsung_tab_5.jpg', 0),
   2672 (2324, 49, 'catalog/demo/samsung_tab_4.jpg', 0),
   2673 (2323, 49, 'catalog/demo/samsung_tab_3.jpg', 0),
   2674 (2322, 49, 'catalog/demo/samsung_tab_2.jpg', 0),
   2675 (2317, 42, 'catalog/demo/canon_logo.jpg', 0),
   2676 (2316, 42, 'catalog/demo/hp_1.jpg', 0),
   2677 (2315, 42, 'catalog/demo/compaq_presario.jpg', 0),
   2678 (2314, 42, 'catalog/demo/canon_eos_5d_1.jpg', 0),
   2679 (2313, 42, 'catalog/demo/canon_eos_5d_2.jpg', 0);
   2680 
   2681 -----------------------------------------------------------
   2682 
   2683 --
   2684 -- Table structure for table `oc_product_option`
   2685 --
   2686 
   2687 DROP TABLE IF EXISTS `oc_product_option`;
   2688 CREATE TABLE `oc_product_option` (
   2689   `product_option_id` int(11) NOT NULL AUTO_INCREMENT,
   2690   `product_id` int(11) NOT NULL,
   2691   `option_id` int(11) NOT NULL,
   2692   `value` text NOT NULL,
   2693   `required` tinyint(1) NOT NULL,
   2694   PRIMARY KEY (`product_option_id`)
   2695 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   2696 
   2697 --
   2698 -- Dumping data for table `oc_product_option`
   2699 --
   2700 
   2701 INSERT INTO `oc_product_option` (`product_option_id`, `product_id`, `option_id`, `value`, `required`) VALUES
   2702 (224, 35, 11, '', 1),
   2703 (225, 47, 12, '2011-04-22', 1),
   2704 (223, 42, 2, '', 1),
   2705 (217, 42, 5, '', 1),
   2706 (209, 42, 6, '', 1),
   2707 (218, 42, 1, '', 1),
   2708 (208, 42, 4, 'test', 1),
   2709 (219, 42, 8, '2011-02-20', 1),
   2710 (222, 42, 7, '', 1),
   2711 (221, 42, 9, '22:25', 1),
   2712 (220, 42, 10, '2011-02-20 22:25', 1),
   2713 (226, 30, 5, '', 1);
   2714 
   2715 -----------------------------------------------------------
   2716 
   2717 --
   2718 -- Table structure for table `oc_product_option_value`
   2719 --
   2720 
   2721 DROP TABLE IF EXISTS `oc_product_option_value`;
   2722 CREATE TABLE `oc_product_option_value` (
   2723   `product_option_value_id` int(11) NOT NULL AUTO_INCREMENT,
   2724   `product_option_id` int(11) NOT NULL,
   2725   `product_id` int(11) NOT NULL,
   2726   `option_id` int(11) NOT NULL,
   2727   `option_value_id` int(11) NOT NULL,
   2728   `quantity` int(3) NOT NULL,
   2729   `subtract` tinyint(1) NOT NULL,
   2730   `price` decimal(15,4) NOT NULL,
   2731   `price_prefix` varchar(1) NOT NULL,
   2732   `points` int(8) NOT NULL,
   2733   `points_prefix` varchar(1) NOT NULL,
   2734   `weight` decimal(15,8) NOT NULL,
   2735   `weight_prefix` varchar(1) NOT NULL,
   2736   PRIMARY KEY (`product_option_value_id`)
   2737 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   2738 
   2739 --
   2740 -- Dumping data for table `oc_product_option_value`
   2741 --
   2742 
   2743 INSERT INTO `oc_product_option_value` (`product_option_value_id`, `product_option_id`, `product_id`, `option_id`, `option_value_id`, `quantity`, `subtract`, `price`, `price_prefix`, `points`, `points_prefix`, `weight`, `weight_prefix`) VALUES
   2744 (1, 217, 42, 5, 41, 100, 0, '1.0000', '+', 0, '+', '1.00000000', '+'),
   2745 (6, 218, 42, 1, 31, 146, 1, '20.0000', '+', 2, '-', '20.00000000', '+'),
   2746 (7, 218, 42, 1, 43, 300, 1, '30.0000', '+', 3, '+', '30.00000000', '+'),
   2747 (5, 218, 42, 1, 32, 96, 1, '10.0000', '+', 1, '+', '10.00000000', '+'),
   2748 (4, 217, 42, 5, 39, 92, 1, '4.0000', '+', 0, '+', '4.00000000', '+'),
   2749 (2, 217, 42, 5, 42, 200, 1, '2.0000', '+', 0, '+', '2.00000000', '+'),
   2750 (3, 217, 42, 5, 40, 300, 0, '3.0000', '+', 0, '+', '3.00000000', '+'),
   2751 (8, 223, 42, 2, 23, 48, 1, '10.0000', '+', 0, '+', '10.00000000', '+'),
   2752 (10, 223, 42, 2, 44, 2696, 1, '30.0000', '+', 0, '+', '30.00000000', '+'),
   2753 (9, 223, 42, 2, 24, 194, 1, '20.0000', '+', 0, '+', '20.00000000', '+'),
   2754 (11, 223, 42, 2, 45, 3998, 1, '40.0000', '+', 0, '+', '40.00000000', '+'),
   2755 (12, 224, 35, 11, 46, 0, 1, '5.0000', '+', 0, '+', '0.00000000', '+'),
   2756 (13, 224, 35, 11, 47, 10, 1, '10.0000', '+', 0, '+', '0.00000000', '+'),
   2757 (14, 224, 35, 11, 48, 15, 1, '15.0000', '+', 0, '+', '0.00000000', '+'),
   2758 (16, 226, 30, 5, 40, 5, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
   2759 (15, 226, 30, 5, 39, 2, 1, '0.0000', '+', 0, '+', '0.00000000', '+');
   2760 
   2761 -----------------------------------------------------------
   2762 
   2763 --
   2764 -- Table structure for table `oc_product_recurring`
   2765 --
   2766 
   2767 DROP TABLE IF EXISTS `oc_product_recurring`;
   2768 CREATE TABLE `oc_product_recurring` (
   2769   `product_id` int(11) NOT NULL,
   2770   `recurring_id` int(11) NOT NULL,
   2771   `customer_group_id` int(11) NOT NULL,
   2772   PRIMARY KEY (`product_id`,`recurring_id`,`customer_group_id`)
   2773 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   2774 
   2775 -----------------------------------------------------------
   2776 
   2777 --
   2778 -- Table structure for table `oc_product_related`
   2779 --
   2780 
   2781 DROP TABLE IF EXISTS `oc_product_related`;
   2782 CREATE TABLE `oc_product_related` (
   2783   `product_id` int(11) NOT NULL,
   2784   `related_id` int(11) NOT NULL,
   2785   PRIMARY KEY (`product_id`,`related_id`)
   2786 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   2787 
   2788 --
   2789 -- Dumping data for table `oc_product_related`
   2790 --
   2791 
   2792 INSERT INTO `oc_product_related` (`product_id`, `related_id`) VALUES
   2793 (40, 42),
   2794 (41, 42),
   2795 (42, 40),
   2796 (42, 41);
   2797 
   2798 -----------------------------------------------------------
   2799 
   2800 --
   2801 -- Table structure for table `oc_product_reward`
   2802 --
   2803 
   2804 DROP TABLE IF EXISTS `oc_product_reward`;
   2805 CREATE TABLE `oc_product_reward` (
   2806   `product_reward_id` int(11) NOT NULL AUTO_INCREMENT,
   2807   `product_id` int(11) NOT NULL DEFAULT '0',
   2808   `customer_group_id` int(11) NOT NULL DEFAULT '0',
   2809   `points` int(8) NOT NULL DEFAULT '0',
   2810   PRIMARY KEY (`product_reward_id`)
   2811 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   2812 
   2813 --
   2814 -- Dumping data for table `oc_product_reward`
   2815 --
   2816 
   2817 INSERT INTO `oc_product_reward` (`product_reward_id`, `product_id`, `customer_group_id`, `points`) VALUES
   2818 (515, 42, 1, 100),
   2819 (519, 47, 1, 300),
   2820 (379, 28, 1, 400),
   2821 (329, 43, 1, 600),
   2822 (339, 29, 1, 0),
   2823 (343, 48, 1, 0),
   2824 (335, 40, 1, 0),
   2825 (539, 30, 1, 200),
   2826 (331, 44, 1, 700),
   2827 (333, 45, 1, 800),
   2828 (337, 31, 1, 0),
   2829 (425, 35, 1, 0),
   2830 (345, 33, 1, 0),
   2831 (347, 46, 1, 0),
   2832 (545, 41, 1, 0),
   2833 (351, 36, 1, 0),
   2834 (353, 34, 1, 0),
   2835 (355, 32, 1, 0),
   2836 (521, 49, 1, 1000);
   2837 
   2838 -----------------------------------------------------------
   2839 
   2840 --
   2841 -- Table structure for table `oc_product_special`
   2842 --
   2843 
   2844 DROP TABLE IF EXISTS `oc_product_special`;
   2845 CREATE TABLE `oc_product_special` (
   2846   `product_special_id` int(11) NOT NULL AUTO_INCREMENT,
   2847   `product_id` int(11) NOT NULL,
   2848   `customer_group_id` int(11) NOT NULL,
   2849   `priority` int(5) NOT NULL DEFAULT '1',
   2850   `price` decimal(15,4) NOT NULL DEFAULT '0.0000',
   2851   `date_start` date NOT NULL DEFAULT '0000-00-00',
   2852   `date_end` date NOT NULL DEFAULT '0000-00-00',
   2853   PRIMARY KEY (`product_special_id`),
   2854   KEY `product_id` (`product_id`)
   2855 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   2856 
   2857 --
   2858 -- Dumping data for table `oc_product_special`
   2859 --
   2860 
   2861 INSERT INTO `oc_product_special` (`product_special_id`, `product_id`, `customer_group_id`, `priority`, `price`, `date_start`, `date_end`) VALUES
   2862 (419, 42, 1, 1, '90.0000', '0000-00-00', '0000-00-00'),
   2863 (439, 30, 1, 2, '90.0000', '0000-00-00', '0000-00-00'),
   2864 (438, 30, 1, 1, '80.0000', '0000-00-00', '0000-00-00');
   2865 
   2866 -----------------------------------------------------------
   2867 
   2868 --
   2869 -- Table structure for table `oc_product_to_category`
   2870 --
   2871 
   2872 DROP TABLE IF EXISTS `oc_product_to_category`;
   2873 CREATE TABLE `oc_product_to_category` (
   2874   `product_id` int(11) NOT NULL,
   2875   `category_id` int(11) NOT NULL,
   2876   PRIMARY KEY (`product_id`,`category_id`),
   2877   KEY `category_id` (`category_id`)
   2878 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   2879 
   2880 --
   2881 -- Dumping data for table `oc_product_to_category`
   2882 --
   2883 
   2884 INSERT INTO `oc_product_to_category` (`product_id`, `category_id`) VALUES
   2885 (28, 20),
   2886 (28, 24),
   2887 (29, 20),
   2888 (29, 24),
   2889 (30, 20),
   2890 (30, 33),
   2891 (31, 33),
   2892 (32, 34),
   2893 (33, 20),
   2894 (33, 28),
   2895 (34, 34),
   2896 (35, 20),
   2897 (36, 34),
   2898 (40, 20),
   2899 (40, 24),
   2900 (41, 27),
   2901 (42, 20),
   2902 (42, 28),
   2903 (43, 18),
   2904 (43, 20),
   2905 (44, 18),
   2906 (44, 20),
   2907 (45, 18),
   2908 (46, 18),
   2909 (46, 20),
   2910 (47, 18),
   2911 (47, 20),
   2912 (48, 20),
   2913 (48, 34),
   2914 (49, 57);
   2915 
   2916 -----------------------------------------------------------
   2917 
   2918 --
   2919 -- Table structure for table `oc_product_to_download`
   2920 --
   2921 
   2922 DROP TABLE IF EXISTS `oc_product_to_download`;
   2923 CREATE TABLE `oc_product_to_download` (
   2924   `product_id` int(11) NOT NULL,
   2925   `download_id` int(11) NOT NULL,
   2926   PRIMARY KEY (`product_id`,`download_id`)
   2927 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   2928 
   2929 -----------------------------------------------------------
   2930 
   2931 --
   2932 -- Table structure for table `oc_product_to_layout`
   2933 --
   2934 
   2935 DROP TABLE IF EXISTS `oc_product_to_layout`;
   2936 CREATE TABLE `oc_product_to_layout` (
   2937   `product_id` int(11) NOT NULL,
   2938   `store_id` int(11) NOT NULL,
   2939   `layout_id` int(11) NOT NULL,
   2940   PRIMARY KEY (`product_id`,`store_id`)
   2941 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   2942 
   2943 -----------------------------------------------------------
   2944 
   2945 --
   2946 -- Table structure for table `oc_product_to_store`
   2947 --
   2948 
   2949 DROP TABLE IF EXISTS `oc_product_to_store`;
   2950 CREATE TABLE `oc_product_to_store` (
   2951   `product_id` int(11) NOT NULL,
   2952   `store_id` int(11) NOT NULL DEFAULT '0',
   2953   PRIMARY KEY (`product_id`,`store_id`)
   2954 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   2955 
   2956 --
   2957 -- Dumping data for table `oc_product_to_store`
   2958 --
   2959 
   2960 INSERT INTO `oc_product_to_store` (`product_id`, `store_id`) VALUES
   2961 (28, 0),
   2962 (29, 0),
   2963 (30, 0),
   2964 (31, 0),
   2965 (32, 0),
   2966 (33, 0),
   2967 (34, 0),
   2968 (35, 0),
   2969 (36, 0),
   2970 (40, 0),
   2971 (41, 0),
   2972 (42, 0),
   2973 (43, 0),
   2974 (44, 0),
   2975 (45, 0),
   2976 (46, 0),
   2977 (47, 0),
   2978 (48, 0),
   2979 (49, 0);
   2980 
   2981 -----------------------------------------------------------
   2982 
   2983 --
   2984 -- Table structure for table `oc_recurring`
   2985 --
   2986 
   2987 DROP TABLE IF EXISTS `oc_recurring`;
   2988 CREATE TABLE `oc_recurring` (
   2989   `recurring_id` int(11) NOT NULL AUTO_INCREMENT,
   2990   `price` decimal(10,4) NOT NULL,
   2991   `frequency` enum('day','week','semi_month','month','year') NOT NULL,
   2992   `duration` int(10) unsigned NOT NULL,
   2993   `cycle` int(10) unsigned NOT NULL,
   2994   `trial_status` tinyint(4) NOT NULL,
   2995   `trial_price` decimal(10,4) NOT NULL,
   2996   `trial_frequency` enum('day','week','semi_month','month','year') NOT NULL,
   2997   `trial_duration` int(10) unsigned NOT NULL,
   2998   `trial_cycle` int(10) unsigned NOT NULL,
   2999   `status` tinyint(4) NOT NULL,
   3000   `sort_order` int(11) NOT NULL,
   3001   PRIMARY KEY (`recurring_id`)
   3002 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   3003 
   3004 -----------------------------------------------------------
   3005 
   3006 --
   3007 -- Table structure for table `oc_recurring_description`
   3008 --
   3009 
   3010 DROP TABLE IF EXISTS `oc_recurring_description`;
   3011 CREATE TABLE `oc_recurring_description` (
   3012   `recurring_id` int(11) NOT NULL,
   3013   `language_id` int(11) NOT NULL,
   3014   `name` varchar(255) NOT NULL,
   3015   PRIMARY KEY (`recurring_id`,`language_id`)
   3016 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   3017 
   3018 -----------------------------------------------------------
   3019 
   3020 --
   3021 -- Table structure for table `oc_return`
   3022 --
   3023 
   3024 DROP TABLE IF EXISTS `oc_return`;
   3025 CREATE TABLE `oc_return` (
   3026   `return_id` int(11) NOT NULL AUTO_INCREMENT,
   3027   `order_id` int(11) NOT NULL,
   3028   `product_id` int(11) NOT NULL,
   3029   `customer_id` int(11) NOT NULL,
   3030   `firstname` varchar(32) NOT NULL,
   3031   `lastname` varchar(32) NOT NULL,
   3032   `email` varchar(96) NOT NULL,
   3033   `telephone` varchar(32) NOT NULL,
   3034   `product` varchar(255) NOT NULL,
   3035   `model` varchar(64) NOT NULL,
   3036   `quantity` int(4) NOT NULL,
   3037   `opened` tinyint(1) NOT NULL,
   3038   `return_reason_id` int(11) NOT NULL,
   3039   `return_action_id` int(11) NOT NULL,
   3040   `return_status_id` int(11) NOT NULL,
   3041   `comment` text,
   3042   `date_ordered` date NOT NULL DEFAULT '0000-00-00',
   3043   `date_added` datetime NOT NULL,
   3044   `date_modified` datetime NOT NULL,
   3045   PRIMARY KEY (`return_id`)
   3046 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   3047 
   3048 -----------------------------------------------------------
   3049 
   3050 --
   3051 -- Table structure for table `oc_return_action`
   3052 --
   3053 
   3054 DROP TABLE IF EXISTS `oc_return_action`;
   3055 CREATE TABLE `oc_return_action` (
   3056   `return_action_id` int(11) NOT NULL AUTO_INCREMENT,
   3057   `language_id` int(11) NOT NULL DEFAULT '0',
   3058   `name` varchar(64) NOT NULL,
   3059   PRIMARY KEY (`return_action_id`,`language_id`)
   3060 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   3061 
   3062 --
   3063 -- Dumping data for table `oc_return_action`
   3064 --
   3065 
   3066 INSERT INTO `oc_return_action` (`return_action_id`, `language_id`, `name`) VALUES
   3067 (1, 1, 'Refunded'),
   3068 (2, 1, 'Credit Issued'),
   3069 (3, 1, 'Replacement Sent');
   3070 
   3071 -----------------------------------------------------------
   3072 
   3073 --
   3074 -- Table structure for table `oc_return_history`
   3075 --
   3076 
   3077 DROP TABLE IF EXISTS `oc_return_history`;
   3078 CREATE TABLE `oc_return_history` (
   3079   `return_history_id` int(11) NOT NULL AUTO_INCREMENT,
   3080   `return_id` int(11) NOT NULL,
   3081   `return_status_id` int(11) NOT NULL,
   3082   `notify` tinyint(1) NOT NULL,
   3083   `comment` text NOT NULL,
   3084   `date_added` datetime NOT NULL,
   3085   PRIMARY KEY (`return_history_id`)
   3086 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   3087 
   3088 -----------------------------------------------------------
   3089 
   3090 --
   3091 -- Table structure for table `oc_return_reason`
   3092 --
   3093 
   3094 DROP TABLE IF EXISTS `oc_return_reason`;
   3095 CREATE TABLE `oc_return_reason` (
   3096   `return_reason_id` int(11) NOT NULL AUTO_INCREMENT,
   3097   `language_id` int(11) NOT NULL DEFAULT '0',
   3098   `name` varchar(128) NOT NULL,
   3099   PRIMARY KEY (`return_reason_id`,`language_id`)
   3100 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   3101 
   3102 --
   3103 -- Dumping data for table `oc_return_reason`
   3104 --
   3105 
   3106 INSERT INTO `oc_return_reason` (`return_reason_id`, `language_id`, `name`) VALUES
   3107 (1, 1, 'Dead On Arrival'),
   3108 (2, 1, 'Received Wrong Item'),
   3109 (3, 1, 'Order Error'),
   3110 (4, 1, 'Faulty, please supply details'),
   3111 (5, 1, 'Other, please supply details');
   3112 
   3113 -----------------------------------------------------------
   3114 
   3115 --
   3116 -- Table structure for table `oc_return_status`
   3117 --
   3118 
   3119 DROP TABLE IF EXISTS `oc_return_status`;
   3120 CREATE TABLE `oc_return_status` (
   3121   `return_status_id` int(11) NOT NULL AUTO_INCREMENT,
   3122   `language_id` int(11) NOT NULL DEFAULT '0',
   3123   `name` varchar(32) NOT NULL,
   3124   PRIMARY KEY (`return_status_id`,`language_id`)
   3125 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   3126 
   3127 --
   3128 -- Dumping data for table `oc_return_status`
   3129 --
   3130 
   3131 INSERT INTO `oc_return_status` (`return_status_id`, `language_id`, `name`) VALUES
   3132 (1, 1, 'Pending'),
   3133 (3, 1, 'Complete'),
   3134 (2, 1, 'Awaiting Products');
   3135 
   3136 -----------------------------------------------------------
   3137 
   3138 --
   3139 -- Table structure for table `oc_review`
   3140 --
   3141 
   3142 DROP TABLE IF EXISTS `oc_review`;
   3143 CREATE TABLE `oc_review` (
   3144   `review_id` int(11) NOT NULL AUTO_INCREMENT,
   3145   `product_id` int(11) NOT NULL,
   3146   `customer_id` int(11) NOT NULL,
   3147   `author` varchar(64) NOT NULL,
   3148   `text` text NOT NULL,
   3149   `rating` int(1) NOT NULL,
   3150   `status` tinyint(1) NOT NULL DEFAULT '0',
   3151   `date_added` datetime NOT NULL,
   3152   `date_modified` datetime NOT NULL,
   3153   PRIMARY KEY (`review_id`),
   3154   KEY `product_id` (`product_id`)
   3155 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   3156 
   3157 -----------------------------------------------------------
   3158 
   3159 --
   3160 -- Table structure for table `oc_statistics`
   3161 --
   3162 
   3163 DROP TABLE IF EXISTS `oc_statistics`;
   3164 CREATE TABLE `oc_statistics` (
   3165   `statistics_id` int(11) NOT NULL AUTO_INCREMENT,
   3166   `code` varchar(64) NOT NULL,
   3167   `value` decimal(15,4) NOT NULL,
   3168   PRIMARY KEY (`statistics_id`)
   3169 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   3170 
   3171 
   3172 --
   3173 -- Dumping data for table `oc_statistics`
   3174 --
   3175 
   3176 INSERT INTO `oc_statistics` (`statistics_id`, `code`, `value`) VALUES
   3177 (1, 'order_sale', 0),
   3178 (2, 'order_processing', 0),
   3179 (3, 'order_complete', 0),
   3180 (4, 'order_other', 0),
   3181 (5, 'returns', 0),
   3182 (6, 'product', 0),
   3183 (7, 'review', 0);
   3184 
   3185 -----------------------------------------------------------
   3186 
   3187 --
   3188 -- Table structure for table `oc_session`
   3189 --
   3190 
   3191 DROP TABLE IF EXISTS `oc_session`;
   3192 CREATE TABLE `oc_session` (
   3193   `session_id` varchar(32) NOT NULL,
   3194   `data` text NOT NULL,
   3195   `expire` datetime NOT NULL,
   3196   PRIMARY KEY (`session_id`)
   3197 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   3198 
   3199 -----------------------------------------------------------
   3200 
   3201 --
   3202 -- Table structure for table `oc_setting`
   3203 --
   3204 
   3205 DROP TABLE IF EXISTS `oc_setting`;
   3206 CREATE TABLE `oc_setting` (
   3207   `setting_id` int(11) NOT NULL AUTO_INCREMENT,
   3208   `store_id` int(11) NOT NULL DEFAULT '0',
   3209   `code` varchar(128) NOT NULL,
   3210   `key` varchar(128) NOT NULL,
   3211   `value` text NOT NULL,
   3212   `serialized` tinyint(1) NOT NULL,
   3213   PRIMARY KEY (`setting_id`)
   3214 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   3215 
   3216 --
   3217 -- Dumping data for table `oc_setting`
   3218 --
   3219 
   3220 INSERT INTO `oc_setting` (`store_id`, `code`, `key`, `value`, `serialized`) VALUES
   3221 (0, 'config', 'config_robots', 'abot\r\ndbot\r\nebot\r\nhbot\r\nkbot\r\nlbot\r\nmbot\r\nnbot\r\nobot\r\npbot\r\nrbot\r\nsbot\r\ntbot\r\nvbot\r\nybot\r\nzbot\r\nbot.\r\nbot/\r\n_bot\r\n.bot\r\n/bot\r\n-bot\r\n:bot\r\n(bot\r\ncrawl\r\nslurp\r\nspider\r\nseek\r\naccoona\r\nacoon\r\nadressendeutschland\r\nah-ha.com\r\nahoy\r\naltavista\r\nananzi\r\nanthill\r\nappie\r\narachnophilia\r\narale\r\naraneo\r\naranha\r\narchitext\r\naretha\r\narks\r\nasterias\r\natlocal\r\natn\r\natomz\r\naugurfind\r\nbackrub\r\nbannana_bot\r\nbaypup\r\nbdfetch\r\nbig brother\r\nbiglotron\r\nbjaaland\r\nblackwidow\r\nblaiz\r\nblog\r\nblo.\r\nbloodhound\r\nboitho\r\nbooch\r\nbradley\r\nbutterfly\r\ncalif\r\ncassandra\r\nccubee\r\ncfetch\r\ncharlotte\r\nchurl\r\ncienciaficcion\r\ncmc\r\ncollective\r\ncomagent\r\ncombine\r\ncomputingsite\r\ncsci\r\ncurl\r\ncusco\r\ndaumoa\r\ndeepindex\r\ndelorie\r\ndepspid\r\ndeweb\r\ndie blinde kuh\r\ndigger\r\nditto\r\ndmoz\r\ndocomo\r\ndownload express\r\ndtaagent\r\ndwcp\r\nebiness\r\nebingbong\r\ne-collector\r\nejupiter\r\nemacs-w3 search engine\r\nesther\r\nevliya celebi\r\nezresult\r\nfalcon\r\nfelix ide\r\nferret\r\nfetchrover\r\nfido\r\nfindlinks\r\nfireball\r\nfish search\r\nfouineur\r\nfunnelweb\r\ngazz\r\ngcreep\r\ngenieknows\r\ngetterroboplus\r\ngeturl\r\nglx\r\ngoforit\r\ngolem\r\ngrabber\r\ngrapnel\r\ngralon\r\ngriffon\r\ngromit\r\ngrub\r\ngulliver\r\nhamahakki\r\nharvest\r\nhavindex\r\nhelix\r\nheritrix\r\nhku www octopus\r\nhomerweb\r\nhtdig\r\nhtml index\r\nhtml_analyzer\r\nhtmlgobble\r\nhubater\r\nhyper-decontextualizer\r\nia_archiver\r\nibm_planetwide\r\nichiro\r\niconsurf\r\niltrovatore\r\nimage.kapsi.net\r\nimagelock\r\nincywincy\r\nindexer\r\ninfobee\r\ninformant\r\ningrid\r\ninktomisearch.com\r\ninspector web\r\nintelliagent\r\ninternet shinchakubin\r\nip3000\r\niron33\r\nisraeli-search\r\nivia\r\njack\r\njakarta\r\njavabee\r\njetbot\r\njumpstation\r\nkatipo\r\nkdd-explorer\r\nkilroy\r\nknowledge\r\nkototoi\r\nkretrieve\r\nlabelgrabber\r\nlachesis\r\nlarbin\r\nlegs\r\nlibwww\r\nlinkalarm\r\nlink validator\r\nlinkscan\r\nlockon\r\nlwp\r\nlycos\r\nmagpie\r\nmantraagent\r\nmapoftheinternet\r\nmarvin/\r\nmattie\r\nmediafox\r\nmediapartners\r\nmercator\r\nmerzscope\r\nmicrosoft url control\r\nminirank\r\nmiva\r\nmj12\r\nmnogosearch\r\nmoget\r\nmonster\r\nmoose\r\nmotor\r\nmultitext\r\nmuncher\r\nmuscatferret\r\nmwd.search\r\nmyweb\r\nnajdi\r\nnameprotect\r\nnationaldirectory\r\nnazilla\r\nncsa beta\r\nnec-meshexplorer\r\nnederland.zoek\r\nnetcarta webmap engine\r\nnetmechanic\r\nnetresearchserver\r\nnetscoop\r\nnewscan-online\r\nnhse\r\nnokia6682/\r\nnomad\r\nnoyona\r\nnutch\r\nnzexplorer\r\nobjectssearch\r\noccam\r\nomni\r\nopen text\r\nopenfind\r\nopenintelligencedata\r\norb search\r\nosis-project\r\npack rat\r\npageboy\r\npagebull\r\npage_verifier\r\npanscient\r\nparasite\r\npartnersite\r\npatric\r\npear.\r\npegasus\r\nperegrinator\r\npgp key agent\r\nphantom\r\nphpdig\r\npicosearch\r\npiltdownman\r\npimptrain\r\npinpoint\r\npioneer\r\npiranha\r\nplumtreewebaccessor\r\npogodak\r\npoirot\r\npompos\r\npoppelsdorf\r\npoppi\r\npopular iconoclast\r\npsycheclone\r\npublisher\r\npython\r\nrambler\r\nraven search\r\nroach\r\nroad runner\r\nroadhouse\r\nrobbie\r\nrobofox\r\nrobozilla\r\nrules\r\nsalty\r\nsbider\r\nscooter\r\nscoutjet\r\nscrubby\r\nsearch.\r\nsearchprocess\r\nsemanticdiscovery\r\nsenrigan\r\nsg-scout\r\nshai''hulud\r\nshark\r\nshopwiki\r\nsidewinder\r\nsift\r\nsilk\r\nsimmany\r\nsite searcher\r\nsite valet\r\nsitetech-rover\r\nskymob.com\r\nsleek\r\nsmartwit\r\nsna-\r\nsnappy\r\nsnooper\r\nsohu\r\nspeedfind\r\nsphere\r\nsphider\r\nspinner\r\nspyder\r\nsteeler/\r\nsuke\r\nsuntek\r\nsupersnooper\r\nsurfnomore\r\nsven\r\nsygol\r\nszukacz\r\ntach black widow\r\ntarantula\r\ntempleton\r\n/teoma\r\nt-h-u-n-d-e-r-s-t-o-n-e\r\ntheophrastus\r\ntitan\r\ntitin\r\ntkwww\r\ntoutatis\r\nt-rex\r\ntutorgig\r\ntwiceler\r\ntwisted\r\nucsd\r\nudmsearch\r\nurl check\r\nupdated\r\nvagabondo\r\nvalkyrie\r\nverticrawl\r\nvictoria\r\nvision-search\r\nvolcano\r\nvoyager/\r\nvoyager-hc\r\nw3c_validator\r\nw3m2\r\nw3mir\r\nwalker\r\nwallpaper\r\nwanderer\r\nwauuu\r\nwavefire\r\nweb core\r\nweb hopper\r\nweb wombat\r\nwebbandit\r\nwebcatcher\r\nwebcopy\r\nwebfoot\r\nweblayers\r\nweblinker\r\nweblog monitor\r\nwebmirror\r\nwebmonkey\r\nwebquest\r\nwebreaper\r\nwebsitepulse\r\nwebsnarf\r\nwebstolperer\r\nwebvac\r\nwebwalk\r\nwebwatch\r\nwebwombat\r\nwebzinger\r\nwhizbang\r\nwhowhere\r\nwild ferret\r\nworldlight\r\nwwwc\r\nwwwster\r\nxenu\r\nxget\r\nxift\r\nxirq\r\nyandex\r\nyanga\r\nyeti\r\nyodao\r\nzao\r\nzippp\r\nzyborg', 0),
   3222 (0, 'config', 'config_shared', '0', 0),
   3223 (0, 'config', 'config_secure', '0', 0),
   3224 (0, 'voucher', 'total_voucher_sort_order', '8', 0),
   3225 (0, 'voucher', 'total_voucher_status', '1', 0),
   3226 (0, 'config', 'config_fraud_detection', '0', 0),
   3227 (0, 'config', 'config_ftp_status', '0', 0),
   3228 (0, 'config', 'config_ftp_root', '', 0),
   3229 (0, 'config', 'config_ftp_password', '', 0),
   3230 (0, 'config', 'config_ftp_username', '', 0),
   3231 (0, 'config', 'config_ftp_port', '21', 0),
   3232 (0, 'config', 'config_ftp_hostname', '', 0),
   3233 (0, 'config', 'config_meta_title', 'Your Store', 0),
   3234 (0, 'config', 'config_meta_description', 'My Store', 0),
   3235 (0, 'config', 'config_meta_keyword', '', 0),
   3236 (0, 'config', 'config_theme', 'default', 0),
   3237 (0, 'config', 'config_layout_id', '4', 0),
   3238 (0, 'config', 'config_country_id', '222', 0),
   3239 (0, 'config', 'config_zone_id', '3563', 0),
   3240 (0, 'config', 'config_language', 'en-gb', 0),
   3241 (0, 'config', 'config_admin_language', 'en-gb', 0),
   3242 (0, 'config', 'config_currency', 'USD', 0),
   3243 (0, 'config', 'config_currency_auto', '1', 0),
   3244 (0, 'config', 'config_length_class_id', '1', 0),
   3245 (0, 'config', 'config_weight_class_id', '1', 0),
   3246 (0, 'config', 'config_product_count', '1', 0),
   3247 (0, 'config', 'config_limit_admin', '20', 0),
   3248 (0, 'config', 'config_review_status', '1', 0),
   3249 (0, 'config', 'config_review_guest', '1', 0),
   3250 (0, 'config', 'config_voucher_min', '1', 0),
   3251 (0, 'config', 'config_voucher_max', '1000', 0),
   3252 (0, 'config', 'config_tax', '1', 0),
   3253 (0, 'config', 'config_tax_default', 'shipping', 0),
   3254 (0, 'config', 'config_tax_customer', 'shipping', 0),
   3255 (0, 'config', 'config_customer_online', '0', 0),
   3256 (0, 'config', 'config_customer_activity', '0', 0),
   3257 (0, 'config', 'config_customer_search', '0', 0),
   3258 (0, 'config', 'config_customer_group_id', '1', 0),
   3259 (0, 'config', 'config_customer_group_display', '["1"]', 1),
   3260 (0, 'config', 'config_customer_price', '0', 0),
   3261 (0, 'config', 'config_account_id', '3', 0),
   3262 (0, 'config', 'config_invoice_prefix', 'INV-2013-00', 0),
   3263 (0, 'config', 'config_api_id', '1', 0),
   3264 (0, 'config', 'config_cart_weight', '1', 0),
   3265 (0, 'config', 'config_checkout_guest', '1', 0),
   3266 (0, 'config', 'config_checkout_id', '5', 0),
   3267 (0, 'config', 'config_order_status_id', '1', 0),
   3268 (0, 'config', 'config_processing_status', '["5","1","2","12","3"]', 1),
   3269 (0, 'config', 'config_complete_status', '["5","3"]', 1),
   3270 (0, 'config', 'config_stock_display', '0', 0),
   3271 (0, 'config', 'config_stock_warning', '0', 0),
   3272 (0, 'config', 'config_stock_checkout', '0', 0),
   3273 (0, 'config', 'config_affiliate_approval', '0', 0),
   3274 (0, 'config', 'config_affiliate_auto', '0', 0),
   3275 (0, 'config', 'config_affiliate_commission', '5', 0),
   3276 (0, 'config', 'config_affiliate_id', '4', 0),
   3277 (0, 'config', 'config_return_id', '0', 0),
   3278 (0, 'config', 'config_return_status_id', '2', 0),
   3279 (0, 'config', 'config_logo', 'catalog/logo.png', 0),
   3280 (0, 'config', 'config_icon', 'catalog/cart.png', 0),
   3281 (0, 'config', 'config_comment', '', 0),
   3282 (0, 'config', 'config_open', '', 0),
   3283 (0, 'config', 'config_image', '', 0),
   3284 (0, 'config', 'config_fax', '', 0),
   3285 (0, 'config', 'config_telephone', '123456789', 0),
   3286 (0, 'config', 'config_email', 'demo@opencart.com', 0),
   3287 (0, 'config', 'config_geocode', '', 0),
   3288 (0, 'config', 'config_owner', 'Your Name', 0),
   3289 (0, 'config', 'config_address', 'Address 1', 0),
   3290 (0, 'config', 'config_name', 'Your Store', 0),
   3291 (0, 'config', 'config_seo_url', '0', 0),
   3292 (0, 'config', 'config_file_max_size', '300000', 0),
   3293 (0, 'config', 'config_file_ext_allowed', 'zip\r\ntxt\r\npng\r\njpe\r\njpeg\r\njpg\r\ngif\r\nbmp\r\nico\r\ntiff\r\ntif\r\nsvg\r\nsvgz\r\nzip\r\nrar\r\nmsi\r\ncab\r\nmp3\r\nqt\r\nmov\r\npdf\r\npsd\r\nai\r\neps\r\nps\r\ndoc', 0),
   3294 (0, 'config', 'config_file_mime_allowed', 'text/plain\r\nimage/png\r\nimage/jpeg\r\nimage/gif\r\nimage/bmp\r\nimage/tiff\r\nimage/svg+xml\r\napplication/zip\r\n"application/zip"\r\napplication/x-zip\r\n"application/x-zip"\r\napplication/x-zip-compressed\r\n"application/x-zip-compressed"\r\napplication/rar\r\n"application/rar"\r\napplication/x-rar\r\n"application/x-rar"\r\napplication/x-rar-compressed\r\n"application/x-rar-compressed"\r\napplication/octet-stream\r\n"application/octet-stream"\r\naudio/mpeg\r\nvideo/quicktime\r\napplication/pdf', 0),
   3295 (0, 'config', 'config_maintenance', '0', 0),
   3296 (0, 'config', 'config_password', '1', 0),
   3297 (0, 'config', 'config_encryption', '', 0),
   3298 (0, 'config', 'config_compression', '0', 0),
   3299 (0, 'config', 'config_error_display', '1', 0),
   3300 (0, 'config', 'config_error_log', '1', 0),
   3301 (0, 'config', 'config_error_filename', 'error.log', 0),
   3302 (0, 'config', 'config_google_analytics', '', 0),
   3303 (0, 'config', 'config_mail_engine', 'mail', 0),
   3304 (0, 'config', 'config_mail_parameter', '', 0),
   3305 (0, 'config', 'config_mail_smtp_hostname', '', 0),
   3306 (0, 'config', 'config_mail_smtp_username', '', 0),
   3307 (0, 'config', 'config_mail_smtp_password', '', 0),
   3308 (0, 'config', 'config_mail_smtp_port', '25', 0),
   3309 (0, 'config', 'config_mail_smtp_timeout', '5', 0),
   3310 (0, 'config', 'config_mail_alert_email', '', 0),
   3311 (0, 'config', 'config_mail_alert', '["order"]', 1),
   3312 (0, 'config', 'config_captcha', 'basic', 0),
   3313 (0, 'config', 'config_captcha_page', '["review","return","contact"]', 1),
   3314 (0, 'config', 'config_login_attempts', '5', 0),
   3315 (0, 'payment_free_checkout', 'payment_free_checkout_status', '1', 0),
   3316 (0, 'payment_free_checkout', 'free_checkout_order_status_id', '1', 0),
   3317 (0, 'payment_free_checkout', 'payment_free_checkout_sort_order', '1', 0),
   3318 (0, 'payment_cod', 'payment_cod_sort_order', '5', 0),
   3319 (0, 'payment_cod', 'payment_cod_total', '0.01', 0),
   3320 (0, 'payment_cod', 'payment_cod_order_status_id', '1', 0),
   3321 (0, 'payment_cod', 'payment_cod_geo_zone_id', '0', 0),
   3322 (0, 'payment_cod', 'payment_cod_status', '1', 0),
   3323 (0, 'shipping_flat', 'shipping_flat_sort_order', '1', 0),
   3324 (0, 'shipping_flat', 'shipping_flat_status', '1', 0),
   3325 (0, 'shipping_flat', 'shipping_flat_geo_zone_id', '0', 0),
   3326 (0, 'shipping_flat', 'shipping_flat_tax_class_id', '9', 0),
   3327 (0, 'shipping_flat', 'shipping_flat_cost', '5.00', 0),
   3328 (0, 'total_shipping', 'total_shipping_sort_order', '3', 0),
   3329 (0, 'total_sub_total', 'sub_total_sort_order', '1', 0),
   3330 (0, 'total_sub_total', 'total_sub_total_status', '1', 0),
   3331 (0, 'total_tax', 'total_tax_status', '1', 0),
   3332 (0, 'total_total', 'total_total_sort_order', '9', 0),
   3333 (0, 'total_total', 'total_total_status', '1', 0),
   3334 (0, 'total_tax', 'total_tax_sort_order', '5', 0),
   3335 (0, 'total_credit', 'total_credit_sort_order', '7', 0),
   3336 (0, 'total_credit', 'total_credit_status', '1', 0),
   3337 (0, 'total_reward', 'total_reward_sort_order', '2', 0),
   3338 (0, 'total_reward', 'total_reward_status', '1', 0),
   3339 (0, 'total_shipping', 'total_shipping_status', '1', 0),
   3340 (0, 'total_shipping', 'total_shipping_estimator', '1', 0),
   3341 (0, 'total_coupon', 'total_coupon_sort_order', '4', 0),
   3342 (0, 'total_coupon', 'total_coupon_status', '1', 0),
   3343 (0, 'module_category', 'module_category_status', '1', 0),
   3344 (0, 'module_account', 'module_account_status', '1', 0),
   3345 (0, 'theme_default', 'theme_default_product_limit', '15', 0),
   3346 (0, 'theme_default', 'theme_default_product_description_length', '100', 0),
   3347 (0, 'theme_default', 'theme_default_image_thumb_width', '228', 0),
   3348 (0, 'theme_default', 'theme_default_image_thumb_height', '228', 0),
   3349 (0, 'theme_default', 'theme_default_image_popup_width', '500', 0),
   3350 (0, 'theme_default', 'theme_default_image_popup_height', '500', 0),
   3351 (0, 'theme_default', 'theme_default_image_category_width', '80', 0),
   3352 (0, 'theme_default', 'theme_default_image_category_height', '80', 0),
   3353 (0, 'theme_default', 'theme_default_image_product_width', '228', 0),
   3354 (0, 'theme_default', 'theme_default_image_product_height', '228', 0),
   3355 (0, 'theme_default', 'theme_default_image_additional_width', '74', 0),
   3356 (0, 'theme_default', 'theme_default_image_additional_height', '74', 0),
   3357 (0, 'theme_default', 'theme_default_image_related_width', '200', 0),
   3358 (0, 'theme_default', 'theme_default_image_related_height', '200', 0),
   3359 (0, 'theme_default', 'theme_default_image_compare_width', '90', 0),
   3360 (0, 'theme_default', 'theme_default_image_compare_height', '90', 0),
   3361 (0, 'theme_default', 'theme_default_image_wishlist_width', '47', 0),
   3362 (0, 'theme_default', 'theme_default_image_wishlist_height', '47', 0),
   3363 (0, 'theme_default', 'theme_default_image_cart_height', '47', 0),
   3364 (0, 'theme_default', 'theme_default_image_cart_width', '47', 0),
   3365 (0, 'theme_default', 'theme_default_image_location_height', '50', 0),
   3366 (0, 'theme_default', 'theme_default_image_location_width', '268', 0),
   3367 (0, 'theme_default', 'theme_default_directory', 'default', 0),
   3368 (0, 'theme_default', 'theme_default_status', '1', 0),
   3369 (0, 'dashboard_activity', 'dashboard_activity_status', '1', 0),
   3370 (0, 'dashboard_activity', 'dashboard_activity_sort_order', '7', 0),
   3371 (0, 'dashboard_sale', 'dashboard_sale_status', '1', 0),
   3372 (0, 'dashboard_sale', 'dashboard_sale_width', '3', 0),
   3373 (0, 'dashboard_chart', 'dashboard_chart_status', '1', 0),
   3374 (0, 'dashboard_chart', 'dashboard_chart_width', '6', 0),
   3375 (0, 'dashboard_customer', 'dashboard_customer_status', '1', 0),
   3376 (0, 'dashboard_customer', 'dashboard_customer_width', '3', 0),
   3377 (0, 'dashboard_map', 'dashboard_map_status', '1', 0),
   3378 (0, 'dashboard_map', 'dashboard_map_width', '6', 0),
   3379 (0, 'dashboard_online', 'dashboard_online_status', '1', 0),
   3380 (0, 'dashboard_online', 'dashboard_online_width', '3', 0),
   3381 (0, 'dashboard_order', 'dashboard_order_sort_order', '1', 0),
   3382 (0, 'dashboard_order', 'dashboard_order_status', '1', 0),
   3383 (0, 'dashboard_order', 'dashboard_order_width', '3', 0),
   3384 (0, 'dashboard_sale', 'dashboard_sale_sort_order', '2', 0),
   3385 (0, 'dashboard_customer', 'dashboard_customer_sort_order', '3', 0),
   3386 (0, 'dashboard_online', 'dashboard_online_sort_order', '4', 0),
   3387 (0, 'dashboard_map', 'dashboard_map_sort_order', '5', 0),
   3388 (0, 'dashboard_chart', 'dashboard_chart_sort_order', '6', 0),
   3389 (0, 'dashboard_recent', 'dashboard_recent_status', '1', 0),
   3390 (0, 'dashboard_recent', 'dashboard_recent_sort_order', '8', 0),
   3391 (0, 'dashboard_activity', 'dashboard_activity_width', '4', 0),
   3392 (0, 'dashboard_recent', 'dashboard_recent_width', '8', 0),
   3393 (0, 'report_customer_activity', 'report_customer_activity_status', '1', 0),
   3394 (0, 'report_customer_activity', 'report_customer_activity_sort_order', '1', 0),
   3395 (0, 'report_customer_order', 'report_customer_order_status', '1', 0),
   3396 (0, 'report_customer_order', 'report_customer_order_sort_order', '2', 0),
   3397 (0, 'report_customer_reward', 'report_customer_reward_status', '1', 0),
   3398 (0, 'report_customer_reward', 'report_customer_reward_sort_order', '3', 0),
   3399 (0, 'report_customer_search', 'report_customer_search_sort_order', '3', 0),
   3400 (0, 'report_customer_search', 'report_customer_search_status', '1', 0),
   3401 (0, 'report_customer_transaction', 'report_customer_transaction_status', '1', 0),
   3402 (0, 'report_customer_transaction', 'report_customer_transaction_status_sort_order', '4', 0),
   3403 (0, 'report_sale_tax', 'report_sale_tax_status', '1', 0),
   3404 (0, 'report_sale_tax', 'report_sale_tax_sort_order', '5', 0),
   3405 (0, 'report_sale_shipping', 'report_sale_shipping_status', '1', 0),
   3406 (0, 'report_sale_shipping', 'report_sale_shipping_sort_order', '6', 0),
   3407 (0, 'report_sale_return', 'report_sale_return_status', '1', 0),
   3408 (0, 'report_sale_return', 'report_sale_return_sort_order', '7', 0),
   3409 (0, 'report_sale_order', 'report_sale_order_status', '1', 0),
   3410 (0, 'report_sale_order', 'report_sale_order_sort_order', '8', 0),
   3411 (0, 'report_sale_coupon', 'report_sale_coupon_status', '1', 0),
   3412 (0, 'report_sale_coupon', 'report_sale_coupon_sort_order', '9', 0),
   3413 (0, 'report_product_viewed', 'report_product_viewed_status', '1', 0),
   3414 (0, 'report_product_viewed', 'report_product_viewed_sort_order', '10', 0),
   3415 (0, 'report_product_purchased', 'report_product_purchased_status', '1', 0),
   3416 (0, 'report_product_purchased', 'report_product_purchased_sort_order', '11', 0),
   3417 (0, 'report_marketing', 'report_marketing_status', '1', 0),
   3418 (0, 'report_marketing', 'report_marketing_sort_order', '12', 0),
   3419 (0, 'developer', 'developer_theme', '1', 0),
   3420 (0, 'developer', 'developer_sass', '1', 0);
   3421 
   3422 -----------------------------------------------------------
   3423 
   3424 --
   3425 -- Table structure for table `oc_stock_status`
   3426 --
   3427 
   3428 DROP TABLE IF EXISTS `oc_stock_status`;
   3429 CREATE TABLE `oc_stock_status` (
   3430   `stock_status_id` int(11) NOT NULL AUTO_INCREMENT,
   3431   `language_id` int(11) NOT NULL,
   3432   `name` varchar(32) NOT NULL,
   3433   PRIMARY KEY (`stock_status_id`,`language_id`)
   3434 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   3435 
   3436 --
   3437 -- Dumping data for table `oc_stock_status`
   3438 --
   3439 
   3440 INSERT INTO `oc_stock_status` (`stock_status_id`, `language_id`, `name`) VALUES
   3441 (7, 1, 'In Stock'),
   3442 (8, 1, 'Pre-Order'),
   3443 (5, 1, 'Out Of Stock'),
   3444 (6, 1, '2-3 Days');
   3445 
   3446 -----------------------------------------------------------
   3447 
   3448 --
   3449 -- Table structure for table `oc_store`
   3450 --
   3451 
   3452 DROP TABLE IF EXISTS `oc_store`;
   3453 CREATE TABLE `oc_store` (
   3454   `store_id` int(11) NOT NULL AUTO_INCREMENT,
   3455   `name` varchar(64) NOT NULL,
   3456   `url` varchar(255) NOT NULL,
   3457   `ssl` varchar(255) NOT NULL,
   3458   PRIMARY KEY (`store_id`)
   3459 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   3460 
   3461 -----------------------------------------------------------
   3462 
   3463 --
   3464 -- Table structure for table `oc_tax_class`
   3465 --
   3466 
   3467 DROP TABLE IF EXISTS `oc_tax_class`;
   3468 CREATE TABLE `oc_tax_class` (
   3469   `tax_class_id` int(11) NOT NULL AUTO_INCREMENT,
   3470   `title` varchar(32) NOT NULL,
   3471   `description` varchar(255) NOT NULL,
   3472   `date_added` datetime NOT NULL,
   3473   `date_modified` datetime NOT NULL,
   3474   PRIMARY KEY (`tax_class_id`)
   3475 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   3476 
   3477 --
   3478 -- Dumping data for table `oc_tax_class`
   3479 --
   3480 
   3481 INSERT INTO `oc_tax_class` (`tax_class_id`, `title`, `description`, `date_added`, `date_modified`) VALUES
   3482 (9, 'Taxable Goods', 'Taxed goods', '2009-01-06 23:21:53', '2011-09-23 14:07:50'),
   3483 (10, 'Downloadable Products', 'Downloadable', '2011-09-21 22:19:39', '2011-09-22 10:27:36');
   3484 
   3485 -----------------------------------------------------------
   3486 
   3487 --
   3488 -- Table structure for table `oc_tax_rate`
   3489 --
   3490 
   3491 DROP TABLE IF EXISTS `oc_tax_rate`;
   3492 CREATE TABLE `oc_tax_rate` (
   3493   `tax_rate_id` int(11) NOT NULL AUTO_INCREMENT,
   3494   `geo_zone_id` int(11) NOT NULL DEFAULT '0',
   3495   `name` varchar(32) NOT NULL,
   3496   `rate` decimal(15,4) NOT NULL DEFAULT '0.0000',
   3497   `type` char(1) NOT NULL,
   3498   `date_added` datetime NOT NULL,
   3499   `date_modified` datetime NOT NULL,
   3500   PRIMARY KEY (`tax_rate_id`)
   3501 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   3502 
   3503 --
   3504 -- Dumping data for table `oc_tax_rate`
   3505 --
   3506 
   3507 INSERT INTO `oc_tax_rate` (`tax_rate_id`, `geo_zone_id`, `name`, `rate`, `type`, `date_added`, `date_modified`) VALUES
   3508 (86, 3, 'VAT (20%)', '20.0000', 'P', '2011-03-09 21:17:10', '2011-09-22 22:24:29'),
   3509 (87, 3, 'Eco Tax (-2.00)', '2.0000', 'F', '2011-09-21 21:49:23', '2011-09-23 00:40:19');
   3510 
   3511 -----------------------------------------------------------
   3512 
   3513 --
   3514 -- Table structure for table `oc_tax_rate_to_customer_group`
   3515 --
   3516 
   3517 DROP TABLE IF EXISTS `oc_tax_rate_to_customer_group`;
   3518 CREATE TABLE `oc_tax_rate_to_customer_group` (
   3519   `tax_rate_id` int(11) NOT NULL,
   3520   `customer_group_id` int(11) NOT NULL,
   3521   PRIMARY KEY (`tax_rate_id`,`customer_group_id`)
   3522 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   3523 
   3524 --
   3525 -- Dumping data for table `oc_tax_rate_to_customer_group`
   3526 --
   3527 
   3528 INSERT INTO `oc_tax_rate_to_customer_group` (`tax_rate_id`, `customer_group_id`) VALUES
   3529 (86, 1),
   3530 (87, 1);
   3531 
   3532 -----------------------------------------------------------
   3533 
   3534 --
   3535 -- Table structure for table `oc_tax_rule`
   3536 --
   3537 
   3538 DROP TABLE IF EXISTS `oc_tax_rule`;
   3539 CREATE TABLE `oc_tax_rule` (
   3540   `tax_rule_id` int(11) NOT NULL AUTO_INCREMENT,
   3541   `tax_class_id` int(11) NOT NULL,
   3542   `tax_rate_id` int(11) NOT NULL,
   3543   `based` varchar(10) NOT NULL,
   3544   `priority` int(5) NOT NULL DEFAULT '1',
   3545   PRIMARY KEY (`tax_rule_id`)
   3546 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   3547 
   3548 --
   3549 -- Dumping data for table `oc_tax_rule`
   3550 --
   3551 
   3552 INSERT INTO `oc_tax_rule` (`tax_rule_id`, `tax_class_id`, `tax_rate_id`, `based`, `priority`) VALUES
   3553 (121, 10, 86, 'payment', 1),
   3554 (120, 10, 87, 'store', 0),
   3555 (128, 9, 86, 'shipping', 1),
   3556 (127, 9, 87, 'shipping', 2);
   3557 
   3558 -----------------------------------------------------------
   3559 
   3560 --
   3561 -- Table structure for table `oc_theme`
   3562 --
   3563 
   3564 DROP TABLE IF EXISTS `oc_theme`;
   3565 CREATE TABLE `oc_theme` (
   3566   `theme_id` int(11) NOT NULL AUTO_INCREMENT,
   3567   `store_id` int(11) NOT NULL,
   3568   `theme` varchar(64) NOT NULL,
   3569   `route` varchar(64) NOT NULL,
   3570   `code` mediumtext NOT NULL,
   3571   `date_added` datetime NOT NULL,
   3572   PRIMARY KEY (`theme_id`)
   3573 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   3574 
   3575 -----------------------------------------------------------
   3576 
   3577 --
   3578 -- Table structure for table `oc_translation`
   3579 --
   3580 
   3581 DROP TABLE IF EXISTS `oc_translation`;
   3582 CREATE TABLE `oc_translation` (
   3583   `translation_id` int(11) NOT NULL AUTO_INCREMENT,
   3584   `store_id` int(11) NOT NULL,
   3585   `language_id` int(11) NOT NULL,
   3586   `route` varchar(64) NOT NULL,
   3587   `key` varchar(64) NOT NULL,
   3588   `value` text NOT NULL,
   3589   `date_added` datetime NOT NULL,
   3590   PRIMARY KEY (`translation_id`)
   3591 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   3592 
   3593 -----------------------------------------------------------
   3594 
   3595 --
   3596 -- Table structure for table `oc_upload`
   3597 --
   3598 
   3599 DROP TABLE IF EXISTS `oc_upload`;
   3600 CREATE TABLE `oc_upload` (
   3601   `upload_id` int(11) NOT NULL AUTO_INCREMENT,
   3602   `name` varchar(255) NOT NULL,
   3603   `filename` varchar(255) NOT NULL,
   3604   `code` varchar(255) NOT NULL,
   3605   `date_added` datetime NOT NULL,
   3606   PRIMARY KEY (`upload_id`)
   3607 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   3608 
   3609 -----------------------------------------------------------
   3610 
   3611 --
   3612 -- Table structure for table `oc_seo_url`
   3613 --
   3614 
   3615 DROP TABLE IF EXISTS `oc_seo_url`;
   3616 CREATE TABLE `oc_seo_url` (
   3617   `seo_url_id` int(11) NOT NULL AUTO_INCREMENT,
   3618   `store_id` int(11) NOT NULL,
   3619   `language_id` int(11) NOT NULL,  
   3620   `query` varchar(255) NOT NULL,
   3621   `keyword` varchar(255) NOT NULL,
   3622   PRIMARY KEY (`seo_url_id`),
   3623   KEY `query` (`query`),
   3624   KEY `keyword` (`keyword`)
   3625 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   3626 
   3627 --
   3628 -- Dumping data for table `oc_seo_url`
   3629 --
   3630 
   3631 INSERT INTO `oc_seo_url` (`seo_url_id`, `store_id`, `language_id`, `query`, `keyword`) VALUES
   3632 (824, 0, 1, 'product_id=48', 'ipod-classic'),
   3633 (836, 0, 1, 'category_id=20', 'desktops'),
   3634 (834, 0, 1, 'category_id=26', 'pc'),
   3635 (835, 0, 1, 'category_id=27', 'mac'),
   3636 (730, 0, 1, 'manufacturer_id=8', 'apple'),
   3637 (772, 0, 1, 'information_id=4', 'about_us'),
   3638 (768, 0, 1, 'product_id=42', 'test'),
   3639 (789, 0, 1, 'category_id=34', 'mp3-players'),
   3640 (781, 0, 1, 'category_id=36', 'test2'),
   3641 (774, 0, 1, 'category_id=18', 'laptop-notebook'),
   3642 (775, 0, 1, 'category_id=46', 'macs'),
   3643 (776, 0, 1, 'category_id=45', 'windows'),
   3644 (777, 0, 1, 'category_id=25', 'component'),
   3645 (778, 0, 1, 'category_id=29', 'mouse'),
   3646 (779, 0, 1, 'category_id=28', 'monitor'),
   3647 (780, 0, 1, 'category_id=35', 'test1'),
   3648 (782, 0, 1, 'category_id=30', 'printer'),
   3649 (783, 0, 1, 'category_id=31', 'scanner'),
   3650 (784, 0, 1, 'category_id=32', 'web-camera'),
   3651 (785, 0, 1, 'category_id=57', 'tablet'),
   3652 (786, 0, 1, 'category_id=17', 'software'),
   3653 (787, 0, 1, 'category_id=24', 'smartphone'),
   3654 (788, 0, 1, 'category_id=33', 'camera'),
   3655 (790, 0, 1, 'category_id=43', 'test11'),
   3656 (791, 0, 1, 'category_id=44', 'test12'),
   3657 (792, 0, 1, 'category_id=47', 'test15'),
   3658 (793, 0, 1, 'category_id=48', 'test16'),
   3659 (794, 0, 1, 'category_id=49', 'test17'),
   3660 (795, 0, 1, 'category_id=50', 'test18'),
   3661 (796, 0, 1, 'category_id=51', 'test19'),
   3662 (797, 0, 1, 'category_id=52', 'test20'),
   3663 (798, 0, 1, 'category_id=58', 'test25'),
   3664 (799, 0, 1, 'category_id=53', 'test21'),
   3665 (800, 0, 1, 'category_id=54', 'test22'),
   3666 (801, 0, 1, 'category_id=55', 'test23'),
   3667 (802, 0, 1, 'category_id=56', 'test24'),
   3668 (803, 0, 1, 'category_id=38', 'test4'),
   3669 (804, 0, 1, 'category_id=37', 'test5'),
   3670 (805, 0, 1, 'category_id=39', 'test6'),
   3671 (806, 0, 1, 'category_id=40', 'test7'),
   3672 (807, 0, 1, 'category_id=41', 'test8'),
   3673 (808, 0, 1, 'category_id=42', 'test9'),
   3674 (809, 0, 1, 'product_id=30', 'canon-eos-5d'),
   3675 (840, 0, 1, 'product_id=47', 'hp-lp3065'),
   3676 (811, 0, 1, 'product_id=28', 'htc-touch-hd'),
   3677 (812, 0, 1, 'product_id=43', 'macbook'),
   3678 (813, 0, 1, 'product_id=44', 'macbook-air'),
   3679 (814, 0, 1, 'product_id=45', 'macbook-pro'),
   3680 (816, 0, 1, 'product_id=31', 'nikon-d300'),
   3681 (817, 0, 1, 'product_id=29', 'palm-treo-pro'),
   3682 (818, 0, 1, 'product_id=35', 'product-8'),
   3683 (819, 0, 1, 'product_id=49', 'samsung-galaxy-tab-10-1'),
   3684 (820, 0, 1, 'product_id=33', 'samsung-syncmaster-941bw'),
   3685 (821, 0, 1, 'product_id=46', 'sony-vaio'),
   3686 (837, 0, 1, 'product_id=41', 'imac'),
   3687 (823, 0, 1, 'product_id=40', 'iphone'),
   3688 (825, 0, 1, 'product_id=36', 'ipod-nano'),
   3689 (826, 0, 1, 'product_id=34', 'ipod-shuffle'),
   3690 (827, 0, 1, 'product_id=32', 'ipod-touch'),
   3691 (828, 0, 1, 'manufacturer_id=9', 'canon'),
   3692 (829, 0, 1, 'manufacturer_id=5', 'htc'),
   3693 (830, 0, 1, 'manufacturer_id=7', 'hewlett-packard'),
   3694 (831, 0, 1, 'manufacturer_id=6', 'palm'),
   3695 (832, 0, 1, 'manufacturer_id=10', 'sony'),
   3696 (841, 0, 1, 'information_id=6', 'delivery'),
   3697 (842, 0, 1, 'information_id=3', 'privacy'),
   3698 (843, 0, 1, 'information_id=5', 'terms');
   3699 
   3700 -----------------------------------------------------------
   3701 
   3702 --
   3703 -- Table structure for table `oc_user`
   3704 --
   3705 
   3706 DROP TABLE IF EXISTS `oc_user`;
   3707 CREATE TABLE `oc_user` (
   3708   `user_id` int(11) NOT NULL AUTO_INCREMENT,
   3709   `user_group_id` int(11) NOT NULL,
   3710   `username` varchar(20) NOT NULL,
   3711   `password` varchar(40) NOT NULL,
   3712   `salt` varchar(9) NOT NULL,
   3713   `firstname` varchar(32) NOT NULL,
   3714   `lastname` varchar(32) NOT NULL,
   3715   `email` varchar(96) NOT NULL,
   3716   `image` varchar(255) NOT NULL,
   3717   `code` varchar(40) NOT NULL,
   3718   `ip` varchar(40) NOT NULL,
   3719   `status` tinyint(1) NOT NULL,
   3720   `date_added` datetime NOT NULL,
   3721   PRIMARY KEY (`user_id`)
   3722 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   3723 
   3724 -----------------------------------------------------------
   3725 
   3726 --
   3727 -- Table structure for table `oc_user_group`
   3728 --
   3729 
   3730 DROP TABLE IF EXISTS `oc_user_group`;
   3731 CREATE TABLE `oc_user_group` (
   3732   `user_group_id` int(11) NOT NULL AUTO_INCREMENT,
   3733   `name` varchar(64) NOT NULL,
   3734   `permission` text NOT NULL,
   3735   PRIMARY KEY (`user_group_id`)
   3736 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   3737 
   3738 --
   3739 -- Dumping data for table `oc_user_group`
   3740 --
   3741 
   3742 INSERT INTO `oc_user_group` (`user_group_id`, `name`, `permission`) VALUES
   3743 (1, 'Administrator', '{"access":["catalog\\/attribute","catalog\\/attribute_group","catalog\\/category","catalog\\/download","catalog\\/filter","catalog\\/information","catalog\\/manufacturer","catalog\\/option","catalog\\/product","catalog\\/recurring","catalog\\/review","common\\/column_left","common\\/developer","common\\/filemanager","common\\/profile","common\\/security","customer\\/custom_field","customer\\/customer","customer\\/customer_approval","customer\\/customer_group","design\\/banner","design\\/layout","design\\/theme","design\\/translation","design\\/seo_url","event\\/statistics","event\\/theme","extension\\/analytics\\/google","extension\\/captcha\\/basic","extension\\/captcha\\/google","extension\\/dashboard\\/activity","extension\\/dashboard\\/chart","extension\\/dashboard\\/customer","extension\\/dashboard\\/map","extension\\/dashboard\\/online","extension\\/dashboard\\/order","extension\\/dashboard\\/recent","extension\\/dashboard\\/sale","extension\\/extension\\/analytics","extension\\/extension\\/captcha","extension\\/extension\\/dashboard","extension\\/extension\\/feed","extension\\/extension\\/fraud","extension\\/extension\\/menu","extension\\/extension\\/module","extension\\/extension\\/payment","extension\\/extension\\/report","extension\\/extension\\/shipping","extension\\/extension\\/theme","extension\\/extension\\/total","extension\\/feed\\/google_base","extension\\/feed\\/google_sitemap","extension\\/feed\\/openbaypro","extension\\/fraud\\/fraudlabspro","extension\\/fraud\\/ip","extension\\/fraud\\/maxmind","extension\\/marketing\\/remarketing","extension\\/module\\/account","extension\\/module\\/amazon_login","extension\\/module\\/amazon_pay","extension\\/module\\/banner","extension\\/module\\/bestseller","extension\\/module\\/carousel","extension\\/module\\/category","extension\\/module\\/divido_calculator","extension\\/module\\/ebay_listing","extension\\/module\\/featured","extension\\/module\\/filter","extension\\/module\\/google_hangouts","extension\\/module\\/html","extension\\/module\\/information","extension\\/module\\/klarna_checkout_module","extension\\/module\\/latest","extension\\/module\\/laybuy_layout","extension\\/module\\/pilibaba_button","extension\\/module\\/pp_button","extension\\/module\\/pp_login","extension\\/module\\/sagepay_direct_cards","extension\\/module\\/sagepay_server_cards","extension\\/module\\/slideshow","extension\\/module\\/special","extension\\/module\\/store","extension\\/openbay\\/amazon","extension\\/openbay\\/amazon_listing","extension\\/openbay\\/amazon_product","extension\\/openbay\\/amazonus","extension\\/openbay\\/amazonus_listing","extension\\/openbay\\/amazonus_product","extension\\/openbay\\/ebay","extension\\/openbay\\/ebay_profile","extension\\/openbay\\/ebay_template","extension\\/openbay\\/etsy","extension\\/openbay\\/etsy_product","extension\\/openbay\\/etsy_shipping","extension\\/openbay\\/etsy_shop","extension\\/openbay\\/fba","extension\\/payment\\/amazon_login_pay","extension\\/payment\\/authorizenet_aim","extension\\/payment\\/authorizenet_sim","extension\\/payment\\/bank_transfer","extension\\/payment\\/bluepay_hosted","extension\\/payment\\/bluepay_redirect","extension\\/payment\\/cardconnect","extension\\/payment\\/cardinity","extension\\/payment\\/cheque","extension\\/payment\\/cod","extension\\/payment\\/divido","extension\\/payment\\/eway","extension\\/payment\\/firstdata","extension\\/payment\\/firstdata_remote","extension\\/payment\\/free_checkout","extension\\/payment\\/g2apay","extension\\/payment\\/globalpay","extension\\/payment\\/globalpay_remote","extension\\/payment\\/klarna_account","extension\\/payment\\/klarna_checkout","extension\\/payment\\/klarna_invoice","extension\\/payment\\/laybuy","extension\\/payment\\/liqpay","extension\\/payment\\/nochex","extension\\/payment\\/paymate","extension\\/payment\\/paypoint","extension\\/payment\\/payza","extension\\/payment\\/perpetual_payments","extension\\/payment\\/pilibaba","extension\\/payment\\/pp_express","extension\\/payment\\/pp_payflow","extension\\/payment\\/pp_payflow_iframe","extension\\/payment\\/pp_pro","extension\\/payment\\/pp_pro_iframe","extension\\/payment\\/pp_standard","extension\\/payment\\/realex","extension\\/payment\\/realex_remote","extension\\/payment\\/sagepay_direct","extension\\/payment\\/sagepay_server","extension\\/payment\\/sagepay_us","extension\\/payment\\/securetrading_pp","extension\\/payment\\/securetrading_ws","extension\\/payment\\/skrill","extension\\/payment\\/twocheckout","extension\\/payment\\/web_payment_software","extension\\/payment\\/worldpay","extension\\/module\\/pp_braintree_button","extension\\/payment\\/pp_braintree","extension\\/report\\/customer_activity","extension\\/report\\/customer_order","extension\\/report\\/customer_reward","extension\\/report\\/customer_search","extension\\/report\\/customer_transaction","extension\\/report\\/marketing","extension\\/report\\/product_purchased","extension\\/report\\/product_viewed","extension\\/report\\/sale_coupon","extension\\/report\\/sale_order","extension\\/report\\/sale_return","extension\\/report\\/sale_shipping","extension\\/report\\/sale_tax","extension\\/shipping\\/auspost","extension\\/shipping\\/citylink","extension\\/shipping\\/ec_ship","extension\\/shipping\\/fedex","extension\\/shipping\\/flat","extension\\/shipping\\/free","extension\\/shipping\\/item","extension\\/shipping\\/parcelforce_48","extension\\/shipping\\/pickup","extension\\/shipping\\/royal_mail","extension\\/shipping\\/ups","extension\\/shipping\\/usps","extension\\/shipping\\/weight","extension\\/theme\\/default","extension\\/total\\/coupon","extension\\/total\\/credit","extension\\/total\\/handling","extension\\/total\\/klarna_fee","extension\\/total\\/low_order_fee","extension\\/total\\/reward","extension\\/total\\/shipping","extension\\/total\\/sub_total","extension\\/total\\/tax","extension\\/total\\/total","extension\\/total\\/voucher","localisation\\/country","localisation\\/currency","localisation\\/geo_zone","localisation\\/language","localisation\\/length_class","localisation\\/location","localisation\\/order_status","localisation\\/return_action","localisation\\/return_reason","localisation\\/return_status","localisation\\/stock_status","localisation\\/tax_class","localisation\\/tax_rate","localisation\\/weight_class","localisation\\/zone","mail\\/affiliate","mail\\/customer","mail\\/forgotten","mail\\/return","mail\\/reward","mail\\/transaction","marketing\\/contact","marketing\\/coupon","marketing\\/marketing","marketplace\\/api","marketplace\\/event","marketplace\\/extension","marketplace\\/install","marketplace\\/installer","marketplace\\/marketplace","marketplace\\/modification","marketplace\\/openbay","report\\/online","report\\/report","report\\/statistics","sale\\/order","sale\\/recurring","sale\\/return","sale\\/voucher","sale\\/voucher_theme","setting\\/setting","setting\\/store","startup\\/error","startup\\/event","startup\\/login","startup\\/permission","startup\\/router","startup\\/sass","startup\\/startup","tool\\/backup","tool\\/log","tool\\/upload","user\\/api","user\\/user","user\\/user_permission"],"modify":["catalog\\/attribute","catalog\\/attribute_group","catalog\\/category","catalog\\/download","catalog\\/filter","catalog\\/information","catalog\\/manufacturer","catalog\\/option","catalog\\/product","catalog\\/recurring","catalog\\/review","common\\/column_left","common\\/developer","common\\/filemanager","common\\/profile","common\\/security","customer\\/custom_field","customer\\/customer","customer\\/customer_approval","customer\\/customer_group","design\\/banner","design\\/layout","design\\/theme","design\\/translation","design\\/seo_url","event\\/statistics","event\\/theme","extension\\/analytics\\/google","extension\\/captcha\\/basic","extension\\/captcha\\/google","extension\\/dashboard\\/activity","extension\\/dashboard\\/chart","extension\\/dashboard\\/customer","extension\\/dashboard\\/map","extension\\/dashboard\\/online","extension\\/dashboard\\/order","extension\\/dashboard\\/recent","extension\\/dashboard\\/sale","extension\\/extension\\/analytics","extension\\/extension\\/captcha","extension\\/extension\\/dashboard","extension\\/extension\\/feed","extension\\/extension\\/fraud","extension\\/extension\\/menu","extension\\/extension\\/module","extension\\/extension\\/payment","extension\\/extension\\/report","extension\\/extension\\/shipping","extension\\/extension\\/theme","extension\\/extension\\/total","extension\\/feed\\/google_base","extension\\/feed\\/google_sitemap","extension\\/feed\\/openbaypro","extension\\/fraud\\/fraudlabspro","extension\\/fraud\\/ip","extension\\/fraud\\/maxmind","extension\\/marketing\\/remarketing","extension\\/module\\/account","extension\\/module\\/amazon_login","extension\\/module\\/amazon_pay","extension\\/module\\/banner","extension\\/module\\/bestseller","extension\\/module\\/carousel","extension\\/module\\/category","extension\\/module\\/divido_calculator","extension\\/module\\/ebay_listing","extension\\/module\\/featured","extension\\/module\\/filter","extension\\/module\\/google_hangouts","extension\\/module\\/html","extension\\/module\\/information","extension\\/module\\/klarna_checkout_module","extension\\/module\\/latest","extension\\/module\\/laybuy_layout","extension\\/module\\/pilibaba_button","extension\\/module\\/pp_button","extension\\/module\\/pp_login","extension\\/module\\/sagepay_direct_cards","extension\\/module\\/sagepay_server_cards","extension\\/module\\/slideshow","extension\\/module\\/special","extension\\/module\\/store","extension\\/openbay\\/amazon","extension\\/openbay\\/amazon_listing","extension\\/openbay\\/amazon_product","extension\\/openbay\\/amazonus","extension\\/openbay\\/amazonus_listing","extension\\/openbay\\/amazonus_product","extension\\/openbay\\/ebay","extension\\/openbay\\/ebay_profile","extension\\/openbay\\/ebay_template","extension\\/openbay\\/etsy","extension\\/openbay\\/etsy_product","extension\\/openbay\\/etsy_shipping","extension\\/openbay\\/etsy_shop","extension\\/openbay\\/fba","extension\\/payment\\/amazon_login_pay","extension\\/payment\\/authorizenet_aim","extension\\/payment\\/authorizenet_sim","extension\\/payment\\/bank_transfer","extension\\/payment\\/bluepay_hosted","extension\\/payment\\/bluepay_redirect","extension\\/payment\\/cardconnect","extension\\/payment\\/cardinity","extension\\/payment\\/cheque","extension\\/payment\\/cod","extension\\/payment\\/divido","extension\\/payment\\/eway","extension\\/payment\\/firstdata","extension\\/payment\\/firstdata_remote","extension\\/payment\\/free_checkout","extension\\/payment\\/g2apay","extension\\/payment\\/globalpay","extension\\/payment\\/globalpay_remote","extension\\/payment\\/klarna_account","extension\\/payment\\/klarna_checkout","extension\\/payment\\/klarna_invoice","extension\\/payment\\/laybuy","extension\\/payment\\/liqpay","extension\\/payment\\/nochex","extension\\/payment\\/paymate","extension\\/payment\\/paypoint","extension\\/payment\\/payza","extension\\/payment\\/perpetual_payments","extension\\/payment\\/pilibaba","extension\\/payment\\/pp_express","extension\\/payment\\/pp_payflow","extension\\/payment\\/pp_payflow_iframe","extension\\/payment\\/pp_pro","extension\\/payment\\/pp_pro_iframe","extension\\/payment\\/pp_standard","extension\\/payment\\/realex","extension\\/payment\\/realex_remote","extension\\/payment\\/sagepay_direct","extension\\/payment\\/sagepay_server","extension\\/payment\\/sagepay_us","extension\\/payment\\/securetrading_pp","extension\\/payment\\/securetrading_ws","extension\\/payment\\/skrill","extension\\/payment\\/twocheckout","extension\\/payment\\/web_payment_software","extension\\/payment\\/worldpay","extension\\/module\\/pp_braintree_button","extension\\/payment\\/pp_braintree","extension\\/report\\/customer_activity","extension\\/report\\/customer_order","extension\\/report\\/customer_reward","extension\\/report\\/customer_search","extension\\/report\\/customer_transaction","extension\\/report\\/marketing","extension\\/report\\/product_purchased","extension\\/report\\/product_viewed","extension\\/report\\/sale_coupon","extension\\/report\\/sale_order","extension\\/report\\/sale_return","extension\\/report\\/sale_shipping","extension\\/report\\/sale_tax","extension\\/shipping\\/auspost","extension\\/shipping\\/citylink","extension\\/shipping\\/ec_ship","extension\\/shipping\\/fedex","extension\\/shipping\\/flat","extension\\/shipping\\/free","extension\\/shipping\\/item","extension\\/shipping\\/parcelforce_48","extension\\/shipping\\/pickup","extension\\/shipping\\/royal_mail","extension\\/shipping\\/ups","extension\\/shipping\\/usps","extension\\/shipping\\/weight","extension\\/theme\\/default","extension\\/total\\/coupon","extension\\/total\\/credit","extension\\/total\\/handling","extension\\/total\\/klarna_fee","extension\\/total\\/low_order_fee","extension\\/total\\/reward","extension\\/total\\/shipping","extension\\/total\\/sub_total","extension\\/total\\/tax","extension\\/total\\/total","extension\\/total\\/voucher","localisation\\/country","localisation\\/currency","localisation\\/geo_zone","localisation\\/language","localisation\\/length_class","localisation\\/location","localisation\\/order_status","localisation\\/return_action","localisation\\/return_reason","localisation\\/return_status","localisation\\/stock_status","localisation\\/tax_class","localisation\\/tax_rate","localisation\\/weight_class","localisation\\/zone","mail\\/affiliate","mail\\/customer","mail\\/forgotten","mail\\/return","mail\\/reward","mail\\/transaction","marketing\\/contact","marketing\\/coupon","marketing\\/marketing","marketplace\\/event","marketplace\\/api","marketplace\\/extension","marketplace\\/install","marketplace\\/installer","marketplace\\/marketplace","marketplace\\/modification","marketplace\\/openbay","report\\/online","report\\/report","report\\/statistics","sale\\/order","sale\\/recurring","sale\\/return","sale\\/voucher","sale\\/voucher_theme","setting\\/setting","setting\\/store","startup\\/error","startup\\/event","startup\\/login","startup\\/permission","startup\\/router","startup\\/sass","startup\\/startup","tool\\/backup","tool\\/log","tool\\/upload","user\\/api","user\\/user","user\\/user_permission"]}'),
   3744 (10, 'Demonstration', '');
   3745 
   3746 -----------------------------------------------------------
   3747 
   3748 --
   3749 -- Table structure for table `oc_voucher`
   3750 --
   3751 
   3752 DROP TABLE IF EXISTS `oc_voucher`;
   3753 CREATE TABLE `oc_voucher` (
   3754   `voucher_id` int(11) NOT NULL AUTO_INCREMENT,
   3755   `order_id` int(11) NOT NULL,
   3756   `code` varchar(10) NOT NULL,
   3757   `from_name` varchar(64) NOT NULL,
   3758   `from_email` varchar(96) NOT NULL,
   3759   `to_name` varchar(64) NOT NULL,
   3760   `to_email` varchar(96) NOT NULL,
   3761   `voucher_theme_id` int(11) NOT NULL,
   3762   `message` text NOT NULL,
   3763   `amount` decimal(15,4) NOT NULL,
   3764   `status` tinyint(1) NOT NULL,
   3765   `date_added` datetime NOT NULL,
   3766   PRIMARY KEY (`voucher_id`)
   3767 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   3768 
   3769 -----------------------------------------------------------
   3770 
   3771 --
   3772 -- Table structure for table `oc_voucher_history`
   3773 --
   3774 
   3775 DROP TABLE IF EXISTS `oc_voucher_history`;
   3776 CREATE TABLE `oc_voucher_history` (
   3777   `voucher_history_id` int(11) NOT NULL AUTO_INCREMENT,
   3778   `voucher_id` int(11) NOT NULL,
   3779   `order_id` int(11) NOT NULL,
   3780   `amount` decimal(15,4) NOT NULL,
   3781   `date_added` datetime NOT NULL,
   3782   PRIMARY KEY (`voucher_history_id`)
   3783 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   3784 
   3785 -----------------------------------------------------------
   3786 
   3787 --
   3788 -- Table structure for table `oc_voucher_theme`
   3789 --
   3790 
   3791 DROP TABLE IF EXISTS `oc_voucher_theme`;
   3792 CREATE TABLE `oc_voucher_theme` (
   3793   `voucher_theme_id` int(11) NOT NULL AUTO_INCREMENT,
   3794   `image` varchar(255) NOT NULL,
   3795   PRIMARY KEY (`voucher_theme_id`)
   3796 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   3797 
   3798 --
   3799 -- Dumping data for table `oc_voucher_theme`
   3800 --
   3801 
   3802 INSERT INTO `oc_voucher_theme` (`voucher_theme_id`, `image`) VALUES
   3803 (8, 'catalog/demo/canon_eos_5d_2.jpg'),
   3804 (7, 'catalog/demo/gift-voucher-birthday.jpg'),
   3805 (6, 'catalog/demo/apple_logo.jpg');
   3806 
   3807 -----------------------------------------------------------
   3808 
   3809 --
   3810 -- Table structure for table `oc_voucher_theme_description`
   3811 --
   3812 
   3813 DROP TABLE IF EXISTS `oc_voucher_theme_description`;
   3814 CREATE TABLE `oc_voucher_theme_description` (
   3815   `voucher_theme_id` int(11) NOT NULL,
   3816   `language_id` int(11) NOT NULL,
   3817   `name` varchar(32) NOT NULL,
   3818   PRIMARY KEY (`voucher_theme_id`,`language_id`)
   3819 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   3820 
   3821 --
   3822 -- Dumping data for table `oc_voucher_theme_description`
   3823 --
   3824 
   3825 INSERT INTO `oc_voucher_theme_description` (`voucher_theme_id`, `language_id`, `name`) VALUES
   3826 (6, 1, 'Christmas'),
   3827 (7, 1, 'Birthday'),
   3828 (8, 1, 'General');
   3829 
   3830 -----------------------------------------------------------
   3831 
   3832 --
   3833 -- Table structure for table `oc_weight_class`
   3834 --
   3835 
   3836 DROP TABLE IF EXISTS `oc_weight_class`;
   3837 CREATE TABLE `oc_weight_class` (
   3838   `weight_class_id` int(11) NOT NULL AUTO_INCREMENT,
   3839   `value` decimal(15,8) NOT NULL DEFAULT '0.00000000',
   3840   PRIMARY KEY (`weight_class_id`)
   3841 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   3842 
   3843 --
   3844 -- Dumping data for table `oc_weight_class`
   3845 --
   3846 
   3847 INSERT INTO `oc_weight_class` (`weight_class_id`, `value`) VALUES
   3848 (1, '1.00000000'),
   3849 (2, '1000.00000000'),
   3850 (5, '2.20460000'),
   3851 (6, '35.27400000');
   3852 
   3853 -----------------------------------------------------------
   3854 
   3855 --
   3856 -- Table structure for table `oc_weight_class_description`
   3857 --
   3858 
   3859 DROP TABLE IF EXISTS `oc_weight_class_description`;
   3860 CREATE TABLE `oc_weight_class_description` (
   3861   `weight_class_id` int(11) NOT NULL,
   3862   `language_id` int(11) NOT NULL,
   3863   `title` varchar(32) NOT NULL,
   3864   `unit` varchar(4) NOT NULL,
   3865   PRIMARY KEY (`weight_class_id`,`language_id`)
   3866 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   3867 
   3868 --
   3869 -- Dumping data for table `oc_weight_class_description`
   3870 --
   3871 
   3872 INSERT INTO `oc_weight_class_description` (`weight_class_id`, `language_id`, `title`, `unit`) VALUES
   3873 (1, 1, 'Kilogram', 'kg'),
   3874 (2, 1, 'Gram', 'g'),
   3875 (5, 1, 'Pound ', 'lb'),
   3876 (6, 1, 'Ounce', 'oz');
   3877 
   3878 -----------------------------------------------------------
   3879 
   3880 --
   3881 -- Table structure for table `oc_zone`
   3882 --
   3883 
   3884 DROP TABLE IF EXISTS `oc_zone`;
   3885 CREATE TABLE `oc_zone` (
   3886   `zone_id` int(11) NOT NULL AUTO_INCREMENT,
   3887   `country_id` int(11) NOT NULL,
   3888   `name` varchar(128) NOT NULL,
   3889   `code` varchar(32) NOT NULL,
   3890   `status` tinyint(1) NOT NULL DEFAULT '1',
   3891   PRIMARY KEY (`zone_id`)
   3892 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   3893 
   3894 --
   3895 -- Dumping data for table `oc_zone`
   3896 --
   3897 
   3898 INSERT INTO `oc_zone` (`zone_id`, `country_id`, `name`, `code`, `status`) VALUES
   3899 (1, 1, 'Badakhshan', 'BDS', 1),
   3900 (2, 1, 'Badghis', 'BDG', 1),
   3901 (3, 1, 'Baghlan', 'BGL', 1),
   3902 (4, 1, 'Balkh', 'BAL', 1),
   3903 (5, 1, 'Bamian', 'BAM', 1),
   3904 (6, 1, 'Farah', 'FRA', 1),
   3905 (7, 1, 'Faryab', 'FYB', 1),
   3906 (8, 1, 'Ghazni', 'GHA', 1),
   3907 (9, 1, 'Ghowr', 'GHO', 1),
   3908 (10, 1, 'Helmand', 'HEL', 1),
   3909 (11, 1, 'Herat', 'HER', 1),
   3910 (12, 1, 'Jowzjan', 'JOW', 1),
   3911 (13, 1, 'Kabul', 'KAB', 1),
   3912 (14, 1, 'Kandahar', 'KAN', 1),
   3913 (15, 1, 'Kapisa', 'KAP', 1),
   3914 (16, 1, 'Khost', 'KHO', 1),
   3915 (17, 1, 'Konar', 'KNR', 1),
   3916 (18, 1, 'Kondoz', 'KDZ', 1),
   3917 (19, 1, 'Laghman', 'LAG', 1),
   3918 (20, 1, 'Lowgar', 'LOW', 1),
   3919 (21, 1, 'Nangrahar', 'NAN', 1),
   3920 (22, 1, 'Nimruz', 'NIM', 1),
   3921 (23, 1, 'Nurestan', 'NUR', 1),
   3922 (24, 1, 'Oruzgan', 'ORU', 1),
   3923 (25, 1, 'Paktia', 'PIA', 1),
   3924 (26, 1, 'Paktika', 'PKA', 1),
   3925 (27, 1, 'Parwan', 'PAR', 1),
   3926 (28, 1, 'Samangan', 'SAM', 1),
   3927 (29, 1, 'Sar-e Pol', 'SAR', 1),
   3928 (30, 1, 'Takhar', 'TAK', 1),
   3929 (31, 1, 'Wardak', 'WAR', 1),
   3930 (32, 1, 'Zabol', 'ZAB', 1),
   3931 (33, 2, 'Berat', 'BR', 1),
   3932 (34, 2, 'Bulqize', 'BU', 1),
   3933 (35, 2, 'Delvine', 'DL', 1),
   3934 (36, 2, 'Devoll', 'DV', 1),
   3935 (37, 2, 'Diber', 'DI', 1),
   3936 (38, 2, 'Durres', 'DR', 1),
   3937 (39, 2, 'Elbasan', 'EL', 1),
   3938 (40, 2, 'Kolonje', 'ER', 1),
   3939 (41, 2, 'Fier', 'FR', 1),
   3940 (42, 2, 'Gjirokaster', 'GJ', 1),
   3941 (43, 2, 'Gramsh', 'GR', 1),
   3942 (44, 2, 'Has', 'HA', 1),
   3943 (45, 2, 'Kavaje', 'KA', 1),
   3944 (46, 2, 'Kurbin', 'KB', 1),
   3945 (47, 2, 'Kucove', 'KC', 1),
   3946 (48, 2, 'Korce', 'KO', 1),
   3947 (49, 2, 'Kruje', 'KR', 1),
   3948 (50, 2, 'Kukes', 'KU', 1),
   3949 (51, 2, 'Librazhd', 'LB', 1),
   3950 (52, 2, 'Lezhe', 'LE', 1),
   3951 (53, 2, 'Lushnje', 'LU', 1),
   3952 (54, 2, 'Malesi e Madhe', 'MM', 1),
   3953 (55, 2, 'Mallakaster', 'MK', 1),
   3954 (56, 2, 'Mat', 'MT', 1),
   3955 (57, 2, 'Mirdite', 'MR', 1),
   3956 (58, 2, 'Peqin', 'PQ', 1),
   3957 (59, 2, 'Permet', 'PR', 1),
   3958 (60, 2, 'Pogradec', 'PG', 1),
   3959 (61, 2, 'Puke', 'PU', 1),
   3960 (62, 2, 'Shkoder', 'SH', 1),
   3961 (63, 2, 'Skrapar', 'SK', 1),
   3962 (64, 2, 'Sarande', 'SR', 1),
   3963 (65, 2, 'Tepelene', 'TE', 1),
   3964 (66, 2, 'Tropoje', 'TP', 1),
   3965 (67, 2, 'Tirane', 'TR', 1),
   3966 (68, 2, 'Vlore', 'VL', 1),
   3967 (69, 3, 'Adrar', 'ADR', 1),
   3968 (70, 3, 'Ain Defla', 'ADE', 1),
   3969 (71, 3, 'Ain Temouchent', 'ATE', 1),
   3970 (72, 3, 'Alger', 'ALG', 1),
   3971 (73, 3, 'Annaba', 'ANN', 1),
   3972 (74, 3, 'Batna', 'BAT', 1),
   3973 (75, 3, 'Bechar', 'BEC', 1),
   3974 (76, 3, 'Bejaia', 'BEJ', 1),
   3975 (77, 3, 'Biskra', 'BIS', 1),
   3976 (78, 3, 'Blida', 'BLI', 1),
   3977 (79, 3, 'Bordj Bou Arreridj', 'BBA', 1),
   3978 (80, 3, 'Bouira', 'BOA', 1),
   3979 (81, 3, 'Boumerdes', 'BMD', 1),
   3980 (82, 3, 'Chlef', 'CHL', 1),
   3981 (83, 3, 'Constantine', 'CON', 1),
   3982 (84, 3, 'Djelfa', 'DJE', 1),
   3983 (85, 3, 'El Bayadh', 'EBA', 1),
   3984 (86, 3, 'El Oued', 'EOU', 1),
   3985 (87, 3, 'El Tarf', 'ETA', 1),
   3986 (88, 3, 'Ghardaia', 'GHA', 1),
   3987 (89, 3, 'Guelma', 'GUE', 1),
   3988 (90, 3, 'Illizi', 'ILL', 1),
   3989 (91, 3, 'Jijel', 'JIJ', 1),
   3990 (92, 3, 'Khenchela', 'KHE', 1),
   3991 (93, 3, 'Laghouat', 'LAG', 1),
   3992 (94, 3, 'Muaskar', 'MUA', 1),
   3993 (95, 3, 'Medea', 'MED', 1),
   3994 (96, 3, 'Mila', 'MIL', 1),
   3995 (97, 3, 'Mostaganem', 'MOS', 1),
   3996 (98, 3, 'M''Sila', 'MSI', 1),
   3997 (99, 3, 'Naama', 'NAA', 1),
   3998 (100, 3, 'Oran', 'ORA', 1),
   3999 (101, 3, 'Ouargla', 'OUA', 1),
   4000 (102, 3, 'Oum el-Bouaghi', 'OEB', 1),
   4001 (103, 3, 'Relizane', 'REL', 1),
   4002 (104, 3, 'Saida', 'SAI', 1),
   4003 (105, 3, 'Setif', 'SET', 1),
   4004 (106, 3, 'Sidi Bel Abbes', 'SBA', 1),
   4005 (107, 3, 'Skikda', 'SKI', 1),
   4006 (108, 3, 'Souk Ahras', 'SAH', 1),
   4007 (109, 3, 'Tamanghasset', 'TAM', 1),
   4008 (110, 3, 'Tebessa', 'TEB', 1),
   4009 (111, 3, 'Tiaret', 'TIA', 1),
   4010 (112, 3, 'Tindouf', 'TIN', 1),
   4011 (113, 3, 'Tipaza', 'TIP', 1),
   4012 (114, 3, 'Tissemsilt', 'TIS', 1),
   4013 (115, 3, 'Tizi Ouzou', 'TOU', 1),
   4014 (116, 3, 'Tlemcen', 'TLE', 1),
   4015 (117, 4, 'Eastern', 'E', 1),
   4016 (118, 4, 'Manu''a', 'M', 1),
   4017 (119, 4, 'Rose Island', 'R', 1),
   4018 (120, 4, 'Swains Island', 'S', 1),
   4019 (121, 4, 'Western', 'W', 1),
   4020 (122, 5, 'Andorra la Vella', 'ALV', 1),
   4021 (123, 5, 'Canillo', 'CAN', 1),
   4022 (124, 5, 'Encamp', 'ENC', 1),
   4023 (125, 5, 'Escaldes-Engordany', 'ESE', 1),
   4024 (126, 5, 'La Massana', 'LMA', 1),
   4025 (127, 5, 'Ordino', 'ORD', 1),
   4026 (128, 5, 'Sant Julia de Loria', 'SJL', 1),
   4027 (129, 6, 'Bengo', 'BGO', 1),
   4028 (130, 6, 'Benguela', 'BGU', 1),
   4029 (131, 6, 'Bie', 'BIE', 1),
   4030 (132, 6, 'Cabinda', 'CAB', 1),
   4031 (133, 6, 'Cuando-Cubango', 'CCU', 1),
   4032 (134, 6, 'Cuanza Norte', 'CNO', 1),
   4033 (135, 6, 'Cuanza Sul', 'CUS', 1),
   4034 (136, 6, 'Cunene', 'CNN', 1),
   4035 (137, 6, 'Huambo', 'HUA', 1),
   4036 (138, 6, 'Huila', 'HUI', 1),
   4037 (139, 6, 'Luanda', 'LUA', 1),
   4038 (140, 6, 'Lunda Norte', 'LNO', 1),
   4039 (141, 6, 'Lunda Sul', 'LSU', 1),
   4040 (142, 6, 'Malange', 'MAL', 1),
   4041 (143, 6, 'Moxico', 'MOX', 1),
   4042 (144, 6, 'Namibe', 'NAM', 1),
   4043 (145, 6, 'Uige', 'UIG', 1),
   4044 (146, 6, 'Zaire', 'ZAI', 1),
   4045 (147, 9, 'Saint George', 'ASG', 1),
   4046 (148, 9, 'Saint John', 'ASJ', 1),
   4047 (149, 9, 'Saint Mary', 'ASM', 1),
   4048 (150, 9, 'Saint Paul', 'ASL', 1),
   4049 (151, 9, 'Saint Peter', 'ASR', 1),
   4050 (152, 9, 'Saint Philip', 'ASH', 1),
   4051 (153, 9, 'Barbuda', 'BAR', 1),
   4052 (154, 9, 'Redonda', 'RED', 1),
   4053 (155, 10, 'Antartida e Islas del Atlantico', 'AN', 1),
   4054 (156, 10, 'Buenos Aires', 'BA', 1),
   4055 (157, 10, 'Catamarca', 'CA', 1),
   4056 (158, 10, 'Chaco', 'CH', 1),
   4057 (159, 10, 'Chubut', 'CU', 1),
   4058 (160, 10, 'Cordoba', 'CO', 1),
   4059 (161, 10, 'Corrientes', 'CR', 1),
   4060 (162, 10, 'Distrito Federal', 'DF', 1),
   4061 (163, 10, 'Entre Rios', 'ER', 1),
   4062 (164, 10, 'Formosa', 'FO', 1),
   4063 (165, 10, 'Jujuy', 'JU', 1),
   4064 (166, 10, 'La Pampa', 'LP', 1),
   4065 (167, 10, 'La Rioja', 'LR', 1),
   4066 (168, 10, 'Mendoza', 'ME', 1),
   4067 (169, 10, 'Misiones', 'MI', 1),
   4068 (170, 10, 'Neuquen', 'NE', 1),
   4069 (171, 10, 'Rio Negro', 'RN', 1),
   4070 (172, 10, 'Salta', 'SA', 1),
   4071 (173, 10, 'San Juan', 'SJ', 1),
   4072 (174, 10, 'San Luis', 'SL', 1),
   4073 (175, 10, 'Santa Cruz', 'SC', 1),
   4074 (176, 10, 'Santa Fe', 'SF', 1),
   4075 (177, 10, 'Santiago del Estero', 'SD', 1),
   4076 (178, 10, 'Tierra del Fuego', 'TF', 1),
   4077 (179, 10, 'Tucuman', 'TU', 1),
   4078 (180, 11, 'Aragatsotn', 'AGT', 1),
   4079 (181, 11, 'Ararat', 'ARR', 1),
   4080 (182, 11, 'Armavir', 'ARM', 1),
   4081 (183, 11, 'Geghark''unik''', 'GEG', 1),
   4082 (184, 11, 'Kotayk''', 'KOT', 1),
   4083 (185, 11, 'Lorri', 'LOR', 1),
   4084 (186, 11, 'Shirak', 'SHI', 1),
   4085 (187, 11, 'Syunik''', 'SYU', 1),
   4086 (188, 11, 'Tavush', 'TAV', 1),
   4087 (189, 11, 'Vayots'' Dzor', 'VAY', 1),
   4088 (190, 11, 'Yerevan', 'YER', 1),
   4089 (191, 13, 'Australian Capital Territory', 'ACT', 1),
   4090 (192, 13, 'New South Wales', 'NSW', 1),
   4091 (193, 13, 'Northern Territory', 'NT', 1),
   4092 (194, 13, 'Queensland', 'QLD', 1),
   4093 (195, 13, 'South Australia', 'SA', 1),
   4094 (196, 13, 'Tasmania', 'TAS', 1),
   4095 (197, 13, 'Victoria', 'VIC', 1),
   4096 (198, 13, 'Western Australia', 'WA', 1),
   4097 (199, 14, 'Burgenland', 'BUR', 1),
   4098 (200, 14, 'Kärnten', 'KAR', 1),
   4099 (201, 14, 'Niederösterreich', 'NOS', 1),
   4100 (202, 14, 'Oberösterreich', 'OOS', 1),
   4101 (203, 14, 'Salzburg', 'SAL', 1),
   4102 (204, 14, 'Steiermark', 'STE', 1),
   4103 (205, 14, 'Tirol', 'TIR', 1),
   4104 (206, 14, 'Vorarlberg', 'VOR', 1),
   4105 (207, 14, 'Wien', 'WIE', 1),
   4106 (208, 15, 'Ali Bayramli', 'AB', 1),
   4107 (209, 15, 'Abseron', 'ABS', 1),
   4108 (210, 15, 'AgcabAdi', 'AGC', 1),
   4109 (211, 15, 'Agdam', 'AGM', 1),
   4110 (212, 15, 'Agdas', 'AGS', 1),
   4111 (213, 15, 'Agstafa', 'AGA', 1),
   4112 (214, 15, 'Agsu', 'AGU', 1),
   4113 (215, 15, 'Astara', 'AST', 1),
   4114 (216, 15, 'Baki', 'BA', 1),
   4115 (217, 15, 'BabAk', 'BAB', 1),
   4116 (218, 15, 'BalakAn', 'BAL', 1),
   4117 (219, 15, 'BArdA', 'BAR', 1),
   4118 (220, 15, 'Beylaqan', 'BEY', 1),
   4119 (221, 15, 'Bilasuvar', 'BIL', 1),
   4120 (222, 15, 'Cabrayil', 'CAB', 1),
   4121 (223, 15, 'Calilabab', 'CAL', 1),
   4122 (224, 15, 'Culfa', 'CUL', 1),
   4123 (225, 15, 'Daskasan', 'DAS', 1),
   4124 (226, 15, 'Davaci', 'DAV', 1),
   4125 (227, 15, 'Fuzuli', 'FUZ', 1),
   4126 (228, 15, 'Ganca', 'GA', 1),
   4127 (229, 15, 'Gadabay', 'GAD', 1),
   4128 (230, 15, 'Goranboy', 'GOR', 1),
   4129 (231, 15, 'Goycay', 'GOY', 1),
   4130 (232, 15, 'Haciqabul', 'HAC', 1),
   4131 (233, 15, 'Imisli', 'IMI', 1),
   4132 (234, 15, 'Ismayilli', 'ISM', 1),
   4133 (235, 15, 'Kalbacar', 'KAL', 1),
   4134 (236, 15, 'Kurdamir', 'KUR', 1),
   4135 (237, 15, 'Lankaran', 'LA', 1),
   4136 (238, 15, 'Lacin', 'LAC', 1),
   4137 (239, 15, 'Lankaran', 'LAN', 1),
   4138 (240, 15, 'Lerik', 'LER', 1),
   4139 (241, 15, 'Masalli', 'MAS', 1),
   4140 (242, 15, 'Mingacevir', 'MI', 1),
   4141 (243, 15, 'Naftalan', 'NA', 1),
   4142 (244, 15, 'Neftcala', 'NEF', 1),
   4143 (245, 15, 'Oguz', 'OGU', 1),
   4144 (246, 15, 'Ordubad', 'ORD', 1),
   4145 (247, 15, 'Qabala', 'QAB', 1),
   4146 (248, 15, 'Qax', 'QAX', 1),
   4147 (249, 15, 'Qazax', 'QAZ', 1),
   4148 (250, 15, 'Qobustan', 'QOB', 1),
   4149 (251, 15, 'Quba', 'QBA', 1),
   4150 (252, 15, 'Qubadli', 'QBI', 1),
   4151 (253, 15, 'Qusar', 'QUS', 1),
   4152 (254, 15, 'Saki', 'SA', 1),
   4153 (255, 15, 'Saatli', 'SAT', 1),
   4154 (256, 15, 'Sabirabad', 'SAB', 1),
   4155 (257, 15, 'Sadarak', 'SAD', 1),
   4156 (258, 15, 'Sahbuz', 'SAH', 1),
   4157 (259, 15, 'Saki', 'SAK', 1),
   4158 (260, 15, 'Salyan', 'SAL', 1),
   4159 (261, 15, 'Sumqayit', 'SM', 1),
   4160 (262, 15, 'Samaxi', 'SMI', 1),
   4161 (263, 15, 'Samkir', 'SKR', 1),
   4162 (264, 15, 'Samux', 'SMX', 1),
   4163 (265, 15, 'Sarur', 'SAR', 1),
   4164 (266, 15, 'Siyazan', 'SIY', 1),
   4165 (267, 15, 'Susa', 'SS', 1),
   4166 (268, 15, 'Susa', 'SUS', 1),
   4167 (269, 15, 'Tartar', 'TAR', 1),
   4168 (270, 15, 'Tovuz', 'TOV', 1),
   4169 (271, 15, 'Ucar', 'UCA', 1),
   4170 (272, 15, 'Xankandi', 'XA', 1),
   4171 (273, 15, 'Xacmaz', 'XAC', 1),
   4172 (274, 15, 'Xanlar', 'XAN', 1),
   4173 (275, 15, 'Xizi', 'XIZ', 1),
   4174 (276, 15, 'Xocali', 'XCI', 1),
   4175 (277, 15, 'Xocavand', 'XVD', 1),
   4176 (278, 15, 'Yardimli', 'YAR', 1),
   4177 (279, 15, 'Yevlax', 'YEV', 1),
   4178 (280, 15, 'Zangilan', 'ZAN', 1),
   4179 (281, 15, 'Zaqatala', 'ZAQ', 1),
   4180 (282, 15, 'Zardab', 'ZAR', 1),
   4181 (283, 15, 'Naxcivan', 'NX', 1),
   4182 (284, 16, 'Acklins', 'ACK', 1),
   4183 (285, 16, 'Berry Islands', 'BER', 1),
   4184 (286, 16, 'Bimini', 'BIM', 1),
   4185 (287, 16, 'Black Point', 'BLK', 1),
   4186 (288, 16, 'Cat Island', 'CAT', 1),
   4187 (289, 16, 'Central Abaco', 'CAB', 1),
   4188 (290, 16, 'Central Andros', 'CAN', 1),
   4189 (291, 16, 'Central Eleuthera', 'CEL', 1),
   4190 (292, 16, 'City of Freeport', 'FRE', 1),
   4191 (293, 16, 'Crooked Island', 'CRO', 1),
   4192 (294, 16, 'East Grand Bahama', 'EGB', 1),
   4193 (295, 16, 'Exuma', 'EXU', 1),
   4194 (296, 16, 'Grand Cay', 'GRD', 1),
   4195 (297, 16, 'Harbour Island', 'HAR', 1),
   4196 (298, 16, 'Hope Town', 'HOP', 1),
   4197 (299, 16, 'Inagua', 'INA', 1),
   4198 (300, 16, 'Long Island', 'LNG', 1),
   4199 (301, 16, 'Mangrove Cay', 'MAN', 1),
   4200 (302, 16, 'Mayaguana', 'MAY', 1),
   4201 (303, 16, 'Moore''s Island', 'MOO', 1),
   4202 (304, 16, 'North Abaco', 'NAB', 1),
   4203 (305, 16, 'North Andros', 'NAN', 1),
   4204 (306, 16, 'North Eleuthera', 'NEL', 1),
   4205 (307, 16, 'Ragged Island', 'RAG', 1),
   4206 (308, 16, 'Rum Cay', 'RUM', 1),
   4207 (309, 16, 'San Salvador', 'SAL', 1),
   4208 (310, 16, 'South Abaco', 'SAB', 1),
   4209 (311, 16, 'South Andros', 'SAN', 1),
   4210 (312, 16, 'South Eleuthera', 'SEL', 1),
   4211 (313, 16, 'Spanish Wells', 'SWE', 1),
   4212 (314, 16, 'West Grand Bahama', 'WGB', 1),
   4213 (315, 17, 'Capital', 'CAP', 1),
   4214 (316, 17, 'Central', 'CEN', 1),
   4215 (317, 17, 'Muharraq', 'MUH', 1),
   4216 (318, 17, 'Northern', 'NOR', 1),
   4217 (319, 17, 'Southern', 'SOU', 1),
   4218 (320, 18, 'Barisal', 'BAR', 1),
   4219 (321, 18, 'Chittagong', 'CHI', 1),
   4220 (322, 18, 'Dhaka', 'DHA', 1),
   4221 (323, 18, 'Khulna', 'KHU', 1),
   4222 (324, 18, 'Rajshahi', 'RAJ', 1),
   4223 (325, 18, 'Sylhet', 'SYL', 1),
   4224 (326, 19, 'Christ Church', 'CC', 1),
   4225 (327, 19, 'Saint Andrew', 'AND', 1),
   4226 (328, 19, 'Saint George', 'GEO', 1),
   4227 (329, 19, 'Saint James', 'JAM', 1),
   4228 (330, 19, 'Saint John', 'JOH', 1),
   4229 (331, 19, 'Saint Joseph', 'JOS', 1),
   4230 (332, 19, 'Saint Lucy', 'LUC', 1),
   4231 (333, 19, 'Saint Michael', 'MIC', 1),
   4232 (334, 19, 'Saint Peter', 'PET', 1),
   4233 (335, 19, 'Saint Philip', 'PHI', 1),
   4234 (336, 19, 'Saint Thomas', 'THO', 1),
   4235 (337, 20, 'Brestskaya (Brest)', 'BR', 1),
   4236 (338, 20, 'Homyel''skaya (Homyel'')', 'HO', 1),
   4237 (339, 20, 'Horad Minsk', 'HM', 1),
   4238 (340, 20, 'Hrodzyenskaya (Hrodna)', 'HR', 1),
   4239 (341, 20, 'Mahilyowskaya (Mahilyow)', 'MA', 1),
   4240 (342, 20, 'Minskaya', 'MI', 1),
   4241 (343, 20, 'Vitsyebskaya (Vitsyebsk)', 'VI', 1),
   4242 (344, 21, 'Antwerpen', 'VAN', 1),
   4243 (345, 21, 'Brabant Wallon', 'WBR', 1),
   4244 (346, 21, 'Hainaut', 'WHT', 1),
   4245 (347, 21, 'Liège', 'WLG', 1),
   4246 (348, 21, 'Limburg', 'VLI', 1),
   4247 (349, 21, 'Luxembourg', 'WLX', 1),
   4248 (350, 21, 'Namur', 'WNA', 1),
   4249 (351, 21, 'Oost-Vlaanderen', 'VOV', 1),
   4250 (352, 21, 'Vlaams Brabant', 'VBR', 1),
   4251 (353, 21, 'West-Vlaanderen', 'VWV', 1),
   4252 (354, 22, 'Belize', 'BZ', 1),
   4253 (355, 22, 'Cayo', 'CY', 1),
   4254 (356, 22, 'Corozal', 'CR', 1),
   4255 (357, 22, 'Orange Walk', 'OW', 1),
   4256 (358, 22, 'Stann Creek', 'SC', 1),
   4257 (359, 22, 'Toledo', 'TO', 1),
   4258 (360, 23, 'Alibori', 'AL', 1),
   4259 (361, 23, 'Atakora', 'AK', 1),
   4260 (362, 23, 'Atlantique', 'AQ', 1),
   4261 (363, 23, 'Borgou', 'BO', 1),
   4262 (364, 23, 'Collines', 'CO', 1),
   4263 (365, 23, 'Donga', 'DO', 1),
   4264 (366, 23, 'Kouffo', 'KO', 1),
   4265 (367, 23, 'Littoral', 'LI', 1),
   4266 (368, 23, 'Mono', 'MO', 1),
   4267 (369, 23, 'Oueme', 'OU', 1),
   4268 (370, 23, 'Plateau', 'PL', 1),
   4269 (371, 23, 'Zou', 'ZO', 1),
   4270 (372, 24, 'Devonshire', 'DS', 1),
   4271 (373, 24, 'Hamilton City', 'HC', 1),
   4272 (374, 24, 'Hamilton', 'HA', 1),
   4273 (375, 24, 'Paget', 'PG', 1),
   4274 (376, 24, 'Pembroke', 'PB', 1),
   4275 (377, 24, 'Saint George City', 'GC', 1),
   4276 (378, 24, 'Saint George''s', 'SG', 1),
   4277 (379, 24, 'Sandys', 'SA', 1),
   4278 (380, 24, 'Smith''s', 'SM', 1),
   4279 (381, 24, 'Southampton', 'SH', 1),
   4280 (382, 24, 'Warwick', 'WA', 1),
   4281 (383, 25, 'Bumthang', 'BUM', 1),
   4282 (384, 25, 'Chukha', 'CHU', 1),
   4283 (385, 25, 'Dagana', 'DAG', 1),
   4284 (386, 25, 'Gasa', 'GAS', 1),
   4285 (387, 25, 'Haa', 'HAA', 1),
   4286 (388, 25, 'Lhuntse', 'LHU', 1),
   4287 (389, 25, 'Mongar', 'MON', 1),
   4288 (390, 25, 'Paro', 'PAR', 1),
   4289 (391, 25, 'Pemagatshel', 'PEM', 1),
   4290 (392, 25, 'Punakha', 'PUN', 1),
   4291 (393, 25, 'Samdrup Jongkhar', 'SJO', 1),
   4292 (394, 25, 'Samtse', 'SAT', 1),
   4293 (395, 25, 'Sarpang', 'SAR', 1),
   4294 (396, 25, 'Thimphu', 'THI', 1),
   4295 (397, 25, 'Trashigang', 'TRG', 1),
   4296 (398, 25, 'Trashiyangste', 'TRY', 1),
   4297 (399, 25, 'Trongsa', 'TRO', 1),
   4298 (400, 25, 'Tsirang', 'TSI', 1),
   4299 (401, 25, 'Wangdue Phodrang', 'WPH', 1),
   4300 (402, 25, 'Zhemgang', 'ZHE', 1),
   4301 (403, 26, 'Beni', 'BEN', 1),
   4302 (404, 26, 'Chuquisaca', 'CHU', 1),
   4303 (405, 26, 'Cochabamba', 'COC', 1),
   4304 (406, 26, 'La Paz', 'LPZ', 1),
   4305 (407, 26, 'Oruro', 'ORU', 1),
   4306 (408, 26, 'Pando', 'PAN', 1),
   4307 (409, 26, 'Potosi', 'POT', 1),
   4308 (410, 26, 'Santa Cruz', 'SCZ', 1),
   4309 (411, 26, 'Tarija', 'TAR', 1),
   4310 (412, 27, 'Brcko district', 'BRO', 1),
   4311 (413, 27, 'Unsko-Sanski Kanton', 'FUS', 1),
   4312 (414, 27, 'Posavski Kanton', 'FPO', 1),
   4313 (415, 27, 'Tuzlanski Kanton', 'FTU', 1),
   4314 (416, 27, 'Zenicko-Dobojski Kanton', 'FZE', 1),
   4315 (417, 27, 'Bosanskopodrinjski Kanton', 'FBP', 1),
   4316 (418, 27, 'Srednjebosanski Kanton', 'FSB', 1),
   4317 (419, 27, 'Hercegovacko-neretvanski Kanton', 'FHN', 1),
   4318 (420, 27, 'Zapadnohercegovacka Zupanija', 'FZH', 1),
   4319 (421, 27, 'Kanton Sarajevo', 'FSA', 1),
   4320 (422, 27, 'Zapadnobosanska', 'FZA', 1),
   4321 (423, 27, 'Banja Luka', 'SBL', 1),
   4322 (424, 27, 'Doboj', 'SDO', 1),
   4323 (425, 27, 'Bijeljina', 'SBI', 1),
   4324 (426, 27, 'Vlasenica', 'SVL', 1),
   4325 (427, 27, 'Sarajevo-Romanija or Sokolac', 'SSR', 1),
   4326 (428, 27, 'Foca', 'SFO', 1),
   4327 (429, 27, 'Trebinje', 'STR', 1),
   4328 (430, 28, 'Central', 'CE', 1),
   4329 (431, 28, 'Ghanzi', 'GH', 1),
   4330 (432, 28, 'Kgalagadi', 'KD', 1),
   4331 (433, 28, 'Kgatleng', 'KT', 1),
   4332 (434, 28, 'Kweneng', 'KW', 1),
   4333 (435, 28, 'Ngamiland', 'NG', 1),
   4334 (436, 28, 'North East', 'NE', 1),
   4335 (437, 28, 'North West', 'NW', 1),
   4336 (438, 28, 'South East', 'SE', 1),
   4337 (439, 28, 'Southern', 'SO', 1),
   4338 (440, 30, 'Acre', 'AC', 1),
   4339 (441, 30, 'Alagoas', 'AL', 1),
   4340 (442, 30, 'Amapá', 'AP', 1),
   4341 (443, 30, 'Amazonas', 'AM', 1),
   4342 (444, 30, 'Bahia', 'BA', 1),
   4343 (445, 30, 'Ceará', 'CE', 1),
   4344 (446, 30, 'Distrito Federal', 'DF', 1),
   4345 (447, 30, 'Espírito Santo', 'ES', 1),
   4346 (448, 30, 'Goiás', 'GO', 1),
   4347 (449, 30, 'Maranhão', 'MA', 1),
   4348 (450, 30, 'Mato Grosso', 'MT', 1),
   4349 (451, 30, 'Mato Grosso do Sul', 'MS', 1),
   4350 (452, 30, 'Minas Gerais', 'MG', 1),
   4351 (453, 30, 'Pará', 'PA', 1),
   4352 (454, 30, 'Paraíba', 'PB', 1),
   4353 (455, 30, 'Paraná', 'PR', 1),
   4354 (456, 30, 'Pernambuco', 'PE', 1),
   4355 (457, 30, 'Piauí', 'PI', 1),
   4356 (458, 30, 'Rio de Janeiro', 'RJ', 1),
   4357 (459, 30, 'Rio Grande do Norte', 'RN', 1),
   4358 (460, 30, 'Rio Grande do Sul', 'RS', 1),
   4359 (461, 30, 'Rondônia', 'RO', 1),
   4360 (462, 30, 'Roraima', 'RR', 1),
   4361 (463, 30, 'Santa Catarina', 'SC', 1),
   4362 (464, 30, 'São Paulo', 'SP', 1),
   4363 (465, 30, 'Sergipe', 'SE', 1),
   4364 (466, 30, 'Tocantins', 'TO', 1),
   4365 (467, 31, 'Peros Banhos', 'PB', 1),
   4366 (468, 31, 'Salomon Islands', 'SI', 1),
   4367 (469, 31, 'Nelsons Island', 'NI', 1),
   4368 (470, 31, 'Three Brothers', 'TB', 1),
   4369 (471, 31, 'Eagle Islands', 'EA', 1),
   4370 (472, 31, 'Danger Island', 'DI', 1),
   4371 (473, 31, 'Egmont Islands', 'EG', 1),
   4372 (474, 31, 'Diego Garcia', 'DG', 1),
   4373 (475, 32, 'Belait', 'BEL', 1),
   4374 (476, 32, 'Brunei and Muara', 'BRM', 1),
   4375 (477, 32, 'Temburong', 'TEM', 1),
   4376 (478, 32, 'Tutong', 'TUT', 1),
   4377 (479, 33, 'Blagoevgrad', '', 1),
   4378 (480, 33, 'Burgas', '', 1),
   4379 (481, 33, 'Dobrich', '', 1),
   4380 (482, 33, 'Gabrovo', '', 1),
   4381 (483, 33, 'Haskovo', '', 1),
   4382 (484, 33, 'Kardjali', '', 1),
   4383 (485, 33, 'Kyustendil', '', 1),
   4384 (486, 33, 'Lovech', '', 1),
   4385 (487, 33, 'Montana', '', 1),
   4386 (488, 33, 'Pazardjik', '', 1),
   4387 (489, 33, 'Pernik', '', 1),
   4388 (490, 33, 'Pleven', '', 1),
   4389 (491, 33, 'Plovdiv', '', 1),
   4390 (492, 33, 'Razgrad', '', 1),
   4391 (493, 33, 'Shumen', '', 1),
   4392 (494, 33, 'Silistra', '', 1),
   4393 (495, 33, 'Sliven', '', 1),
   4394 (496, 33, 'Smolyan', '', 1),
   4395 (497, 33, 'Sofia', '', 1),
   4396 (498, 33, 'Sofia - town', '', 1),
   4397 (499, 33, 'Stara Zagora', '', 1),
   4398 (500, 33, 'Targovishte', '', 1),
   4399 (501, 33, 'Varna', '', 1),
   4400 (502, 33, 'Veliko Tarnovo', '', 1),
   4401 (503, 33, 'Vidin', '', 1),
   4402 (504, 33, 'Vratza', '', 1),
   4403 (505, 33, 'Yambol', '', 1),
   4404 (506, 34, 'Bale', 'BAL', 1),
   4405 (507, 34, 'Bam', 'BAM', 1),
   4406 (508, 34, 'Banwa', 'BAN', 1),
   4407 (509, 34, 'Bazega', 'BAZ', 1),
   4408 (510, 34, 'Bougouriba', 'BOR', 1),
   4409 (511, 34, 'Boulgou', 'BLG', 1),
   4410 (512, 34, 'Boulkiemde', 'BOK', 1),
   4411 (513, 34, 'Comoe', 'COM', 1),
   4412 (514, 34, 'Ganzourgou', 'GAN', 1),
   4413 (515, 34, 'Gnagna', 'GNA', 1),
   4414 (516, 34, 'Gourma', 'GOU', 1),
   4415 (517, 34, 'Houet', 'HOU', 1),
   4416 (518, 34, 'Ioba', 'IOA', 1),
   4417 (519, 34, 'Kadiogo', 'KAD', 1),
   4418 (520, 34, 'Kenedougou', 'KEN', 1),
   4419 (521, 34, 'Komondjari', 'KOD', 1),
   4420 (522, 34, 'Kompienga', 'KOP', 1),
   4421 (523, 34, 'Kossi', 'KOS', 1),
   4422 (524, 34, 'Koulpelogo', 'KOL', 1),
   4423 (525, 34, 'Kouritenga', 'KOT', 1),
   4424 (526, 34, 'Kourweogo', 'KOW', 1),
   4425 (527, 34, 'Leraba', 'LER', 1),
   4426 (528, 34, 'Loroum', 'LOR', 1),
   4427 (529, 34, 'Mouhoun', 'MOU', 1),
   4428 (530, 34, 'Nahouri', 'NAH', 1),
   4429 (531, 34, 'Namentenga', 'NAM', 1),
   4430 (532, 34, 'Nayala', 'NAY', 1),
   4431 (533, 34, 'Noumbiel', 'NOU', 1),
   4432 (534, 34, 'Oubritenga', 'OUB', 1),
   4433 (535, 34, 'Oudalan', 'OUD', 1),
   4434 (536, 34, 'Passore', 'PAS', 1),
   4435 (537, 34, 'Poni', 'PON', 1),
   4436 (538, 34, 'Sanguie', 'SAG', 1),
   4437 (539, 34, 'Sanmatenga', 'SAM', 1),
   4438 (540, 34, 'Seno', 'SEN', 1),
   4439 (541, 34, 'Sissili', 'SIS', 1),
   4440 (542, 34, 'Soum', 'SOM', 1),
   4441 (543, 34, 'Sourou', 'SOR', 1),
   4442 (544, 34, 'Tapoa', 'TAP', 1),
   4443 (545, 34, 'Tuy', 'TUY', 1),
   4444 (546, 34, 'Yagha', 'YAG', 1),
   4445 (547, 34, 'Yatenga', 'YAT', 1),
   4446 (548, 34, 'Ziro', 'ZIR', 1),
   4447 (549, 34, 'Zondoma', 'ZOD', 1),
   4448 (550, 34, 'Zoundweogo', 'ZOW', 1),
   4449 (551, 35, 'Bubanza', 'BB', 1),
   4450 (552, 35, 'Bujumbura', 'BJ', 1),
   4451 (553, 35, 'Bururi', 'BR', 1),
   4452 (554, 35, 'Cankuzo', 'CA', 1),
   4453 (555, 35, 'Cibitoke', 'CI', 1),
   4454 (556, 35, 'Gitega', 'GI', 1),
   4455 (557, 35, 'Karuzi', 'KR', 1),
   4456 (558, 35, 'Kayanza', 'KY', 1),
   4457 (559, 35, 'Kirundo', 'KI', 1),
   4458 (560, 35, 'Makamba', 'MA', 1),
   4459 (561, 35, 'Muramvya', 'MU', 1),
   4460 (562, 35, 'Muyinga', 'MY', 1),
   4461 (563, 35, 'Mwaro', 'MW', 1),
   4462 (564, 35, 'Ngozi', 'NG', 1),
   4463 (565, 35, 'Rutana', 'RT', 1),
   4464 (566, 35, 'Ruyigi', 'RY', 1),
   4465 (567, 36, 'Phnom Penh', 'PP', 1),
   4466 (568, 36, 'Preah Seihanu (Kompong Som or Sihanoukville)', 'PS', 1),
   4467 (569, 36, 'Pailin', 'PA', 1),
   4468 (570, 36, 'Keb', 'KB', 1),
   4469 (571, 36, 'Banteay Meanchey', 'BM', 1),
   4470 (572, 36, 'Battambang', 'BA', 1),
   4471 (573, 36, 'Kampong Cham', 'KM', 1),
   4472 (574, 36, 'Kampong Chhnang', 'KN', 1),
   4473 (575, 36, 'Kampong Speu', 'KU', 1),
   4474 (576, 36, 'Kampong Som', 'KO', 1),
   4475 (577, 36, 'Kampong Thom', 'KT', 1),
   4476 (578, 36, 'Kampot', 'KP', 1),
   4477 (579, 36, 'Kandal', 'KL', 1),
   4478 (580, 36, 'Kaoh Kong', 'KK', 1),
   4479 (581, 36, 'Kratie', 'KR', 1),
   4480 (582, 36, 'Mondul Kiri', 'MK', 1),
   4481 (583, 36, 'Oddar Meancheay', 'OM', 1),
   4482 (584, 36, 'Pursat', 'PU', 1),
   4483 (585, 36, 'Preah Vihear', 'PR', 1),
   4484 (586, 36, 'Prey Veng', 'PG', 1),
   4485 (587, 36, 'Ratanak Kiri', 'RK', 1),
   4486 (588, 36, 'Siemreap', 'SI', 1),
   4487 (589, 36, 'Stung Treng', 'ST', 1),
   4488 (590, 36, 'Svay Rieng', 'SR', 1),
   4489 (591, 36, 'Takeo', 'TK', 1),
   4490 (592, 37, 'Adamawa (Adamaoua)', 'ADA', 1),
   4491 (593, 37, 'Centre', 'CEN', 1),
   4492 (594, 37, 'East (Est)', 'EST', 1),
   4493 (595, 37, 'Extreme North (Extreme-Nord)', 'EXN', 1),
   4494 (596, 37, 'Littoral', 'LIT', 1),
   4495 (597, 37, 'North (Nord)', 'NOR', 1),
   4496 (598, 37, 'Northwest (Nord-Ouest)', 'NOT', 1),
   4497 (599, 37, 'West (Ouest)', 'OUE', 1),
   4498 (600, 37, 'South (Sud)', 'SUD', 1),
   4499 (601, 37, 'Southwest (Sud-Ouest).', 'SOU', 1),
   4500 (602, 38, 'Alberta', 'AB', 1),
   4501 (603, 38, 'British Columbia', 'BC', 1),
   4502 (604, 38, 'Manitoba', 'MB', 1),
   4503 (605, 38, 'New Brunswick', 'NB', 1),
   4504 (606, 38, 'Newfoundland and Labrador', 'NL', 1),
   4505 (607, 38, 'Northwest Territories', 'NT', 1),
   4506 (608, 38, 'Nova Scotia', 'NS', 1),
   4507 (609, 38, 'Nunavut', 'NU', 1),
   4508 (610, 38, 'Ontario', 'ON', 1),
   4509 (611, 38, 'Prince Edward Island', 'PE', 1),
   4510 (612, 38, 'Québec', 'QC', 1),
   4511 (613, 38, 'Saskatchewan', 'SK', 1),
   4512 (614, 38, 'Yukon Territory', 'YT', 1),
   4513 (615, 39, 'Boa Vista', 'BV', 1),
   4514 (616, 39, 'Brava', 'BR', 1),
   4515 (617, 39, 'Calheta de Sao Miguel', 'CS', 1),
   4516 (618, 39, 'Maio', 'MA', 1),
   4517 (619, 39, 'Mosteiros', 'MO', 1),
   4518 (620, 39, 'Paul', 'PA', 1),
   4519 (621, 39, 'Porto Novo', 'PN', 1),
   4520 (622, 39, 'Praia', 'PR', 1),
   4521 (623, 39, 'Ribeira Grande', 'RG', 1),
   4522 (624, 39, 'Sal', 'SL', 1),
   4523 (625, 39, 'Santa Catarina', 'CA', 1),
   4524 (626, 39, 'Santa Cruz', 'CR', 1),
   4525 (627, 39, 'Sao Domingos', 'SD', 1),
   4526 (628, 39, 'Sao Filipe', 'SF', 1),
   4527 (629, 39, 'Sao Nicolau', 'SN', 1),
   4528 (630, 39, 'Sao Vicente', 'SV', 1),
   4529 (631, 39, 'Tarrafal', 'TA', 1),
   4530 (632, 40, 'Creek', 'CR', 1),
   4531 (633, 40, 'Eastern', 'EA', 1),
   4532 (634, 40, 'Midland', 'ML', 1),
   4533 (635, 40, 'South Town', 'ST', 1),
   4534 (636, 40, 'Spot Bay', 'SP', 1),
   4535 (637, 40, 'Stake Bay', 'SK', 1),
   4536 (638, 40, 'West End', 'WD', 1),
   4537 (639, 40, 'Western', 'WN', 1),
   4538 (640, 41, 'Bamingui-Bangoran', 'BBA', 1),
   4539 (641, 41, 'Basse-Kotto', 'BKO', 1),
   4540 (642, 41, 'Haute-Kotto', 'HKO', 1),
   4541 (643, 41, 'Haut-Mbomou', 'HMB', 1),
   4542 (644, 41, 'Kemo', 'KEM', 1),
   4543 (645, 41, 'Lobaye', 'LOB', 1),
   4544 (646, 41, 'Mambere-KadeÔ', 'MKD', 1),
   4545 (647, 41, 'Mbomou', 'MBO', 1),
   4546 (648, 41, 'Nana-Mambere', 'NMM', 1),
   4547 (649, 41, 'Ombella-M''Poko', 'OMP', 1),
   4548 (650, 41, 'Ouaka', 'OUK', 1),
   4549 (651, 41, 'Ouham', 'OUH', 1),
   4550 (652, 41, 'Ouham-Pende', 'OPE', 1),
   4551 (653, 41, 'Vakaga', 'VAK', 1),
   4552 (654, 41, 'Nana-Grebizi', 'NGR', 1),
   4553 (655, 41, 'Sangha-Mbaere', 'SMB', 1),
   4554 (656, 41, 'Bangui', 'BAN', 1),
   4555 (657, 42, 'Batha', 'BA', 1),
   4556 (658, 42, 'Biltine', 'BI', 1),
   4557 (659, 42, 'Borkou-Ennedi-Tibesti', 'BE', 1),
   4558 (660, 42, 'Chari-Baguirmi', 'CB', 1),
   4559 (661, 42, 'Guera', 'GU', 1),
   4560 (662, 42, 'Kanem', 'KA', 1),
   4561 (663, 42, 'Lac', 'LA', 1),
   4562 (664, 42, 'Logone Occidental', 'LC', 1),
   4563 (665, 42, 'Logone Oriental', 'LR', 1),
   4564 (666, 42, 'Mayo-Kebbi', 'MK', 1),
   4565 (667, 42, 'Moyen-Chari', 'MC', 1),
   4566 (668, 42, 'Ouaddai', 'OU', 1),
   4567 (669, 42, 'Salamat', 'SA', 1),
   4568 (670, 42, 'Tandjile', 'TA', 1),
   4569 (671, 43, 'Aisen del General Carlos Ibanez', 'AI', 1),
   4570 (672, 43, 'Antofagasta', 'AN', 1),
   4571 (673, 43, 'Araucania', 'AR', 1),
   4572 (674, 43, 'Atacama', 'AT', 1),
   4573 (675, 43, 'Bio-Bio', 'BI', 1),
   4574 (676, 43, 'Coquimbo', 'CO', 1),
   4575 (677, 43, 'Libertador General Bernardo O''Higgins', 'LI', 1),
   4576 (678, 43, 'Los Lagos', 'LL', 1),
   4577 (679, 43, 'Magallanes y de la Antartica Chilena', 'MA', 1),
   4578 (680, 43, 'Maule', 'ML', 1),
   4579 (681, 43, 'Region Metropolitana', 'RM', 1),
   4580 (682, 43, 'Tarapaca', 'TA', 1),
   4581 (683, 43, 'Valparaiso', 'VS', 1),
   4582 (684, 44, 'Anhui', 'AN', 1),
   4583 (685, 44, 'Beijing', 'BE', 1),
   4584 (686, 44, 'Chongqing', 'CH', 1),
   4585 (687, 44, 'Fujian', 'FU', 1),
   4586 (688, 44, 'Gansu', 'GA', 1),
   4587 (689, 44, 'Guangdong', 'GU', 1),
   4588 (690, 44, 'Guangxi', 'GX', 1),
   4589 (691, 44, 'Guizhou', 'GZ', 1),
   4590 (692, 44, 'Hainan', 'HA', 1),
   4591 (693, 44, 'Hebei', 'HB', 1),
   4592 (694, 44, 'Heilongjiang', 'HL', 1),
   4593 (695, 44, 'Henan', 'HE', 1),
   4594 (696, 44, 'Hong Kong', 'HK', 1),
   4595 (697, 44, 'Hubei', 'HU', 1),
   4596 (698, 44, 'Hunan', 'HN', 1),
   4597 (699, 44, 'Inner Mongolia', 'IM', 1),
   4598 (700, 44, 'Jiangsu', 'JI', 1),
   4599 (701, 44, 'Jiangxi', 'JX', 1),
   4600 (702, 44, 'Jilin', 'JL', 1),
   4601 (703, 44, 'Liaoning', 'LI', 1),
   4602 (704, 44, 'Macau', 'MA', 1),
   4603 (705, 44, 'Ningxia', 'NI', 1),
   4604 (706, 44, 'Shaanxi', 'SH', 1),
   4605 (707, 44, 'Shandong', 'SA', 1),
   4606 (708, 44, 'Shanghai', 'SG', 1),
   4607 (709, 44, 'Shanxi', 'SX', 1),
   4608 (710, 44, 'Sichuan', 'SI', 1),
   4609 (711, 44, 'Tianjin', 'TI', 1),
   4610 (712, 44, 'Xinjiang', 'XI', 1),
   4611 (713, 44, 'Yunnan', 'YU', 1),
   4612 (714, 44, 'Zhejiang', 'ZH', 1),
   4613 (715, 46, 'Direction Island', 'D', 1),
   4614 (716, 46, 'Home Island', 'H', 1),
   4615 (717, 46, 'Horsburgh Island', 'O', 1),
   4616 (718, 46, 'South Island', 'S', 1),
   4617 (719, 46, 'West Island', 'W', 1),
   4618 (720, 47, 'Amazonas', 'AMZ', 1),
   4619 (721, 47, 'Antioquia', 'ANT', 1),
   4620 (722, 47, 'Arauca', 'ARA', 1),
   4621 (723, 47, 'Atlantico', 'ATL', 1),
   4622 (724, 47, 'Bogota D.C.', 'BDC', 1),
   4623 (725, 47, 'Bolivar', 'BOL', 1),
   4624 (726, 47, 'Boyaca', 'BOY', 1),
   4625 (727, 47, 'Caldas', 'CAL', 1),
   4626 (728, 47, 'Caqueta', 'CAQ', 1),
   4627 (729, 47, 'Casanare', 'CAS', 1),
   4628 (730, 47, 'Cauca', 'CAU', 1),
   4629 (731, 47, 'Cesar', 'CES', 1),
   4630 (732, 47, 'Choco', 'CHO', 1),
   4631 (733, 47, 'Cordoba', 'COR', 1),
   4632 (734, 47, 'Cundinamarca', 'CAM', 1),
   4633 (735, 47, 'Guainia', 'GNA', 1),
   4634 (736, 47, 'Guajira', 'GJR', 1),
   4635 (737, 47, 'Guaviare', 'GVR', 1),
   4636 (738, 47, 'Huila', 'HUI', 1),
   4637 (739, 47, 'Magdalena', 'MAG', 1),
   4638 (740, 47, 'Meta', 'MET', 1),
   4639 (741, 47, 'Narino', 'NAR', 1),
   4640 (742, 47, 'Norte de Santander', 'NDS', 1),
   4641 (743, 47, 'Putumayo', 'PUT', 1),
   4642 (744, 47, 'Quindio', 'QUI', 1),
   4643 (745, 47, 'Risaralda', 'RIS', 1),
   4644 (746, 47, 'San Andres y Providencia', 'SAP', 1),
   4645 (747, 47, 'Santander', 'SAN', 1),
   4646 (748, 47, 'Sucre', 'SUC', 1),
   4647 (749, 47, 'Tolima', 'TOL', 1),
   4648 (750, 47, 'Valle del Cauca', 'VDC', 1),
   4649 (751, 47, 'Vaupes', 'VAU', 1),
   4650 (752, 47, 'Vichada', 'VIC', 1),
   4651 (753, 48, 'Grande Comore', 'G', 1),
   4652 (754, 48, 'Anjouan', 'A', 1),
   4653 (755, 48, 'Moheli', 'M', 1),
   4654 (756, 49, 'Bouenza', 'BO', 1),
   4655 (757, 49, 'Brazzaville', 'BR', 1),
   4656 (758, 49, 'Cuvette', 'CU', 1),
   4657 (759, 49, 'Cuvette-Ouest', 'CO', 1),
   4658 (760, 49, 'Kouilou', 'KO', 1),
   4659 (761, 49, 'Lekoumou', 'LE', 1),
   4660 (762, 49, 'Likouala', 'LI', 1),
   4661 (763, 49, 'Niari', 'NI', 1),
   4662 (764, 49, 'Plateaux', 'PL', 1),
   4663 (765, 49, 'Pool', 'PO', 1),
   4664 (766, 49, 'Sangha', 'SA', 1),
   4665 (767, 50, 'Pukapuka', 'PU', 1),
   4666 (768, 50, 'Rakahanga', 'RK', 1),
   4667 (769, 50, 'Manihiki', 'MK', 1),
   4668 (770, 50, 'Penrhyn', 'PE', 1),
   4669 (771, 50, 'Nassau Island', 'NI', 1),
   4670 (772, 50, 'Surwarrow', 'SU', 1),
   4671 (773, 50, 'Palmerston', 'PA', 1),
   4672 (774, 50, 'Aitutaki', 'AI', 1),
   4673 (775, 50, 'Manuae', 'MA', 1),
   4674 (776, 50, 'Takutea', 'TA', 1),
   4675 (777, 50, 'Mitiaro', 'MT', 1),
   4676 (778, 50, 'Atiu', 'AT', 1),
   4677 (779, 50, 'Mauke', 'MU', 1),
   4678 (780, 50, 'Rarotonga', 'RR', 1),
   4679 (781, 50, 'Mangaia', 'MG', 1),
   4680 (782, 51, 'Alajuela', 'AL', 1),
   4681 (783, 51, 'Cartago', 'CA', 1),
   4682 (784, 51, 'Guanacaste', 'GU', 1),
   4683 (785, 51, 'Heredia', 'HE', 1),
   4684 (786, 51, 'Limon', 'LI', 1),
   4685 (787, 51, 'Puntarenas', 'PU', 1),
   4686 (788, 51, 'San Jose', 'SJ', 1),
   4687 (789, 52, 'Abengourou', 'ABE', 1),
   4688 (790, 52, 'Abidjan', 'ABI', 1),
   4689 (791, 52, 'Aboisso', 'ABO', 1),
   4690 (792, 52, 'Adiake', 'ADI', 1),
   4691 (793, 52, 'Adzope', 'ADZ', 1),
   4692 (794, 52, 'Agboville', 'AGB', 1),
   4693 (795, 52, 'Agnibilekrou', 'AGN', 1),
   4694 (796, 52, 'Alepe', 'ALE', 1),
   4695 (797, 52, 'Bocanda', 'BOC', 1),
   4696 (798, 52, 'Bangolo', 'BAN', 1),
   4697 (799, 52, 'Beoumi', 'BEO', 1),
   4698 (800, 52, 'Biankouma', 'BIA', 1),
   4699 (801, 52, 'Bondoukou', 'BDK', 1),
   4700 (802, 52, 'Bongouanou', 'BGN', 1),
   4701 (803, 52, 'Bouafle', 'BFL', 1),
   4702 (804, 52, 'Bouake', 'BKE', 1),
   4703 (805, 52, 'Bouna', 'BNA', 1),
   4704 (806, 52, 'Boundiali', 'BDL', 1),
   4705 (807, 52, 'Dabakala', 'DKL', 1),
   4706 (808, 52, 'Dabou', 'DBU', 1),
   4707 (809, 52, 'Daloa', 'DAL', 1),
   4708 (810, 52, 'Danane', 'DAN', 1),
   4709 (811, 52, 'Daoukro', 'DAO', 1),
   4710 (812, 52, 'Dimbokro', 'DIM', 1),
   4711 (813, 52, 'Divo', 'DIV', 1),
   4712 (814, 52, 'Duekoue', 'DUE', 1),
   4713 (815, 52, 'Ferkessedougou', 'FER', 1),
   4714 (816, 52, 'Gagnoa', 'GAG', 1),
   4715 (817, 52, 'Grand-Bassam', 'GBA', 1),
   4716 (818, 52, 'Grand-Lahou', 'GLA', 1),
   4717 (819, 52, 'Guiglo', 'GUI', 1),
   4718 (820, 52, 'Issia', 'ISS', 1),
   4719 (821, 52, 'Jacqueville', 'JAC', 1),
   4720 (822, 52, 'Katiola', 'KAT', 1),
   4721 (823, 52, 'Korhogo', 'KOR', 1),
   4722 (824, 52, 'Lakota', 'LAK', 1),
   4723 (825, 52, 'Man', 'MAN', 1),
   4724 (826, 52, 'Mankono', 'MKN', 1),
   4725 (827, 52, 'Mbahiakro', 'MBA', 1),
   4726 (828, 52, 'Odienne', 'ODI', 1),
   4727 (829, 52, 'Oume', 'OUM', 1),
   4728 (830, 52, 'Sakassou', 'SAK', 1),
   4729 (831, 52, 'San-Pedro', 'SPE', 1),
   4730 (832, 52, 'Sassandra', 'SAS', 1),
   4731 (833, 52, 'Seguela', 'SEG', 1),
   4732 (834, 52, 'Sinfra', 'SIN', 1),
   4733 (835, 52, 'Soubre', 'SOU', 1),
   4734 (836, 52, 'Tabou', 'TAB', 1),
   4735 (837, 52, 'Tanda', 'TAN', 1),
   4736 (838, 52, 'Tiebissou', 'TIE', 1),
   4737 (839, 52, 'Tingrela', 'TIN', 1),
   4738 (840, 52, 'Tiassale', 'TIA', 1),
   4739 (841, 52, 'Touba', 'TBA', 1),
   4740 (842, 52, 'Toulepleu', 'TLP', 1),
   4741 (843, 52, 'Toumodi', 'TMD', 1),
   4742 (844, 52, 'Vavoua', 'VAV', 1),
   4743 (845, 52, 'Yamoussoukro', 'YAM', 1),
   4744 (846, 52, 'Zuenoula', 'ZUE', 1),
   4745 (847, 53, 'Bjelovarsko-bilogorska', 'BB', 1),
   4746 (848, 53, 'Grad Zagreb', 'GZ', 1),
   4747 (849, 53, 'Dubrovačko-neretvanska', 'DN', 1),
   4748 (850, 53, 'Istarska', 'IS', 1),
   4749 (851, 53, 'Karlovačka', 'KA', 1),
   4750 (852, 53, 'Koprivničko-križevačka', 'KK', 1),
   4751 (853, 53, 'Krapinsko-zagorska', 'KZ', 1),
   4752 (854, 53, 'Ličko-senjska', 'LS', 1),
   4753 (855, 53, 'Međimurska', 'ME', 1),
   4754 (856, 53, 'Osječko-baranjska', 'OB', 1),
   4755 (857, 53, 'Požeško-slavonska', 'PS', 1),
   4756 (858, 53, 'Primorsko-goranska', 'PG', 1),
   4757 (859, 53, 'Šibensko-kninska', 'SK', 1),
   4758 (860, 53, 'Sisačko-moslavačka', 'SM', 1),
   4759 (861, 53, 'Brodsko-posavska', 'BP', 1),
   4760 (862, 53, 'Splitsko-dalmatinska', 'SD', 1),
   4761 (863, 53, 'Varaždinska', 'VA', 1),
   4762 (864, 53, 'Virovitičko-podravska', 'VP', 1),
   4763 (865, 53, 'Vukovarsko-srijemska', 'VS', 1),
   4764 (866, 53, 'Zadarska', 'ZA', 1),
   4765 (867, 53, 'Zagrebačka', 'ZG', 1),
   4766 (868, 54, 'Camaguey', 'CA', 1),
   4767 (869, 54, 'Ciego de Avila', 'CD', 1),
   4768 (870, 54, 'Cienfuegos', 'CI', 1),
   4769 (871, 54, 'Ciudad de La Habana', 'CH', 1),
   4770 (872, 54, 'Granma', 'GR', 1),
   4771 (873, 54, 'Guantanamo', 'GU', 1),
   4772 (874, 54, 'Holguin', 'HO', 1),
   4773 (875, 54, 'Isla de la Juventud', 'IJ', 1),
   4774 (876, 54, 'La Habana', 'LH', 1),
   4775 (877, 54, 'Las Tunas', 'LT', 1),
   4776 (878, 54, 'Matanzas', 'MA', 1),
   4777 (879, 54, 'Pinar del Rio', 'PR', 1),
   4778 (880, 54, 'Sancti Spiritus', 'SS', 1),
   4779 (881, 54, 'Santiago de Cuba', 'SC', 1),
   4780 (882, 54, 'Villa Clara', 'VC', 1),
   4781 (883, 55, 'Famagusta', 'F', 1),
   4782 (884, 55, 'Kyrenia', 'K', 1),
   4783 (885, 55, 'Larnaca', 'A', 1),
   4784 (886, 55, 'Limassol', 'I', 1),
   4785 (887, 55, 'Nicosia', 'N', 1),
   4786 (888, 55, 'Paphos', 'P', 1),
   4787 (889, 56, 'Ústecký', 'U', 1),
   4788 (890, 56, 'Jihočeský', 'C', 1),
   4789 (891, 56, 'Jihomoravský', 'B', 1),
   4790 (892, 56, 'Karlovarský', 'K', 1),
   4791 (893, 56, 'Královehradecký', 'H', 1),
   4792 (894, 56, 'Liberecký', 'L', 1),
   4793 (895, 56, 'Moravskoslezský', 'T', 1),
   4794 (896, 56, 'Olomoucký', 'M', 1),
   4795 (897, 56, 'Pardubický', 'E', 1),
   4796 (898, 56, 'Plzeňský', 'P', 1),
   4797 (899, 56, 'Praha', 'A', 1),
   4798 (900, 56, 'Středočeský', 'S', 1),
   4799 (901, 56, 'Vysočina', 'J', 1),
   4800 (902, 56, 'Zlínský', 'Z', 1),
   4801 (903, 57, 'Arhus', 'AR', 1),
   4802 (904, 57, 'Bornholm', 'BH', 1),
   4803 (905, 57, 'Copenhagen', 'CO', 1),
   4804 (906, 57, 'Faroe Islands', 'FO', 1),
   4805 (907, 57, 'Frederiksborg', 'FR', 1),
   4806 (908, 57, 'Fyn', 'FY', 1),
   4807 (909, 57, 'Kobenhavn', 'KO', 1),
   4808 (910, 57, 'Nordjylland', 'NO', 1),
   4809 (911, 57, 'Ribe', 'RI', 1),
   4810 (912, 57, 'Ringkobing', 'RK', 1),
   4811 (913, 57, 'Roskilde', 'RO', 1),
   4812 (914, 57, 'Sonderjylland', 'SO', 1),
   4813 (915, 57, 'Storstrom', 'ST', 1),
   4814 (916, 57, 'Vejle', 'VK', 1),
   4815 (917, 57, 'Vestjælland', 'VJ', 1),
   4816 (918, 57, 'Viborg', 'VB', 1),
   4817 (919, 58, '''Ali Sabih', 'S', 1),
   4818 (920, 58, 'Dikhil', 'K', 1),
   4819 (921, 58, 'Djibouti', 'J', 1),
   4820 (922, 58, 'Obock', 'O', 1),
   4821 (923, 58, 'Tadjoura', 'T', 1),
   4822 (924, 59, 'Saint Andrew Parish', 'AND', 1),
   4823 (925, 59, 'Saint David Parish', 'DAV', 1),
   4824 (926, 59, 'Saint George Parish', 'GEO', 1),
   4825 (927, 59, 'Saint John Parish', 'JOH', 1),
   4826 (928, 59, 'Saint Joseph Parish', 'JOS', 1),
   4827 (929, 59, 'Saint Luke Parish', 'LUK', 1),
   4828 (930, 59, 'Saint Mark Parish', 'MAR', 1),
   4829 (931, 59, 'Saint Patrick Parish', 'PAT', 1),
   4830 (932, 59, 'Saint Paul Parish', 'PAU', 1),
   4831 (933, 59, 'Saint Peter Parish', 'PET', 1),
   4832 (934, 60, 'Distrito Nacional', 'DN', 1),
   4833 (935, 60, 'Azua', 'AZ', 1),
   4834 (936, 60, 'Baoruco', 'BC', 1),
   4835 (937, 60, 'Barahona', 'BH', 1),
   4836 (938, 60, 'Dajabon', 'DJ', 1),
   4837 (939, 60, 'Duarte', 'DU', 1),
   4838 (940, 60, 'Elias Pina', 'EL', 1),
   4839 (941, 60, 'El Seybo', 'SY', 1),
   4840 (942, 60, 'Espaillat', 'ET', 1),
   4841 (943, 60, 'Hato Mayor', 'HM', 1),
   4842 (944, 60, 'Independencia', 'IN', 1),
   4843 (945, 60, 'La Altagracia', 'AL', 1),
   4844 (946, 60, 'La Romana', 'RO', 1),
   4845 (947, 60, 'La Vega', 'VE', 1),
   4846 (948, 60, 'Maria Trinidad Sanchez', 'MT', 1),
   4847 (949, 60, 'Monsenor Nouel', 'MN', 1),
   4848 (950, 60, 'Monte Cristi', 'MC', 1),
   4849 (951, 60, 'Monte Plata', 'MP', 1),
   4850 (952, 60, 'Pedernales', 'PD', 1),
   4851 (953, 60, 'Peravia (Bani)', 'PR', 1),
   4852 (954, 60, 'Puerto Plata', 'PP', 1),
   4853 (955, 60, 'Salcedo', 'SL', 1),
   4854 (956, 60, 'Samana', 'SM', 1),
   4855 (957, 60, 'Sanchez Ramirez', 'SH', 1),
   4856 (958, 60, 'San Cristobal', 'SC', 1),
   4857 (959, 60, 'San Jose de Ocoa', 'JO', 1),
   4858 (960, 60, 'San Juan', 'SJ', 1),
   4859 (961, 60, 'San Pedro de Macoris', 'PM', 1),
   4860 (962, 60, 'Santiago', 'SA', 1),
   4861 (963, 60, 'Santiago Rodriguez', 'ST', 1),
   4862 (964, 60, 'Santo Domingo', 'SD', 1),
   4863 (965, 60, 'Valverde', 'VA', 1),
   4864 (966, 61, 'Aileu', 'AL', 1),
   4865 (967, 61, 'Ainaro', 'AN', 1),
   4866 (968, 61, 'Baucau', 'BA', 1),
   4867 (969, 61, 'Bobonaro', 'BO', 1),
   4868 (970, 61, 'Cova Lima', 'CO', 1),
   4869 (971, 61, 'Dili', 'DI', 1),
   4870 (972, 61, 'Ermera', 'ER', 1),
   4871 (973, 61, 'Lautem', 'LA', 1),
   4872 (974, 61, 'Liquica', 'LI', 1),
   4873 (975, 61, 'Manatuto', 'MT', 1),
   4874 (976, 61, 'Manufahi', 'MF', 1),
   4875 (977, 61, 'Oecussi', 'OE', 1),
   4876 (978, 61, 'Viqueque', 'VI', 1),
   4877 (979, 62, 'Azuay', 'AZU', 1),
   4878 (980, 62, 'Bolivar', 'BOL', 1),
   4879 (981, 62, 'Cañar', 'CAN', 1),
   4880 (982, 62, 'Carchi', 'CAR', 1),
   4881 (983, 62, 'Chimborazo', 'CHI', 1),
   4882 (984, 62, 'Cotopaxi', 'COT', 1),
   4883 (985, 62, 'El Oro', 'EOR', 1),
   4884 (986, 62, 'Esmeraldas', 'ESM', 1),
   4885 (987, 62, 'Galápagos', 'GPS', 1),
   4886 (988, 62, 'Guayas', 'GUA', 1),
   4887 (989, 62, 'Imbabura', 'IMB', 1),
   4888 (990, 62, 'Loja', 'LOJ', 1),
   4889 (991, 62, 'Los Rios', 'LRO', 1),
   4890 (992, 62, 'Manabí', 'MAN', 1),
   4891 (993, 62, 'Morona Santiago', 'MSA', 1),
   4892 (994, 62, 'Napo', 'NAP', 1),
   4893 (995, 62, 'Orellana', 'ORE', 1),
   4894 (996, 62, 'Pastaza', 'PAS', 1),
   4895 (997, 62, 'Pichincha', 'PIC', 1),
   4896 (998, 62, 'Sucumbíos', 'SUC', 1),
   4897 (999, 62, 'Tungurahua', 'TUN', 1),
   4898 (1000, 62, 'Zamora Chinchipe', 'ZCH', 1),
   4899 (1001, 63, 'Ad Daqahliyah', 'DHY', 1),
   4900 (1002, 63, 'Al Bahr al Ahmar', 'BAM', 1),
   4901 (1003, 63, 'Al Buhayrah', 'BHY', 1),
   4902 (1004, 63, 'Al Fayyum', 'FYM', 1),
   4903 (1005, 63, 'Al Gharbiyah', 'GBY', 1),
   4904 (1006, 63, 'Al Iskandariyah', 'IDR', 1),
   4905 (1007, 63, 'Al Isma''iliyah', 'IML', 1),
   4906 (1008, 63, 'Al Jizah', 'JZH', 1),
   4907 (1009, 63, 'Al Minufiyah', 'MFY', 1),
   4908 (1010, 63, 'Al Minya', 'MNY', 1),
   4909 (1011, 63, 'Al Qahirah', 'QHR', 1),
   4910 (1012, 63, 'Al Qalyubiyah', 'QLY', 1),
   4911 (1013, 63, 'Al Wadi al Jadid', 'WJD', 1),
   4912 (1014, 63, 'Ash Sharqiyah', 'SHQ', 1),
   4913 (1015, 63, 'As Suways', 'SWY', 1),
   4914 (1016, 63, 'Aswan', 'ASW', 1),
   4915 (1017, 63, 'Asyut', 'ASY', 1),
   4916 (1018, 63, 'Bani Suwayf', 'BSW', 1),
   4917 (1019, 63, 'Bur Sa''id', 'BSD', 1),
   4918 (1020, 63, 'Dumyat', 'DMY', 1),
   4919 (1021, 63, 'Janub Sina''', 'JNS', 1),
   4920 (1022, 63, 'Kafr ash Shaykh', 'KSH', 1),
   4921 (1023, 63, 'Matruh', 'MAT', 1),
   4922 (1024, 63, 'Qina', 'QIN', 1),
   4923 (1025, 63, 'Shamal Sina''', 'SHS', 1),
   4924 (1026, 63, 'Suhaj', 'SUH', 1),
   4925 (1027, 64, 'Ahuachapan', 'AH', 1),
   4926 (1028, 64, 'Cabanas', 'CA', 1),
   4927 (1029, 64, 'Chalatenango', 'CH', 1),
   4928 (1030, 64, 'Cuscatlan', 'CU', 1),
   4929 (1031, 64, 'La Libertad', 'LB', 1),
   4930 (1032, 64, 'La Paz', 'PZ', 1),
   4931 (1033, 64, 'La Union', 'UN', 1),
   4932 (1034, 64, 'Morazan', 'MO', 1),
   4933 (1035, 64, 'San Miguel', 'SM', 1),
   4934 (1036, 64, 'San Salvador', 'SS', 1),
   4935 (1037, 64, 'San Vicente', 'SV', 1),
   4936 (1038, 64, 'Santa Ana', 'SA', 1),
   4937 (1039, 64, 'Sonsonate', 'SO', 1),
   4938 (1040, 64, 'Usulutan', 'US', 1),
   4939 (1041, 65, 'Provincia Annobon', 'AN', 1),
   4940 (1042, 65, 'Provincia Bioko Norte', 'BN', 1),
   4941 (1043, 65, 'Provincia Bioko Sur', 'BS', 1),
   4942 (1044, 65, 'Provincia Centro Sur', 'CS', 1),
   4943 (1045, 65, 'Provincia Kie-Ntem', 'KN', 1),
   4944 (1046, 65, 'Provincia Litoral', 'LI', 1),
   4945 (1047, 65, 'Provincia Wele-Nzas', 'WN', 1),
   4946 (1048, 66, 'Central (Maekel)', 'MA', 1),
   4947 (1049, 66, 'Anseba (Keren)', 'KE', 1),
   4948 (1050, 66, 'Southern Red Sea (Debub-Keih-Bahri)', 'DK', 1),
   4949 (1051, 66, 'Northern Red Sea (Semien-Keih-Bahri)', 'SK', 1),
   4950 (1052, 66, 'Southern (Debub)', 'DE', 1),
   4951 (1053, 66, 'Gash-Barka (Barentu)', 'BR', 1),
   4952 (1054, 67, 'Harjumaa (Tallinn)', 'HA', 1),
   4953 (1055, 67, 'Hiiumaa (Kardla)', 'HI', 1),
   4954 (1056, 67, 'Ida-Virumaa (Johvi)', 'IV', 1),
   4955 (1057, 67, 'Jarvamaa (Paide)', 'JA', 1),
   4956 (1058, 67, 'Jogevamaa (Jogeva)', 'JO', 1),
   4957 (1059, 67, 'Laane-Virumaa (Rakvere)', 'LV', 1),
   4958 (1060, 67, 'Laanemaa (Haapsalu)', 'LA', 1),
   4959 (1061, 67, 'Parnumaa (Parnu)', 'PA', 1),
   4960 (1062, 67, 'Polvamaa (Polva)', 'PO', 1),
   4961 (1063, 67, 'Raplamaa (Rapla)', 'RA', 1),
   4962 (1064, 67, 'Saaremaa (Kuessaare)', 'SA', 1),
   4963 (1065, 67, 'Tartumaa (Tartu)', 'TA', 1),
   4964 (1066, 67, 'Valgamaa (Valga)', 'VA', 1),
   4965 (1067, 67, 'Viljandimaa (Viljandi)', 'VI', 1),
   4966 (1068, 67, 'Vorumaa (Voru)', 'VO', 1),
   4967 (1069, 68, 'Afar', 'AF', 1),
   4968 (1070, 68, 'Amhara', 'AH', 1),
   4969 (1071, 68, 'Benishangul-Gumaz', 'BG', 1),
   4970 (1072, 68, 'Gambela', 'GB', 1),
   4971 (1073, 68, 'Hariai', 'HR', 1),
   4972 (1074, 68, 'Oromia', 'OR', 1),
   4973 (1075, 68, 'Somali', 'SM', 1),
   4974 (1076, 68, 'Southern Nations - Nationalities and Peoples Region', 'SN', 1),
   4975 (1077, 68, 'Tigray', 'TG', 1),
   4976 (1078, 68, 'Addis Ababa', 'AA', 1),
   4977 (1079, 68, 'Dire Dawa', 'DD', 1),
   4978 (1080, 71, 'Central Division', 'C', 1),
   4979 (1081, 71, 'Northern Division', 'N', 1),
   4980 (1082, 71, 'Eastern Division', 'E', 1),
   4981 (1083, 71, 'Western Division', 'W', 1),
   4982 (1084, 71, 'Rotuma', 'R', 1),
   4983 (1085, 72, 'Ahvenanmaan lääni', 'AL', 1),
   4984 (1086, 72, 'Etelä-Suomen lääni', 'ES', 1),
   4985 (1087, 72, 'Itä-Suomen lääni', 'IS', 1),
   4986 (1088, 72, 'Länsi-Suomen lääni', 'LS', 1),
   4987 (1089, 72, 'Lapin lääni', 'LA', 1),
   4988 (1090, 72, 'Oulun lääni', 'OU', 1),
   4989 (1114, 74, 'Ain', '01', 1),
   4990 (1115, 74, 'Aisne', '02', 1),
   4991 (1116, 74, 'Allier', '03', 1),
   4992 (1117, 74, 'Alpes de Haute Provence', '04', 1),
   4993 (1118, 74, 'Hautes-Alpes', '05', 1),
   4994 (1119, 74, 'Alpes Maritimes', '06', 1),
   4995 (1120, 74, 'Ardèche', '07', 1),
   4996 (1121, 74, 'Ardennes', '08', 1),
   4997 (1122, 74, 'Ariège', '09', 1),
   4998 (1123, 74, 'Aube', '10', 1),
   4999 (1124, 74, 'Aude', '11', 1),
   5000 (1125, 74, 'Aveyron', '12', 1),
   5001 (1126, 74, 'Bouches du Rhône', '13', 1),
   5002 (1127, 74, 'Calvados', '14', 1),
   5003 (1128, 74, 'Cantal', '15', 1),
   5004 (1129, 74, 'Charente', '16', 1),
   5005 (1130, 74, 'Charente Maritime', '17', 1),
   5006 (1131, 74, 'Cher', '18', 1),
   5007 (1132, 74, 'Corrèze', '19', 1),
   5008 (1133, 74, 'Corse du Sud', '2A', 1),
   5009 (1134, 74, 'Haute Corse', '2B', 1),
   5010 (1135, 74, 'Côte d'or', '21', 1),
   5011 (1136, 74, 'Côtes d'Armor', '22', 1),
   5012 (1137, 74, 'Creuse', '23', 1),
   5013 (1138, 74, 'Dordogne', '24', 1),
   5014 (1139, 74, 'Doubs', '25', 1),
   5015 (1140, 74, 'Drôme', '26', 1),
   5016 (1141, 74, 'Eure', '27', 1),
   5017 (1142, 74, 'Eure et Loir', '28', 1),
   5018 (1143, 74, 'Finistère', '29', 1),
   5019 (1144, 74, 'Gard', '30', 1),
   5020 (1145, 74, 'Haute Garonne', '31', 1),
   5021 (1146, 74, 'Gers', '32', 1),
   5022 (1147, 74, 'Gironde', '33', 1),
   5023 (1148, 74, 'Hérault', '34', 1),
   5024 (1149, 74, 'Ille et Vilaine', '35', 1),
   5025 (1150, 74, 'Indre', '36', 1),
   5026 (1151, 74, 'Indre et Loire', '37', 1),
   5027 (1152, 74, 'Isére', '38', 1),
   5028 (1153, 74, 'Jura', '39', 1),
   5029 (1154, 74, 'Landes', '40', 1),
   5030 (1155, 74, 'Loir et Cher', '41', 1),
   5031 (1156, 74, 'Loire', '42', 1),
   5032 (1157, 74, 'Haute Loire', '43', 1),
   5033 (1158, 74, 'Loire Atlantique', '44', 1),
   5034 (1159, 74, 'Loiret', '45', 1),
   5035 (1160, 74, 'Lot', '46', 1),
   5036 (1161, 74, 'Lot et Garonne', '47', 1),
   5037 (1162, 74, 'Lozère', '48', 1),
   5038 (1163, 74, 'Maine et Loire', '49', 1),
   5039 (1164, 74, 'Manche', '50', 1),
   5040 (1165, 74, 'Marne', '51', 1),
   5041 (1166, 74, 'Haute Marne', '52', 1),
   5042 (1167, 74, 'Mayenne', '53', 1),
   5043 (1168, 74, 'Meurthe et Moselle', '54', 1),
   5044 (1169, 74, 'Meuse', '55', 1),
   5045 (1170, 74, 'Morbihan', '56', 1),
   5046 (1171, 74, 'Moselle', '57', 1),
   5047 (1172, 74, 'Nièvre', '58', 1),
   5048 (1173, 74, 'Nord', '59', 1),
   5049 (1174, 74, 'Oise', '60', 1),
   5050 (1175, 74, 'Orne', '61', 1),
   5051 (1176, 74, 'Pas de Calais', '62', 1),
   5052 (1177, 74, 'Puy de Dôme', '63', 1),
   5053 (1178, 74, 'Pyrénées Atlantiques', '64', 1),
   5054 (1179, 74, 'Hautes Pyrénées', '65', 1),
   5055 (1180, 74, 'Pyrénées Orientales', '66', 1),
   5056 (1181, 74, 'Bas Rhin', '67', 1),
   5057 (1182, 74, 'Haut Rhin', '68', 1),
   5058 (1183, 74, 'Rhône', '69', 1),
   5059 (1184, 74, 'Haute Saône', '70', 1),
   5060 (1185, 74, 'Saône et Loire', '71', 1),
   5061 (1186, 74, 'Sarthe', '72', 1),
   5062 (1187, 74, 'Savoie', '73', 1),
   5063 (1188, 74, 'Haute Savoie', '74', 1),
   5064 (1189, 74, 'Paris', '75', 1),
   5065 (1190, 74, 'Seine Maritime', '76', 1),
   5066 (1191, 74, 'Seine et Marne', '77', 1),
   5067 (1192, 74, 'Yvelines', '78', 1),
   5068 (1193, 74, 'Deux Sèvres', '79', 1),
   5069 (1194, 74, 'Somme', '80', 1),
   5070 (1195, 74, 'Tarn', '81', 1),
   5071 (1196, 74, 'Tarn et Garonne', '82', 1),
   5072 (1197, 74, 'Var', '83', 1),
   5073 (1198, 74, 'Vaucluse', '84', 1),
   5074 (1199, 74, 'Vendée', '85', 1),
   5075 (1200, 74, 'Vienne', '86', 1),
   5076 (1201, 74, 'Haute Vienne', '87', 1),
   5077 (1202, 74, 'Vosges', '88', 1),
   5078 (1203, 74, 'Yonne', '89', 1),
   5079 (1204, 74, 'Territoire de Belfort', '90', 1),
   5080 (1205, 74, 'Essonne', '91', 1),
   5081 (1206, 74, 'Hauts de Seine', '92', 1),
   5082 (1207, 74, 'Seine St-Denis', '93', 1),
   5083 (1208, 74, 'Val de Marne', '94', 1),
   5084 (1209, 74, 'Val d''Oise', '95', 1),
   5085 (1210, 76, 'Archipel des Marquises', 'M', 1),
   5086 (1211, 76, 'Archipel des Tuamotu', 'T', 1),
   5087 (1212, 76, 'Archipel des Tubuai', 'I', 1),
   5088 (1213, 76, 'Iles du Vent', 'V', 1),
   5089 (1214, 76, 'Iles Sous-le-Vent', 'S', 1),
   5090 (1215, 77, 'Iles Crozet', 'C', 1),
   5091 (1216, 77, 'Iles Kerguelen', 'K', 1),
   5092 (1217, 77, 'Ile Amsterdam', 'A', 1),
   5093 (1218, 77, 'Ile Saint-Paul', 'P', 1),
   5094 (1219, 77, 'Adelie Land', 'D', 1),
   5095 (1220, 78, 'Estuaire', 'ES', 1),
   5096 (1221, 78, 'Haut-Ogooue', 'HO', 1),
   5097 (1222, 78, 'Moyen-Ogooue', 'MO', 1),
   5098 (1223, 78, 'Ngounie', 'NG', 1),
   5099 (1224, 78, 'Nyanga', 'NY', 1),
   5100 (1225, 78, 'Ogooue-Ivindo', 'OI', 1),
   5101 (1226, 78, 'Ogooue-Lolo', 'OL', 1),
   5102 (1227, 78, 'Ogooue-Maritime', 'OM', 1),
   5103 (1228, 78, 'Woleu-Ntem', 'WN', 1),
   5104 (1229, 79, 'Banjul', 'BJ', 1),
   5105 (1230, 79, 'Basse', 'BS', 1),
   5106 (1231, 79, 'Brikama', 'BR', 1),
   5107 (1232, 79, 'Janjangbure', 'JA', 1),
   5108 (1233, 79, 'Kanifeng', 'KA', 1),
   5109 (1234, 79, 'Kerewan', 'KE', 1),
   5110 (1235, 79, 'Kuntaur', 'KU', 1),
   5111 (1236, 79, 'Mansakonko', 'MA', 1),
   5112 (1237, 79, 'Lower River', 'LR', 1),
   5113 (1238, 79, 'Central River', 'CR', 1),
   5114 (1239, 79, 'North Bank', 'NB', 1),
   5115 (1240, 79, 'Upper River', 'UR', 1),
   5116 (1241, 79, 'Western', 'WE', 1),
   5117 (1242, 80, 'Abkhazia', 'AB', 1),
   5118 (1243, 80, 'Ajaria', 'AJ', 1),
   5119 (1244, 80, 'Tbilisi', 'TB', 1),
   5120 (1245, 80, 'Guria', 'GU', 1),
   5121 (1246, 80, 'Imereti', 'IM', 1),
   5122 (1247, 80, 'Kakheti', 'KA', 1),
   5123 (1248, 80, 'Kvemo Kartli', 'KK', 1),
   5124 (1249, 80, 'Mtskheta-Mtianeti', 'MM', 1),
   5125 (1250, 80, 'Racha Lechkhumi and Kvemo Svanet', 'RL', 1),
   5126 (1251, 80, 'Samegrelo-Zemo Svaneti', 'SZ', 1),
   5127 (1252, 80, 'Samtskhe-Javakheti', 'SJ', 1),
   5128 (1253, 80, 'Shida Kartli', 'SK', 1),
   5129 (1254, 81, 'Baden-Württemberg', 'BAW', 1),
   5130 (1255, 81, 'Bayern', 'BAY', 1),
   5131 (1256, 81, 'Berlin', 'BER', 1),
   5132 (1257, 81, 'Brandenburg', 'BRG', 1),
   5133 (1258, 81, 'Bremen', 'BRE', 1),
   5134 (1259, 81, 'Hamburg', 'HAM', 1),
   5135 (1260, 81, 'Hessen', 'HES', 1),
   5136 (1261, 81, 'Mecklenburg-Vorpommern', 'MEC', 1),
   5137 (1262, 81, 'Niedersachsen', 'NDS', 1),
   5138 (1263, 81, 'Nordrhein-Westfalen', 'NRW', 1),
   5139 (1264, 81, 'Rheinland-Pfalz', 'RHE', 1),
   5140 (1265, 81, 'Saarland', 'SAR', 1),
   5141 (1266, 81, 'Sachsen', 'SAS', 1),
   5142 (1267, 81, 'Sachsen-Anhalt', 'SAC', 1),
   5143 (1268, 81, 'Schleswig-Holstein', 'SCN', 1),
   5144 (1269, 81, 'Thüringen', 'THE', 1),
   5145 (1270, 82, 'Ashanti Region', 'AS', 1),
   5146 (1271, 82, 'Brong-Ahafo Region', 'BA', 1),
   5147 (1272, 82, 'Central Region', 'CE', 1),
   5148 (1273, 82, 'Eastern Region', 'EA', 1),
   5149 (1274, 82, 'Greater Accra Region', 'GA', 1),
   5150 (1275, 82, 'Northern Region', 'NO', 1),
   5151 (1276, 82, 'Upper East Region', 'UE', 1),
   5152 (1277, 82, 'Upper West Region', 'UW', 1),
   5153 (1278, 82, 'Volta Region', 'VO', 1),
   5154 (1279, 82, 'Western Region', 'WE', 1),
   5155 (1280, 84, 'Attica', 'AT', 1),
   5156 (1281, 84, 'Central Greece', 'CN', 1),
   5157 (1282, 84, 'Central Macedonia', 'CM', 1),
   5158 (1283, 84, 'Crete', 'CR', 1),
   5159 (1284, 84, 'East Macedonia and Thrace', 'EM', 1),
   5160 (1285, 84, 'Epirus', 'EP', 1),
   5161 (1286, 84, 'Ionian Islands', 'II', 1),
   5162 (1287, 84, 'North Aegean', 'NA', 1),
   5163 (1288, 84, 'Peloponnesos', 'PP', 1),
   5164 (1289, 84, 'South Aegean', 'SA', 1),
   5165 (1290, 84, 'Thessaly', 'TH', 1),
   5166 (1291, 84, 'West Greece', 'WG', 1),
   5167 (1292, 84, 'West Macedonia', 'WM', 1),
   5168 (1293, 85, 'Avannaa', 'A', 1),
   5169 (1294, 85, 'Tunu', 'T', 1),
   5170 (1295, 85, 'Kitaa', 'K', 1),
   5171 (1296, 86, 'Saint Andrew', 'A', 1),
   5172 (1297, 86, 'Saint David', 'D', 1),
   5173 (1298, 86, 'Saint George', 'G', 1),
   5174 (1299, 86, 'Saint John', 'J', 1),
   5175 (1300, 86, 'Saint Mark', 'M', 1),
   5176 (1301, 86, 'Saint Patrick', 'P', 1),
   5177 (1302, 86, 'Carriacou', 'C', 1),
   5178 (1303, 86, 'Petit Martinique', 'Q', 1),
   5179 (1304, 89, 'Alta Verapaz', 'AV', 1),
   5180 (1305, 89, 'Baja Verapaz', 'BV', 1),
   5181 (1306, 89, 'Chimaltenango', 'CM', 1),
   5182 (1307, 89, 'Chiquimula', 'CQ', 1),
   5183 (1308, 89, 'El Peten', 'PE', 1),
   5184 (1309, 89, 'El Progreso', 'PR', 1),
   5185 (1310, 89, 'El Quiche', 'QC', 1),
   5186 (1311, 89, 'Escuintla', 'ES', 1),
   5187 (1312, 89, 'Guatemala', 'GU', 1),
   5188 (1313, 89, 'Huehuetenango', 'HU', 1),
   5189 (1314, 89, 'Izabal', 'IZ', 1),
   5190 (1315, 89, 'Jalapa', 'JA', 1),
   5191 (1316, 89, 'Jutiapa', 'JU', 1),
   5192 (1317, 89, 'Quetzaltenango', 'QZ', 1),
   5193 (1318, 89, 'Retalhuleu', 'RE', 1),
   5194 (1319, 89, 'Sacatepequez', 'ST', 1),
   5195 (1320, 89, 'San Marcos', 'SM', 1),
   5196 (1321, 89, 'Santa Rosa', 'SR', 1),
   5197 (1322, 89, 'Solola', 'SO', 1),
   5198 (1323, 89, 'Suchitepequez', 'SU', 1),
   5199 (1324, 89, 'Totonicapan', 'TO', 1),
   5200 (1325, 89, 'Zacapa', 'ZA', 1),
   5201 (1326, 90, 'Conakry', 'CNK', 1),
   5202 (1327, 90, 'Beyla', 'BYL', 1),
   5203 (1328, 90, 'Boffa', 'BFA', 1),
   5204 (1329, 90, 'Boke', 'BOK', 1),
   5205 (1330, 90, 'Coyah', 'COY', 1),
   5206 (1331, 90, 'Dabola', 'DBL', 1),
   5207 (1332, 90, 'Dalaba', 'DLB', 1),
   5208 (1333, 90, 'Dinguiraye', 'DGR', 1),
   5209 (1334, 90, 'Dubreka', 'DBR', 1),
   5210 (1335, 90, 'Faranah', 'FRN', 1),
   5211 (1336, 90, 'Forecariah', 'FRC', 1),
   5212 (1337, 90, 'Fria', 'FRI', 1),
   5213 (1338, 90, 'Gaoual', 'GAO', 1),
   5214 (1339, 90, 'Gueckedou', 'GCD', 1),
   5215 (1340, 90, 'Kankan', 'KNK', 1),
   5216 (1341, 90, 'Kerouane', 'KRN', 1),
   5217 (1342, 90, 'Kindia', 'KND', 1),
   5218 (1343, 90, 'Kissidougou', 'KSD', 1),
   5219 (1344, 90, 'Koubia', 'KBA', 1),
   5220 (1345, 90, 'Koundara', 'KDA', 1),
   5221 (1346, 90, 'Kouroussa', 'KRA', 1),
   5222 (1347, 90, 'Labe', 'LAB', 1),
   5223 (1348, 90, 'Lelouma', 'LLM', 1),
   5224 (1349, 90, 'Lola', 'LOL', 1),
   5225 (1350, 90, 'Macenta', 'MCT', 1),
   5226 (1351, 90, 'Mali', 'MAL', 1),
   5227 (1352, 90, 'Mamou', 'MAM', 1),
   5228 (1353, 90, 'Mandiana', 'MAN', 1),
   5229 (1354, 90, 'Nzerekore', 'NZR', 1),
   5230 (1355, 90, 'Pita', 'PIT', 1),
   5231 (1356, 90, 'Siguiri', 'SIG', 1),
   5232 (1357, 90, 'Telimele', 'TLM', 1),
   5233 (1358, 90, 'Tougue', 'TOG', 1),
   5234 (1359, 90, 'Yomou', 'YOM', 1),
   5235 (1360, 91, 'Bafata Region', 'BF', 1),
   5236 (1361, 91, 'Biombo Region', 'BB', 1),
   5237 (1362, 91, 'Bissau Region', 'BS', 1),
   5238 (1363, 91, 'Bolama Region', 'BL', 1),
   5239 (1364, 91, 'Cacheu Region', 'CA', 1),
   5240 (1365, 91, 'Gabu Region', 'GA', 1),
   5241 (1366, 91, 'Oio Region', 'OI', 1),
   5242 (1367, 91, 'Quinara Region', 'QU', 1),
   5243 (1368, 91, 'Tombali Region', 'TO', 1),
   5244 (1369, 92, 'Barima-Waini', 'BW', 1),
   5245 (1370, 92, 'Cuyuni-Mazaruni', 'CM', 1),
   5246 (1371, 92, 'Demerara-Mahaica', 'DM', 1),
   5247 (1372, 92, 'East Berbice-Corentyne', 'EC', 1),
   5248 (1373, 92, 'Essequibo Islands-West Demerara', 'EW', 1),
   5249 (1374, 92, 'Mahaica-Berbice', 'MB', 1),
   5250 (1375, 92, 'Pomeroon-Supenaam', 'PM', 1),
   5251 (1376, 92, 'Potaro-Siparuni', 'PI', 1),
   5252 (1377, 92, 'Upper Demerara-Berbice', 'UD', 1),
   5253 (1378, 92, 'Upper Takutu-Upper Essequibo', 'UT', 1),
   5254 (1379, 93, 'Artibonite', 'AR', 1),
   5255 (1380, 93, 'Centre', 'CE', 1),
   5256 (1381, 93, 'Grand''Anse', 'GA', 1),
   5257 (1382, 93, 'Nord', 'ND', 1),
   5258 (1383, 93, 'Nord-Est', 'NE', 1),
   5259 (1384, 93, 'Nord-Ouest', 'NO', 1),
   5260 (1385, 93, 'Ouest', 'OU', 1),
   5261 (1386, 93, 'Sud', 'SD', 1),
   5262 (1387, 93, 'Sud-Est', 'SE', 1),
   5263 (1388, 94, 'Flat Island', 'F', 1),
   5264 (1389, 94, 'McDonald Island', 'M', 1),
   5265 (1390, 94, 'Shag Island', 'S', 1),
   5266 (1391, 94, 'Heard Island', 'H', 1),
   5267 (1392, 95, 'Atlantida', 'AT', 1),
   5268 (1393, 95, 'Choluteca', 'CH', 1),
   5269 (1394, 95, 'Colon', 'CL', 1),
   5270 (1395, 95, 'Comayagua', 'CM', 1),
   5271 (1396, 95, 'Copan', 'CP', 1),
   5272 (1397, 95, 'Cortes', 'CR', 1),
   5273 (1398, 95, 'El Paraiso', 'PA', 1),
   5274 (1399, 95, 'Francisco Morazan', 'FM', 1),
   5275 (1400, 95, 'Gracias a Dios', 'GD', 1),
   5276 (1401, 95, 'Intibuca', 'IN', 1),
   5277 (1402, 95, 'Islas de la Bahia (Bay Islands)', 'IB', 1),
   5278 (1403, 95, 'La Paz', 'PZ', 1),
   5279 (1404, 95, 'Lempira', 'LE', 1),
   5280 (1405, 95, 'Ocotepeque', 'OC', 1),
   5281 (1406, 95, 'Olancho', 'OL', 1),
   5282 (1407, 95, 'Santa Barbara', 'SB', 1),
   5283 (1408, 95, 'Valle', 'VA', 1),
   5284 (1409, 95, 'Yoro', 'YO', 1),
   5285 (1410, 96, 'Central and Western Hong Kong Island', 'HCW', 1),
   5286 (1411, 96, 'Eastern Hong Kong Island', 'HEA', 1),
   5287 (1412, 96, 'Southern Hong Kong Island', 'HSO', 1),
   5288 (1413, 96, 'Wan Chai Hong Kong Island', 'HWC', 1),
   5289 (1414, 96, 'Kowloon City Kowloon', 'KKC', 1),
   5290 (1415, 96, 'Kwun Tong Kowloon', 'KKT', 1),
   5291 (1416, 96, 'Sham Shui Po Kowloon', 'KSS', 1),
   5292 (1417, 96, 'Wong Tai Sin Kowloon', 'KWT', 1),
   5293 (1418, 96, 'Yau Tsim Mong Kowloon', 'KYT', 1),
   5294 (1419, 96, 'Islands New Territories', 'NIS', 1),
   5295 (1420, 96, 'Kwai Tsing New Territories', 'NKT', 1),
   5296 (1421, 96, 'North New Territories', 'NNO', 1),
   5297 (1422, 96, 'Sai Kung New Territories', 'NSK', 1),
   5298 (1423, 96, 'Sha Tin New Territories', 'NST', 1),
   5299 (1424, 96, 'Tai Po New Territories', 'NTP', 1),
   5300 (1425, 96, 'Tsuen Wan New Territories', 'NTW', 1),
   5301 (1426, 96, 'Tuen Mun New Territories', 'NTM', 1),
   5302 (1427, 96, 'Yuen Long New Territories', 'NYL', 1),
   5303 (1467, 98, 'Austurland', 'AL', 1),
   5304 (1468, 98, 'Hofuoborgarsvaeoi', 'HF', 1),
   5305 (1469, 98, 'Norourland eystra', 'NE', 1),
   5306 (1470, 98, 'Norourland vestra', 'NV', 1),
   5307 (1471, 98, 'Suourland', 'SL', 1),
   5308 (1472, 98, 'Suournes', 'SN', 1),
   5309 (1473, 98, 'Vestfiroir', 'VF', 1),
   5310 (1474, 98, 'Vesturland', 'VL', 1),
   5311 (1475, 99, 'Andaman and Nicobar Islands', 'AN', 1),
   5312 (1476, 99, 'Andhra Pradesh', 'AP', 1),
   5313 (1477, 99, 'Arunachal Pradesh', 'AR', 1),
   5314 (1478, 99, 'Assam', 'AS', 1),
   5315 (1479, 99, 'Bihar', 'BI', 1),
   5316 (1480, 99, 'Chandigarh', 'CH', 1),
   5317 (1481, 99, 'Dadra and Nagar Haveli', 'DA', 1),
   5318 (1482, 99, 'Daman and Diu', 'DM', 1),
   5319 (1483, 99, 'Delhi', 'DE', 1),
   5320 (1484, 99, 'Goa', 'GO', 1),
   5321 (1485, 99, 'Gujarat', 'GU', 1),
   5322 (1486, 99, 'Haryana', 'HA', 1),
   5323 (1487, 99, 'Himachal Pradesh', 'HP', 1),
   5324 (1488, 99, 'Jammu and Kashmir', 'JA', 1),
   5325 (1489, 99, 'Karnataka', 'KA', 1),
   5326 (1490, 99, 'Kerala', 'KE', 1),
   5327 (1491, 99, 'Lakshadweep Islands', 'LI', 1),
   5328 (1492, 99, 'Madhya Pradesh', 'MP', 1),
   5329 (1493, 99, 'Maharashtra', 'MA', 1),
   5330 (1494, 99, 'Manipur', 'MN', 1),
   5331 (1495, 99, 'Meghalaya', 'ME', 1),
   5332 (1496, 99, 'Mizoram', 'MI', 1),
   5333 (1497, 99, 'Nagaland', 'NA', 1),
   5334 (1498, 99, 'Orissa', 'OR', 1),
   5335 (1499, 99, 'Puducherry', 'PO', 1),
   5336 (1500, 99, 'Punjab', 'PU', 1),
   5337 (1501, 99, 'Rajasthan', 'RA', 1),
   5338 (1502, 99, 'Sikkim', 'SI', 1),
   5339 (1503, 99, 'Tamil Nadu', 'TN', 1),
   5340 (1504, 99, 'Tripura', 'TR', 1),
   5341 (1505, 99, 'Uttar Pradesh', 'UP', 1),
   5342 (1506, 99, 'West Bengal', 'WB', 1),
   5343 (1507, 100, 'Aceh', 'AC', 1),
   5344 (1508, 100, 'Bali', 'BA', 1),
   5345 (1509, 100, 'Banten', 'BT', 1),
   5346 (1510, 100, 'Bengkulu', 'BE', 1),
   5347 (1511, 100, 'Kalimantan Utara', 'BD', 1),
   5348 (1512, 100, 'Gorontalo', 'GO', 1),
   5349 (1513, 100, 'Jakarta', 'JK', 1),
   5350 (1514, 100, 'Jambi', 'JA', 1),
   5351 (1515, 100, 'Jawa Barat', 'JB', 1),
   5352 (1516, 100, 'Jawa Tengah', 'JT', 1),
   5353 (1517, 100, 'Jawa Timur', 'JI', 1),
   5354 (1518, 100, 'Kalimantan Barat', 'KB', 1),
   5355 (1519, 100, 'Kalimantan Selatan', 'KS', 1),
   5356 (1520, 100, 'Kalimantan Tengah', 'KT', 1),
   5357 (1521, 100, 'Kalimantan Timur', 'KI', 1),
   5358 (1522, 100, 'Kepulauan Bangka Belitung', 'BB', 1),
   5359 (1523, 100, 'Lampung', 'LA', 1),
   5360 (1524, 100, 'Maluku', 'MA', 1),
   5361 (1525, 100, 'Maluku Utara', 'MU', 1),
   5362 (1526, 100, 'Nusa Tenggara Barat', 'NB', 1),
   5363 (1527, 100, 'Nusa Tenggara Timur', 'NT', 1),
   5364 (1528, 100, 'Papua', 'PA', 1),
   5365 (1529, 100, 'Riau', 'RI', 1),
   5366 (1530, 100, 'Sulawesi Selatan', 'SN', 1),
   5367 (1531, 100, 'Sulawesi Tengah', 'ST', 1),
   5368 (1532, 100, 'Sulawesi Tenggara', 'SG', 1),
   5369 (1533, 100, 'Sulawesi Utara', 'SA', 1),
   5370 (1534, 100, 'Sumatera Barat', 'SB', 1),
   5371 (1535, 100, 'Sumatera Selatan', 'SS', 1),
   5372 (1536, 100, 'Sumatera Utara', 'SU', 1),
   5373 (1537, 100, 'Yogyakarta', 'YO', 1),
   5374 (1538, 101, 'Tehran', 'TEH', 1),
   5375 (1539, 101, 'Qom', 'QOM', 1),
   5376 (1540, 101, 'Markazi', 'MKZ', 1),
   5377 (1541, 101, 'Qazvin', 'QAZ', 1),
   5378 (1542, 101, 'Gilan', 'GIL', 1),
   5379 (1543, 101, 'Ardabil', 'ARD', 1),
   5380 (1544, 101, 'Zanjan', 'ZAN', 1),
   5381 (1545, 101, 'East Azarbaijan', 'EAZ', 1),
   5382 (1546, 101, 'West Azarbaijan', 'WEZ', 1),
   5383 (1547, 101, 'Kurdistan', 'KRD', 1),
   5384 (1548, 101, 'Hamadan', 'HMD', 1),
   5385 (1549, 101, 'Kermanshah', 'KRM', 1),
   5386 (1550, 101, 'Ilam', 'ILM', 1),
   5387 (1551, 101, 'Lorestan', 'LRS', 1),
   5388 (1552, 101, 'Khuzestan', 'KZT', 1),
   5389 (1553, 101, 'Chahar Mahaal and Bakhtiari', 'CMB', 1),
   5390 (1554, 101, 'Kohkiluyeh and Buyer Ahmad', 'KBA', 1),
   5391 (1555, 101, 'Bushehr', 'BSH', 1),
   5392 (1556, 101, 'Fars', 'FAR', 1);
   5393 INSERT INTO `oc_zone` (`zone_id`, `country_id`, `name`, `code`, `status`) VALUES
   5394 (1557, 101, 'Hormozgan', 'HRM', 1),
   5395 (1558, 101, 'Sistan and Baluchistan', 'SBL', 1),
   5396 (1559, 101, 'Kerman', 'KRB', 1),
   5397 (1560, 101, 'Yazd', 'YZD', 1),
   5398 (1561, 101, 'Esfahan', 'EFH', 1),
   5399 (1562, 101, 'Semnan', 'SMN', 1),
   5400 (1563, 101, 'Mazandaran', 'MZD', 1),
   5401 (1564, 101, 'Golestan', 'GLS', 1),
   5402 (1565, 101, 'North Khorasan', 'NKH', 1),
   5403 (1566, 101, 'Razavi Khorasan', 'RKH', 1),
   5404 (1567, 101, 'South Khorasan', 'SKH', 1),
   5405 (1568, 102, 'Baghdad', 'BD', 1),
   5406 (1569, 102, 'Salah ad Din', 'SD', 1),
   5407 (1570, 102, 'Diyala', 'DY', 1),
   5408 (1571, 102, 'Wasit', 'WS', 1),
   5409 (1572, 102, 'Maysan', 'MY', 1),
   5410 (1573, 102, 'Al Basrah', 'BA', 1),
   5411 (1574, 102, 'Dhi Qar', 'DQ', 1),
   5412 (1575, 102, 'Al Muthanna', 'MU', 1),
   5413 (1576, 102, 'Al Qadisyah', 'QA', 1),
   5414 (1577, 102, 'Babil', 'BB', 1),
   5415 (1578, 102, 'Al Karbala', 'KB', 1),
   5416 (1579, 102, 'An Najaf', 'NJ', 1),
   5417 (1580, 102, 'Al Anbar', 'AB', 1),
   5418 (1581, 102, 'Ninawa', 'NN', 1),
   5419 (1582, 102, 'Dahuk', 'DH', 1),
   5420 (1583, 102, 'Arbil', 'AL', 1),
   5421 (1584, 102, 'At Ta''mim', 'TM', 1),
   5422 (1585, 102, 'As Sulaymaniyah', 'SL', 1),
   5423 (1586, 103, 'Carlow', 'CA', 1),
   5424 (1587, 103, 'Cavan', 'CV', 1),
   5425 (1588, 103, 'Clare', 'CL', 1),
   5426 (1589, 103, 'Cork', 'CO', 1),
   5427 (1590, 103, 'Donegal', 'DO', 1),
   5428 (1591, 103, 'Dublin', 'DU', 1),
   5429 (1592, 103, 'Galway', 'GA', 1),
   5430 (1593, 103, 'Kerry', 'KE', 1),
   5431 (1594, 103, 'Kildare', 'KI', 1),
   5432 (1595, 103, 'Kilkenny', 'KL', 1),
   5433 (1596, 103, 'Laois', 'LA', 1),
   5434 (1597, 103, 'Leitrim', 'LE', 1),
   5435 (1598, 103, 'Limerick', 'LI', 1),
   5436 (1599, 103, 'Longford', 'LO', 1),
   5437 (1600, 103, 'Louth', 'LU', 1),
   5438 (1601, 103, 'Mayo', 'MA', 1),
   5439 (1602, 103, 'Meath', 'ME', 1),
   5440 (1603, 103, 'Monaghan', 'MO', 1),
   5441 (1604, 103, 'Offaly', 'OF', 1),
   5442 (1605, 103, 'Roscommon', 'RO', 1),
   5443 (1606, 103, 'Sligo', 'SL', 1),
   5444 (1607, 103, 'Tipperary', 'TI', 1),
   5445 (1608, 103, 'Waterford', 'WA', 1),
   5446 (1609, 103, 'Westmeath', 'WE', 1),
   5447 (1610, 103, 'Wexford', 'WX', 1),
   5448 (1611, 103, 'Wicklow', 'WI', 1),
   5449 (1612, 104, 'Be''er Sheva', 'BS', 1),
   5450 (1613, 104, 'Bika''at Hayarden', 'BH', 1),
   5451 (1614, 104, 'Eilat and Arava', 'EA', 1),
   5452 (1615, 104, 'Galil', 'GA', 1),
   5453 (1616, 104, 'Haifa', 'HA', 1),
   5454 (1617, 104, 'Jehuda Mountains', 'JM', 1),
   5455 (1618, 104, 'Jerusalem', 'JE', 1),
   5456 (1619, 104, 'Negev', 'NE', 1),
   5457 (1620, 104, 'Semaria', 'SE', 1),
   5458 (1621, 104, 'Sharon', 'SH', 1),
   5459 (1622, 104, 'Tel Aviv (Gosh Dan)', 'TA', 1),
   5460 (3860, 105, 'Caltanissetta', 'CL', 1),
   5461 (3842, 105, 'Agrigento', 'AG', 1),
   5462 (3843, 105, 'Alessandria', 'AL', 1),
   5463 (3844, 105, 'Ancona', 'AN', 1),
   5464 (3845, 105, 'Aosta', 'AO', 1),
   5465 (3846, 105, 'Arezzo', 'AR', 1),
   5466 (3847, 105, 'Ascoli Piceno', 'AP', 1),
   5467 (3848, 105, 'Asti', 'AT', 1),
   5468 (3849, 105, 'Avellino', 'AV', 1),
   5469 (3850, 105, 'Bari', 'BA', 1),
   5470 (3851, 105, 'Belluno', 'BL', 1),
   5471 (3852, 105, 'Benevento', 'BN', 1),
   5472 (3853, 105, 'Bergamo', 'BG', 1),
   5473 (3854, 105, 'Biella', 'BI', 1),
   5474 (3855, 105, 'Bologna', 'BO', 1),
   5475 (3856, 105, 'Bolzano', 'BZ', 1),
   5476 (3857, 105, 'Brescia', 'BS', 1),
   5477 (3858, 105, 'Brindisi', 'BR', 1),
   5478 (3859, 105, 'Cagliari', 'CA', 1),
   5479 (1643, 106, 'Clarendon Parish', 'CLA', 1),
   5480 (1644, 106, 'Hanover Parish', 'HAN', 1),
   5481 (1645, 106, 'Kingston Parish', 'KIN', 1),
   5482 (1646, 106, 'Manchester Parish', 'MAN', 1),
   5483 (1647, 106, 'Portland Parish', 'POR', 1),
   5484 (1648, 106, 'Saint Andrew Parish', 'AND', 1),
   5485 (1649, 106, 'Saint Ann Parish', 'ANN', 1),
   5486 (1650, 106, 'Saint Catherine Parish', 'CAT', 1),
   5487 (1651, 106, 'Saint Elizabeth Parish', 'ELI', 1),
   5488 (1652, 106, 'Saint James Parish', 'JAM', 1),
   5489 (1653, 106, 'Saint Mary Parish', 'MAR', 1),
   5490 (1654, 106, 'Saint Thomas Parish', 'THO', 1),
   5491 (1655, 106, 'Trelawny Parish', 'TRL', 1),
   5492 (1656, 106, 'Westmoreland Parish', 'WML', 1),
   5493 (1657, 107, 'Aichi', 'AI', 1),
   5494 (1658, 107, 'Akita', 'AK', 1),
   5495 (1659, 107, 'Aomori', 'AO', 1),
   5496 (1660, 107, 'Chiba', 'CH', 1),
   5497 (1661, 107, 'Ehime', 'EH', 1),
   5498 (1662, 107, 'Fukui', 'FK', 1),
   5499 (1663, 107, 'Fukuoka', 'FU', 1),
   5500 (1664, 107, 'Fukushima', 'FS', 1),
   5501 (1665, 107, 'Gifu', 'GI', 1),
   5502 (1666, 107, 'Gumma', 'GU', 1),
   5503 (1667, 107, 'Hiroshima', 'HI', 1),
   5504 (1668, 107, 'Hokkaido', 'HO', 1),
   5505 (1669, 107, 'Hyogo', 'HY', 1),
   5506 (1670, 107, 'Ibaraki', 'IB', 1),
   5507 (1671, 107, 'Ishikawa', 'IS', 1),
   5508 (1672, 107, 'Iwate', 'IW', 1),
   5509 (1673, 107, 'Kagawa', 'KA', 1),
   5510 (1674, 107, 'Kagoshima', 'KG', 1),
   5511 (1675, 107, 'Kanagawa', 'KN', 1),
   5512 (1676, 107, 'Kochi', 'KO', 1),
   5513 (1677, 107, 'Kumamoto', 'KU', 1),
   5514 (1678, 107, 'Kyoto', 'KY', 1),
   5515 (1679, 107, 'Mie', 'MI', 1),
   5516 (1680, 107, 'Miyagi', 'MY', 1),
   5517 (1681, 107, 'Miyazaki', 'MZ', 1),
   5518 (1682, 107, 'Nagano', 'NA', 1),
   5519 (1683, 107, 'Nagasaki', 'NG', 1),
   5520 (1684, 107, 'Nara', 'NR', 1),
   5521 (1685, 107, 'Niigata', 'NI', 1),
   5522 (1686, 107, 'Oita', 'OI', 1),
   5523 (1687, 107, 'Okayama', 'OK', 1),
   5524 (1688, 107, 'Okinawa', 'ON', 1),
   5525 (1689, 107, 'Osaka', 'OS', 1),
   5526 (1690, 107, 'Saga', 'SA', 1),
   5527 (1691, 107, 'Saitama', 'SI', 1),
   5528 (1692, 107, 'Shiga', 'SH', 1),
   5529 (1693, 107, 'Shimane', 'SM', 1),
   5530 (1694, 107, 'Shizuoka', 'SZ', 1),
   5531 (1695, 107, 'Tochigi', 'TO', 1),
   5532 (1696, 107, 'Tokushima', 'TS', 1),
   5533 (1697, 107, 'Tokyo', 'TK', 1),
   5534 (1698, 107, 'Tottori', 'TT', 1),
   5535 (1699, 107, 'Toyama', 'TY', 1),
   5536 (1700, 107, 'Wakayama', 'WA', 1),
   5537 (1701, 107, 'Yamagata', 'YA', 1),
   5538 (1702, 107, 'Yamaguchi', 'YM', 1),
   5539 (1703, 107, 'Yamanashi', 'YN', 1),
   5540 (1704, 108, '''Amman', 'AM', 1),
   5541 (1705, 108, 'Ajlun', 'AJ', 1),
   5542 (1706, 108, 'Al ''Aqabah', 'AA', 1),
   5543 (1707, 108, 'Al Balqa''', 'AB', 1),
   5544 (1708, 108, 'Al Karak', 'AK', 1),
   5545 (1709, 108, 'Al Mafraq', 'AL', 1),
   5546 (1710, 108, 'At Tafilah', 'AT', 1),
   5547 (1711, 108, 'Az Zarqa''', 'AZ', 1),
   5548 (1712, 108, 'Irbid', 'IR', 1),
   5549 (1713, 108, 'Jarash', 'JA', 1),
   5550 (1714, 108, 'Ma''an', 'MA', 1),
   5551 (1715, 108, 'Madaba', 'MD', 1),
   5552 (1716, 109, 'Almaty', 'AL', 1),
   5553 (1717, 109, 'Almaty City', 'AC', 1),
   5554 (1718, 109, 'Aqmola', 'AM', 1),
   5555 (1719, 109, 'Aqtobe', 'AQ', 1),
   5556 (1720, 109, 'Astana City', 'AS', 1),
   5557 (1721, 109, 'Atyrau', 'AT', 1),
   5558 (1722, 109, 'Batys Qazaqstan', 'BA', 1),
   5559 (1723, 109, 'Bayqongyr City', 'BY', 1),
   5560 (1724, 109, 'Mangghystau', 'MA', 1),
   5561 (1725, 109, 'Ongtustik Qazaqstan', 'ON', 1),
   5562 (1726, 109, 'Pavlodar', 'PA', 1),
   5563 (1727, 109, 'Qaraghandy', 'QA', 1),
   5564 (1728, 109, 'Qostanay', 'QO', 1),
   5565 (1729, 109, 'Qyzylorda', 'QY', 1),
   5566 (1730, 109, 'Shyghys Qazaqstan', 'SH', 1),
   5567 (1731, 109, 'Soltustik Qazaqstan', 'SO', 1),
   5568 (1732, 109, 'Zhambyl', 'ZH', 1),
   5569 (1733, 110, 'Central', 'CE', 1),
   5570 (1734, 110, 'Coast', 'CO', 1),
   5571 (1735, 110, 'Eastern', 'EA', 1),
   5572 (1736, 110, 'Nairobi Area', 'NA', 1),
   5573 (1737, 110, 'North Eastern', 'NE', 1),
   5574 (1738, 110, 'Nyanza', 'NY', 1),
   5575 (1739, 110, 'Rift Valley', 'RV', 1),
   5576 (1740, 110, 'Western', 'WE', 1),
   5577 (1741, 111, 'Abaiang', 'AG', 1),
   5578 (1742, 111, 'Abemama', 'AM', 1),
   5579 (1743, 111, 'Aranuka', 'AK', 1),
   5580 (1744, 111, 'Arorae', 'AO', 1),
   5581 (1745, 111, 'Banaba', 'BA', 1),
   5582 (1746, 111, 'Beru', 'BE', 1),
   5583 (1747, 111, 'Butaritari', 'bT', 1),
   5584 (1748, 111, 'Kanton', 'KA', 1),
   5585 (1749, 111, 'Kiritimati', 'KR', 1),
   5586 (1750, 111, 'Kuria', 'KU', 1),
   5587 (1751, 111, 'Maiana', 'MI', 1),
   5588 (1752, 111, 'Makin', 'MN', 1),
   5589 (1753, 111, 'Marakei', 'ME', 1),
   5590 (1754, 111, 'Nikunau', 'NI', 1),
   5591 (1755, 111, 'Nonouti', 'NO', 1),
   5592 (1756, 111, 'Onotoa', 'ON', 1),
   5593 (1757, 111, 'Tabiteuea', 'TT', 1),
   5594 (1758, 111, 'Tabuaeran', 'TR', 1),
   5595 (1759, 111, 'Tamana', 'TM', 1),
   5596 (1760, 111, 'Tarawa', 'TW', 1),
   5597 (1761, 111, 'Teraina', 'TE', 1),
   5598 (1762, 112, 'Chagang-do', 'CHA', 1),
   5599 (1763, 112, 'Hamgyong-bukto', 'HAB', 1),
   5600 (1764, 112, 'Hamgyong-namdo', 'HAN', 1),
   5601 (1765, 112, 'Hwanghae-bukto', 'HWB', 1),
   5602 (1766, 112, 'Hwanghae-namdo', 'HWN', 1),
   5603 (1767, 112, 'Kangwon-do', 'KAN', 1),
   5604 (1768, 112, 'P''yongan-bukto', 'PYB', 1),
   5605 (1769, 112, 'P''yongan-namdo', 'PYN', 1),
   5606 (1770, 112, 'Ryanggang-do (Yanggang-do)', 'YAN', 1),
   5607 (1771, 112, 'Rason Directly Governed City', 'NAJ', 1),
   5608 (1772, 112, 'P''yongyang Special City', 'PYO', 1),
   5609 (1773, 113, 'Ch''ungch''ong-bukto', 'CO', 1),
   5610 (1774, 113, 'Ch''ungch''ong-namdo', 'CH', 1),
   5611 (1775, 113, 'Cheju-do', 'CD', 1),
   5612 (1776, 113, 'Cholla-bukto', 'CB', 1),
   5613 (1777, 113, 'Cholla-namdo', 'CN', 1),
   5614 (1778, 113, 'Inch''on-gwangyoksi', 'IG', 1),
   5615 (1779, 113, 'Kangwon-do', 'KA', 1),
   5616 (1780, 113, 'Kwangju-gwangyoksi', 'KG', 1),
   5617 (1781, 113, 'Kyonggi-do', 'KD', 1),
   5618 (1782, 113, 'Kyongsang-bukto', 'KB', 1),
   5619 (1783, 113, 'Kyongsang-namdo', 'KN', 1),
   5620 (1784, 113, 'Pusan-gwangyoksi', 'PG', 1),
   5621 (1785, 113, 'Soul-t''ukpyolsi', 'SO', 1),
   5622 (1786, 113, 'Taegu-gwangyoksi', 'TA', 1),
   5623 (1787, 113, 'Taejon-gwangyoksi', 'TG', 1),
   5624 (1788, 114, 'Al ''Asimah', 'AL', 1),
   5625 (1789, 114, 'Al Ahmadi', 'AA', 1),
   5626 (1790, 114, 'Al Farwaniyah', 'AF', 1),
   5627 (1791, 114, 'Al Jahra''', 'AJ', 1),
   5628 (1792, 114, 'Hawalli', 'HA', 1),
   5629 (1793, 115, 'Bishkek', 'GB', 1),
   5630 (1794, 115, 'Batken', 'B', 1),
   5631 (1795, 115, 'Chu', 'C', 1),
   5632 (1796, 115, 'Jalal-Abad', 'J', 1),
   5633 (1797, 115, 'Naryn', 'N', 1),
   5634 (1798, 115, 'Osh', 'O', 1),
   5635 (1799, 115, 'Talas', 'T', 1),
   5636 (1800, 115, 'Ysyk-Kol', 'Y', 1),
   5637 (1801, 116, 'Vientiane', 'VT', 1),
   5638 (1802, 116, 'Attapu', 'AT', 1),
   5639 (1803, 116, 'Bokeo', 'BK', 1),
   5640 (1804, 116, 'Bolikhamxai', 'BL', 1),
   5641 (1805, 116, 'Champasak', 'CH', 1),
   5642 (1806, 116, 'Houaphan', 'HO', 1),
   5643 (1807, 116, 'Khammouan', 'KH', 1),
   5644 (1808, 116, 'Louang Namtha', 'LM', 1),
   5645 (1809, 116, 'Louangphabang', 'LP', 1),
   5646 (1810, 116, 'Oudomxai', 'OU', 1),
   5647 (1811, 116, 'Phongsali', 'PH', 1),
   5648 (1812, 116, 'Salavan', 'SL', 1),
   5649 (1813, 116, 'Savannakhet', 'SV', 1),
   5650 (1814, 116, 'Vientiane', 'VI', 1),
   5651 (1815, 116, 'Xaignabouli', 'XA', 1),
   5652 (1816, 116, 'Xekong', 'XE', 1),
   5653 (1817, 116, 'Xiangkhoang', 'XI', 1),
   5654 (1818, 116, 'Xaisomboun', 'XN', 1),
   5655 (1852, 119, 'Berea', 'BE', 1),
   5656 (1853, 119, 'Butha-Buthe', 'BB', 1),
   5657 (1854, 119, 'Leribe', 'LE', 1),
   5658 (1855, 119, 'Mafeteng', 'MF', 1),
   5659 (1856, 119, 'Maseru', 'MS', 1),
   5660 (1857, 119, 'Mohale''s Hoek', 'MH', 1),
   5661 (1858, 119, 'Mokhotlong', 'MK', 1),
   5662 (1859, 119, 'Qacha''s Nek', 'QN', 1),
   5663 (1860, 119, 'Quthing', 'QT', 1),
   5664 (1861, 119, 'Thaba-Tseka', 'TT', 1),
   5665 (1862, 120, 'Bomi', 'BI', 1),
   5666 (1863, 120, 'Bong', 'BG', 1),
   5667 (1864, 120, 'Grand Bassa', 'GB', 1),
   5668 (1865, 120, 'Grand Cape Mount', 'CM', 1),
   5669 (1866, 120, 'Grand Gedeh', 'GG', 1),
   5670 (1867, 120, 'Grand Kru', 'GK', 1),
   5671 (1868, 120, 'Lofa', 'LO', 1),
   5672 (1869, 120, 'Margibi', 'MG', 1),
   5673 (1870, 120, 'Maryland', 'ML', 1),
   5674 (1871, 120, 'Montserrado', 'MS', 1),
   5675 (1872, 120, 'Nimba', 'NB', 1),
   5676 (1873, 120, 'River Cess', 'RC', 1),
   5677 (1874, 120, 'Sinoe', 'SN', 1),
   5678 (1875, 121, 'Ajdabiya', 'AJ', 1),
   5679 (1876, 121, 'Al ''Aziziyah', 'AZ', 1),
   5680 (1877, 121, 'Al Fatih', 'FA', 1),
   5681 (1878, 121, 'Al Jabal al Akhdar', 'JA', 1),
   5682 (1879, 121, 'Al Jufrah', 'JU', 1),
   5683 (1880, 121, 'Al Khums', 'KH', 1),
   5684 (1881, 121, 'Al Kufrah', 'KU', 1),
   5685 (1882, 121, 'An Nuqat al Khams', 'NK', 1),
   5686 (1883, 121, 'Ash Shati''', 'AS', 1),
   5687 (1884, 121, 'Awbari', 'AW', 1),
   5688 (1885, 121, 'Az Zawiyah', 'ZA', 1),
   5689 (1886, 121, 'Banghazi', 'BA', 1),
   5690 (1887, 121, 'Darnah', 'DA', 1),
   5691 (1888, 121, 'Ghadamis', 'GD', 1),
   5692 (1889, 121, 'Gharyan', 'GY', 1),
   5693 (1890, 121, 'Misratah', 'MI', 1),
   5694 (1891, 121, 'Murzuq', 'MZ', 1),
   5695 (1892, 121, 'Sabha', 'SB', 1),
   5696 (1893, 121, 'Sawfajjin', 'SW', 1),
   5697 (1894, 121, 'Surt', 'SU', 1),
   5698 (1895, 121, 'Tarabulus (Tripoli)', 'TL', 1),
   5699 (1896, 121, 'Tarhunah', 'TH', 1),
   5700 (1897, 121, 'Tubruq', 'TU', 1),
   5701 (1898, 121, 'Yafran', 'YA', 1),
   5702 (1899, 121, 'Zlitan', 'ZL', 1),
   5703 (1900, 122, 'Vaduz', 'V', 1),
   5704 (1901, 122, 'Schaan', 'A', 1),
   5705 (1902, 122, 'Balzers', 'B', 1),
   5706 (1903, 122, 'Triesen', 'N', 1),
   5707 (1904, 122, 'Eschen', 'E', 1),
   5708 (1905, 122, 'Mauren', 'M', 1),
   5709 (1906, 122, 'Triesenberg', 'T', 1),
   5710 (1907, 122, 'Ruggell', 'R', 1),
   5711 (1908, 122, 'Gamprin', 'G', 1),
   5712 (1909, 122, 'Schellenberg', 'L', 1),
   5713 (1910, 122, 'Planken', 'P', 1),
   5714 (1911, 123, 'Alytus', 'AL', 1),
   5715 (1912, 123, 'Kaunas', 'KA', 1),
   5716 (1913, 123, 'Klaipeda', 'KL', 1),
   5717 (1914, 123, 'Marijampole', 'MA', 1),
   5718 (1915, 123, 'Panevezys', 'PA', 1),
   5719 (1916, 123, 'Siauliai', 'SI', 1),
   5720 (1917, 123, 'Taurage', 'TA', 1),
   5721 (1918, 123, 'Telsiai', 'TE', 1),
   5722 (1919, 123, 'Utena', 'UT', 1),
   5723 (1920, 123, 'Vilnius', 'VI', 1),
   5724 (1921, 124, 'Diekirch', 'DD', 1),
   5725 (1922, 124, 'Clervaux', 'DC', 1),
   5726 (1923, 124, 'Redange', 'DR', 1),
   5727 (1924, 124, 'Vianden', 'DV', 1),
   5728 (1925, 124, 'Wiltz', 'DW', 1),
   5729 (1926, 124, 'Grevenmacher', 'GG', 1),
   5730 (1927, 124, 'Echternach', 'GE', 1),
   5731 (1928, 124, 'Remich', 'GR', 1),
   5732 (1929, 124, 'Luxembourg', 'LL', 1),
   5733 (1930, 124, 'Capellen', 'LC', 1),
   5734 (1931, 124, 'Esch-sur-Alzette', 'LE', 1),
   5735 (1932, 124, 'Mersch', 'LM', 1),
   5736 (1933, 125, 'Our Lady Fatima Parish', 'OLF', 1),
   5737 (1934, 125, 'St. Anthony Parish', 'ANT', 1),
   5738 (1935, 125, 'St. Lazarus Parish', 'LAZ', 1),
   5739 (1936, 125, 'Cathedral Parish', 'CAT', 1),
   5740 (1937, 125, 'St. Lawrence Parish', 'LAW', 1),
   5741 (1938, 127, 'Antananarivo', 'AN', 1),
   5742 (1939, 127, 'Antsiranana', 'AS', 1),
   5743 (1940, 127, 'Fianarantsoa', 'FN', 1),
   5744 (1941, 127, 'Mahajanga', 'MJ', 1),
   5745 (1942, 127, 'Toamasina', 'TM', 1),
   5746 (1943, 127, 'Toliara', 'TL', 1),
   5747 (1944, 128, 'Balaka', 'BLK', 1),
   5748 (1945, 128, 'Blantyre', 'BLT', 1),
   5749 (1946, 128, 'Chikwawa', 'CKW', 1),
   5750 (1947, 128, 'Chiradzulu', 'CRD', 1),
   5751 (1948, 128, 'Chitipa', 'CTP', 1),
   5752 (1949, 128, 'Dedza', 'DDZ', 1),
   5753 (1950, 128, 'Dowa', 'DWA', 1),
   5754 (1951, 128, 'Karonga', 'KRG', 1),
   5755 (1952, 128, 'Kasungu', 'KSG', 1),
   5756 (1953, 128, 'Likoma', 'LKM', 1),
   5757 (1954, 128, 'Lilongwe', 'LLG', 1),
   5758 (1955, 128, 'Machinga', 'MCG', 1),
   5759 (1956, 128, 'Mangochi', 'MGC', 1),
   5760 (1957, 128, 'Mchinji', 'MCH', 1),
   5761 (1958, 128, 'Mulanje', 'MLJ', 1),
   5762 (1959, 128, 'Mwanza', 'MWZ', 1),
   5763 (1960, 128, 'Mzimba', 'MZM', 1),
   5764 (1961, 128, 'Ntcheu', 'NTU', 1),
   5765 (1962, 128, 'Nkhata Bay', 'NKB', 1),
   5766 (1963, 128, 'Nkhotakota', 'NKH', 1),
   5767 (1964, 128, 'Nsanje', 'NSJ', 1),
   5768 (1965, 128, 'Ntchisi', 'NTI', 1),
   5769 (1966, 128, 'Phalombe', 'PHL', 1),
   5770 (1967, 128, 'Rumphi', 'RMP', 1),
   5771 (1968, 128, 'Salima', 'SLM', 1),
   5772 (1969, 128, 'Thyolo', 'THY', 1),
   5773 (1970, 128, 'Zomba', 'ZBA', 1),
   5774 (1971, 129, 'Johor', 'MY-01', 1),
   5775 (1972, 129, 'Kedah', 'MY-02', 1),
   5776 (1973, 129, 'Kelantan', 'MY-03', 1),
   5777 (1974, 129, 'Labuan', 'MY-15', 1),
   5778 (1975, 129, 'Melaka', 'MY-04', 1),
   5779 (1976, 129, 'Negeri Sembilan', 'MY-05', 1),
   5780 (1977, 129, 'Pahang', 'MY-06', 1),
   5781 (1978, 129, 'Perak', 'MY-08', 1),
   5782 (1979, 129, 'Perlis', 'MY-09', 1),
   5783 (1980, 129, 'Pulau Pinang', 'MY-07', 1),
   5784 (1981, 129, 'Sabah', 'MY-12', 1),
   5785 (1982, 129, 'Sarawak', 'MY-13', 1),
   5786 (1983, 129, 'Selangor', 'MY-10', 1),
   5787 (1984, 129, 'Terengganu', 'MY-11', 1),
   5788 (1985, 129, 'Kuala Lumpur', 'MY-14', 1),
   5789 (4035, 129, 'Putrajaya', 'MY-16', 1),
   5790 (1986, 130, 'Thiladhunmathi Uthuru', 'THU', 1),
   5791 (1987, 130, 'Thiladhunmathi Dhekunu', 'THD', 1),
   5792 (1988, 130, 'Miladhunmadulu Uthuru', 'MLU', 1),
   5793 (1989, 130, 'Miladhunmadulu Dhekunu', 'MLD', 1),
   5794 (1990, 130, 'Maalhosmadulu Uthuru', 'MAU', 1),
   5795 (1991, 130, 'Maalhosmadulu Dhekunu', 'MAD', 1),
   5796 (1992, 130, 'Faadhippolhu', 'FAA', 1),
   5797 (1993, 130, 'Male Atoll', 'MAA', 1),
   5798 (1994, 130, 'Ari Atoll Uthuru', 'AAU', 1),
   5799 (1995, 130, 'Ari Atoll Dheknu', 'AAD', 1),
   5800 (1996, 130, 'Felidhe Atoll', 'FEA', 1),
   5801 (1997, 130, 'Mulaku Atoll', 'MUA', 1),
   5802 (1998, 130, 'Nilandhe Atoll Uthuru', 'NAU', 1),
   5803 (1999, 130, 'Nilandhe Atoll Dhekunu', 'NAD', 1),
   5804 (2000, 130, 'Kolhumadulu', 'KLH', 1),
   5805 (2001, 130, 'Hadhdhunmathi', 'HDH', 1),
   5806 (2002, 130, 'Huvadhu Atoll Uthuru', 'HAU', 1),
   5807 (2003, 130, 'Huvadhu Atoll Dhekunu', 'HAD', 1),
   5808 (2004, 130, 'Fua Mulaku', 'FMU', 1),
   5809 (2005, 130, 'Addu', 'ADD', 1),
   5810 (2006, 131, 'Gao', 'GA', 1),
   5811 (2007, 131, 'Kayes', 'KY', 1),
   5812 (2008, 131, 'Kidal', 'KD', 1),
   5813 (2009, 131, 'Koulikoro', 'KL', 1),
   5814 (2010, 131, 'Mopti', 'MP', 1),
   5815 (2011, 131, 'Segou', 'SG', 1),
   5816 (2012, 131, 'Sikasso', 'SK', 1),
   5817 (2013, 131, 'Tombouctou', 'TB', 1),
   5818 (2014, 131, 'Bamako Capital District', 'CD', 1),
   5819 (2015, 132, 'Attard', 'ATT', 1),
   5820 (2016, 132, 'Balzan', 'BAL', 1),
   5821 (2017, 132, 'Birgu', 'BGU', 1),
   5822 (2018, 132, 'Birkirkara', 'BKK', 1),
   5823 (2019, 132, 'Birzebbuga', 'BRZ', 1),
   5824 (2020, 132, 'Bormla', 'BOR', 1),
   5825 (2021, 132, 'Dingli', 'DIN', 1),
   5826 (2022, 132, 'Fgura', 'FGU', 1),
   5827 (2023, 132, 'Floriana', 'FLO', 1),
   5828 (2024, 132, 'Gudja', 'GDJ', 1),
   5829 (2025, 132, 'Gzira', 'GZR', 1),
   5830 (2026, 132, 'Gargur', 'GRG', 1),
   5831 (2027, 132, 'Gaxaq', 'GXQ', 1),
   5832 (2028, 132, 'Hamrun', 'HMR', 1),
   5833 (2029, 132, 'Iklin', 'IKL', 1),
   5834 (2030, 132, 'Isla', 'ISL', 1),
   5835 (2031, 132, 'Kalkara', 'KLK', 1),
   5836 (2032, 132, 'Kirkop', 'KRK', 1),
   5837 (2033, 132, 'Lija', 'LIJ', 1),
   5838 (2034, 132, 'Luqa', 'LUQ', 1),
   5839 (2035, 132, 'Marsa', 'MRS', 1),
   5840 (2036, 132, 'Marsaskala', 'MKL', 1),
   5841 (2037, 132, 'Marsaxlokk', 'MXL', 1),
   5842 (2038, 132, 'Mdina', 'MDN', 1),
   5843 (2039, 132, 'Melliea', 'MEL', 1),
   5844 (2040, 132, 'Mgarr', 'MGR', 1),
   5845 (2041, 132, 'Mosta', 'MST', 1),
   5846 (2042, 132, 'Mqabba', 'MQA', 1),
   5847 (2043, 132, 'Msida', 'MSI', 1),
   5848 (2044, 132, 'Mtarfa', 'MTF', 1),
   5849 (2045, 132, 'Naxxar', 'NAX', 1),
   5850 (2046, 132, 'Paola', 'PAO', 1),
   5851 (2047, 132, 'Pembroke', 'PEM', 1),
   5852 (2048, 132, 'Pieta', 'PIE', 1),
   5853 (2049, 132, 'Qormi', 'QOR', 1),
   5854 (2050, 132, 'Qrendi', 'QRE', 1),
   5855 (2051, 132, 'Rabat', 'RAB', 1),
   5856 (2052, 132, 'Safi', 'SAF', 1),
   5857 (2053, 132, 'San Giljan', 'SGI', 1),
   5858 (2054, 132, 'Santa Lucija', 'SLU', 1),
   5859 (2055, 132, 'San Pawl il-Bahar', 'SPB', 1),
   5860 (2056, 132, 'San Gwann', 'SGW', 1),
   5861 (2057, 132, 'Santa Venera', 'SVE', 1),
   5862 (2058, 132, 'Siggiewi', 'SIG', 1),
   5863 (2059, 132, 'Sliema', 'SLM', 1),
   5864 (2060, 132, 'Swieqi', 'SWQ', 1),
   5865 (2061, 132, 'Ta Xbiex', 'TXB', 1),
   5866 (2062, 132, 'Tarxien', 'TRX', 1),
   5867 (2063, 132, 'Valletta', 'VLT', 1),
   5868 (2064, 132, 'Xgajra', 'XGJ', 1),
   5869 (2065, 132, 'Zabbar', 'ZBR', 1),
   5870 (2066, 132, 'Zebbug', 'ZBG', 1),
   5871 (2067, 132, 'Zejtun', 'ZJT', 1),
   5872 (2068, 132, 'Zurrieq', 'ZRQ', 1),
   5873 (2069, 132, 'Fontana', 'FNT', 1),
   5874 (2070, 132, 'Ghajnsielem', 'GHJ', 1),
   5875 (2071, 132, 'Gharb', 'GHR', 1),
   5876 (2072, 132, 'Ghasri', 'GHS', 1),
   5877 (2073, 132, 'Kercem', 'KRC', 1),
   5878 (2074, 132, 'Munxar', 'MUN', 1),
   5879 (2075, 132, 'Nadur', 'NAD', 1),
   5880 (2076, 132, 'Qala', 'QAL', 1),
   5881 (2077, 132, 'Victoria', 'VIC', 1),
   5882 (2078, 132, 'San Lawrenz', 'SLA', 1),
   5883 (2079, 132, 'Sannat', 'SNT', 1),
   5884 (2080, 132, 'Xagra', 'ZAG', 1),
   5885 (2081, 132, 'Xewkija', 'XEW', 1),
   5886 (2082, 132, 'Zebbug', 'ZEB', 1),
   5887 (2083, 133, 'Ailinginae', 'ALG', 1),
   5888 (2084, 133, 'Ailinglaplap', 'ALL', 1),
   5889 (2085, 133, 'Ailuk', 'ALK', 1),
   5890 (2086, 133, 'Arno', 'ARN', 1),
   5891 (2087, 133, 'Aur', 'AUR', 1),
   5892 (2088, 133, 'Bikar', 'BKR', 1),
   5893 (2089, 133, 'Bikini', 'BKN', 1),
   5894 (2090, 133, 'Bokak', 'BKK', 1),
   5895 (2091, 133, 'Ebon', 'EBN', 1),
   5896 (2092, 133, 'Enewetak', 'ENT', 1),
   5897 (2093, 133, 'Erikub', 'EKB', 1),
   5898 (2094, 133, 'Jabat', 'JBT', 1),
   5899 (2095, 133, 'Jaluit', 'JLT', 1),
   5900 (2096, 133, 'Jemo', 'JEM', 1),
   5901 (2097, 133, 'Kili', 'KIL', 1),
   5902 (2098, 133, 'Kwajalein', 'KWJ', 1),
   5903 (2099, 133, 'Lae', 'LAE', 1),
   5904 (2100, 133, 'Lib', 'LIB', 1),
   5905 (2101, 133, 'Likiep', 'LKP', 1),
   5906 (2102, 133, 'Majuro', 'MJR', 1),
   5907 (2103, 133, 'Maloelap', 'MLP', 1),
   5908 (2104, 133, 'Mejit', 'MJT', 1),
   5909 (2105, 133, 'Mili', 'MIL', 1),
   5910 (2106, 133, 'Namorik', 'NMK', 1),
   5911 (2107, 133, 'Namu', 'NAM', 1),
   5912 (2108, 133, 'Rongelap', 'RGL', 1),
   5913 (2109, 133, 'Rongrik', 'RGK', 1),
   5914 (2110, 133, 'Toke', 'TOK', 1),
   5915 (2111, 133, 'Ujae', 'UJA', 1),
   5916 (2112, 133, 'Ujelang', 'UJL', 1),
   5917 (2113, 133, 'Utirik', 'UTK', 1),
   5918 (2114, 133, 'Wotho', 'WTH', 1),
   5919 (2115, 133, 'Wotje', 'WTJ', 1),
   5920 (2116, 135, 'Adrar', 'AD', 1),
   5921 (2117, 135, 'Assaba', 'AS', 1),
   5922 (2118, 135, 'Brakna', 'BR', 1),
   5923 (2119, 135, 'Dakhlet Nouadhibou', 'DN', 1),
   5924 (2120, 135, 'Gorgol', 'GO', 1),
   5925 (2121, 135, 'Guidimaka', 'GM', 1),
   5926 (2122, 135, 'Hodh Ech Chargui', 'HC', 1),
   5927 (2123, 135, 'Hodh El Gharbi', 'HG', 1),
   5928 (2124, 135, 'Inchiri', 'IN', 1),
   5929 (2125, 135, 'Tagant', 'TA', 1),
   5930 (2126, 135, 'Tiris Zemmour', 'TZ', 1),
   5931 (2127, 135, 'Trarza', 'TR', 1),
   5932 (2128, 135, 'Nouakchott', 'NO', 1),
   5933 (2129, 136, 'Beau Bassin-Rose Hill', 'BR', 1),
   5934 (2130, 136, 'Curepipe', 'CU', 1),
   5935 (2131, 136, 'Port Louis', 'PU', 1),
   5936 (2132, 136, 'Quatre Bornes', 'QB', 1),
   5937 (2133, 136, 'Vacoas-Phoenix', 'VP', 1),
   5938 (2134, 136, 'Agalega Islands', 'AG', 1),
   5939 (2135, 136, 'Cargados Carajos Shoals (Saint Brandon Islands)', 'CC', 1),
   5940 (2136, 136, 'Rodrigues', 'RO', 1),
   5941 (2137, 136, 'Black River', 'BL', 1),
   5942 (2138, 136, 'Flacq', 'FL', 1),
   5943 (2139, 136, 'Grand Port', 'GP', 1),
   5944 (2140, 136, 'Moka', 'MO', 1),
   5945 (2141, 136, 'Pamplemousses', 'PA', 1),
   5946 (2142, 136, 'Plaines Wilhems', 'PW', 1),
   5947 (2143, 136, 'Port Louis', 'PL', 1),
   5948 (2144, 136, 'Riviere du Rempart', 'RR', 1),
   5949 (2145, 136, 'Savanne', 'SA', 1),
   5950 (2146, 138, 'Baja California Norte', 'BN', 1),
   5951 (2147, 138, 'Baja California Sur', 'BS', 1),
   5952 (2148, 138, 'Campeche', 'CA', 1),
   5953 (2149, 138, 'Chiapas', 'CI', 1),
   5954 (2150, 138, 'Chihuahua', 'CH', 1),
   5955 (2151, 138, 'Coahuila de Zaragoza', 'CZ', 1),
   5956 (2152, 138, 'Colima', 'CL', 1),
   5957 (2153, 138, 'Distrito Federal', 'DF', 1),
   5958 (2154, 138, 'Durango', 'DU', 1),
   5959 (2155, 138, 'Guanajuato', 'GA', 1),
   5960 (2156, 138, 'Guerrero', 'GE', 1),
   5961 (2157, 138, 'Hidalgo', 'HI', 1),
   5962 (2158, 138, 'Jalisco', 'JA', 1),
   5963 (2159, 138, 'Mexico', 'ME', 1),
   5964 (2160, 138, 'Michoacan de Ocampo', 'MI', 1),
   5965 (2161, 138, 'Morelos', 'MO', 1),
   5966 (2162, 138, 'Nayarit', 'NA', 1),
   5967 (2163, 138, 'Nuevo Leon', 'NL', 1),
   5968 (2164, 138, 'Oaxaca', 'OA', 1),
   5969 (2165, 138, 'Puebla', 'PU', 1),
   5970 (2166, 138, 'Queretaro de Arteaga', 'QA', 1),
   5971 (2167, 138, 'Quintana Roo', 'QR', 1),
   5972 (2168, 138, 'San Luis Potosi', 'SA', 1),
   5973 (2169, 138, 'Sinaloa', 'SI', 1),
   5974 (2170, 138, 'Sonora', 'SO', 1),
   5975 (2171, 138, 'Tabasco', 'TB', 1),
   5976 (2172, 138, 'Tamaulipas', 'TM', 1),
   5977 (2173, 138, 'Tlaxcala', 'TL', 1),
   5978 (2174, 138, 'Veracruz-Llave', 'VE', 1),
   5979 (2175, 138, 'Yucatan', 'YU', 1),
   5980 (2176, 138, 'Zacatecas', 'ZA', 1),
   5981 (2177, 139, 'Chuuk', 'C', 1),
   5982 (2178, 139, 'Kosrae', 'K', 1),
   5983 (2179, 139, 'Pohnpei', 'P', 1),
   5984 (2180, 139, 'Yap', 'Y', 1),
   5985 (2181, 140, 'Gagauzia', 'GA', 1),
   5986 (2182, 140, 'Chisinau', 'CU', 1),
   5987 (2183, 140, 'Balti', 'BA', 1),
   5988 (2184, 140, 'Cahul', 'CA', 1),
   5989 (2185, 140, 'Edinet', 'ED', 1),
   5990 (2186, 140, 'Lapusna', 'LA', 1),
   5991 (2187, 140, 'Orhei', 'OR', 1),
   5992 (2188, 140, 'Soroca', 'SO', 1),
   5993 (2189, 140, 'Tighina', 'TI', 1),
   5994 (2190, 140, 'Ungheni', 'UN', 1),
   5995 (2191, 140, 'St‚nga Nistrului', 'SN', 1),
   5996 (2192, 141, 'Fontvieille', 'FV', 1),
   5997 (2193, 141, 'La Condamine', 'LC', 1),
   5998 (2194, 141, 'Monaco-Ville', 'MV', 1),
   5999 (2195, 141, 'Monte-Carlo', 'MC', 1),
   6000 (2196, 142, 'Ulanbaatar', '1', 1),
   6001 (2197, 142, 'Orhon', '035', 1),
   6002 (2198, 142, 'Darhan uul', '037', 1),
   6003 (2199, 142, 'Hentiy', '039', 1),
   6004 (2200, 142, 'Hovsgol', '041', 1),
   6005 (2201, 142, 'Hovd', '043', 1),
   6006 (2202, 142, 'Uvs', '046', 1),
   6007 (2203, 142, 'Tov', '047', 1),
   6008 (2204, 142, 'Selenge', '049', 1),
   6009 (2205, 142, 'Suhbaatar', '051', 1),
   6010 (2206, 142, 'Omnogovi', '053', 1),
   6011 (2207, 142, 'Ovorhangay', '055', 1),
   6012 (2208, 142, 'Dzavhan', '057', 1),
   6013 (2209, 142, 'DundgovL', '059', 1),
   6014 (2210, 142, 'Dornod', '061', 1),
   6015 (2211, 142, 'Dornogov', '063', 1),
   6016 (2212, 142, 'Govi-Sumber', '064', 1),
   6017 (2213, 142, 'Govi-Altay', '065', 1),
   6018 (2214, 142, 'Bulgan', '067', 1),
   6019 (2215, 142, 'Bayanhongor', '069', 1),
   6020 (2216, 142, 'Bayan-Olgiy', '071', 1),
   6021 (2217, 142, 'Arhangay', '073', 1),
   6022 (2218, 143, 'Saint Anthony', 'A', 1),
   6023 (2219, 143, 'Saint Georges', 'G', 1),
   6024 (2220, 143, 'Saint Peter', 'P', 1),
   6025 (2221, 144, 'Agadir', 'AGD', 1),
   6026 (2222, 144, 'Al Hoceima', 'HOC', 1),
   6027 (2223, 144, 'Azilal', 'AZI', 1),
   6028 (2224, 144, 'Beni Mellal', 'BME', 1),
   6029 (2225, 144, 'Ben Slimane', 'BSL', 1),
   6030 (2226, 144, 'Boulemane', 'BLM', 1),
   6031 (2227, 144, 'Casablanca', 'CBL', 1),
   6032 (2228, 144, 'Chaouen', 'CHA', 1),
   6033 (2229, 144, 'El Jadida', 'EJA', 1),
   6034 (2230, 144, 'El Kelaa des Sraghna', 'EKS', 1),
   6035 (2231, 144, 'Er Rachidia', 'ERA', 1),
   6036 (2232, 144, 'Essaouira', 'ESS', 1),
   6037 (2233, 144, 'Fes', 'FES', 1),
   6038 (2234, 144, 'Figuig', 'FIG', 1),
   6039 (2235, 144, 'Guelmim', 'GLM', 1),
   6040 (2236, 144, 'Ifrane', 'IFR', 1),
   6041 (2237, 144, 'Kenitra', 'KEN', 1),
   6042 (2238, 144, 'Khemisset', 'KHM', 1),
   6043 (2239, 144, 'Khenifra', 'KHN', 1),
   6044 (2240, 144, 'Khouribga', 'KHO', 1),
   6045 (2241, 144, 'Laayoune', 'LYN', 1),
   6046 (2242, 144, 'Larache', 'LAR', 1),
   6047 (2243, 144, 'Marrakech', 'MRK', 1),
   6048 (2244, 144, 'Meknes', 'MKN', 1),
   6049 (2245, 144, 'Nador', 'NAD', 1),
   6050 (2246, 144, 'Ouarzazate', 'ORZ', 1),
   6051 (2247, 144, 'Oujda', 'OUJ', 1),
   6052 (2248, 144, 'Rabat-Sale', 'RSA', 1),
   6053 (2249, 144, 'Safi', 'SAF', 1),
   6054 (2250, 144, 'Settat', 'SET', 1),
   6055 (2251, 144, 'Sidi Kacem', 'SKA', 1),
   6056 (2252, 144, 'Tangier', 'TGR', 1),
   6057 (2253, 144, 'Tan-Tan', 'TAN', 1),
   6058 (2254, 144, 'Taounate', 'TAO', 1),
   6059 (2255, 144, 'Taroudannt', 'TRD', 1),
   6060 (2256, 144, 'Tata', 'TAT', 1),
   6061 (2257, 144, 'Taza', 'TAZ', 1),
   6062 (2258, 144, 'Tetouan', 'TET', 1),
   6063 (2259, 144, 'Tiznit', 'TIZ', 1),
   6064 (2260, 144, 'Ad Dakhla', 'ADK', 1),
   6065 (2261, 144, 'Boujdour', 'BJD', 1),
   6066 (2262, 144, 'Es Smara', 'ESM', 1),
   6067 (2263, 145, 'Cabo Delgado', 'CD', 1),
   6068 (2264, 145, 'Gaza', 'GZ', 1),
   6069 (2265, 145, 'Inhambane', 'IN', 1),
   6070 (2266, 145, 'Manica', 'MN', 1),
   6071 (2267, 145, 'Maputo (city)', 'MC', 1),
   6072 (2268, 145, 'Maputo', 'MP', 1),
   6073 (2269, 145, 'Nampula', 'NA', 1),
   6074 (2270, 145, 'Niassa', 'NI', 1),
   6075 (2271, 145, 'Sofala', 'SO', 1),
   6076 (2272, 145, 'Tete', 'TE', 1),
   6077 (2273, 145, 'Zambezia', 'ZA', 1),
   6078 (2274, 146, 'Ayeyarwady', 'AY', 1),
   6079 (2275, 146, 'Bago', 'BG', 1),
   6080 (2276, 146, 'Magway', 'MG', 1),
   6081 (2277, 146, 'Mandalay', 'MD', 1),
   6082 (2278, 146, 'Sagaing', 'SG', 1),
   6083 (2279, 146, 'Tanintharyi', 'TN', 1),
   6084 (2280, 146, 'Yangon', 'YG', 1),
   6085 (2281, 146, 'Chin State', 'CH', 1),
   6086 (2282, 146, 'Kachin State', 'KC', 1),
   6087 (2283, 146, 'Kayah State', 'KH', 1),
   6088 (2284, 146, 'Kayin State', 'KN', 1),
   6089 (2285, 146, 'Mon State', 'MN', 1),
   6090 (2286, 146, 'Rakhine State', 'RK', 1),
   6091 (2287, 146, 'Shan State', 'SH', 1),
   6092 (2288, 147, 'Caprivi', 'CA', 1),
   6093 (2289, 147, 'Erongo', 'ER', 1),
   6094 (2290, 147, 'Hardap', 'HA', 1),
   6095 (2291, 147, 'Karas', 'KR', 1),
   6096 (2292, 147, 'Kavango', 'KV', 1),
   6097 (2293, 147, 'Khomas', 'KH', 1),
   6098 (2294, 147, 'Kunene', 'KU', 1),
   6099 (2295, 147, 'Ohangwena', 'OW', 1),
   6100 (2296, 147, 'Omaheke', 'OK', 1),
   6101 (2297, 147, 'Omusati', 'OT', 1),
   6102 (2298, 147, 'Oshana', 'ON', 1),
   6103 (2299, 147, 'Oshikoto', 'OO', 1),
   6104 (2300, 147, 'Otjozondjupa', 'OJ', 1),
   6105 (2301, 148, 'Aiwo', 'AO', 1),
   6106 (2302, 148, 'Anabar', 'AA', 1),
   6107 (2303, 148, 'Anetan', 'AT', 1),
   6108 (2304, 148, 'Anibare', 'AI', 1),
   6109 (2305, 148, 'Baiti', 'BA', 1),
   6110 (2306, 148, 'Boe', 'BO', 1),
   6111 (2307, 148, 'Buada', 'BU', 1),
   6112 (2308, 148, 'Denigomodu', 'DE', 1),
   6113 (2309, 148, 'Ewa', 'EW', 1),
   6114 (2310, 148, 'Ijuw', 'IJ', 1),
   6115 (2311, 148, 'Meneng', 'ME', 1),
   6116 (2312, 148, 'Nibok', 'NI', 1),
   6117 (2313, 148, 'Uaboe', 'UA', 1),
   6118 (2314, 148, 'Yaren', 'YA', 1),
   6119 (2315, 149, 'Bagmati', 'BA', 1),
   6120 (2316, 149, 'Bheri', 'BH', 1),
   6121 (2317, 149, 'Dhawalagiri', 'DH', 1),
   6122 (2318, 149, 'Gandaki', 'GA', 1),
   6123 (2319, 149, 'Janakpur', 'JA', 1),
   6124 (2320, 149, 'Karnali', 'KA', 1),
   6125 (2321, 149, 'Kosi', 'KO', 1),
   6126 (2322, 149, 'Lumbini', 'LU', 1),
   6127 (2323, 149, 'Mahakali', 'MA', 1),
   6128 (2324, 149, 'Mechi', 'ME', 1),
   6129 (2325, 149, 'Narayani', 'NA', 1),
   6130 (2326, 149, 'Rapti', 'RA', 1),
   6131 (2327, 149, 'Sagarmatha', 'SA', 1),
   6132 (2328, 149, 'Seti', 'SE', 1),
   6133 (2329, 150, 'Drenthe', 'DR', 1),
   6134 (2330, 150, 'Flevoland', 'FL', 1),
   6135 (2331, 150, 'Friesland', 'FR', 1),
   6136 (2332, 150, 'Gelderland', 'GE', 1),
   6137 (2333, 150, 'Groningen', 'GR', 1),
   6138 (2334, 150, 'Limburg', 'LI', 1),
   6139 (2335, 150, 'Noord-Brabant', 'NB', 1),
   6140 (2336, 150, 'Noord-Holland', 'NH', 1),
   6141 (2337, 150, 'Overijssel', 'OV', 1),
   6142 (2338, 150, 'Utrecht', 'UT', 1),
   6143 (2339, 150, 'Zeeland', 'ZE', 1),
   6144 (2340, 150, 'Zuid-Holland', 'ZH', 1),
   6145 (2341, 152, 'Iles Loyaute', 'L', 1),
   6146 (2342, 152, 'Nord', 'N', 1),
   6147 (2343, 152, 'Sud', 'S', 1),
   6148 (2344, 153, 'Auckland', 'AUK', 1),
   6149 (2345, 153, 'Bay of Plenty', 'BOP', 1),
   6150 (2346, 153, 'Canterbury', 'CAN', 1),
   6151 (2347, 153, 'Coromandel', 'COR', 1),
   6152 (2348, 153, 'Gisborne', 'GIS', 1),
   6153 (2349, 153, 'Fiordland', 'FIO', 1),
   6154 (2350, 153, 'Hawke''s Bay', 'HKB', 1),
   6155 (2351, 153, 'Marlborough', 'MBH', 1),
   6156 (2352, 153, 'Manawatu-Wanganui', 'MWT', 1),
   6157 (2353, 153, 'Mt Cook-Mackenzie', 'MCM', 1),
   6158 (2354, 153, 'Nelson', 'NSN', 1),
   6159 (2355, 153, 'Northland', 'NTL', 1),
   6160 (2356, 153, 'Otago', 'OTA', 1),
   6161 (2357, 153, 'Southland', 'STL', 1),
   6162 (2358, 153, 'Taranaki', 'TKI', 1),
   6163 (2359, 153, 'Wellington', 'WGN', 1),
   6164 (2360, 153, 'Waikato', 'WKO', 1),
   6165 (2361, 153, 'Wairarapa', 'WAI', 1),
   6166 (2362, 153, 'West Coast', 'WTC', 1),
   6167 (2363, 154, 'Atlantico Norte', 'AN', 1),
   6168 (2364, 154, 'Atlantico Sur', 'AS', 1),
   6169 (2365, 154, 'Boaco', 'BO', 1),
   6170 (2366, 154, 'Carazo', 'CA', 1),
   6171 (2367, 154, 'Chinandega', 'CI', 1),
   6172 (2368, 154, 'Chontales', 'CO', 1),
   6173 (2369, 154, 'Esteli', 'ES', 1),
   6174 (2370, 154, 'Granada', 'GR', 1),
   6175 (2371, 154, 'Jinotega', 'JI', 1),
   6176 (2372, 154, 'Leon', 'LE', 1),
   6177 (2373, 154, 'Madriz', 'MD', 1),
   6178 (2374, 154, 'Managua', 'MN', 1),
   6179 (2375, 154, 'Masaya', 'MS', 1),
   6180 (2376, 154, 'Matagalpa', 'MT', 1),
   6181 (2377, 154, 'Nuevo Segovia', 'NS', 1),
   6182 (2378, 154, 'Rio San Juan', 'RS', 1),
   6183 (2379, 154, 'Rivas', 'RI', 1),
   6184 (2380, 155, 'Agadez', 'AG', 1),
   6185 (2381, 155, 'Diffa', 'DF', 1),
   6186 (2382, 155, 'Dosso', 'DS', 1),
   6187 (2383, 155, 'Maradi', 'MA', 1),
   6188 (2384, 155, 'Niamey', 'NM', 1),
   6189 (2385, 155, 'Tahoua', 'TH', 1),
   6190 (2386, 155, 'Tillaberi', 'TL', 1),
   6191 (2387, 155, 'Zinder', 'ZD', 1),
   6192 (2388, 156, 'Abia', 'AB', 1),
   6193 (2389, 156, 'Abuja Federal Capital Territory', 'CT', 1),
   6194 (2390, 156, 'Adamawa', 'AD', 1),
   6195 (2391, 156, 'Akwa Ibom', 'AK', 1),
   6196 (2392, 156, 'Anambra', 'AN', 1),
   6197 (2393, 156, 'Bauchi', 'BC', 1),
   6198 (2394, 156, 'Bayelsa', 'BY', 1),
   6199 (2395, 156, 'Benue', 'BN', 1),
   6200 (2396, 156, 'Borno', 'BO', 1),
   6201 (2397, 156, 'Cross River', 'CR', 1),
   6202 (2398, 156, 'Delta', 'DE', 1),
   6203 (2399, 156, 'Ebonyi', 'EB', 1),
   6204 (2400, 156, 'Edo', 'ED', 1),
   6205 (2401, 156, 'Ekiti', 'EK', 1),
   6206 (2402, 156, 'Enugu', 'EN', 1),
   6207 (2403, 156, 'Gombe', 'GO', 1),
   6208 (2404, 156, 'Imo', 'IM', 1),
   6209 (2405, 156, 'Jigawa', 'JI', 1),
   6210 (2406, 156, 'Kaduna', 'KD', 1),
   6211 (2407, 156, 'Kano', 'KN', 1),
   6212 (2408, 156, 'Katsina', 'KT', 1),
   6213 (2409, 156, 'Kebbi', 'KE', 1),
   6214 (2410, 156, 'Kogi', 'KO', 1),
   6215 (2411, 156, 'Kwara', 'KW', 1),
   6216 (2412, 156, 'Lagos', 'LA', 1),
   6217 (2413, 156, 'Nassarawa', 'NA', 1),
   6218 (2414, 156, 'Niger', 'NI', 1),
   6219 (2415, 156, 'Ogun', 'OG', 1),
   6220 (2416, 156, 'Ondo', 'ONG', 1),
   6221 (2417, 156, 'Osun', 'OS', 1),
   6222 (2418, 156, 'Oyo', 'OY', 1),
   6223 (2419, 156, 'Plateau', 'PL', 1),
   6224 (2420, 156, 'Rivers', 'RI', 1),
   6225 (2421, 156, 'Sokoto', 'SO', 1),
   6226 (2422, 156, 'Taraba', 'TA', 1),
   6227 (2423, 156, 'Yobe', 'YO', 1),
   6228 (2424, 156, 'Zamfara', 'ZA', 1),
   6229 (2425, 159, 'Northern Islands', 'N', 1),
   6230 (2426, 159, 'Rota', 'R', 1),
   6231 (2427, 159, 'Saipan', 'S', 1),
   6232 (2428, 159, 'Tinian', 'T', 1),
   6233 (2429, 160, 'Akershus', 'AK', 1),
   6234 (2430, 160, 'Aust-Agder', 'AA', 1),
   6235 (2431, 160, 'Buskerud', 'BU', 1),
   6236 (2432, 160, 'Finnmark', 'FM', 1),
   6237 (2433, 160, 'Hedmark', 'HM', 1),
   6238 (2434, 160, 'Hordaland', 'HL', 1),
   6239 (2435, 160, 'More og Romdal', 'MR', 1),
   6240 (2436, 160, 'Nord-Trondelag', 'NT', 1),
   6241 (2437, 160, 'Nordland', 'NL', 1),
   6242 (2438, 160, 'Ostfold', 'OF', 1),
   6243 (2439, 160, 'Oppland', 'OP', 1),
   6244 (2440, 160, 'Oslo', 'OL', 1),
   6245 (2441, 160, 'Rogaland', 'RL', 1),
   6246 (2442, 160, 'Sor-Trondelag', 'ST', 1),
   6247 (2443, 160, 'Sogn og Fjordane', 'SJ', 1),
   6248 (2444, 160, 'Svalbard', 'SV', 1),
   6249 (2445, 160, 'Telemark', 'TM', 1),
   6250 (2446, 160, 'Troms', 'TR', 1),
   6251 (2447, 160, 'Vest-Agder', 'VA', 1),
   6252 (2448, 160, 'Vestfold', 'VF', 1),
   6253 (2449, 161, 'Ad Dakhiliyah', 'DA', 1),
   6254 (2450, 161, 'Al Batinah', 'BA', 1),
   6255 (2451, 161, 'Al Wusta', 'WU', 1),
   6256 (2452, 161, 'Ash Sharqiyah', 'SH', 1),
   6257 (2453, 161, 'Az Zahirah', 'ZA', 1),
   6258 (2454, 161, 'Masqat', 'MA', 1),
   6259 (2455, 161, 'Musandam', 'MU', 1),
   6260 (2456, 161, 'Zufar', 'ZU', 1),
   6261 (2457, 162, 'Balochistan', 'B', 1),
   6262 (2458, 162, 'Federally Administered Tribal Areas', 'T', 1),
   6263 (2459, 162, 'Islamabad Capital Territory', 'I', 1),
   6264 (2460, 162, 'North-West Frontier', 'N', 1),
   6265 (2461, 162, 'Punjab', 'P', 1),
   6266 (2462, 162, 'Sindh', 'S', 1),
   6267 (2463, 163, 'Aimeliik', 'AM', 1),
   6268 (2464, 163, 'Airai', 'AR', 1),
   6269 (2465, 163, 'Angaur', 'AN', 1),
   6270 (2466, 163, 'Hatohobei', 'HA', 1),
   6271 (2467, 163, 'Kayangel', 'KA', 1),
   6272 (2468, 163, 'Koror', 'KO', 1),
   6273 (2469, 163, 'Melekeok', 'ME', 1),
   6274 (2470, 163, 'Ngaraard', 'NA', 1),
   6275 (2471, 163, 'Ngarchelong', 'NG', 1),
   6276 (2472, 163, 'Ngardmau', 'ND', 1),
   6277 (2473, 163, 'Ngatpang', 'NT', 1),
   6278 (2474, 163, 'Ngchesar', 'NC', 1),
   6279 (2475, 163, 'Ngeremlengui', 'NR', 1),
   6280 (2476, 163, 'Ngiwal', 'NW', 1),
   6281 (2477, 163, 'Peleliu', 'PE', 1),
   6282 (2478, 163, 'Sonsorol', 'SO', 1),
   6283 (2479, 164, 'Bocas del Toro', 'BT', 1),
   6284 (2480, 164, 'Chiriqui', 'CH', 1),
   6285 (2481, 164, 'Cocle', 'CC', 1),
   6286 (2482, 164, 'Colon', 'CL', 1),
   6287 (2483, 164, 'Darien', 'DA', 1),
   6288 (2484, 164, 'Herrera', 'HE', 1),
   6289 (2485, 164, 'Los Santos', 'LS', 1),
   6290 (2486, 164, 'Panama', 'PA', 1),
   6291 (2487, 164, 'San Blas', 'SB', 1),
   6292 (2488, 164, 'Veraguas', 'VG', 1),
   6293 (2489, 165, 'Bougainville', 'BV', 1),
   6294 (2490, 165, 'Central', 'CE', 1),
   6295 (2491, 165, 'Chimbu', 'CH', 1),
   6296 (2492, 165, 'Eastern Highlands', 'EH', 1),
   6297 (2493, 165, 'East New Britain', 'EB', 1),
   6298 (2494, 165, 'East Sepik', 'ES', 1),
   6299 (2495, 165, 'Enga', 'EN', 1),
   6300 (2496, 165, 'Gulf', 'GU', 1),
   6301 (2497, 165, 'Madang', 'MD', 1),
   6302 (2498, 165, 'Manus', 'MN', 1),
   6303 (2499, 165, 'Milne Bay', 'MB', 1),
   6304 (2500, 165, 'Morobe', 'MR', 1),
   6305 (2501, 165, 'National Capital', 'NC', 1),
   6306 (2502, 165, 'New Ireland', 'NI', 1),
   6307 (2503, 165, 'Northern', 'NO', 1),
   6308 (2504, 165, 'Sandaun', 'SA', 1),
   6309 (2505, 165, 'Southern Highlands', 'SH', 1),
   6310 (2506, 165, 'Western', 'WE', 1),
   6311 (2507, 165, 'Western Highlands', 'WH', 1),
   6312 (2508, 165, 'West New Britain', 'WB', 1),
   6313 (2509, 166, 'Alto Paraguay', 'AG', 1),
   6314 (2510, 166, 'Alto Parana', 'AN', 1),
   6315 (2511, 166, 'Amambay', 'AM', 1),
   6316 (2512, 166, 'Asuncion', 'AS', 1),
   6317 (2513, 166, 'Boqueron', 'BO', 1),
   6318 (2514, 166, 'Caaguazu', 'CG', 1),
   6319 (2515, 166, 'Caazapa', 'CZ', 1),
   6320 (2516, 166, 'Canindeyu', 'CN', 1),
   6321 (2517, 166, 'Central', 'CE', 1),
   6322 (2518, 166, 'Concepcion', 'CC', 1),
   6323 (2519, 166, 'Cordillera', 'CD', 1),
   6324 (2520, 166, 'Guaira', 'GU', 1),
   6325 (2521, 166, 'Itapua', 'IT', 1),
   6326 (2522, 166, 'Misiones', 'MI', 1),
   6327 (2523, 166, 'Neembucu', 'NE', 1),
   6328 (2524, 166, 'Paraguari', 'PA', 1),
   6329 (2525, 166, 'Presidente Hayes', 'PH', 1),
   6330 (2526, 166, 'San Pedro', 'SP', 1),
   6331 (2527, 167, 'Amazonas', 'AM', 1),
   6332 (2528, 167, 'Ancash', 'AN', 1),
   6333 (2529, 167, 'Apurimac', 'AP', 1),
   6334 (2530, 167, 'Arequipa', 'AR', 1),
   6335 (2531, 167, 'Ayacucho', 'AY', 1),
   6336 (2532, 167, 'Cajamarca', 'CJ', 1),
   6337 (2533, 167, 'Callao', 'CL', 1),
   6338 (2534, 167, 'Cusco', 'CU', 1),
   6339 (2535, 167, 'Huancavelica', 'HV', 1),
   6340 (2536, 167, 'Huanuco', 'HO', 1),
   6341 (2537, 167, 'Ica', 'IC', 1),
   6342 (2538, 167, 'Junin', 'JU', 1),
   6343 (2539, 167, 'La Libertad', 'LD', 1),
   6344 (2540, 167, 'Lambayeque', 'LY', 1),
   6345 (2541, 167, 'Lima', 'LI', 1),
   6346 (2542, 167, 'Loreto', 'LO', 1),
   6347 (2543, 167, 'Madre de Dios', 'MD', 1),
   6348 (2544, 167, 'Moquegua', 'MO', 1),
   6349 (2545, 167, 'Pasco', 'PA', 1),
   6350 (2546, 167, 'Piura', 'PI', 1),
   6351 (2547, 167, 'Puno', 'PU', 1),
   6352 (2548, 167, 'San Martin', 'SM', 1),
   6353 (2549, 167, 'Tacna', 'TA', 1),
   6354 (2550, 167, 'Tumbes', 'TU', 1),
   6355 (2551, 167, 'Ucayali', 'UC', 1),
   6356 (2552, 168, 'Abra', 'ABR', 1),
   6357 (2553, 168, 'Agusan del Norte', 'ANO', 1),
   6358 (2554, 168, 'Agusan del Sur', 'ASU', 1),
   6359 (2555, 168, 'Aklan', 'AKL', 1),
   6360 (2556, 168, 'Albay', 'ALB', 1),
   6361 (2557, 168, 'Antique', 'ANT', 1),
   6362 (2558, 168, 'Apayao', 'APY', 1),
   6363 (2559, 168, 'Aurora', 'AUR', 1),
   6364 (2560, 168, 'Basilan', 'BAS', 1),
   6365 (2561, 168, 'Bataan', 'BTA', 1),
   6366 (2562, 168, 'Batanes', 'BTE', 1),
   6367 (2563, 168, 'Batangas', 'BTG', 1),
   6368 (2564, 168, 'Biliran', 'BLR', 1),
   6369 (2565, 168, 'Benguet', 'BEN', 1),
   6370 (2566, 168, 'Bohol', 'BOL', 1),
   6371 (2567, 168, 'Bukidnon', 'BUK', 1),
   6372 (2568, 168, 'Bulacan', 'BUL', 1),
   6373 (2569, 168, 'Cagayan', 'CAG', 1),
   6374 (2570, 168, 'Camarines Norte', 'CNO', 1),
   6375 (2571, 168, 'Camarines Sur', 'CSU', 1),
   6376 (2572, 168, 'Camiguin', 'CAM', 1),
   6377 (2573, 168, 'Capiz', 'CAP', 1),
   6378 (2574, 168, 'Catanduanes', 'CAT', 1),
   6379 (2575, 168, 'Cavite', 'CAV', 1),
   6380 (2576, 168, 'Cebu', 'CEB', 1),
   6381 (2577, 168, 'Compostela', 'CMP', 1),
   6382 (2578, 168, 'Davao del Norte', 'DNO', 1),
   6383 (2579, 168, 'Davao del Sur', 'DSU', 1),
   6384 (2580, 168, 'Davao Oriental', 'DOR', 1),
   6385 (2581, 168, 'Eastern Samar', 'ESA', 1),
   6386 (2582, 168, 'Guimaras', 'GUI', 1),
   6387 (2583, 168, 'Ifugao', 'IFU', 1),
   6388 (2584, 168, 'Ilocos Norte', 'INO', 1),
   6389 (2585, 168, 'Ilocos Sur', 'ISU', 1),
   6390 (2586, 168, 'Iloilo', 'ILO', 1),
   6391 (2587, 168, 'Isabela', 'ISA', 1),
   6392 (2588, 168, 'Kalinga', 'KAL', 1),
   6393 (2589, 168, 'Laguna', 'LAG', 1),
   6394 (2590, 168, 'Lanao del Norte', 'LNO', 1),
   6395 (2591, 168, 'Lanao del Sur', 'LSU', 1),
   6396 (2592, 168, 'La Union', 'UNI', 1),
   6397 (2593, 168, 'Leyte', 'LEY', 1),
   6398 (2594, 168, 'Maguindanao', 'MAG', 1),
   6399 (2595, 168, 'Marinduque', 'MRN', 1),
   6400 (2596, 168, 'Masbate', 'MSB', 1),
   6401 (2597, 168, 'Mindoro Occidental', 'MIC', 1),
   6402 (2598, 168, 'Mindoro Oriental', 'MIR', 1),
   6403 (2599, 168, 'Misamis Occidental', 'MSC', 1),
   6404 (2600, 168, 'Misamis Oriental', 'MOR', 1),
   6405 (2601, 168, 'Mountain', 'MOP', 1),
   6406 (2602, 168, 'Negros Occidental', 'NOC', 1),
   6407 (2603, 168, 'Negros Oriental', 'NOR', 1),
   6408 (2604, 168, 'North Cotabato', 'NCT', 1),
   6409 (2605, 168, 'Northern Samar', 'NSM', 1),
   6410 (2606, 168, 'Nueva Ecija', 'NEC', 1),
   6411 (2607, 168, 'Nueva Vizcaya', 'NVZ', 1),
   6412 (2608, 168, 'Palawan', 'PLW', 1),
   6413 (2609, 168, 'Pampanga', 'PMP', 1),
   6414 (2610, 168, 'Pangasinan', 'PNG', 1),
   6415 (2611, 168, 'Quezon', 'QZN', 1),
   6416 (2612, 168, 'Quirino', 'QRN', 1),
   6417 (2613, 168, 'Rizal', 'RIZ', 1),
   6418 (2614, 168, 'Romblon', 'ROM', 1),
   6419 (2615, 168, 'Samar', 'SMR', 1),
   6420 (2616, 168, 'Sarangani', 'SRG', 1),
   6421 (2617, 168, 'Siquijor', 'SQJ', 1),
   6422 (2618, 168, 'Sorsogon', 'SRS', 1),
   6423 (2619, 168, 'South Cotabato', 'SCO', 1),
   6424 (2620, 168, 'Southern Leyte', 'SLE', 1),
   6425 (2621, 168, 'Sultan Kudarat', 'SKU', 1),
   6426 (2622, 168, 'Sulu', 'SLU', 1),
   6427 (2623, 168, 'Surigao del Norte', 'SNO', 1),
   6428 (2624, 168, 'Surigao del Sur', 'SSU', 1),
   6429 (2625, 168, 'Tarlac', 'TAR', 1),
   6430 (2626, 168, 'Tawi-Tawi', 'TAW', 1),
   6431 (2627, 168, 'Zambales', 'ZBL', 1),
   6432 (2628, 168, 'Zamboanga del Norte', 'ZNO', 1),
   6433 (2629, 168, 'Zamboanga del Sur', 'ZSU', 1),
   6434 (2630, 168, 'Zamboanga Sibugay', 'ZSI', 1),
   6435 (2631, 170, 'Dolnoslaskie', 'DO', 1),
   6436 (2632, 170, 'Kujawsko-Pomorskie', 'KP', 1),
   6437 (2633, 170, 'Lodzkie', 'LO', 1),
   6438 (2634, 170, 'Lubelskie', 'LL', 1),
   6439 (2635, 170, 'Lubuskie', 'LU', 1),
   6440 (2636, 170, 'Malopolskie', 'ML', 1),
   6441 (2637, 170, 'Mazowieckie', 'MZ', 1),
   6442 (2638, 170, 'Opolskie', 'OP', 1),
   6443 (2639, 170, 'Podkarpackie', 'PP', 1),
   6444 (2640, 170, 'Podlaskie', 'PL', 1),
   6445 (2641, 170, 'Pomorskie', 'PM', 1),
   6446 (2642, 170, 'Slaskie', 'SL', 1),
   6447 (2643, 170, 'Swietokrzyskie', 'SW', 1),
   6448 (2644, 170, 'Warminsko-Mazurskie', 'WM', 1),
   6449 (2645, 170, 'Wielkopolskie', 'WP', 1),
   6450 (2646, 170, 'Zachodniopomorskie', 'ZA', 1),
   6451 (2647, 198, 'Saint Pierre', 'P', 1),
   6452 (2648, 198, 'Miquelon', 'M', 1),
   6453 (2649, 171, 'Açores', 'AC', 1),
   6454 (2650, 171, 'Aveiro', 'AV', 1),
   6455 (2651, 171, 'Beja', 'BE', 1),
   6456 (2652, 171, 'Braga', 'BR', 1),
   6457 (2653, 171, 'Bragança', 'BA', 1),
   6458 (2654, 171, 'Castelo Branco', 'CB', 1),
   6459 (2655, 171, 'Coimbra', 'CO', 1),
   6460 (2656, 171, 'Évora', 'EV', 1),
   6461 (2657, 171, 'Faro', 'FA', 1),
   6462 (2658, 171, 'Guarda', 'GU', 1),
   6463 (2659, 171, 'Leiria', 'LE', 1),
   6464 (2660, 171, 'Lisboa', 'LI', 1),
   6465 (2661, 171, 'Madeira', 'ME', 1),
   6466 (2662, 171, 'Portalegre', 'PO', 1),
   6467 (2663, 171, 'Porto', 'PR', 1),
   6468 (2664, 171, 'Santarém', 'SA', 1),
   6469 (2665, 171, 'Setúbal', 'SE', 1),
   6470 (2666, 171, 'Viana do Castelo', 'VC', 1),
   6471 (2667, 171, 'Vila Real', 'VR', 1),
   6472 (2668, 171, 'Viseu', 'VI', 1),
   6473 (2669, 173, 'Ad Dawhah', 'DW', 1),
   6474 (2670, 173, 'Al Ghuwayriyah', 'GW', 1),
   6475 (2671, 173, 'Al Jumayliyah', 'JM', 1),
   6476 (2672, 173, 'Al Khawr', 'KR', 1),
   6477 (2673, 173, 'Al Wakrah', 'WK', 1),
   6478 (2674, 173, 'Ar Rayyan', 'RN', 1),
   6479 (2675, 173, 'Jarayan al Batinah', 'JB', 1),
   6480 (2676, 173, 'Madinat ash Shamal', 'MS', 1),
   6481 (2677, 173, 'Umm Sa''id', 'UD', 1),
   6482 (2678, 173, 'Umm Salal', 'UL', 1),
   6483 (2679, 175, 'Alba', 'AB', 1),
   6484 (2680, 175, 'Arad', 'AR', 1),
   6485 (2681, 175, 'Arges', 'AG', 1),
   6486 (2682, 175, 'Bacau', 'BC', 1),
   6487 (2683, 175, 'Bihor', 'BH', 1),
   6488 (2684, 175, 'Bistrita-Nasaud', 'BN', 1),
   6489 (2685, 175, 'Botosani', 'BT', 1),
   6490 (2686, 175, 'Brasov', 'BV', 1),
   6491 (2687, 175, 'Braila', 'BR', 1),
   6492 (2688, 175, 'Bucuresti', 'B', 1),
   6493 (2689, 175, 'Buzau', 'BZ', 1),
   6494 (2690, 175, 'Caras-Severin', 'CS', 1),
   6495 (2691, 175, 'Calarasi', 'CL', 1),
   6496 (2692, 175, 'Cluj', 'CJ', 1),
   6497 (2693, 175, 'Constanta', 'CT', 1),
   6498 (2694, 175, 'Covasna', 'CV', 1),
   6499 (2695, 175, 'Dimbovita', 'DB', 1),
   6500 (2696, 175, 'Dolj', 'DJ', 1),
   6501 (2697, 175, 'Galati', 'GL', 1),
   6502 (2698, 175, 'Giurgiu', 'GR', 1),
   6503 (2699, 175, 'Gorj', 'GJ', 1),
   6504 (2700, 175, 'Harghita', 'HR', 1),
   6505 (2701, 175, 'Hunedoara', 'HD', 1),
   6506 (2702, 175, 'Ialomita', 'IL', 1),
   6507 (2703, 175, 'Iasi', 'IS', 1),
   6508 (2704, 175, 'Ilfov', 'IF', 1),
   6509 (2705, 175, 'Maramures', 'MM', 1),
   6510 (2706, 175, 'Mehedinti', 'MH', 1),
   6511 (2707, 175, 'Mures', 'MS', 1),
   6512 (2708, 175, 'Neamt', 'NT', 1),
   6513 (2709, 175, 'Olt', 'OT', 1),
   6514 (2710, 175, 'Prahova', 'PH', 1),
   6515 (2711, 175, 'Satu-Mare', 'SM', 1),
   6516 (2712, 175, 'Salaj', 'SJ', 1),
   6517 (2713, 175, 'Sibiu', 'SB', 1),
   6518 (2714, 175, 'Suceava', 'SV', 1),
   6519 (2715, 175, 'Teleorman', 'TR', 1),
   6520 (2716, 175, 'Timis', 'TM', 1),
   6521 (2717, 175, 'Tulcea', 'TL', 1),
   6522 (2718, 175, 'Vaslui', 'VS', 1),
   6523 (2719, 175, 'Valcea', 'VL', 1),
   6524 (2720, 175, 'Vrancea', 'VN', 1),
   6525 (2721, 176, 'Abakan', 'AB', 1),
   6526 (2722, 176, 'Aginskoye', 'AG', 1),
   6527 (2723, 176, 'Anadyr', 'AN', 1),
   6528 (2724, 176, 'Arkahangelsk', 'AR', 1),
   6529 (2725, 176, 'Astrakhan', 'AS', 1),
   6530 (2726, 176, 'Barnaul', 'BA', 1),
   6531 (2727, 176, 'Belgorod', 'BE', 1),
   6532 (2728, 176, 'Birobidzhan', 'BI', 1),
   6533 (2729, 176, 'Blagoveshchensk', 'BL', 1),
   6534 (2730, 176, 'Bryansk', 'BR', 1),
   6535 (2731, 176, 'Cheboksary', 'CH', 1),
   6536 (2732, 176, 'Chelyabinsk', 'CL', 1),
   6537 (2733, 176, 'Cherkessk', 'CR', 1),
   6538 (2734, 176, 'Chita', 'CI', 1),
   6539 (2735, 176, 'Dudinka', 'DU', 1),
   6540 (2736, 176, 'Elista', 'EL', 1),
   6541 (2738, 176, 'Gorno-Altaysk', 'GA', 1),
   6542 (2739, 176, 'Groznyy', 'GR', 1),
   6543 (2740, 176, 'Irkutsk', 'IR', 1),
   6544 (2741, 176, 'Ivanovo', 'IV', 1),
   6545 (2742, 176, 'Izhevsk', 'IZ', 1),
   6546 (2743, 176, 'Kalinigrad', 'KA', 1),
   6547 (2744, 176, 'Kaluga', 'KL', 1),
   6548 (2745, 176, 'Kasnodar', 'KS', 1),
   6549 (2746, 176, 'Kazan', 'KZ', 1),
   6550 (2747, 176, 'Kemerovo', 'KE', 1),
   6551 (2748, 176, 'Khabarovsk', 'KH', 1),
   6552 (2749, 176, 'Khanty-Mansiysk', 'KM', 1),
   6553 (2750, 176, 'Kostroma', 'KO', 1),
   6554 (2751, 176, 'Krasnodar', 'KR', 1),
   6555 (2752, 176, 'Krasnoyarsk', 'KN', 1),
   6556 (2753, 176, 'Kudymkar', 'KU', 1),
   6557 (2754, 176, 'Kurgan', 'KG', 1),
   6558 (2755, 176, 'Kursk', 'KK', 1),
   6559 (2756, 176, 'Kyzyl', 'KY', 1),
   6560 (2757, 176, 'Lipetsk', 'LI', 1),
   6561 (2758, 176, 'Magadan', 'MA', 1),
   6562 (2759, 176, 'Makhachkala', 'MK', 1),
   6563 (2760, 176, 'Maykop', 'MY', 1),
   6564 (2761, 176, 'Moscow', 'MO', 1),
   6565 (2762, 176, 'Murmansk', 'MU', 1),
   6566 (2763, 176, 'Nalchik', 'NA', 1),
   6567 (2764, 176, 'Naryan Mar', 'NR', 1),
   6568 (2765, 176, 'Nazran', 'NZ', 1),
   6569 (2766, 176, 'Nizhniy Novgorod', 'NI', 1),
   6570 (2767, 176, 'Novgorod', 'NO', 1),
   6571 (2768, 176, 'Novosibirsk', 'NV', 1),
   6572 (2769, 176, 'Omsk', 'OM', 1),
   6573 (2770, 176, 'Orel', 'OR', 1),
   6574 (2771, 176, 'Orenburg', 'OE', 1),
   6575 (2772, 176, 'Palana', 'PA', 1),
   6576 (2773, 176, 'Penza', 'PE', 1),
   6577 (2774, 176, 'Perm', 'PR', 1),
   6578 (2775, 176, 'Petropavlovsk-Kamchatskiy', 'PK', 1),
   6579 (2776, 176, 'Petrozavodsk', 'PT', 1),
   6580 (2777, 176, 'Pskov', 'PS', 1),
   6581 (2778, 176, 'Rostov-na-Donu', 'RO', 1),
   6582 (2779, 176, 'Ryazan', 'RY', 1),
   6583 (2780, 176, 'Salekhard', 'SL', 1),
   6584 (2781, 176, 'Samara', 'SA', 1),
   6585 (2782, 176, 'Saransk', 'SR', 1),
   6586 (2783, 176, 'Saratov', 'SV', 1),
   6587 (2784, 176, 'Smolensk', 'SM', 1),
   6588 (2785, 176, 'St. Petersburg', 'SP', 1),
   6589 (2786, 176, 'Stavropol', 'ST', 1),
   6590 (2787, 176, 'Syktyvkar', 'SY', 1),
   6591 (2788, 176, 'Tambov', 'TA', 1),
   6592 (2789, 176, 'Tomsk', 'TO', 1),
   6593 (2790, 176, 'Tula', 'TU', 1),
   6594 (2791, 176, 'Tura', 'TR', 1),
   6595 (2792, 176, 'Tver', 'TV', 1),
   6596 (2793, 176, 'Tyumen', 'TY', 1),
   6597 (2794, 176, 'Ufa', 'UF', 1),
   6598 (2795, 176, 'Ul''yanovsk', 'UL', 1),
   6599 (2796, 176, 'Ulan-Ude', 'UU', 1),
   6600 (2797, 176, 'Ust''-Ordynskiy', 'US', 1),
   6601 (2798, 176, 'Vladikavkaz', 'VL', 1),
   6602 (2799, 176, 'Vladimir', 'VA', 1),
   6603 (2800, 176, 'Vladivostok', 'VV', 1),
   6604 (2801, 176, 'Volgograd', 'VG', 1),
   6605 (2802, 176, 'Vologda', 'VD', 1),
   6606 (2803, 176, 'Voronezh', 'VO', 1),
   6607 (2804, 176, 'Vyatka', 'VY', 1),
   6608 (2805, 176, 'Yakutsk', 'YA', 1),
   6609 (2806, 176, 'Yaroslavl', 'YR', 1),
   6610 (2807, 176, 'Yekaterinburg', 'YE', 1),
   6611 (2808, 176, 'Yoshkar-Ola', 'YO', 1),
   6612 (2809, 177, 'Butare', 'BU', 1),
   6613 (2810, 177, 'Byumba', 'BY', 1),
   6614 (2811, 177, 'Cyangugu', 'CY', 1),
   6615 (2812, 177, 'Gikongoro', 'GK', 1),
   6616 (2813, 177, 'Gisenyi', 'GS', 1),
   6617 (2814, 177, 'Gitarama', 'GT', 1),
   6618 (2815, 177, 'Kibungo', 'KG', 1),
   6619 (2816, 177, 'Kibuye', 'KY', 1),
   6620 (2817, 177, 'Kigali Rurale', 'KR', 1),
   6621 (2818, 177, 'Kigali-ville', 'KV', 1),
   6622 (2819, 177, 'Ruhengeri', 'RU', 1),
   6623 (2820, 177, 'Umutara', 'UM', 1),
   6624 (2821, 178, 'Christ Church Nichola Town', 'CCN', 1),
   6625 (2822, 178, 'Saint Anne Sandy Point', 'SAS', 1),
   6626 (2823, 178, 'Saint George Basseterre', 'SGB', 1),
   6627 (2824, 178, 'Saint George Gingerland', 'SGG', 1),
   6628 (2825, 178, 'Saint James Windward', 'SJW', 1),
   6629 (2826, 178, 'Saint John Capesterre', 'SJC', 1),
   6630 (2827, 178, 'Saint John Figtree', 'SJF', 1),
   6631 (2828, 178, 'Saint Mary Cayon', 'SMC', 1),
   6632 (2829, 178, 'Saint Paul Capesterre', 'CAP', 1),
   6633 (2830, 178, 'Saint Paul Charlestown', 'CHA', 1),
   6634 (2831, 178, 'Saint Peter Basseterre', 'SPB', 1),
   6635 (2832, 178, 'Saint Thomas Lowland', 'STL', 1),
   6636 (2833, 178, 'Saint Thomas Middle Island', 'STM', 1),
   6637 (2834, 178, 'Trinity Palmetto Point', 'TPP', 1),
   6638 (2835, 179, 'Anse-la-Raye', 'AR', 1),
   6639 (2836, 179, 'Castries', 'CA', 1),
   6640 (2837, 179, 'Choiseul', 'CH', 1),
   6641 (2838, 179, 'Dauphin', 'DA', 1),
   6642 (2839, 179, 'Dennery', 'DE', 1),
   6643 (2840, 179, 'Gros-Islet', 'GI', 1),
   6644 (2841, 179, 'Laborie', 'LA', 1),
   6645 (2842, 179, 'Micoud', 'MI', 1),
   6646 (2843, 179, 'Praslin', 'PR', 1),
   6647 (2844, 179, 'Soufriere', 'SO', 1),
   6648 (2845, 179, 'Vieux-Fort', 'VF', 1),
   6649 (2846, 180, 'Charlotte', 'C', 1),
   6650 (2847, 180, 'Grenadines', 'R', 1),
   6651 (2848, 180, 'Saint Andrew', 'A', 1),
   6652 (2849, 180, 'Saint David', 'D', 1),
   6653 (2850, 180, 'Saint George', 'G', 1),
   6654 (2851, 180, 'Saint Patrick', 'P', 1),
   6655 (2852, 181, 'A''ana', 'AN', 1),
   6656 (2853, 181, 'Aiga-i-le-Tai', 'AI', 1),
   6657 (2854, 181, 'Atua', 'AT', 1),
   6658 (2855, 181, 'Fa''asaleleaga', 'FA', 1),
   6659 (2856, 181, 'Gaga''emauga', 'GE', 1),
   6660 (2857, 181, 'Gagaifomauga', 'GF', 1),
   6661 (2858, 181, 'Palauli', 'PA', 1),
   6662 (2859, 181, 'Satupa''itea', 'SA', 1),
   6663 (2860, 181, 'Tuamasaga', 'TU', 1),
   6664 (2861, 181, 'Va''a-o-Fonoti', 'VF', 1),
   6665 (2862, 181, 'Vaisigano', 'VS', 1),
   6666 (2863, 182, 'Acquaviva', 'AC', 1),
   6667 (2864, 182, 'Borgo Maggiore', 'BM', 1),
   6668 (2865, 182, 'Chiesanuova', 'CH', 1),
   6669 (2866, 182, 'Domagnano', 'DO', 1),
   6670 (2867, 182, 'Faetano', 'FA', 1),
   6671 (2868, 182, 'Fiorentino', 'FI', 1),
   6672 (2869, 182, 'Montegiardino', 'MO', 1),
   6673 (2870, 182, 'Citta di San Marino', 'SM', 1),
   6674 (2871, 182, 'Serravalle', 'SE', 1),
   6675 (2872, 183, 'Sao Tome', 'S', 1),
   6676 (2873, 183, 'Principe', 'P', 1),
   6677 (2874, 184, 'Al Bahah', 'BH', 1),
   6678 (2875, 184, 'Al Hudud ash Shamaliyah', 'HS', 1),
   6679 (2876, 184, 'Al Jawf', 'JF', 1),
   6680 (2877, 184, 'Al Madinah', 'MD', 1),
   6681 (2878, 184, 'Al Qasim', 'QS', 1),
   6682 (2879, 184, 'Ar Riyad', 'RD', 1),
   6683 (2880, 184, 'Ash Sharqiyah (Eastern)', 'AQ', 1),
   6684 (2881, 184, '''Asir', 'AS', 1),
   6685 (2882, 184, 'Ha''il', 'HL', 1),
   6686 (2883, 184, 'Jizan', 'JZ', 1),
   6687 (2884, 184, 'Makkah', 'ML', 1),
   6688 (2885, 184, 'Najran', 'NR', 1),
   6689 (2886, 184, 'Tabuk', 'TB', 1),
   6690 (2887, 185, 'Dakar', 'DA', 1),
   6691 (2888, 185, 'Diourbel', 'DI', 1),
   6692 (2889, 185, 'Fatick', 'FA', 1),
   6693 (2890, 185, 'Kaolack', 'KA', 1),
   6694 (2891, 185, 'Kolda', 'KO', 1),
   6695 (2892, 185, 'Louga', 'LO', 1),
   6696 (2893, 185, 'Matam', 'MA', 1),
   6697 (2894, 185, 'Saint-Louis', 'SL', 1),
   6698 (2895, 185, 'Tambacounda', 'TA', 1),
   6699 (2896, 185, 'Thies', 'TH', 1),
   6700 (2897, 185, 'Ziguinchor', 'ZI', 1),
   6701 (2898, 186, 'Anse aux Pins', 'AP', 1),
   6702 (2899, 186, 'Anse Boileau', 'AB', 1),
   6703 (2900, 186, 'Anse Etoile', 'AE', 1),
   6704 (2901, 186, 'Anse Louis', 'AL', 1),
   6705 (2902, 186, 'Anse Royale', 'AR', 1),
   6706 (2903, 186, 'Baie Lazare', 'BL', 1),
   6707 (2904, 186, 'Baie Sainte Anne', 'BS', 1),
   6708 (2905, 186, 'Beau Vallon', 'BV', 1),
   6709 (2906, 186, 'Bel Air', 'BA', 1),
   6710 (2907, 186, 'Bel Ombre', 'BO', 1),
   6711 (2908, 186, 'Cascade', 'CA', 1),
   6712 (2909, 186, 'Glacis', 'GL', 1),
   6713 (2910, 186, 'Grand'' Anse (on Mahe)', 'GM', 1),
   6714 (2911, 186, 'Grand'' Anse (on Praslin)', 'GP', 1),
   6715 (2912, 186, 'La Digue', 'DG', 1),
   6716 (2913, 186, 'La Riviere Anglaise', 'RA', 1),
   6717 (2914, 186, 'Mont Buxton', 'MB', 1),
   6718 (2915, 186, 'Mont Fleuri', 'MF', 1),
   6719 (2916, 186, 'Plaisance', 'PL', 1),
   6720 (2917, 186, 'Pointe La Rue', 'PR', 1),
   6721 (2918, 186, 'Port Glaud', 'PG', 1),
   6722 (2919, 186, 'Saint Louis', 'SL', 1),
   6723 (2920, 186, 'Takamaka', 'TA', 1),
   6724 (2921, 187, 'Eastern', 'E', 1),
   6725 (2922, 187, 'Northern', 'N', 1),
   6726 (2923, 187, 'Southern', 'S', 1),
   6727 (2924, 187, 'Western', 'W', 1),
   6728 (2925, 189, 'Banskobystrický', 'BA', 1),
   6729 (2926, 189, 'Bratislavský', 'BR', 1),
   6730 (2927, 189, 'Košický', 'KO', 1),
   6731 (2928, 189, 'Nitriansky', 'NI', 1),
   6732 (2929, 189, 'Prešovský', 'PR', 1),
   6733 (2930, 189, 'Trenčiansky', 'TC', 1),
   6734 (2931, 189, 'Trnavský', 'TV', 1),
   6735 (2932, 189, 'Žilinský', 'ZI', 1),
   6736 (2933, 191, 'Central', 'CE', 1),
   6737 (2934, 191, 'Choiseul', 'CH', 1),
   6738 (2935, 191, 'Guadalcanal', 'GC', 1),
   6739 (2936, 191, 'Honiara', 'HO', 1),
   6740 (2937, 191, 'Isabel', 'IS', 1),
   6741 (2938, 191, 'Makira', 'MK', 1),
   6742 (2939, 191, 'Malaita', 'ML', 1),
   6743 (2940, 191, 'Rennell and Bellona', 'RB', 1),
   6744 (2941, 191, 'Temotu', 'TM', 1),
   6745 (2942, 191, 'Western', 'WE', 1),
   6746 (2943, 192, 'Awdal', 'AW', 1),
   6747 (2944, 192, 'Bakool', 'BK', 1),
   6748 (2945, 192, 'Banaadir', 'BN', 1),
   6749 (2946, 192, 'Bari', 'BR', 1),
   6750 (2947, 192, 'Bay', 'BY', 1),
   6751 (2948, 192, 'Galguduud', 'GA', 1),
   6752 (2949, 192, 'Gedo', 'GE', 1),
   6753 (2950, 192, 'Hiiraan', 'HI', 1),
   6754 (2951, 192, 'Jubbada Dhexe', 'JD', 1),
   6755 (2952, 192, 'Jubbada Hoose', 'JH', 1),
   6756 (2953, 192, 'Mudug', 'MU', 1),
   6757 (2954, 192, 'Nugaal', 'NU', 1),
   6758 (2955, 192, 'Sanaag', 'SA', 1),
   6759 (2956, 192, 'Shabeellaha Dhexe', 'SD', 1),
   6760 (2957, 192, 'Shabeellaha Hoose', 'SH', 1),
   6761 (2958, 192, 'Sool', 'SL', 1),
   6762 (2959, 192, 'Togdheer', 'TO', 1),
   6763 (2960, 192, 'Woqooyi Galbeed', 'WG', 1),
   6764 (2961, 193, 'Eastern Cape', 'EC', 1),
   6765 (2962, 193, 'Free State', 'FS', 1),
   6766 (2963, 193, 'Gauteng', 'GT', 1),
   6767 (2964, 193, 'KwaZulu-Natal', 'KN', 1),
   6768 (2965, 193, 'Limpopo', 'LP', 1),
   6769 (2966, 193, 'Mpumalanga', 'MP', 1),
   6770 (2967, 193, 'North West', 'NW', 1),
   6771 (2968, 193, 'Northern Cape', 'NC', 1),
   6772 (2969, 193, 'Western Cape', 'WC', 1),
   6773 (2970, 195, 'La Coruña', 'CA', 1),
   6774 (2971, 195, 'Álava', 'AL', 1),
   6775 (2972, 195, 'Albacete', 'AB', 1),
   6776 (2973, 195, 'Alicante', 'AC', 1),
   6777 (2974, 195, 'Almeria', 'AM', 1),
   6778 (2975, 195, 'Asturias', 'AS', 1),
   6779 (2976, 195, 'Ávila', 'AV', 1),
   6780 (2977, 195, 'Badajoz', 'BJ', 1),
   6781 (2978, 195, 'Baleares', 'IB', 1),
   6782 (2979, 195, 'Barcelona', 'BA', 1),
   6783 (2980, 195, 'Burgos', 'BU', 1),
   6784 (2981, 195, 'Cáceres', 'CC', 1),
   6785 (2982, 195, 'Cádiz', 'CZ', 1),
   6786 (2983, 195, 'Cantabria', 'CT', 1),
   6787 (2984, 195, 'Castellón', 'CL', 1),
   6788 (2985, 195, 'Ceuta', 'CE', 1),
   6789 (2986, 195, 'Ciudad Real', 'CR', 1),
   6790 (2987, 195, 'Córdoba', 'CD', 1),
   6791 (2988, 195, 'Cuenca', 'CU', 1),
   6792 (2989, 195, 'Girona', 'GI', 1),
   6793 (2990, 195, 'Granada', 'GD', 1),
   6794 (2991, 195, 'Guadalajara', 'GJ', 1),
   6795 (2992, 195, 'Guipúzcoa', 'GP', 1),
   6796 (2993, 195, 'Huelva', 'HL', 1),
   6797 (2994, 195, 'Huesca', 'HS', 1),
   6798 (2995, 195, 'Jaén', 'JN', 1),
   6799 (2996, 195, 'La Rioja', 'RJ', 1),
   6800 (2997, 195, 'Las Palmas', 'PM', 1),
   6801 (2998, 195, 'Leon', 'LE', 1),
   6802 (2999, 195, 'Lleida', 'LL', 1),
   6803 (3000, 195, 'Lugo', 'LG', 1),
   6804 (3001, 195, 'Madrid', 'MD', 1),
   6805 (3002, 195, 'Malaga', 'MA', 1),
   6806 (3003, 195, 'Melilla', 'ML', 1),
   6807 (3004, 195, 'Murcia', 'MU', 1),
   6808 (3005, 195, 'Navarra', 'NV', 1),
   6809 (3006, 195, 'Ourense', 'OU', 1),
   6810 (3007, 195, 'Palencia', 'PL', 1),
   6811 (3008, 195, 'Pontevedra', 'PO', 1),
   6812 (3009, 195, 'Salamanca', 'SL', 1),
   6813 (3010, 195, 'Santa Cruz de Tenerife', 'SC', 1),
   6814 (3011, 195, 'Segovia', 'SG', 1),
   6815 (3012, 195, 'Sevilla', 'SV', 1),
   6816 (3013, 195, 'Soria', 'SO', 1),
   6817 (3014, 195, 'Tarragona', 'TA', 1),
   6818 (3015, 195, 'Teruel', 'TE', 1),
   6819 (3016, 195, 'Toledo', 'TO', 1),
   6820 (3017, 195, 'Valencia', 'VC', 1),
   6821 (3018, 195, 'Valladolid', 'VD', 1),
   6822 (3019, 195, 'Vizcaya', 'VZ', 1),
   6823 (3020, 195, 'Zamora', 'ZM', 1),
   6824 (3021, 195, 'Zaragoza', 'ZR', 1),
   6825 (3022, 196, 'Central', 'CE', 1),
   6826 (3023, 196, 'Eastern', 'EA', 1),
   6827 (3024, 196, 'North Central', 'NC', 1),
   6828 (3025, 196, 'Northern', 'NO', 1),
   6829 (3026, 196, 'North Western', 'NW', 1),
   6830 (3027, 196, 'Sabaragamuwa', 'SA', 1),
   6831 (3028, 196, 'Southern', 'SO', 1),
   6832 (3029, 196, 'Uva', 'UV', 1),
   6833 (3030, 196, 'Western', 'WE', 1),
   6834 (3032, 197, 'Saint Helena', 'S', 1),
   6835 (3034, 199, 'A''ali an Nil', 'ANL', 1),
   6836 (3035, 199, 'Al Bahr al Ahmar', 'BAM', 1),
   6837 (3036, 199, 'Al Buhayrat', 'BRT', 1),
   6838 (3037, 199, 'Al Jazirah', 'JZR', 1),
   6839 (3038, 199, 'Al Khartum', 'KRT', 1),
   6840 (3039, 199, 'Al Qadarif', 'QDR', 1),
   6841 (3040, 199, 'Al Wahdah', 'WDH', 1),
   6842 (3041, 199, 'An Nil al Abyad', 'ANB', 1),
   6843 (3042, 199, 'An Nil al Azraq', 'ANZ', 1),
   6844 (3043, 199, 'Ash Shamaliyah', 'ASH', 1),
   6845 (3044, 199, 'Bahr al Jabal', 'BJA', 1),
   6846 (3045, 199, 'Gharb al Istiwa''iyah', 'GIS', 1),
   6847 (3046, 199, 'Gharb Bahr al Ghazal', 'GBG', 1),
   6848 (3047, 199, 'Gharb Darfur', 'GDA', 1),
   6849 (3048, 199, 'Gharb Kurdufan', 'GKU', 1),
   6850 (3049, 199, 'Janub Darfur', 'JDA', 1),
   6851 (3050, 199, 'Janub Kurdufan', 'JKU', 1),
   6852 (3051, 199, 'Junqali', 'JQL', 1),
   6853 (3052, 199, 'Kassala', 'KSL', 1),
   6854 (3053, 199, 'Nahr an Nil', 'NNL', 1),
   6855 (3054, 199, 'Shamal Bahr al Ghazal', 'SBG', 1),
   6856 (3055, 199, 'Shamal Darfur', 'SDA', 1),
   6857 (3056, 199, 'Shamal Kurdufan', 'SKU', 1),
   6858 (3057, 199, 'Sharq al Istiwa''iyah', 'SIS', 1),
   6859 (3058, 199, 'Sinnar', 'SNR', 1),
   6860 (3059, 199, 'Warab', 'WRB', 1),
   6861 (3060, 200, 'Brokopondo', 'BR', 1),
   6862 (3061, 200, 'Commewijne', 'CM', 1),
   6863 (3062, 200, 'Coronie', 'CR', 1),
   6864 (3063, 200, 'Marowijne', 'MA', 1),
   6865 (3064, 200, 'Nickerie', 'NI', 1),
   6866 (3065, 200, 'Para', 'PA', 1),
   6867 (3066, 200, 'Paramaribo', 'PM', 1),
   6868 (3067, 200, 'Saramacca', 'SA', 1),
   6869 (3068, 200, 'Sipaliwini', 'SI', 1),
   6870 (3069, 200, 'Wanica', 'WA', 1),
   6871 (3070, 202, 'Hhohho', 'H', 1),
   6872 (3071, 202, 'Lubombo', 'L', 1),
   6873 (3072, 202, 'Manzini', 'M', 1),
   6874 (3073, 202, 'Shishelweni', 'S', 1),
   6875 (3074, 203, 'Blekinge', 'K', 1),
   6876 (3075, 203, 'Dalarna', 'W', 1),
   6877 (3076, 203, 'Gävleborg', 'X', 1),
   6878 (3077, 203, 'Gotland', 'I', 1),
   6879 (3078, 203, 'Halland', 'N', 1),
   6880 (3079, 203, 'Jämtland', 'Z', 1),
   6881 (3080, 203, 'Jönköping', 'F', 1),
   6882 (3081, 203, 'Kalmar', 'H', 1),
   6883 (3082, 203, 'Kronoberg', 'G', 1),
   6884 (3083, 203, 'Norrbotten', 'BD', 1),
   6885 (3084, 203, 'Örebro', 'T', 1),
   6886 (3085, 203, 'Östergötland', 'E', 1),
   6887 (3086, 203, 'Skåne', 'M', 1),
   6888 (3087, 203, 'Södermanland', 'D', 1),
   6889 (3088, 203, 'Stockholm', 'AB', 1),
   6890 (3089, 203, 'Uppsala', 'C', 1),
   6891 (3090, 203, 'Värmland', 'S', 1),
   6892 (3091, 203, 'Västerbotten', 'AC', 1),
   6893 (3092, 203, 'Västernorrland', 'Y', 1);
   6894 INSERT INTO `oc_zone` (`zone_id`, `country_id`, `name`, `code`, `status`) VALUES
   6895 (3093, 203, 'Västmanland', 'U', 1),
   6896 (3094, 203, 'Västra Götaland', 'O', 1),
   6897 (3095, 204, 'Aargau', 'AG', 1),
   6898 (3096, 204, 'Appenzell Ausserrhoden', 'AR', 1),
   6899 (3097, 204, 'Appenzell Innerrhoden', 'AI', 1),
   6900 (3098, 204, 'Basel-Stadt', 'BS', 1),
   6901 (3099, 204, 'Basel-Landschaft', 'BL', 1),
   6902 (3100, 204, 'Bern', 'BE', 1),
   6903 (3101, 204, 'Fribourg', 'FR', 1),
   6904 (3102, 204, 'Genève', 'GE', 1),
   6905 (3103, 204, 'Glarus', 'GL', 1),
   6906 (3104, 204, 'Graubünden', 'GR', 1),
   6907 (3105, 204, 'Jura', 'JU', 1),
   6908 (3106, 204, 'Luzern', 'LU', 1),
   6909 (3107, 204, 'Neuchâtel', 'NE', 1),
   6910 (3108, 204, 'Nidwald', 'NW', 1),
   6911 (3109, 204, 'Obwald', 'OW', 1),
   6912 (3110, 204, 'St. Gallen', 'SG', 1),
   6913 (3111, 204, 'Schaffhausen', 'SH', 1),
   6914 (3112, 204, 'Schwyz', 'SZ', 1),
   6915 (3113, 204, 'Solothurn', 'SO', 1),
   6916 (3114, 204, 'Thurgau', 'TG', 1),
   6917 (3115, 204, 'Ticino', 'TI', 1),
   6918 (3116, 204, 'Uri', 'UR', 1),
   6919 (3117, 204, 'Valais', 'VS', 1),
   6920 (3118, 204, 'Vaud', 'VD', 1),
   6921 (3119, 204, 'Zug', 'ZG', 1),
   6922 (3120, 204, 'Zürich', 'ZH', 1),
   6923 (3121, 205, 'Al Hasakah', 'HA', 1),
   6924 (3122, 205, 'Al Ladhiqiyah', 'LA', 1),
   6925 (3123, 205, 'Al Qunaytirah', 'QU', 1),
   6926 (3124, 205, 'Ar Raqqah', 'RQ', 1),
   6927 (3125, 205, 'As Suwayda', 'SU', 1),
   6928 (3126, 205, 'Dara', 'DA', 1),
   6929 (3127, 205, 'Dayr az Zawr', 'DZ', 1),
   6930 (3128, 205, 'Dimashq', 'DI', 1),
   6931 (3129, 205, 'Halab', 'HL', 1),
   6932 (3130, 205, 'Hamah', 'HM', 1),
   6933 (3131, 205, 'Hims', 'HI', 1),
   6934 (3132, 205, 'Idlib', 'ID', 1),
   6935 (3133, 205, 'Rif Dimashq', 'RD', 1),
   6936 (3134, 205, 'Tartus', 'TA', 1),
   6937 (3135, 206, 'Chang-hua', 'CH', 1),
   6938 (3136, 206, 'Chia-i', 'CI', 1),
   6939 (3137, 206, 'Hsin-chu', 'HS', 1),
   6940 (3138, 206, 'Hua-lien', 'HL', 1),
   6941 (3139, 206, 'I-lan', 'IL', 1),
   6942 (3140, 206, 'Kao-hsiung county', 'KH', 1),
   6943 (3141, 206, 'Kin-men', 'KM', 1),
   6944 (3142, 206, 'Lien-chiang', 'LC', 1),
   6945 (3143, 206, 'Miao-li', 'ML', 1),
   6946 (3144, 206, 'Nan-t''ou', 'NT', 1),
   6947 (3145, 206, 'P''eng-hu', 'PH', 1),
   6948 (3146, 206, 'P''ing-tung', 'PT', 1),
   6949 (3147, 206, 'T''ai-chung', 'TG', 1),
   6950 (3148, 206, 'T''ai-nan', 'TA', 1),
   6951 (3149, 206, 'T''ai-pei county', 'TP', 1),
   6952 (3150, 206, 'T''ai-tung', 'TT', 1),
   6953 (3151, 206, 'T''ao-yuan', 'TY', 1),
   6954 (3152, 206, 'Yun-lin', 'YL', 1),
   6955 (3153, 206, 'Chia-i city', 'CC', 1),
   6956 (3154, 206, 'Chi-lung', 'CL', 1),
   6957 (3155, 206, 'Hsin-chu', 'HC', 1),
   6958 (3156, 206, 'T''ai-chung', 'TH', 1),
   6959 (3157, 206, 'T''ai-nan', 'TN', 1),
   6960 (3158, 206, 'Kao-hsiung city', 'KC', 1),
   6961 (3159, 206, 'T''ai-pei city', 'TC', 1),
   6962 (3160, 207, 'Gorno-Badakhstan', 'GB', 1),
   6963 (3161, 207, 'Khatlon', 'KT', 1),
   6964 (3162, 207, 'Sughd', 'SU', 1),
   6965 (3163, 208, 'Arusha', 'AR', 1),
   6966 (3164, 208, 'Dar es Salaam', 'DS', 1),
   6967 (3165, 208, 'Dodoma', 'DO', 1),
   6968 (3166, 208, 'Iringa', 'IR', 1),
   6969 (3167, 208, 'Kagera', 'KA', 1),
   6970 (3168, 208, 'Kigoma', 'KI', 1),
   6971 (3169, 208, 'Kilimanjaro', 'KJ', 1),
   6972 (3170, 208, 'Lindi', 'LN', 1),
   6973 (3171, 208, 'Manyara', 'MY', 1),
   6974 (3172, 208, 'Mara', 'MR', 1),
   6975 (3173, 208, 'Mbeya', 'MB', 1),
   6976 (3174, 208, 'Morogoro', 'MO', 1),
   6977 (3175, 208, 'Mtwara', 'MT', 1),
   6978 (3176, 208, 'Mwanza', 'MW', 1),
   6979 (3177, 208, 'Pemba North', 'PN', 1),
   6980 (3178, 208, 'Pemba South', 'PS', 1),
   6981 (3179, 208, 'Pwani', 'PW', 1),
   6982 (3180, 208, 'Rukwa', 'RK', 1),
   6983 (3181, 208, 'Ruvuma', 'RV', 1),
   6984 (3182, 208, 'Shinyanga', 'SH', 1),
   6985 (3183, 208, 'Singida', 'SI', 1),
   6986 (3184, 208, 'Tabora', 'TB', 1),
   6987 (3185, 208, 'Tanga', 'TN', 1),
   6988 (3186, 208, 'Zanzibar Central/South', 'ZC', 1),
   6989 (3187, 208, 'Zanzibar North', 'ZN', 1),
   6990 (3188, 208, 'Zanzibar Urban/West', 'ZU', 1),
   6991 (3189, 209, 'Amnat Charoen', 'Amnat Charoen', 1),
   6992 (3190, 209, 'Ang Thong', 'Ang Thong', 1),
   6993 (3191, 209, 'Ayutthaya', 'Ayutthaya', 1),
   6994 (3192, 209, 'Bangkok', 'Bangkok', 1),
   6995 (3193, 209, 'Buriram', 'Buriram', 1),
   6996 (3194, 209, 'Chachoengsao', 'Chachoengsao', 1),
   6997 (3195, 209, 'Chai Nat', 'Chai Nat', 1),
   6998 (3196, 209, 'Chaiyaphum', 'Chaiyaphum', 1),
   6999 (3197, 209, 'Chanthaburi', 'Chanthaburi', 1),
   7000 (3198, 209, 'Chiang Mai', 'Chiang Mai', 1),
   7001 (3199, 209, 'Chiang Rai', 'Chiang Rai', 1),
   7002 (3200, 209, 'Chon Buri', 'Chon Buri', 1),
   7003 (3201, 209, 'Chumphon', 'Chumphon', 1),
   7004 (3202, 209, 'Kalasin', 'Kalasin', 1),
   7005 (3203, 209, 'Kamphaeng Phet', 'Kamphaeng Phet', 1),
   7006 (3204, 209, 'Kanchanaburi', 'Kanchanaburi', 1),
   7007 (3205, 209, 'Khon Kaen', 'Khon Kaen', 1),
   7008 (3206, 209, 'Krabi', 'Krabi', 1),
   7009 (3207, 209, 'Lampang', 'Lampang', 1),
   7010 (3208, 209, 'Lamphun', 'Lamphun', 1),
   7011 (3209, 209, 'Loei', 'Loei', 1),
   7012 (3210, 209, 'Lop Buri', 'Lop Buri', 1),
   7013 (3211, 209, 'Mae Hong Son', 'Mae Hong Son', 1),
   7014 (3212, 209, 'Maha Sarakham', 'Maha Sarakham', 1),
   7015 (3213, 209, 'Mukdahan', 'Mukdahan', 1),
   7016 (3214, 209, 'Nakhon Nayok', 'Nakhon Nayok', 1),
   7017 (3215, 209, 'Nakhon Pathom', 'Nakhon Pathom', 1),
   7018 (3216, 209, 'Nakhon Phanom', 'Nakhon Phanom', 1),
   7019 (3217, 209, 'Nakhon Ratchasima', 'Nakhon Ratchasima', 1),
   7020 (3218, 209, 'Nakhon Sawan', 'Nakhon Sawan', 1),
   7021 (3219, 209, 'Nakhon Si Thammarat', 'Nakhon Si Thammarat', 1),
   7022 (3220, 209, 'Nan', 'Nan', 1),
   7023 (3221, 209, 'Narathiwat', 'Narathiwat', 1),
   7024 (3222, 209, 'Nong Bua Lamphu', 'Nong Bua Lamphu', 1),
   7025 (3223, 209, 'Nong Khai', 'Nong Khai', 1),
   7026 (3224, 209, 'Nonthaburi', 'Nonthaburi', 1),
   7027 (3225, 209, 'Pathum Thani', 'Pathum Thani', 1),
   7028 (3226, 209, 'Pattani', 'Pattani', 1),
   7029 (3227, 209, 'Phangnga', 'Phangnga', 1),
   7030 (3228, 209, 'Phatthalung', 'Phatthalung', 1),
   7031 (3229, 209, 'Phayao', 'Phayao', 1),
   7032 (3230, 209, 'Phetchabun', 'Phetchabun', 1),
   7033 (3231, 209, 'Phetchaburi', 'Phetchaburi', 1),
   7034 (3232, 209, 'Phichit', 'Phichit', 1),
   7035 (3233, 209, 'Phitsanulok', 'Phitsanulok', 1),
   7036 (3234, 209, 'Phrae', 'Phrae', 1),
   7037 (3235, 209, 'Phuket', 'Phuket', 1),
   7038 (3236, 209, 'Prachin Buri', 'Prachin Buri', 1),
   7039 (3237, 209, 'Prachuap Khiri Khan', 'Prachuap Khiri Khan', 1),
   7040 (3238, 209, 'Ranong', 'Ranong', 1),
   7041 (3239, 209, 'Ratchaburi', 'Ratchaburi', 1),
   7042 (3240, 209, 'Rayong', 'Rayong', 1),
   7043 (3241, 209, 'Roi Et', 'Roi Et', 1),
   7044 (3242, 209, 'Sa Kaeo', 'Sa Kaeo', 1),
   7045 (3243, 209, 'Sakon Nakhon', 'Sakon Nakhon', 1),
   7046 (3244, 209, 'Samut Prakan', 'Samut Prakan', 1),
   7047 (3245, 209, 'Samut Sakhon', 'Samut Sakhon', 1),
   7048 (3246, 209, 'Samut Songkhram', 'Samut Songkhram', 1),
   7049 (3247, 209, 'Sara Buri', 'Sara Buri', 1),
   7050 (3248, 209, 'Satun', 'Satun', 1),
   7051 (3249, 209, 'Sing Buri', 'Sing Buri', 1),
   7052 (3250, 209, 'Sisaket', 'Sisaket', 1),
   7053 (3251, 209, 'Songkhla', 'Songkhla', 1),
   7054 (3252, 209, 'Sukhothai', 'Sukhothai', 1),
   7055 (3253, 209, 'Suphan Buri', 'Suphan Buri', 1),
   7056 (3254, 209, 'Surat Thani', 'Surat Thani', 1),
   7057 (3255, 209, 'Surin', 'Surin', 1),
   7058 (3256, 209, 'Tak', 'Tak', 1),
   7059 (3257, 209, 'Trang', 'Trang', 1),
   7060 (3258, 209, 'Trat', 'Trat', 1),
   7061 (3259, 209, 'Ubon Ratchathani', 'Ubon Ratchathani', 1),
   7062 (3260, 209, 'Udon Thani', 'Udon Thani', 1),
   7063 (3261, 209, 'Uthai Thani', 'Uthai Thani', 1),
   7064 (3262, 209, 'Uttaradit', 'Uttaradit', 1),
   7065 (3263, 209, 'Yala', 'Yala', 1),
   7066 (3264, 209, 'Yasothon', 'Yasothon', 1),
   7067 (3265, 210, 'Kara', 'K', 1),
   7068 (3266, 210, 'Plateaux', 'P', 1),
   7069 (3267, 210, 'Savanes', 'S', 1),
   7070 (3268, 210, 'Centrale', 'C', 1),
   7071 (3269, 210, 'Maritime', 'M', 1),
   7072 (3270, 211, 'Atafu', 'A', 1),
   7073 (3271, 211, 'Fakaofo', 'F', 1),
   7074 (3272, 211, 'Nukunonu', 'N', 1),
   7075 (3273, 212, 'Ha''apai', 'H', 1),
   7076 (3274, 212, 'Tongatapu', 'T', 1),
   7077 (3275, 212, 'Vava''u', 'V', 1),
   7078 (3276, 213, 'Couva/Tabaquite/Talparo', 'CT', 1),
   7079 (3277, 213, 'Diego Martin', 'DM', 1),
   7080 (3278, 213, 'Mayaro/Rio Claro', 'MR', 1),
   7081 (3279, 213, 'Penal/Debe', 'PD', 1),
   7082 (3280, 213, 'Princes Town', 'PT', 1),
   7083 (3281, 213, 'Sangre Grande', 'SG', 1),
   7084 (3282, 213, 'San Juan/Laventille', 'SL', 1),
   7085 (3283, 213, 'Siparia', 'SI', 1),
   7086 (3284, 213, 'Tunapuna/Piarco', 'TP', 1),
   7087 (3285, 213, 'Port of Spain', 'PS', 1),
   7088 (3286, 213, 'San Fernando', 'SF', 1),
   7089 (3287, 213, 'Arima', 'AR', 1),
   7090 (3288, 213, 'Point Fortin', 'PF', 1),
   7091 (3289, 213, 'Chaguanas', 'CH', 1),
   7092 (3290, 213, 'Tobago', 'TO', 1),
   7093 (3291, 214, 'Ariana', 'AR', 1),
   7094 (3292, 214, 'Beja', 'BJ', 1),
   7095 (3293, 214, 'Ben Arous', 'BA', 1),
   7096 (3294, 214, 'Bizerte', 'BI', 1),
   7097 (3295, 214, 'Gabes', 'GB', 1),
   7098 (3296, 214, 'Gafsa', 'GF', 1),
   7099 (3297, 214, 'Jendouba', 'JE', 1),
   7100 (3298, 214, 'Kairouan', 'KR', 1),
   7101 (3299, 214, 'Kasserine', 'KS', 1),
   7102 (3300, 214, 'Kebili', 'KB', 1),
   7103 (3301, 214, 'Kef', 'KF', 1),
   7104 (3302, 214, 'Mahdia', 'MH', 1),
   7105 (3303, 214, 'Manouba', 'MN', 1),
   7106 (3304, 214, 'Medenine', 'ME', 1),
   7107 (3305, 214, 'Monastir', 'MO', 1),
   7108 (3306, 214, 'Nabeul', 'NA', 1),
   7109 (3307, 214, 'Sfax', 'SF', 1),
   7110 (3308, 214, 'Sidi', 'SD', 1),
   7111 (3309, 214, 'Siliana', 'SL', 1),
   7112 (3310, 214, 'Sousse', 'SO', 1),
   7113 (3311, 214, 'Tataouine', 'TA', 1),
   7114 (3312, 214, 'Tozeur', 'TO', 1),
   7115 (3313, 214, 'Tunis', 'TU', 1),
   7116 (3314, 214, 'Zaghouan', 'ZA', 1),
   7117 (3315, 215, 'Adana', 'ADA', 1),
   7118 (3316, 215, 'Adıyaman', 'ADI', 1),
   7119 (3317, 215, 'Afyonkarahisar', 'AFY', 1),
   7120 (3318, 215, 'Ağrı', 'AGR', 1),
   7121 (3319, 215, 'Aksaray', 'AKS', 1),
   7122 (3320, 215, 'Amasya', 'AMA', 1),
   7123 (3321, 215, 'Ankara', 'ANK', 1),
   7124 (3322, 215, 'Antalya', 'ANT', 1),
   7125 (3323, 215, 'Ardahan', 'ARD', 1),
   7126 (3324, 215, 'Artvin', 'ART', 1),
   7127 (3325, 215, 'Aydın', 'AYI', 1),
   7128 (3326, 215, 'Balıkesir', 'BAL', 1),
   7129 (3327, 215, 'Bartın', 'BAR', 1),
   7130 (3328, 215, 'Batman', 'BAT', 1),
   7131 (3329, 215, 'Bayburt', 'BAY', 1),
   7132 (3330, 215, 'Bilecik', 'BIL', 1),
   7133 (3331, 215, 'Bingöl', 'BIN', 1),
   7134 (3332, 215, 'Bitlis', 'BIT', 1),
   7135 (3333, 215, 'Bolu', 'BOL', 1),
   7136 (3334, 215, 'Burdur', 'BRD', 1),
   7137 (3335, 215, 'Bursa', 'BRS', 1),
   7138 (3336, 215, 'Çanakkale', 'CKL', 1),
   7139 (3337, 215, 'Çankırı', 'CKR', 1),
   7140 (3338, 215, 'Çorum', 'COR', 1),
   7141 (3339, 215, 'Denizli', 'DEN', 1),
   7142 (3340, 215, 'Diyarbakır', 'DIY', 1),
   7143 (3341, 215, 'Düzce', 'DUZ', 1),
   7144 (3342, 215, 'Edirne', 'EDI', 1),
   7145 (3343, 215, 'Elazığ', 'ELA', 1),
   7146 (3344, 215, 'Erzincan', 'EZC', 1),
   7147 (3345, 215, 'Erzurum', 'EZR', 1),
   7148 (3346, 215, 'Eskişehir', 'ESK', 1),
   7149 (3347, 215, 'Gaziantep', 'GAZ', 1),
   7150 (3348, 215, 'Giresun', 'GIR', 1),
   7151 (3349, 215, 'Gümüşhane', 'GMS', 1),
   7152 (3350, 215, 'Hakkari', 'HKR', 1),
   7153 (3351, 215, 'Hatay', 'HTY', 1),
   7154 (3352, 215, 'Iğdır', 'IGD', 1),
   7155 (3353, 215, 'Isparta', 'ISP', 1),
   7156 (3354, 215, 'İstanbul', 'IST', 1),
   7157 (3355, 215, 'İzmir', 'IZM', 1),
   7158 (3356, 215, 'Kahramanmaraş', 'KAH', 1),
   7159 (3357, 215, 'Karabük', 'KRB', 1),
   7160 (3358, 215, 'Karaman', 'KRM', 1),
   7161 (3359, 215, 'Kars', 'KRS', 1),
   7162 (3360, 215, 'Kastamonu', 'KAS', 1),
   7163 (3361, 215, 'Kayseri', 'KAY', 1),
   7164 (3362, 215, 'Kilis', 'KLS', 1),
   7165 (3363, 215, 'Kırıkkale', 'KRK', 1),
   7166 (3364, 215, 'Kırklareli', 'KLR', 1),
   7167 (3365, 215, 'Kırşehir', 'KRH', 1),
   7168 (3366, 215, 'Kocaeli', 'KOC', 1),
   7169 (3367, 215, 'Konya', 'KON', 1),
   7170 (3368, 215, 'Kütahya', 'KUT', 1),
   7171 (3369, 215, 'Malatya', 'MAL', 1),
   7172 (3370, 215, 'Manisa', 'MAN', 1),
   7173 (3371, 215, 'Mardin', 'MAR', 1),
   7174 (3372, 215, 'Mersin', 'MER', 1),
   7175 (3373, 215, 'Muğla', 'MUG', 1),
   7176 (3374, 215, 'Muş', 'MUS', 1),
   7177 (3375, 215, 'Nevşehir', 'NEV', 1),
   7178 (3376, 215, 'Niğde', 'NIG', 1),
   7179 (3377, 215, 'Ordu', 'ORD', 1),
   7180 (3378, 215, 'Osmaniye', 'OSM', 1),
   7181 (3379, 215, 'Rize', 'RIZ', 1),
   7182 (3380, 215, 'Sakarya', 'SAK', 1),
   7183 (3381, 215, 'Samsun', 'SAM', 1),
   7184 (3382, 215, 'Şanlıurfa', 'SAN', 1),
   7185 (3383, 215, 'Siirt', 'SII', 1),
   7186 (3384, 215, 'Sinop', 'SIN', 1),
   7187 (3385, 215, 'Şırnak', 'SIR', 1),
   7188 (3386, 215, 'Sivas', 'SIV', 1),
   7189 (3387, 215, 'Tekirdağ', 'TEL', 1),
   7190 (3388, 215, 'Tokat', 'TOK', 1),
   7191 (3389, 215, 'Trabzon', 'TRA', 1),
   7192 (3390, 215, 'Tunceli', 'TUN', 1),
   7193 (3391, 215, 'Uşak', 'USK', 1),
   7194 (3392, 215, 'Van', 'VAN', 1),
   7195 (3393, 215, 'Yalova', 'YAL', 1),
   7196 (3394, 215, 'Yozgat', 'YOZ', 1),
   7197 (3395, 215, 'Zonguldak', 'ZON', 1),
   7198 (3396, 216, 'Ahal Welayaty', 'A', 1),
   7199 (3397, 216, 'Balkan Welayaty', 'B', 1),
   7200 (3398, 216, 'Dashhowuz Welayaty', 'D', 1),
   7201 (3399, 216, 'Lebap Welayaty', 'L', 1),
   7202 (3400, 216, 'Mary Welayaty', 'M', 1),
   7203 (3401, 217, 'Ambergris Cays', 'AC', 1),
   7204 (3402, 217, 'Dellis Cay', 'DC', 1),
   7205 (3403, 217, 'French Cay', 'FC', 1),
   7206 (3404, 217, 'Little Water Cay', 'LW', 1),
   7207 (3405, 217, 'Parrot Cay', 'RC', 1),
   7208 (3406, 217, 'Pine Cay', 'PN', 1),
   7209 (3407, 217, 'Salt Cay', 'SL', 1),
   7210 (3408, 217, 'Grand Turk', 'GT', 1),
   7211 (3409, 217, 'South Caicos', 'SC', 1),
   7212 (3410, 217, 'East Caicos', 'EC', 1),
   7213 (3411, 217, 'Middle Caicos', 'MC', 1),
   7214 (3412, 217, 'North Caicos', 'NC', 1),
   7215 (3413, 217, 'Providenciales', 'PR', 1),
   7216 (3414, 217, 'West Caicos', 'WC', 1),
   7217 (3415, 218, 'Nanumanga', 'NMG', 1),
   7218 (3416, 218, 'Niulakita', 'NLK', 1),
   7219 (3417, 218, 'Niutao', 'NTO', 1),
   7220 (3418, 218, 'Funafuti', 'FUN', 1),
   7221 (3419, 218, 'Nanumea', 'NME', 1),
   7222 (3420, 218, 'Nui', 'NUI', 1),
   7223 (3421, 218, 'Nukufetau', 'NFT', 1),
   7224 (3422, 218, 'Nukulaelae', 'NLL', 1),
   7225 (3423, 218, 'Vaitupu', 'VAI', 1),
   7226 (3424, 219, 'Kalangala', 'KAL', 1),
   7227 (3425, 219, 'Kampala', 'KMP', 1),
   7228 (3426, 219, 'Kayunga', 'KAY', 1),
   7229 (3427, 219, 'Kiboga', 'KIB', 1),
   7230 (3428, 219, 'Luwero', 'LUW', 1),
   7231 (3429, 219, 'Masaka', 'MAS', 1),
   7232 (3430, 219, 'Mpigi', 'MPI', 1),
   7233 (3431, 219, 'Mubende', 'MUB', 1),
   7234 (3432, 219, 'Mukono', 'MUK', 1),
   7235 (3433, 219, 'Nakasongola', 'NKS', 1),
   7236 (3434, 219, 'Rakai', 'RAK', 1),
   7237 (3435, 219, 'Sembabule', 'SEM', 1),
   7238 (3436, 219, 'Wakiso', 'WAK', 1),
   7239 (3437, 219, 'Bugiri', 'BUG', 1),
   7240 (3438, 219, 'Busia', 'BUS', 1),
   7241 (3439, 219, 'Iganga', 'IGA', 1),
   7242 (3440, 219, 'Jinja', 'JIN', 1),
   7243 (3441, 219, 'Kaberamaido', 'KAB', 1),
   7244 (3442, 219, 'Kamuli', 'KML', 1),
   7245 (3443, 219, 'Kapchorwa', 'KPC', 1),
   7246 (3444, 219, 'Katakwi', 'KTK', 1),
   7247 (3445, 219, 'Kumi', 'KUM', 1),
   7248 (3446, 219, 'Mayuge', 'MAY', 1),
   7249 (3447, 219, 'Mbale', 'MBA', 1),
   7250 (3448, 219, 'Pallisa', 'PAL', 1),
   7251 (3449, 219, 'Sironko', 'SIR', 1),
   7252 (3450, 219, 'Soroti', 'SOR', 1),
   7253 (3451, 219, 'Tororo', 'TOR', 1),
   7254 (3452, 219, 'Adjumani', 'ADJ', 1),
   7255 (3453, 219, 'Apac', 'APC', 1),
   7256 (3454, 219, 'Arua', 'ARU', 1),
   7257 (3455, 219, 'Gulu', 'GUL', 1),
   7258 (3456, 219, 'Kitgum', 'KIT', 1),
   7259 (3457, 219, 'Kotido', 'KOT', 1),
   7260 (3458, 219, 'Lira', 'LIR', 1),
   7261 (3459, 219, 'Moroto', 'MRT', 1),
   7262 (3460, 219, 'Moyo', 'MOY', 1),
   7263 (3461, 219, 'Nakapiripirit', 'NAK', 1),
   7264 (3462, 219, 'Nebbi', 'NEB', 1),
   7265 (3463, 219, 'Pader', 'PAD', 1),
   7266 (3464, 219, 'Yumbe', 'YUM', 1),
   7267 (3465, 219, 'Bundibugyo', 'BUN', 1),
   7268 (3466, 219, 'Bushenyi', 'BSH', 1),
   7269 (3467, 219, 'Hoima', 'HOI', 1),
   7270 (3468, 219, 'Kabale', 'KBL', 1),
   7271 (3469, 219, 'Kabarole', 'KAR', 1),
   7272 (3470, 219, 'Kamwenge', 'KAM', 1),
   7273 (3471, 219, 'Kanungu', 'KAN', 1),
   7274 (3472, 219, 'Kasese', 'KAS', 1),
   7275 (3473, 219, 'Kibaale', 'KBA', 1),
   7276 (3474, 219, 'Kisoro', 'KIS', 1),
   7277 (3475, 219, 'Kyenjojo', 'KYE', 1),
   7278 (3476, 219, 'Masindi', 'MSN', 1),
   7279 (3477, 219, 'Mbarara', 'MBR', 1),
   7280 (3478, 219, 'Ntungamo', 'NTU', 1),
   7281 (3479, 219, 'Rukungiri', 'RUK', 1),
   7282 (3480, 220, 'Cherkas''ka Oblast''', '71', 1),
   7283 (3481, 220, 'Chernihivs''ka Oblast''', '74', 1),
   7284 (3482, 220, 'Chernivets''ka Oblast''', '77', 1),
   7285 (3483, 220, 'Crimea', '43', 1),
   7286 (3484, 220, 'Dnipropetrovs''ka Oblast''', '12', 1),
   7287 (3485, 220, 'Donets''ka Oblast''', '14', 1),
   7288 (3486, 220, 'Ivano-Frankivs''ka Oblast''', '26', 1),
   7289 (3487, 220, 'Khersons''ka Oblast''', '65', 1),
   7290 (3488, 220, 'Khmel''nyts''ka Oblast''', '68', 1),
   7291 (3489, 220, 'Kirovohrads''ka Oblast''', '35', 1),
   7292 (3490, 220, 'Kyiv', '30', 1),
   7293 (3491, 220, 'Kyivs''ka Oblast''', '32', 1),
   7294 (3492, 220, 'Luhans''ka Oblast''', '09', 1),
   7295 (3493, 220, 'L''vivs''ka Oblast''', '46', 1),
   7296 (3494, 220, 'Mykolayivs''ka Oblast''', '48', 1),
   7297 (3495, 220, 'Odes''ka Oblast''', '51', 1),
   7298 (3496, 220, 'Poltavs''ka Oblast''', '53', 1),
   7299 (3497, 220, 'Rivnens''ka Oblast''', '56', 1),
   7300 (3498, 220, 'Sevastopol''', '40', 1),
   7301 (3499, 220, 'Sums''ka Oblast''', '59', 1),
   7302 (3500, 220, 'Ternopil''s''ka Oblast''', '61', 1),
   7303 (3501, 220, 'Vinnyts''ka Oblast''', '05', 1),
   7304 (3502, 220, 'Volyns''ka Oblast''', '07', 1),
   7305 (3503, 220, 'Zakarpats''ka Oblast''', '21', 1),
   7306 (3504, 220, 'Zaporiz''ka Oblast''', '23', 1),
   7307 (3505, 220, 'Zhytomyrs''ka oblast''', '18', 1),
   7308 (3506, 221, 'Abu Dhabi', 'ADH', 1),
   7309 (3507, 221, '''Ajman', 'AJ', 1),
   7310 (3508, 221, 'Al Fujayrah', 'FU', 1),
   7311 (3509, 221, 'Ash Shariqah', 'SH', 1),
   7312 (3510, 221, 'Dubai', 'DU', 1),
   7313 (3511, 221, 'R''as al Khaymah', 'RK', 1),
   7314 (3512, 221, 'Umm al Qaywayn', 'UQ', 1),
   7315 (3513, 222, 'Aberdeen', 'ABN', 1),
   7316 (3514, 222, 'Aberdeenshire', 'ABNS', 1),
   7317 (3515, 222, 'Anglesey', 'ANG', 1),
   7318 (3516, 222, 'Angus', 'AGS', 1),
   7319 (3517, 222, 'Argyll and Bute', 'ARY', 1),
   7320 (3518, 222, 'Bedfordshire', 'BEDS', 1),
   7321 (3519, 222, 'Berkshire', 'BERKS', 1),
   7322 (3520, 222, 'Blaenau Gwent', 'BLA', 1),
   7323 (3521, 222, 'Bridgend', 'BRI', 1),
   7324 (3522, 222, 'Bristol', 'BSTL', 1),
   7325 (3523, 222, 'Buckinghamshire', 'BUCKS', 1),
   7326 (3524, 222, 'Caerphilly', 'CAE', 1),
   7327 (3525, 222, 'Cambridgeshire', 'CAMBS', 1),
   7328 (3526, 222, 'Cardiff', 'CDF', 1),
   7329 (3527, 222, 'Carmarthenshire', 'CARM', 1),
   7330 (3528, 222, 'Ceredigion', 'CDGN', 1),
   7331 (3529, 222, 'Cheshire', 'CHES', 1),
   7332 (3530, 222, 'Clackmannanshire', 'CLACK', 1),
   7333 (3531, 222, 'Conwy', 'CON', 1),
   7334 (3532, 222, 'Cornwall', 'CORN', 1),
   7335 (3533, 222, 'Denbighshire', 'DNBG', 1),
   7336 (3534, 222, 'Derbyshire', 'DERBY', 1),
   7337 (3535, 222, 'Devon', 'DVN', 1),
   7338 (3536, 222, 'Dorset', 'DOR', 1),
   7339 (3537, 222, 'Dumfries and Galloway', 'DGL', 1),
   7340 (3538, 222, 'Dundee', 'DUND', 1),
   7341 (3539, 222, 'Durham', 'DHM', 1),
   7342 (3540, 222, 'East Ayrshire', 'ARYE', 1),
   7343 (3541, 222, 'East Dunbartonshire', 'DUNBE', 1),
   7344 (3542, 222, 'East Lothian', 'LOTE', 1),
   7345 (3543, 222, 'East Renfrewshire', 'RENE', 1),
   7346 (3544, 222, 'East Riding of Yorkshire', 'ERYS', 1),
   7347 (3545, 222, 'East Sussex', 'SXE', 1),
   7348 (3546, 222, 'Edinburgh', 'EDIN', 1),
   7349 (3547, 222, 'Essex', 'ESX', 1),
   7350 (3548, 222, 'Falkirk', 'FALK', 1),
   7351 (3549, 222, 'Fife', 'FFE', 1),
   7352 (3550, 222, 'Flintshire', 'FLINT', 1),
   7353 (3551, 222, 'Glasgow', 'GLAS', 1),
   7354 (3552, 222, 'Gloucestershire', 'GLOS', 1),
   7355 (3553, 222, 'Greater London', 'LDN', 1),
   7356 (3554, 222, 'Greater Manchester', 'MCH', 1),
   7357 (3555, 222, 'Gwynedd', 'GDD', 1),
   7358 (3556, 222, 'Hampshire', 'HANTS', 1),
   7359 (3557, 222, 'Herefordshire', 'HWR', 1),
   7360 (3558, 222, 'Hertfordshire', 'HERTS', 1),
   7361 (3559, 222, 'Highlands', 'HLD', 1),
   7362 (3560, 222, 'Inverclyde', 'IVER', 1),
   7363 (3561, 222, 'Isle of Wight', 'IOW', 1),
   7364 (3562, 222, 'Kent', 'KNT', 1),
   7365 (3563, 222, 'Lancashire', 'LANCS', 1),
   7366 (3564, 222, 'Leicestershire', 'LEICS', 1),
   7367 (3565, 222, 'Lincolnshire', 'LINCS', 1),
   7368 (3566, 222, 'Merseyside', 'MSY', 1),
   7369 (3567, 222, 'Merthyr Tydfil', 'MERT', 1),
   7370 (3568, 222, 'Midlothian', 'MLOT', 1),
   7371 (3569, 222, 'Monmouthshire', 'MMOUTH', 1),
   7372 (3570, 222, 'Moray', 'MORAY', 1),
   7373 (3571, 222, 'Neath Port Talbot', 'NPRTAL', 1),
   7374 (3572, 222, 'Newport', 'NEWPT', 1),
   7375 (3573, 222, 'Norfolk', 'NOR', 1),
   7376 (3574, 222, 'North Ayrshire', 'ARYN', 1),
   7377 (3575, 222, 'North Lanarkshire', 'LANN', 1),
   7378 (3576, 222, 'North Yorkshire', 'YSN', 1),
   7379 (3577, 222, 'Northamptonshire', 'NHM', 1),
   7380 (3578, 222, 'Northumberland', 'NLD', 1),
   7381 (3579, 222, 'Nottinghamshire', 'NOT', 1),
   7382 (3580, 222, 'Orkney Islands', 'ORK', 1),
   7383 (3581, 222, 'Oxfordshire', 'OFE', 1),
   7384 (3582, 222, 'Pembrokeshire', 'PEM', 1),
   7385 (3583, 222, 'Perth and Kinross', 'PERTH', 1),
   7386 (3584, 222, 'Powys', 'PWS', 1),
   7387 (3585, 222, 'Renfrewshire', 'REN', 1),
   7388 (3586, 222, 'Rhondda Cynon Taff', 'RHON', 1),
   7389 (3587, 222, 'Rutland', 'RUT', 1),
   7390 (3588, 222, 'Scottish Borders', 'BOR', 1),
   7391 (3589, 222, 'Shetland Islands', 'SHET', 1),
   7392 (3590, 222, 'Shropshire', 'SPE', 1),
   7393 (3591, 222, 'Somerset', 'SOM', 1),
   7394 (3592, 222, 'South Ayrshire', 'ARYS', 1),
   7395 (3593, 222, 'South Lanarkshire', 'LANS', 1),
   7396 (3594, 222, 'South Yorkshire', 'YSS', 1),
   7397 (3595, 222, 'Staffordshire', 'SFD', 1),
   7398 (3596, 222, 'Stirling', 'STIR', 1),
   7399 (3597, 222, 'Suffolk', 'SFK', 1),
   7400 (3598, 222, 'Surrey', 'SRY', 1),
   7401 (3599, 222, 'Swansea', 'SWAN', 1),
   7402 (3600, 222, 'Torfaen', 'TORF', 1),
   7403 (3601, 222, 'Tyne and Wear', 'TWR', 1),
   7404 (3602, 222, 'Vale of Glamorgan', 'VGLAM', 1),
   7405 (3603, 222, 'Warwickshire', 'WARKS', 1),
   7406 (3604, 222, 'West Dunbartonshire', 'WDUN', 1),
   7407 (3605, 222, 'West Lothian', 'WLOT', 1),
   7408 (3606, 222, 'West Midlands', 'WMD', 1),
   7409 (3607, 222, 'West Sussex', 'SXW', 1),
   7410 (3608, 222, 'West Yorkshire', 'YSW', 1),
   7411 (3609, 222, 'Western Isles', 'WIL', 1),
   7412 (3610, 222, 'Wiltshire', 'WLT', 1),
   7413 (3611, 222, 'Worcestershire', 'WORCS', 1),
   7414 (3612, 222, 'Wrexham', 'WRX', 1),
   7415 (3613, 223, 'Alabama', 'AL', 1),
   7416 (3614, 223, 'Alaska', 'AK', 1),
   7417 (3615, 223, 'American Samoa', 'AS', 1),
   7418 (3616, 223, 'Arizona', 'AZ', 1),
   7419 (3617, 223, 'Arkansas', 'AR', 1),
   7420 (3618, 223, 'Armed Forces Africa', 'AF', 1),
   7421 (3619, 223, 'Armed Forces Americas', 'AA', 1),
   7422 (3620, 223, 'Armed Forces Canada', 'AC', 1),
   7423 (3621, 223, 'Armed Forces Europe', 'AE', 1),
   7424 (3622, 223, 'Armed Forces Middle East', 'AM', 1),
   7425 (3623, 223, 'Armed Forces Pacific', 'AP', 1),
   7426 (3624, 223, 'California', 'CA', 1),
   7427 (3625, 223, 'Colorado', 'CO', 1),
   7428 (3626, 223, 'Connecticut', 'CT', 1),
   7429 (3627, 223, 'Delaware', 'DE', 1),
   7430 (3628, 223, 'District of Columbia', 'DC', 1),
   7431 (3629, 223, 'Federated States Of Micronesia', 'FM', 1),
   7432 (3630, 223, 'Florida', 'FL', 1),
   7433 (3631, 223, 'Georgia', 'GA', 1),
   7434 (3632, 223, 'Guam', 'GU', 1),
   7435 (3633, 223, 'Hawaii', 'HI', 1),
   7436 (3634, 223, 'Idaho', 'ID', 1),
   7437 (3635, 223, 'Illinois', 'IL', 1),
   7438 (3636, 223, 'Indiana', 'IN', 1),
   7439 (3637, 223, 'Iowa', 'IA', 1),
   7440 (3638, 223, 'Kansas', 'KS', 1),
   7441 (3639, 223, 'Kentucky', 'KY', 1),
   7442 (3640, 223, 'Louisiana', 'LA', 1),
   7443 (3641, 223, 'Maine', 'ME', 1),
   7444 (3642, 223, 'Marshall Islands', 'MH', 1),
   7445 (3643, 223, 'Maryland', 'MD', 1),
   7446 (3644, 223, 'Massachusetts', 'MA', 1),
   7447 (3645, 223, 'Michigan', 'MI', 1),
   7448 (3646, 223, 'Minnesota', 'MN', 1),
   7449 (3647, 223, 'Mississippi', 'MS', 1),
   7450 (3648, 223, 'Missouri', 'MO', 1),
   7451 (3649, 223, 'Montana', 'MT', 1),
   7452 (3650, 223, 'Nebraska', 'NE', 1),
   7453 (3651, 223, 'Nevada', 'NV', 1),
   7454 (3652, 223, 'New Hampshire', 'NH', 1),
   7455 (3653, 223, 'New Jersey', 'NJ', 1),
   7456 (3654, 223, 'New Mexico', 'NM', 1),
   7457 (3655, 223, 'New York', 'NY', 1),
   7458 (3656, 223, 'North Carolina', 'NC', 1),
   7459 (3657, 223, 'North Dakota', 'ND', 1),
   7460 (3658, 223, 'Northern Mariana Islands', 'MP', 1),
   7461 (3659, 223, 'Ohio', 'OH', 1),
   7462 (3660, 223, 'Oklahoma', 'OK', 1),
   7463 (3661, 223, 'Oregon', 'OR', 1),
   7464 (3662, 223, 'Palau', 'PW', 1),
   7465 (3663, 223, 'Pennsylvania', 'PA', 1),
   7466 (3664, 223, 'Puerto Rico', 'PR', 1),
   7467 (3665, 223, 'Rhode Island', 'RI', 1),
   7468 (3666, 223, 'South Carolina', 'SC', 1),
   7469 (3667, 223, 'South Dakota', 'SD', 1),
   7470 (3668, 223, 'Tennessee', 'TN', 1),
   7471 (3669, 223, 'Texas', 'TX', 1),
   7472 (3670, 223, 'Utah', 'UT', 1),
   7473 (3671, 223, 'Vermont', 'VT', 1),
   7474 (3672, 223, 'Virgin Islands', 'VI', 1),
   7475 (3673, 223, 'Virginia', 'VA', 1),
   7476 (3674, 223, 'Washington', 'WA', 1),
   7477 (3675, 223, 'West Virginia', 'WV', 1),
   7478 (3676, 223, 'Wisconsin', 'WI', 1),
   7479 (3677, 223, 'Wyoming', 'WY', 1),
   7480 (3678, 224, 'Baker Island', 'BI', 1),
   7481 (3679, 224, 'Howland Island', 'HI', 1),
   7482 (3680, 224, 'Jarvis Island', 'JI', 1),
   7483 (3681, 224, 'Johnston Atoll', 'JA', 1),
   7484 (3682, 224, 'Kingman Reef', 'KR', 1),
   7485 (3683, 224, 'Midway Atoll', 'MA', 1),
   7486 (3684, 224, 'Navassa Island', 'NI', 1),
   7487 (3685, 224, 'Palmyra Atoll', 'PA', 1),
   7488 (3686, 224, 'Wake Island', 'WI', 1),
   7489 (3687, 225, 'Artigas', 'AR', 1),
   7490 (3688, 225, 'Canelones', 'CA', 1),
   7491 (3689, 225, 'Cerro Largo', 'CL', 1),
   7492 (3690, 225, 'Colonia', 'CO', 1),
   7493 (3691, 225, 'Durazno', 'DU', 1),
   7494 (3692, 225, 'Flores', 'FS', 1),
   7495 (3693, 225, 'Florida', 'FA', 1),
   7496 (3694, 225, 'Lavalleja', 'LA', 1),
   7497 (3695, 225, 'Maldonado', 'MA', 1),
   7498 (3696, 225, 'Montevideo', 'MO', 1),
   7499 (3697, 225, 'Paysandu', 'PA', 1),
   7500 (3698, 225, 'Rio Negro', 'RN', 1),
   7501 (3699, 225, 'Rivera', 'RV', 1),
   7502 (3700, 225, 'Rocha', 'RO', 1),
   7503 (3701, 225, 'Salto', 'SL', 1),
   7504 (3702, 225, 'San Jose', 'SJ', 1),
   7505 (3703, 225, 'Soriano', 'SO', 1),
   7506 (3704, 225, 'Tacuarembo', 'TA', 1),
   7507 (3705, 225, 'Treinta y Tres', 'TT', 1),
   7508 (3706, 226, 'Andijon', 'AN', 1),
   7509 (3707, 226, 'Buxoro', 'BU', 1),
   7510 (3708, 226, 'Farg''ona', 'FA', 1),
   7511 (3709, 226, 'Jizzax', 'JI', 1),
   7512 (3710, 226, 'Namangan', 'NG', 1),
   7513 (3711, 226, 'Navoiy', 'NW', 1),
   7514 (3712, 226, 'Qashqadaryo', 'QA', 1),
   7515 (3713, 226, 'Qoraqalpog''iston Republikasi', 'QR', 1),
   7516 (3714, 226, 'Samarqand', 'SA', 1),
   7517 (3715, 226, 'Sirdaryo', 'SI', 1),
   7518 (3716, 226, 'Surxondaryo', 'SU', 1),
   7519 (3717, 226, 'Toshkent City', 'TK', 1),
   7520 (3718, 226, 'Toshkent Region', 'TO', 1),
   7521 (3719, 226, 'Xorazm', 'XO', 1),
   7522 (3720, 227, 'Malampa', 'MA', 1),
   7523 (3721, 227, 'Penama', 'PE', 1),
   7524 (3722, 227, 'Sanma', 'SA', 1),
   7525 (3723, 227, 'Shefa', 'SH', 1),
   7526 (3724, 227, 'Tafea', 'TA', 1),
   7527 (3725, 227, 'Torba', 'TO', 1),
   7528 (3726, 229, 'Amazonas', 'AM', 1),
   7529 (3727, 229, 'Anzoategui', 'AN', 1),
   7530 (3728, 229, 'Apure', 'AP', 1),
   7531 (3729, 229, 'Aragua', 'AR', 1),
   7532 (3730, 229, 'Barinas', 'BA', 1),
   7533 (3731, 229, 'Bolivar', 'BO', 1),
   7534 (3732, 229, 'Carabobo', 'CA', 1),
   7535 (3733, 229, 'Cojedes', 'CO', 1),
   7536 (3734, 229, 'Delta Amacuro', 'DA', 1),
   7537 (3735, 229, 'Dependencias Federales', 'DF', 1),
   7538 (3736, 229, 'Distrito Federal', 'DI', 1),
   7539 (3737, 229, 'Falcon', 'FA', 1),
   7540 (3738, 229, 'Guarico', 'GU', 1),
   7541 (3739, 229, 'Lara', 'LA', 1),
   7542 (3740, 229, 'Merida', 'ME', 1),
   7543 (3741, 229, 'Miranda', 'MI', 1),
   7544 (3742, 229, 'Monagas', 'MO', 1),
   7545 (3743, 229, 'Nueva Esparta', 'NE', 1),
   7546 (3744, 229, 'Portuguesa', 'PO', 1),
   7547 (3745, 229, 'Sucre', 'SU', 1),
   7548 (3746, 229, 'Tachira', 'TA', 1),
   7549 (3747, 229, 'Trujillo', 'TR', 1),
   7550 (3748, 229, 'Vargas', 'VA', 1),
   7551 (3749, 229, 'Yaracuy', 'YA', 1),
   7552 (3750, 229, 'Zulia', 'ZU', 1),
   7553 (3751, 230, 'An Giang', 'AG', 1),
   7554 (3752, 230, 'Bac Giang', 'BG', 1),
   7555 (3753, 230, 'Bac Kan', 'BK', 1),
   7556 (3754, 230, 'Bac Lieu', 'BL', 1),
   7557 (3755, 230, 'Bac Ninh', 'BC', 1),
   7558 (3756, 230, 'Ba Ria-Vung Tau', 'BR', 1),
   7559 (3757, 230, 'Ben Tre', 'BN', 1),
   7560 (3758, 230, 'Binh Dinh', 'BH', 1),
   7561 (3759, 230, 'Binh Duong', 'BU', 1),
   7562 (3760, 230, 'Binh Phuoc', 'BP', 1),
   7563 (3761, 230, 'Binh Thuan', 'BT', 1),
   7564 (3762, 230, 'Ca Mau', 'CM', 1),
   7565 (3763, 230, 'Can Tho', 'CT', 1),
   7566 (3764, 230, 'Cao Bang', 'CB', 1),
   7567 (3765, 230, 'Dak Lak', 'DL', 1),
   7568 (3766, 230, 'Dak Nong', 'DG', 1),
   7569 (3767, 230, 'Da Nang', 'DN', 1),
   7570 (3768, 230, 'Dien Bien', 'DB', 1),
   7571 (3769, 230, 'Dong Nai', 'DI', 1),
   7572 (3770, 230, 'Dong Thap', 'DT', 1),
   7573 (3771, 230, 'Gia Lai', 'GL', 1),
   7574 (3772, 230, 'Ha Giang', 'HG', 1),
   7575 (3773, 230, 'Hai Duong', 'HD', 1),
   7576 (3774, 230, 'Hai Phong', 'HP', 1),
   7577 (3775, 230, 'Ha Nam', 'HM', 1),
   7578 (3776, 230, 'Ha Noi', 'HI', 1),
   7579 (3777, 230, 'Ha Tay', 'HT', 1),
   7580 (3778, 230, 'Ha Tinh', 'HH', 1),
   7581 (3779, 230, 'Hoa Binh', 'HB', 1),
   7582 (3780, 230, 'Ho Chi Minh City', 'HC', 1),
   7583 (3781, 230, 'Hau Giang', 'HU', 1),
   7584 (3782, 230, 'Hung Yen', 'HY', 1),
   7585 (3783, 232, 'Saint Croix', 'C', 1),
   7586 (3784, 232, 'Saint John', 'J', 1),
   7587 (3785, 232, 'Saint Thomas', 'T', 1),
   7588 (3786, 233, 'Alo', 'A', 1),
   7589 (3787, 233, 'Sigave', 'S', 1),
   7590 (3788, 233, 'Wallis', 'W', 1),
   7591 (3789, 235, 'Abyan', 'AB', 1),
   7592 (3790, 235, 'Adan', 'AD', 1),
   7593 (3791, 235, 'Amran', 'AM', 1),
   7594 (3792, 235, 'Al Bayda', 'BA', 1),
   7595 (3793, 235, 'Ad Dali', 'DA', 1),
   7596 (3794, 235, 'Dhamar', 'DH', 1),
   7597 (3795, 235, 'Hadramawt', 'HD', 1),
   7598 (3796, 235, 'Hajjah', 'HJ', 1),
   7599 (3797, 235, 'Al Hudaydah', 'HU', 1),
   7600 (3798, 235, 'Ibb', 'IB', 1),
   7601 (3799, 235, 'Al Jawf', 'JA', 1),
   7602 (3800, 235, 'Lahij', 'LA', 1),
   7603 (3801, 235, 'Ma''rib', 'MA', 1),
   7604 (3802, 235, 'Al Mahrah', 'MR', 1),
   7605 (3803, 235, 'Al Mahwit', 'MW', 1),
   7606 (3804, 235, 'Sa''dah', 'SD', 1),
   7607 (3805, 235, 'San''a', 'SN', 1),
   7608 (3806, 235, 'Shabwah', 'SH', 1),
   7609 (3807, 235, 'Ta''izz', 'TA', 1),
   7610 (3812, 237, 'Bas-Congo', 'BC', 1),
   7611 (3813, 237, 'Bandundu', 'BN', 1),
   7612 (3814, 237, 'Equateur', 'EQ', 1),
   7613 (3815, 237, 'Katanga', 'KA', 1),
   7614 (3816, 237, 'Kasai-Oriental', 'KE', 1),
   7615 (3817, 237, 'Kinshasa', 'KN', 1),
   7616 (3818, 237, 'Kasai-Occidental', 'KW', 1),
   7617 (3819, 237, 'Maniema', 'MA', 1),
   7618 (3820, 237, 'Nord-Kivu', 'NK', 1),
   7619 (3821, 237, 'Orientale', 'OR', 1),
   7620 (3822, 237, 'Sud-Kivu', 'SK', 1),
   7621 (3823, 238, 'Central', 'CE', 1),
   7622 (3824, 238, 'Copperbelt', 'CB', 1),
   7623 (3825, 238, 'Eastern', 'EA', 1),
   7624 (3826, 238, 'Luapula', 'LP', 1),
   7625 (3827, 238, 'Lusaka', 'LK', 1),
   7626 (3828, 238, 'Northern', 'NO', 1),
   7627 (3829, 238, 'North-Western', 'NW', 1),
   7628 (3830, 238, 'Southern', 'SO', 1),
   7629 (3831, 238, 'Western', 'WE', 1),
   7630 (3832, 239, 'Bulawayo', 'BU', 1),
   7631 (3833, 239, 'Harare', 'HA', 1),
   7632 (3834, 239, 'Manicaland', 'ML', 1),
   7633 (3835, 239, 'Mashonaland Central', 'MC', 1),
   7634 (3836, 239, 'Mashonaland East', 'ME', 1),
   7635 (3837, 239, 'Mashonaland West', 'MW', 1),
   7636 (3838, 239, 'Masvingo', 'MV', 1),
   7637 (3839, 239, 'Matabeleland North', 'MN', 1),
   7638 (3840, 239, 'Matabeleland South', 'MS', 1),
   7639 (3841, 239, 'Midlands', 'MD', 1),
   7640 (3861, 105, 'Campobasso', 'CB', 1),
   7641 (3863, 105, 'Caserta', 'CE', 1),
   7642 (3864, 105, 'Catania', 'CT', 1),
   7643 (3865, 105, 'Catanzaro', 'CZ', 1),
   7644 (3866, 105, 'Chieti', 'CH', 1),
   7645 (3867, 105, 'Como', 'CO', 1),
   7646 (3868, 105, 'Cosenza', 'CS', 1),
   7647 (3869, 105, 'Cremona', 'CR', 1),
   7648 (3870, 105, 'Crotone', 'KR', 1),
   7649 (3871, 105, 'Cuneo', 'CN', 1),
   7650 (3872, 105, 'Enna', 'EN', 1),
   7651 (3873, 105, 'Ferrara', 'FE', 1),
   7652 (3874, 105, 'Firenze', 'FI', 1),
   7653 (3875, 105, 'Foggia', 'FG', 1),
   7654 (3876, 105, 'Forli-Cesena', 'FC', 1),
   7655 (3877, 105, 'Frosinone', 'FR', 1),
   7656 (3878, 105, 'Genova', 'GE', 1),
   7657 (3879, 105, 'Gorizia', 'GO', 1),
   7658 (3880, 105, 'Grosseto', 'GR', 1),
   7659 (3881, 105, 'Imperia', 'IM', 1),
   7660 (3882, 105, 'Isernia', 'IS', 1),
   7661 (3883, 105, 'L'Aquila', 'AQ', 1),
   7662 (3884, 105, 'La Spezia', 'SP', 1),
   7663 (3885, 105, 'Latina', 'LT', 1),
   7664 (3886, 105, 'Lecce', 'LE', 1),
   7665 (3887, 105, 'Lecco', 'LC', 1),
   7666 (3888, 105, 'Livorno', 'LI', 1),
   7667 (3889, 105, 'Lodi', 'LO', 1),
   7668 (3890, 105, 'Lucca', 'LU', 1),
   7669 (3891, 105, 'Macerata', 'MC', 1),
   7670 (3892, 105, 'Mantova', 'MN', 1),
   7671 (3893, 105, 'Massa-Carrara', 'MS', 1),
   7672 (3894, 105, 'Matera', 'MT', 1),
   7673 (3896, 105, 'Messina', 'ME', 1),
   7674 (3897, 105, 'Milano', 'MI', 1),
   7675 (3898, 105, 'Modena', 'MO', 1),
   7676 (3899, 105, 'Napoli', 'NA', 1),
   7677 (3900, 105, 'Novara', 'NO', 1),
   7678 (3901, 105, 'Nuoro', 'NU', 1),
   7679 (3904, 105, 'Oristano', 'OR', 1),
   7680 (3905, 105, 'Padova', 'PD', 1),
   7681 (3906, 105, 'Palermo', 'PA', 1),
   7682 (3907, 105, 'Parma', 'PR', 1),
   7683 (3908, 105, 'Pavia', 'PV', 1),
   7684 (3909, 105, 'Perugia', 'PG', 1),
   7685 (3910, 105, 'Pesaro e Urbino', 'PU', 1),
   7686 (3911, 105, 'Pescara', 'PE', 1),
   7687 (3912, 105, 'Piacenza', 'PC', 1),
   7688 (3913, 105, 'Pisa', 'PI', 1),
   7689 (3914, 105, 'Pistoia', 'PT', 1),
   7690 (3915, 105, 'Pordenone', 'PN', 1),
   7691 (3916, 105, 'Potenza', 'PZ', 1),
   7692 (3917, 105, 'Prato', 'PO', 1),
   7693 (3918, 105, 'Ragusa', 'RG', 1),
   7694 (3919, 105, 'Ravenna', 'RA', 1),
   7695 (3920, 105, 'Reggio Calabria', 'RC', 1),
   7696 (3921, 105, 'Reggio Emilia', 'RE', 1),
   7697 (3922, 105, 'Rieti', 'RI', 1),
   7698 (3923, 105, 'Rimini', 'RN', 1),
   7699 (3924, 105, 'Roma', 'RM', 1),
   7700 (3925, 105, 'Rovigo', 'RO', 1),
   7701 (3926, 105, 'Salerno', 'SA', 1),
   7702 (3927, 105, 'Sassari', 'SS', 1),
   7703 (3928, 105, 'Savona', 'SV', 1),
   7704 (3929, 105, 'Siena', 'SI', 1),
   7705 (3930, 105, 'Siracusa', 'SR', 1),
   7706 (3931, 105, 'Sondrio', 'SO', 1),
   7707 (3932, 105, 'Taranto', 'TA', 1),
   7708 (3933, 105, 'Teramo', 'TE', 1),
   7709 (3934, 105, 'Terni', 'TR', 1),
   7710 (3935, 105, 'Torino', 'TO', 1),
   7711 (3936, 105, 'Trapani', 'TP', 1),
   7712 (3937, 105, 'Trento', 'TN', 1),
   7713 (3938, 105, 'Treviso', 'TV', 1),
   7714 (3939, 105, 'Trieste', 'TS', 1),
   7715 (3940, 105, 'Udine', 'UD', 1),
   7716 (3941, 105, 'Varese', 'VA', 1),
   7717 (3942, 105, 'Venezia', 'VE', 1),
   7718 (3943, 105, 'Verbano-Cusio-Ossola', 'VB', 1),
   7719 (3944, 105, 'Vercelli', 'VC', 1),
   7720 (3945, 105, 'Verona', 'VR', 1),
   7721 (3946, 105, 'Vibo Valentia', 'VV', 1),
   7722 (3947, 105, 'Vicenza', 'VI', 1),
   7723 (3948, 105, 'Viterbo', 'VT', 1),
   7724 (3949, 222, 'County Antrim', 'ANT', 1),
   7725 (3950, 222, 'County Armagh', 'ARM', 1),
   7726 (3951, 222, 'County Down', 'DOW', 1),
   7727 (3952, 222, 'County Fermanagh', 'FER', 1),
   7728 (3953, 222, 'County Londonderry', 'LDY', 1),
   7729 (3954, 222, 'County Tyrone', 'TYR', 1),
   7730 (3955, 222, 'Cumbria', 'CMA', 1),
   7731 (3956, 190, 'Pomurska', '1', 1),
   7732 (3957, 190, 'Podravska', '2', 1),
   7733 (3958, 190, 'Koroška', '3', 1),
   7734 (3959, 190, 'Savinjska', '4', 1),
   7735 (3960, 190, 'Zasavska', '5', 1),
   7736 (3961, 190, 'Spodnjeposavska', '6', 1),
   7737 (3962, 190, 'Jugovzhodna Slovenija', '7', 1),
   7738 (3963, 190, 'Osrednjeslovenska', '8', 1),
   7739 (3964, 190, 'Gorenjska', '9', 1),
   7740 (3965, 190, 'Notranjsko-kraška', '10', 1),
   7741 (3966, 190, 'Goriška', '11', 1),
   7742 (3967, 190, 'Obalno-kraška', '12', 1),
   7743 (3968, 33, 'Ruse', '', 1),
   7744 (3969, 101, 'Alborz', 'ALB', 1),
   7745 (3970, 21, 'Brussels-Capital Region', 'BRU', 1),
   7746 (3971, 138, 'Aguascalientes', 'AG', 1),
   7747 (3973, 242, 'Andrijevica', '01', 1),
   7748 (3974, 242, 'Bar', '02', 1),
   7749 (3975, 242, 'Berane', '03', 1),
   7750 (3976, 242, 'Bijelo Polje', '04', 1),
   7751 (3977, 242, 'Budva', '05', 1),
   7752 (3978, 242, 'Cetinje', '06', 1),
   7753 (3979, 242, 'Danilovgrad', '07', 1),
   7754 (3980, 242, 'Herceg-Novi', '08', 1),
   7755 (3981, 242, 'Kolašin', '09', 1),
   7756 (3982, 242, 'Kotor', '10', 1),
   7757 (3983, 242, 'Mojkovac', '11', 1),
   7758 (3984, 242, 'Nikšić', '12', 1),
   7759 (3985, 242, 'Plav', '13', 1),
   7760 (3986, 242, 'Pljevlja', '14', 1),
   7761 (3987, 242, 'Plužine', '15', 1),
   7762 (3988, 242, 'Podgorica', '16', 1),
   7763 (3989, 242, 'Rožaje', '17', 1),
   7764 (3990, 242, 'Šavnik', '18', 1),
   7765 (3991, 242, 'Tivat', '19', 1),
   7766 (3992, 242, 'Ulcinj', '20', 1),
   7767 (3993, 242, 'Žabljak', '21', 1),
   7768 (3994, 243, 'Belgrade', '00', 1),
   7769 (3995, 243, 'North Bačka', '01', 1),
   7770 (3996, 243, 'Central Banat', '02', 1),
   7771 (3997, 243, 'North Banat', '03', 1),
   7772 (3998, 243, 'South Banat', '04', 1),
   7773 (3999, 243, 'West Bačka', '05', 1),
   7774 (4000, 243, 'South Bačka', '06', 1),
   7775 (4001, 243, 'Srem', '07', 1),
   7776 (4002, 243, 'Mačva', '08', 1),
   7777 (4003, 243, 'Kolubara', '09', 1),
   7778 (4004, 243, 'Podunavlje', '10', 1),
   7779 (4005, 243, 'Braničevo', '11', 1),
   7780 (4006, 243, 'Šumadija', '12', 1),
   7781 (4007, 243, 'Pomoravlje', '13', 1),
   7782 (4008, 243, 'Bor', '14', 1),
   7783 (4009, 243, 'Zaječar', '15', 1),
   7784 (4010, 243, 'Zlatibor', '16', 1),
   7785 (4011, 243, 'Moravica', '17', 1),
   7786 (4012, 243, 'Raška', '18', 1),
   7787 (4013, 243, 'Rasina', '19', 1),
   7788 (4014, 243, 'Nišava', '20', 1),
   7789 (4015, 243, 'Toplica', '21', 1),
   7790 (4016, 243, 'Pirot', '22', 1),
   7791 (4017, 243, 'Jablanica', '23', 1),
   7792 (4018, 243, 'Pčinja', '24', 1),
   7793 (4020, 245, 'Bonaire', 'BO', 1),
   7794 (4021, 245, 'Saba', 'SA', 1),
   7795 (4022, 245, 'Sint Eustatius', 'SE', 1),
   7796 (4023, 248, 'Central Equatoria', 'EC', 1),
   7797 (4024, 248, 'Eastern Equatoria', 'EE', 1),
   7798 (4025, 248, 'Jonglei', 'JG', 1),
   7799 (4026, 248, 'Lakes', 'LK', 1),
   7800 (4027, 248, 'Northern Bahr el-Ghazal', 'BN', 1),
   7801 (4028, 248, 'Unity', 'UY', 1),
   7802 (4029, 248, 'Upper Nile', 'NU', 1),
   7803 (4030, 248, 'Warrap', 'WR', 1),
   7804 (4031, 248, 'Western Bahr el-Ghazal', 'BW', 1),
   7805 (4032, 248, 'Western Equatoria', 'EW', 1),
   7806 (4036, 117, 'Ainaži, Salacgrīvas novads', '0661405', 1),
   7807 (4037, 117, 'Aizkraukle, Aizkraukles novads', '0320201', 1),
   7808 (4038, 117, 'Aizkraukles novads', '0320200', 1),
   7809 (4039, 117, 'Aizpute, Aizputes novads', '0640605', 1),
   7810 (4040, 117, 'Aizputes novads', '0640600', 1),
   7811 (4041, 117, 'Aknīste, Aknīstes novads', '0560805', 1),
   7812 (4042, 117, 'Aknīstes novads', '0560800', 1),
   7813 (4043, 117, 'Aloja, Alojas novads', '0661007', 1),
   7814 (4044, 117, 'Alojas novads', '0661000', 1),
   7815 (4045, 117, 'Alsungas novads', '0624200', 1),
   7816 (4046, 117, 'Alūksne, Alūksnes novads', '0360201', 1),
   7817 (4047, 117, 'Alūksnes novads', '0360200', 1),
   7818 (4048, 117, 'Amatas novads', '0424701', 1),
   7819 (4049, 117, 'Ape, Apes novads', '0360805', 1),
   7820 (4050, 117, 'Apes novads', '0360800', 1),
   7821 (4051, 117, 'Auce, Auces novads', '0460805', 1),
   7822 (4052, 117, 'Auces novads', '0460800', 1),
   7823 (4053, 117, 'Ādažu novads', '0804400', 1),
   7824 (4054, 117, 'Babītes novads', '0804900', 1),
   7825 (4055, 117, 'Baldone, Baldones novads', '0800605', 1),
   7826 (4056, 117, 'Baldones novads', '0800600', 1),
   7827 (4057, 117, 'Baloži, Ķekavas novads', '0800807', 1),
   7828 (4058, 117, 'Baltinavas novads', '0384400', 1),
   7829 (4059, 117, 'Balvi, Balvu novads', '0380201', 1),
   7830 (4060, 117, 'Balvu novads', '0380200', 1),
   7831 (4061, 117, 'Bauska, Bauskas novads', '0400201', 1),
   7832 (4062, 117, 'Bauskas novads', '0400200', 1),
   7833 (4063, 117, 'Beverīnas novads', '0964700', 1),
   7834 (4064, 117, 'Brocēni, Brocēnu novads', '0840605', 1),
   7835 (4065, 117, 'Brocēnu novads', '0840601', 1),
   7836 (4066, 117, 'Burtnieku novads', '0967101', 1),
   7837 (4067, 117, 'Carnikavas novads', '0805200', 1),
   7838 (4068, 117, 'Cesvaine, Cesvaines novads', '0700807', 1),
   7839 (4069, 117, 'Cesvaines novads', '0700800', 1),
   7840 (4070, 117, 'Cēsis, Cēsu novads', '0420201', 1),
   7841 (4071, 117, 'Cēsu novads', '0420200', 1),
   7842 (4072, 117, 'Ciblas novads', '0684901', 1),
   7843 (4073, 117, 'Dagda, Dagdas novads', '0601009', 1),
   7844 (4074, 117, 'Dagdas novads', '0601000', 1),
   7845 (4075, 117, 'Daugavpils', '0050000', 1),
   7846 (4076, 117, 'Daugavpils novads', '0440200', 1),
   7847 (4077, 117, 'Dobele, Dobeles novads', '0460201', 1),
   7848 (4078, 117, 'Dobeles novads', '0460200', 1),
   7849 (4079, 117, 'Dundagas novads', '0885100', 1),
   7850 (4080, 117, 'Durbe, Durbes novads', '0640807', 1),
   7851 (4081, 117, 'Durbes novads', '0640801', 1),
   7852 (4082, 117, 'Engures novads', '0905100', 1),
   7853 (4083, 117, 'Ērgļu novads', '0705500', 1),
   7854 (4084, 117, 'Garkalnes novads', '0806000', 1),
   7855 (4085, 117, 'Grobiņa, Grobiņas novads', '0641009', 1),
   7856 (4086, 117, 'Grobiņas novads', '0641000', 1),
   7857 (4087, 117, 'Gulbene, Gulbenes novads', '0500201', 1),
   7858 (4088, 117, 'Gulbenes novads', '0500200', 1),
   7859 (4089, 117, 'Iecavas novads', '0406400', 1),
   7860 (4090, 117, 'Ikšķile, Ikšķiles novads', '0740605', 1),
   7861 (4091, 117, 'Ikšķiles novads', '0740600', 1),
   7862 (4092, 117, 'Ilūkste, Ilūkstes novads', '0440807', 1),
   7863 (4093, 117, 'Ilūkstes novads', '0440801', 1),
   7864 (4094, 117, 'Inčukalna novads', '0801800', 1),
   7865 (4095, 117, 'Jaunjelgava, Jaunjelgavas novads', '0321007', 1),
   7866 (4096, 117, 'Jaunjelgavas novads', '0321000', 1),
   7867 (4097, 117, 'Jaunpiebalgas novads', '0425700', 1),
   7868 (4098, 117, 'Jaunpils novads', '0905700', 1),
   7869 (4099, 117, 'Jelgava', '0090000', 1),
   7870 (4100, 117, 'Jelgavas novads', '0540200', 1),
   7871 (4101, 117, 'Jēkabpils', '0110000', 1),
   7872 (4102, 117, 'Jēkabpils novads', '0560200', 1),
   7873 (4103, 117, 'Jūrmala', '0130000', 1),
   7874 (4104, 117, 'Kalnciems, Jelgavas novads', '0540211', 1),
   7875 (4105, 117, 'Kandava, Kandavas novads', '0901211', 1),
   7876 (4106, 117, 'Kandavas novads', '0901201', 1),
   7877 (4107, 117, 'Kārsava, Kārsavas novads', '0681009', 1),
   7878 (4108, 117, 'Kārsavas novads', '0681000', 1),
   7879 (4109, 117, 'Kocēnu novads ,bij. Valmieras)', '0960200', 1),
   7880 (4110, 117, 'Kokneses novads', '0326100', 1),
   7881 (4111, 117, 'Krāslava, Krāslavas novads', '0600201', 1),
   7882 (4112, 117, 'Krāslavas novads', '0600202', 1),
   7883 (4113, 117, 'Krimuldas novads', '0806900', 1),
   7884 (4114, 117, 'Krustpils novads', '0566900', 1),
   7885 (4115, 117, 'Kuldīga, Kuldīgas novads', '0620201', 1),
   7886 (4116, 117, 'Kuldīgas novads', '0620200', 1),
   7887 (4117, 117, 'Ķeguma novads', '0741001', 1),
   7888 (4118, 117, 'Ķegums, Ķeguma novads', '0741009', 1),
   7889 (4119, 117, 'Ķekavas novads', '0800800', 1),
   7890 (4120, 117, 'Lielvārde, Lielvārdes novads', '0741413', 1),
   7891 (4121, 117, 'Lielvārdes novads', '0741401', 1),
   7892 (4122, 117, 'Liepāja', '0170000', 1),
   7893 (4123, 117, 'Limbaži, Limbažu novads', '0660201', 1),
   7894 (4124, 117, 'Limbažu novads', '0660200', 1),
   7895 (4125, 117, 'Līgatne, Līgatnes novads', '0421211', 1),
   7896 (4126, 117, 'Līgatnes novads', '0421200', 1),
   7897 (4127, 117, 'Līvāni, Līvānu novads', '0761211', 1),
   7898 (4128, 117, 'Līvānu novads', '0761201', 1),
   7899 (4129, 117, 'Lubāna, Lubānas novads', '0701413', 1),
   7900 (4130, 117, 'Lubānas novads', '0701400', 1),
   7901 (4131, 117, 'Ludza, Ludzas novads', '0680201', 1),
   7902 (4132, 117, 'Ludzas novads', '0680200', 1),
   7903 (4133, 117, 'Madona, Madonas novads', '0700201', 1),
   7904 (4134, 117, 'Madonas novads', '0700200', 1),
   7905 (4135, 117, 'Mazsalaca, Mazsalacas novads', '0961011', 1),
   7906 (4136, 117, 'Mazsalacas novads', '0961000', 1),
   7907 (4137, 117, 'Mālpils novads', '0807400', 1),
   7908 (4138, 117, 'Mārupes novads', '0807600', 1),
   7909 (4139, 117, 'Mērsraga novads', '0887600', 1),
   7910 (4140, 117, 'Naukšēnu novads', '0967300', 1),
   7911 (4141, 117, 'Neretas novads', '0327100', 1),
   7912 (4142, 117, 'Nīcas novads', '0647900', 1),
   7913 (4143, 117, 'Ogre, Ogres novads', '0740201', 1),
   7914 (4144, 117, 'Ogres novads', '0740202', 1),
   7915 (4145, 117, 'Olaine, Olaines novads', '0801009', 1),
   7916 (4146, 117, 'Olaines novads', '0801000', 1),
   7917 (4147, 117, 'Ozolnieku novads', '0546701', 1),
   7918 (4148, 117, 'Pārgaujas novads', '0427500', 1),
   7919 (4149, 117, 'Pāvilosta, Pāvilostas novads', '0641413', 1),
   7920 (4150, 117, 'Pāvilostas novads', '0641401', 1),
   7921 (4151, 117, 'Piltene, Ventspils novads', '0980213', 1),
   7922 (4152, 117, 'Pļaviņas, Pļaviņu novads', '0321413', 1),
   7923 (4153, 117, 'Pļaviņu novads', '0321400', 1),
   7924 (4154, 117, 'Preiļi, Preiļu novads', '0760201', 1),
   7925 (4155, 117, 'Preiļu novads', '0760202', 1),
   7926 (4156, 117, 'Priekule, Priekules novads', '0641615', 1),
   7927 (4157, 117, 'Priekules novads', '0641600', 1),
   7928 (4158, 117, 'Priekuļu novads', '0427300', 1),
   7929 (4159, 117, 'Raunas novads', '0427700', 1),
   7930 (4160, 117, 'Rēzekne', '0210000', 1),
   7931 (4161, 117, 'Rēzeknes novads', '0780200', 1),
   7932 (4162, 117, 'Riebiņu novads', '0766300', 1),
   7933 (4163, 117, 'Rīga', '0010000', 1),
   7934 (4164, 117, 'Rojas novads', '0888300', 1),
   7935 (4165, 117, 'Ropažu novads', '0808400', 1),
   7936 (4166, 117, 'Rucavas novads', '0648500', 1),
   7937 (4167, 117, 'Rugāju novads', '0387500', 1),
   7938 (4168, 117, 'Rundāles novads', '0407700', 1),
   7939 (4169, 117, 'Rūjiena, Rūjienas novads', '0961615', 1),
   7940 (4170, 117, 'Rūjienas novads', '0961600', 1),
   7941 (4171, 117, 'Sabile, Talsu novads', '0880213', 1),
   7942 (4172, 117, 'Salacgrīva, Salacgrīvas novads', '0661415', 1),
   7943 (4173, 117, 'Salacgrīvas novads', '0661400', 1),
   7944 (4174, 117, 'Salas novads', '0568700', 1),
   7945 (4175, 117, 'Salaspils novads', '0801200', 1),
   7946 (4176, 117, 'Salaspils, Salaspils novads', '0801211', 1),
   7947 (4177, 117, 'Saldus novads', '0840200', 1),
   7948 (4178, 117, 'Saldus, Saldus novads', '0840201', 1),
   7949 (4179, 117, 'Saulkrasti, Saulkrastu novads', '0801413', 1),
   7950 (4180, 117, 'Saulkrastu novads', '0801400', 1),
   7951 (4181, 117, 'Seda, Strenču novads', '0941813', 1),
   7952 (4182, 117, 'Sējas novads', '0809200', 1),
   7953 (4183, 117, 'Sigulda, Siguldas novads', '0801615', 1),
   7954 (4184, 117, 'Siguldas novads', '0801601', 1),
   7955 (4185, 117, 'Skrīveru novads', '0328200', 1),
   7956 (4186, 117, 'Skrunda, Skrundas novads', '0621209', 1),
   7957 (4187, 117, 'Skrundas novads', '0621200', 1),
   7958 (4188, 117, 'Smiltene, Smiltenes novads', '0941615', 1),
   7959 (4189, 117, 'Smiltenes novads', '0941600', 1),
   7960 (4190, 117, 'Staicele, Alojas novads', '0661017', 1),
   7961 (4191, 117, 'Stende, Talsu novads', '0880215', 1),
   7962 (4192, 117, 'Stopiņu novads', '0809600', 1),
   7963 (4193, 117, 'Strenči, Strenču novads', '0941817', 1),
   7964 (4194, 117, 'Strenču novads', '0941800', 1),
   7965 (4195, 117, 'Subate, Ilūkstes novads', '0440815', 1),
   7966 (4196, 117, 'Talsi, Talsu novads', '0880201', 1),
   7967 (4197, 117, 'Talsu novads', '0880200', 1),
   7968 (4198, 117, 'Tērvetes novads', '0468900', 1),
   7969 (4199, 117, 'Tukuma novads', '0900200', 1),
   7970 (4200, 117, 'Tukums, Tukuma novads', '0900201', 1),
   7971 (4201, 117, 'Vaiņodes novads', '0649300', 1),
   7972 (4202, 117, 'Valdemārpils, Talsu novads', '0880217', 1),
   7973 (4203, 117, 'Valka, Valkas novads', '0940201', 1),
   7974 (4204, 117, 'Valkas novads', '0940200', 1),
   7975 (4205, 117, 'Valmiera', '0250000', 1),
   7976 (4206, 117, 'Vangaži, Inčukalna novads', '0801817', 1),
   7977 (4207, 117, 'Varakļāni, Varakļānu novads', '0701817', 1),
   7978 (4208, 117, 'Varakļānu novads', '0701800', 1),
   7979 (4209, 117, 'Vārkavas novads', '0769101', 1),
   7980 (4210, 117, 'Vecpiebalgas novads', '0429300', 1),
   7981 (4211, 117, 'Vecumnieku novads', '0409500', 1),
   7982 (4212, 117, 'Ventspils', '0270000', 1),
   7983 (4213, 117, 'Ventspils novads', '0980200', 1),
   7984 (4214, 117, 'Viesīte, Viesītes novads', '0561815', 1),
   7985 (4215, 117, 'Viesītes novads', '0561800', 1),
   7986 (4216, 117, 'Viļaka, Viļakas novads', '0381615', 1),
   7987 (4217, 117, 'Viļakas novads', '0381600', 1),
   7988 (4218, 117, 'Viļāni, Viļānu novads', '0781817', 1),
   7989 (4219, 117, 'Viļānu novads', '0781800', 1),
   7990 (4220, 117, 'Zilupe, Zilupes novads', '0681817', 1),
   7991 (4221, 117, 'Zilupes novads', '0681801', 1),
   7992 (4222, 43, 'Arica y Parinacota', 'AP', 1),
   7993 (4223, 43, 'Los Rios', 'LR', 1),
   7994 (4224, 220, 'Kharkivs''ka Oblast''', '63', 1),
   7995 (4225, 118, 'Beirut', 'LB-BR', 1),
   7996 (4226, 118, 'Bekaa', 'LB-BE', 1),
   7997 (4227, 118, 'Mount Lebanon', 'LB-ML', 1),
   7998 (4228, 118, 'Nabatieh', 'LB-NB', 1),
   7999 (4229, 118, 'North', 'LB-NR', 1),
   8000 (4230, 118, 'South', 'LB-ST', 1),
   8001 (4231, 99, 'Telangana', 'TS', 1),
   8002 (4232, 44, 'Qinghai', 'QH', 1),
   8003 (4233, 100, 'Papua Barat', 'PB', 1),
   8004 (4234, 100, 'Sulawesi Barat', 'SR', 1),
   8005 (4235, 100, 'Kepulauan Riau', 'KR', 1),
   8006 (4236, 105, 'Barletta-Andria-Trani', 'BT', 1),
   8007 (4237, 105, 'Fermo', 'FM', 1),
   8008 (4238, 105, 'Monza Brianza', 'MB', 1);
   8009 
   8010 -----------------------------------------------------------
   8011 
   8012 --
   8013 -- Table structure for table `oc_zone_to_geo_zone`
   8014 --
   8015 
   8016 DROP TABLE IF EXISTS `oc_zone_to_geo_zone`;
   8017 CREATE TABLE `oc_zone_to_geo_zone` (
   8018   `zone_to_geo_zone_id` int(11) NOT NULL AUTO_INCREMENT,
   8019   `country_id` int(11) NOT NULL,
   8020   `zone_id` int(11) NOT NULL DEFAULT '0',
   8021   `geo_zone_id` int(11) NOT NULL,
   8022   `date_added` datetime NOT NULL,
   8023   `date_modified` datetime NOT NULL,
   8024   PRIMARY KEY (`zone_to_geo_zone_id`)
   8025 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
   8026 
   8027 --
   8028 -- Dumping data for table `oc_zone_to_geo_zone`
   8029 --
   8030 
   8031 INSERT INTO `oc_zone_to_geo_zone` (`zone_to_geo_zone_id`, `country_id`, `zone_id`, `geo_zone_id`, `date_added`, `date_modified`) VALUES
   8032 (1, 222, 0, 4, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8033 (2, 222, 3513, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8034 (3, 222, 3514, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8035 (4, 222, 3515, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8036 (5, 222, 3516, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8037 (6, 222, 3517, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8038 (7, 222, 3518, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8039 (8, 222, 3519, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8040 (9, 222, 3520, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8041 (10, 222, 3521, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8042 (11, 222, 3522, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8043 (12, 222, 3523, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8044 (13, 222, 3524, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8045 (14, 222, 3525, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8046 (15, 222, 3526, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8047 (16, 222, 3527, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8048 (17, 222, 3528, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8049 (18, 222, 3529, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8050 (19, 222, 3530, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8051 (20, 222, 3531, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8052 (21, 222, 3532, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8053 (22, 222, 3533, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8054 (23, 222, 3534, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8055 (24, 222, 3535, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8056 (25, 222, 3536, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8057 (26, 222, 3537, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8058 (27, 222, 3538, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8059 (28, 222, 3539, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8060 (29, 222, 3540, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8061 (30, 222, 3541, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8062 (31, 222, 3542, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8063 (32, 222, 3543, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8064 (33, 222, 3544, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8065 (34, 222, 3545, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8066 (35, 222, 3546, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8067 (36, 222, 3547, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8068 (37, 222, 3548, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8069 (38, 222, 3549, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8070 (39, 222, 3550, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8071 (40, 222, 3551, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8072 (41, 222, 3552, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8073 (42, 222, 3553, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8074 (43, 222, 3554, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8075 (44, 222, 3555, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8076 (45, 222, 3556, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8077 (46, 222, 3557, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8078 (47, 222, 3558, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8079 (48, 222, 3559, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8080 (49, 222, 3560, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8081 (50, 222, 3561, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8082 (51, 222, 3562, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8083 (52, 222, 3563, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8084 (53, 222, 3564, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8085 (54, 222, 3565, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8086 (55, 222, 3566, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8087 (56, 222, 3567, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8088 (57, 222, 3568, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8089 (58, 222, 3569, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8090 (59, 222, 3570, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8091 (60, 222, 3571, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8092 (61, 222, 3572, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8093 (62, 222, 3573, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8094 (63, 222, 3574, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8095 (64, 222, 3575, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8096 (65, 222, 3576, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8097 (66, 222, 3577, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8098 (67, 222, 3578, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8099 (68, 222, 3579, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8100 (69, 222, 3580, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8101 (70, 222, 3581, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8102 (71, 222, 3582, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8103 (72, 222, 3583, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8104 (73, 222, 3584, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8105 (74, 222, 3585, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8106 (75, 222, 3586, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8107 (76, 222, 3587, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8108 (77, 222, 3588, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8109 (78, 222, 3589, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8110 (79, 222, 3590, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8111 (80, 222, 3591, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8112 (81, 222, 3592, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8113 (82, 222, 3593, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8114 (83, 222, 3594, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8115 (84, 222, 3595, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8116 (85, 222, 3596, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8117 (86, 222, 3597, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8118 (87, 222, 3598, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8119 (88, 222, 3599, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8120 (89, 222, 3600, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8121 (90, 222, 3601, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8122 (91, 222, 3602, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8123 (92, 222, 3603, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8124 (93, 222, 3604, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8125 (94, 222, 3605, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8126 (95, 222, 3606, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8127 (96, 222, 3607, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8128 (97, 222, 3608, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8129 (98, 222, 3609, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8130 (99, 222, 3610, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8131 (100, 222, 3611, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8132 (101, 222, 3612, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8133 (102, 222, 3949, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8134 (103, 222, 3950, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8135 (104, 222, 3951, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8136 (105, 222, 3952, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8137 (106, 222, 3953, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8138 (107, 222, 3954, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8139 (108, 222, 3955, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
   8140 (109, 222, 3972, 3, '0000-00-00 00:00:00', '0000-00-00 00:00:00');