Файл: upload/install/opencart.sql
Строк: 8800
-- --------------------------------------------------------
--
--
Database: `ocStore`
--
--
--------------------------------------------------------
SET sql_mode =
'';
--
-- Table structure for table `oc_address`
--
DROP TABLE IF EXISTS
`oc_address`;
CREATE TABLE `oc_address` (
`address_id` int(11) NOT NULL
AUTO_INCREMENT,
`customer_id` int(11) NOT NULL,
`firstname` varchar(32)
NOT NULL,
`lastname` varchar(32) NOT NULL,
`company` varchar(40) NOT
NULL,
`address_1` varchar(128) NOT NULL,
`address_2` varchar(128) NOT
NULL,
`city` varchar(128) NOT NULL,
`postcode` varchar(10) NOT NULL,
`country_id` int(11) NOT NULL DEFAULT '0',
`zone_id` int(11) NOT NULL
DEFAULT '0',
`custom_field` text NOT NULL,
PRIMARY KEY (`address_id`),
KEY `customer_id` (`customer_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_affiliate`
--
DROP TABLE IF EXISTS
`oc_affiliate`;
CREATE TABLE `oc_affiliate` (
`affiliate_id` int(11) NOT
NULL AUTO_INCREMENT,
`firstname` varchar(32) NOT NULL,
`lastname`
varchar(32) NOT NULL,
`email` varchar(96) NOT NULL,
`telephone`
varchar(32) NOT NULL,
`fax` varchar(32) NOT NULL,
`password`
varchar(40) NOT NULL,
`salt` varchar(9) NOT NULL,
`company` varchar(40)
NOT NULL,
`website` varchar(255) NOT NULL,
`address_1` varchar(128) NOT
NULL,
`address_2` varchar(128) NOT NULL,
`city` varchar(128) NOT NULL,
`postcode` varchar(10) NOT NULL,
`country_id` int(11) NOT NULL,
`zone_id` int(11) NOT NULL,
`code` varchar(64) NOT NULL,
`commission`
decimal(4,2) NOT NULL DEFAULT '0.00',
`tax` varchar(64) NOT NULL,
`payment` varchar(6) NOT NULL,
`cheque` varchar(100) NOT NULL,
`paypal`
varchar(64) NOT NULL,
`bank_name` varchar(64) NOT NULL,
`bank_branch_number` varchar(64) NOT NULL,
`bank_swift_code` varchar(64)
NOT NULL,
`bank_account_name` varchar(64) NOT NULL,
`bank_account_number` varchar(64) NOT NULL,
`ip` varchar(40) NOT NULL,
`status` tinyint(1) NOT NULL,
`approved` tinyint(1) NOT NULL,
`date_added` datetime NOT NULL,
PRIMARY KEY (`affiliate_id`)
)
ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_affiliate_activity`
--
DROP TABLE IF EXISTS
`oc_affiliate_activity`;
CREATE TABLE `oc_affiliate_activity` (
`activity_id` int(11) NOT NULL AUTO_INCREMENT,
`affiliate_id` int(11) NOT
NULL,
`key` varchar(64) NOT NULL,
`data` text NOT NULL,
`ip`
varchar(40) NOT NULL,
`date_added` datetime NOT NULL,
PRIMARY KEY
(`activity_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_affiliate_login`
--
DROP TABLE IF EXISTS
`oc_affiliate_login`;
CREATE TABLE `oc_affiliate_login` (
`affiliate_login_id` int(11) NOT NULL AUTO_INCREMENT,
`email` varchar(96)
NOT NULL,
`ip` varchar(40) NOT NULL,
`total` int(4) NOT NULL,
`date_added` datetime NOT NULL,
`date_modified` datetime NOT NULL,
PRIMARY KEY (`affiliate_login_id`),
KEY `email` (`email`),
KEY `ip`
(`ip`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_affiliate_transaction`
--
DROP TABLE IF EXISTS
`oc_affiliate_transaction`;
CREATE TABLE `oc_affiliate_transaction` (
`affiliate_transaction_id` int(11) NOT NULL AUTO_INCREMENT,
`affiliate_id` int(11) NOT NULL,
`order_id` int(11) NOT NULL,
`description` text NOT NULL,
`amount` decimal(15,4) NOT NULL,
`date_added` datetime NOT NULL,
PRIMARY KEY
(`affiliate_transaction_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_api`
--
DROP TABLE IF EXISTS `oc_api`;
CREATE
TABLE `oc_api` (
`api_id` int(11) NOT NULL AUTO_INCREMENT,
`name`
varchar(64) NOT NULL,
`key` text NOT NULL,
`status` tinyint(1) NOT
NULL,
`date_added` datetime NOT NULL,
`date_modified` datetime NOT
NULL,
PRIMARY KEY (`api_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_api_ip`
--
DROP TABLE IF EXISTS
`oc_api_ip`;
CREATE TABLE `oc_api_ip` (
`api_ip_id` int(11) NOT NULL
AUTO_INCREMENT,
`api_id` int(11) NOT NULL,
`ip` varchar(40) NOT NULL,
PRIMARY KEY (`api_ip_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_api_session`
--
DROP TABLE IF EXISTS
`oc_api_session`;
CREATE TABLE `oc_api_session` (
`api_session_id`
int(11) NOT NULL AUTO_INCREMENT,
`api_id` int(11) NOT NULL,
`token`
varchar(32) NOT NULL,
`session_id` varchar(32) NOT NULL,
`session_name`
varchar(32) NOT NULL,
`ip` varchar(40) NOT NULL,
`date_added` datetime
NOT NULL,
`date_modified` datetime NOT NULL,
PRIMARY KEY
(`api_session_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_attribute`
--
DROP TABLE IF EXISTS
`oc_attribute`;
CREATE TABLE `oc_attribute` (
`attribute_id` int(11) NOT
NULL AUTO_INCREMENT,
`attribute_group_id` int(11) NOT NULL,
`sort_order` int(3) NOT NULL,
PRIMARY KEY (`attribute_id`)
)
ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
--
-- Dumping
data for table `oc_attribute`
--
INSERT INTO `oc_attribute`
(`attribute_id`, `attribute_group_id`, `sort_order`) VALUES
(1, 6, 1),
(2,
6, 5),
(3, 6, 3),
(4, 3, 1),
(5, 3, 2),
(6, 3, 3),
(7, 3, 4),
(8, 3,
5),
(9, 3, 6),
(10, 3, 7),
(11, 3, 8);
--
--------------------------------------------------------
--
-- Table
structure for table `oc_attribute_description`
--
DROP TABLE IF EXISTS
`oc_attribute_description`;
CREATE TABLE `oc_attribute_description` (
`attribute_id` int(11) NOT NULL,
`language_id` int(11) NOT NULL,
`name`
varchar(64) NOT NULL,
PRIMARY KEY (`attribute_id`,`language_id`)
)
ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
--
-- Dumping
data for table `oc_attribute_description`
--
INSERT INTO
`oc_attribute_description` (`attribute_id`, `language_id`, `name`)
VALUES
(1, 1, 'Description'),
(2, 1, 'No. of Cores'),
(4, 1, 'test 1'),
(5,
1, 'test 2'),
(6, 1, 'test 3'),
(7, 1, 'test 4'),
(8, 1, 'test 5'),
(9, 1,
'test 6'),
(10, 1, 'test 7'),
(11, 1, 'test 8'),
(3, 1, 'Clockspeed');
--
--------------------------------------------------------
--
-- Table
structure for table `oc_attribute_group`
--
DROP TABLE IF EXISTS
`oc_attribute_group`;
CREATE TABLE `oc_attribute_group` (
`attribute_group_id` int(11) NOT NULL AUTO_INCREMENT,
`sort_order` int(3)
NOT NULL,
PRIMARY KEY (`attribute_group_id`)
) ENGINE=MyISAM DEFAULT
CHARSET=utf8 COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_attribute_group`
--
INSERT INTO `oc_attribute_group`
(`attribute_group_id`, `sort_order`) VALUES
(3, 2),
(4, 1),
(5, 3),
(6,
4);
-- --------------------------------------------------------
--
--
Table structure for table `oc_attribute_group_description`
--
DROP TABLE
IF EXISTS `oc_attribute_group_description`;
CREATE TABLE
`oc_attribute_group_description` (
`attribute_group_id` int(11) NOT
NULL,
`language_id` int(11) NOT NULL,
`name` varchar(64) NOT NULL,
PRIMARY KEY (`attribute_group_id`,`language_id`)
) ENGINE=MyISAM DEFAULT
CHARSET=utf8 COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_attribute_group_description`
--
INSERT INTO
`oc_attribute_group_description` (`attribute_group_id`, `language_id`,
`name`) VALUES
(3, 1, 'Память'),
(4, 1, 'Technical'),
(5, 1,
'Материнская плата'),
(6, 1, 'Процессор'),
(3, 2,
'Memory'),
(4, 2, 'Technical'),
(5, 2, 'Motherboard'),
(6, 2,
'Processor');
--
--------------------------------------------------------
--
-- Table
structure for table `oc_banner`
--
DROP TABLE IF EXISTS
`oc_banner`;
CREATE TABLE `oc_banner` (
`banner_id` int(11) NOT NULL
AUTO_INCREMENT,
`name` varchar(64) NOT NULL,
`status` tinyint(1) NOT
NULL,
PRIMARY KEY (`banner_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_banner`
--
INSERT INTO `oc_banner` (`banner_id`, `name`, `status`)
VALUES
(6, 'Продукция HP', 1),
(7, 'Слайдшоу на
главной', 1),
(8, 'Производители', 1);
--
--------------------------------------------------------
--
-- Table
structure for table `oc_banner_image`
--
DROP TABLE IF EXISTS
`oc_banner_image`;
CREATE TABLE `oc_banner_image` (
`banner_image_id`
int(11) NOT NULL AUTO_INCREMENT,
`banner_id` int(11) NOT NULL,
`link`
varchar(255) NOT NULL,
`image` varchar(255) NOT NULL,
`sort_order`
int(3) NOT NULL DEFAULT '0',
PRIMARY KEY (`banner_image_id`)
)
ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
--
-- Dumping
data for table `oc_banner_image`
--
INSERT INTO `oc_banner_image`
(`banner_image_id`, `banner_id`, `link`, `image`, `sort_order`) VALUES
(79,
7, 'index.php?route=product/product&path=57&product_id=49',
'catalog/demo/banners/iPhone6.jpg', 0),
(87, 6,
'index.php?route=product/manufacturer/info&manufacturer_id=7',
'catalog/demo/compaq_presario.jpg', 0),
(94, 8, '',
'catalog/demo/manufacturer/nfl.png', 0),
(95, 8, '',
'catalog/demo/manufacturer/redbull.png', 0),
(96, 8, '',
'catalog/demo/manufacturer/sony.png', 0),
(91, 8, '',
'catalog/demo/manufacturer/cocacola.png', 0),
(92, 8, '',
'catalog/demo/manufacturer/burgerking.png', 0),
(93, 8, '',
'catalog/demo/manufacturer/canon.png', 0),
(88, 8, '',
'catalog/demo/manufacturer/harley.png', 0),
(89, 8, '',
'catalog/demo/manufacturer/dell.png', 0),
(90, 8, '',
'catalog/demo/manufacturer/disney.png', 0),
(80, 7, '',
'catalog/demo/banners/MacBookAir.jpg', 0),
(97, 8, '',
'catalog/demo/manufacturer/starbucks.png', 0),
(98, 8, '',
'catalog/demo/manufacturer/nintendo.png', 0);
--
--------------------------------------------------------
--
-- Table
structure for table `oc_banner_image_description`
--
DROP TABLE IF EXISTS
`oc_banner_image_description`;
CREATE TABLE `oc_banner_image_description`
(
`banner_image_id` int(11) NOT NULL,
`language_id` int(11) NOT NULL,
`banner_id` int(11) NOT NULL,
`title` varchar(64) NOT NULL,
PRIMARY KEY
(`banner_image_id`,`language_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_banner_image_description`
--
INSERT INTO `oc_banner_image_description`
(`banner_image_id`, `language_id`, `banner_id`, `title`) VALUES
(79, 1, 7,
'iPhone 6'),
(87, 1, 6, 'HP Banner'),
(93, 1, 8, 'Canon'),
(92, 1, 8,
'Burger King'),
(91, 1, 8, 'Coca Cola'),
(90, 1, 8, 'Disney'),
(89, 1, 8,
'Dell'),
(80, 1, 7, 'MacBookAir'),
(88, 1, 8, 'Harley Davidson'),
(94, 1,
8, 'NFL'),
(95, 1, 8, 'RedBull'),
(96, 1, 8, 'Sony'),
(97, 1, 8,
'Starbucks'),
(98, 1, 8, 'Nintendo'),
(79, 2, 7, 'iPhone 6'),
(87, 2, 6,
'HP Banner'),
(93, 2, 8, 'Canon'),
(92, 2, 8, 'Burger King'),
(91, 2, 8,
'Coca Cola'),
(90, 2, 8, 'Disney'),
(89, 2, 8, 'Dell'),
(80, 2, 7,
'MacBookAir'),
(88, 2, 8, 'Harley Davidson'),
(94, 2, 8, 'NFL'),
(95, 2, 8,
'RedBull'),
(96, 2, 8, 'Sony'),
(97, 2, 8, 'Starbucks'),
(98, 2, 8,
'Nintendo');
--
--------------------------------------------------------
--
-- Table
structure for table `oc_cart`
--
DROP TABLE IF EXISTS `oc_cart`;
CREATE
TABLE `oc_cart` (
`cart_id` int(11) NOT NULL AUTO_INCREMENT,
`customer_id` int(11) NOT NULL,
`session_id` varchar(32) NOT NULL,
`product_id` int(11) NOT NULL,
`recurring_id` int(11) NOT NULL,
`option` text NOT NULL,
`quantity` int(5) NOT NULL,
`date_added`
datetime NOT NULL,
PRIMARY KEY (`cart_id`),
KEY `cart_id`
(`customer_id`,`session_id`,`product_id`,`recurring_id`)
) ENGINE=InnoDB
DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_category`
--
DROP TABLE IF EXISTS
`oc_category`;
CREATE TABLE `oc_category` (
`category_id` int(11) NOT
NULL AUTO_INCREMENT,
`image` varchar(255) DEFAULT NULL,
`parent_id`
int(11) NOT NULL DEFAULT '0',
`top` tinyint(1) NOT NULL,
`column`
int(3) NOT NULL,
`sort_order` int(3) NOT NULL DEFAULT '0',
`status`
tinyint(1) NOT NULL,
`date_added` datetime NOT NULL,
`date_modified`
datetime NOT NULL,
PRIMARY KEY (`category_id`),
KEY `parent_id`
(`parent_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_category`
--
INSERT INTO `oc_category` (`category_id`, `image`,
`parent_id`, `top`, `column`, `sort_order`, `status`, `date_added`,
`date_modified`) VALUES
(25, '', 0, 1, 1, 3, 1, '2009-01-31 01:04:25',
'2011-05-30 12:14:55'),
(27, '', 20, 0, 0, 2, 1, '2009-01-31 01:55:34',
'2010-08-22 06:32:15'),
(20, 'catalog/demo/compaq_presario.jpg', 0, 1, 1,
1, 1, '2009-01-05 21:49:43', '2011-07-16 02:14:42'),
(24, '', 0, 1, 1, 5,
1, '2009-01-20 02:36:26', '2011-05-30 12:15:18'),
(18,
'catalog/demo/hp_2.jpg', 0, 1, 0, 2, 1, '2009-01-05 21:49:15', '2011-05-30
12:13:55'),
(17, '', 0, 1, 1, 4, 1, '2009-01-03 21:08:57', '2011-05-30
12:15:11'),
(28, '', 25, 0, 0, 1, 1, '2009-02-02 13:11:12', '2010-08-22
06:32:46'),
(26, '', 20, 0, 0, 1, 1, '2009-01-31 01:55:14', '2010-08-22
06:31:45'),
(29, '', 25, 0, 0, 1, 1, '2009-02-02 13:11:37', '2010-08-22
06:32:39'),
(30, '', 25, 0, 0, 1, 1, '2009-02-02 13:11:59', '2010-08-22
06:33:00'),
(31, '', 25, 0, 0, 1, 1, '2009-02-03 14:17:24', '2010-08-22
06:33:06'),
(32, '', 25, 0, 0, 1, 1, '2009-02-03 14:17:34', '2010-08-22
06:33:12'),
(33, '', 0, 1, 1, 6, 1, '2009-02-03 14:17:55', '2011-05-30
12:15:25'),
(34, 'catalog/demo/ipod_touch_4.jpg', 0, 1, 4, 7, 1,
'2009-02-03 14:18:11', '2011-05-30 12:15:31'),
(35, '', 28, 0, 0, 0, 1,
'2010-09-17 10:06:48', '2010-09-18 14:02:42'),
(36, '', 28, 0, 0, 0, 1,
'2010-09-17 10:07:13', '2010-09-18 14:02:55'),
(37, '', 34, 0, 0, 0, 1,
'2010-09-18 14:03:39', '2011-04-22 01:55:08'),
(38, '', 34, 0, 0, 0, 1,
'2010-09-18 14:03:51', '2010-09-18 14:03:51'),
(39, '', 34, 0, 0, 0, 1,
'2010-09-18 14:04:17', '2011-04-22 01:55:20'),
(40, '', 34, 0, 0, 0, 1,
'2010-09-18 14:05:36', '2010-09-18 14:05:36'),
(41, '', 34, 0, 0, 0, 1,
'2010-09-18 14:05:49', '2011-04-22 01:55:30'),
(42, '', 34, 0, 0, 0, 1,
'2010-09-18 14:06:34', '2010-11-07 20:31:04'),
(43, '', 34, 0, 0, 0, 1,
'2010-09-18 14:06:49', '2011-04-22 01:55:40'),
(44, '', 34, 0, 0, 0, 1,
'2010-09-21 15:39:21', '2010-11-07 20:30:55'),
(45, '', 18, 0, 0, 0, 1,
'2010-09-24 18:29:16', '2011-04-26 08:52:11'),
(46, '', 18, 0, 0, 0, 1,
'2010-09-24 18:29:31', '2011-04-26 08:52:23'),
(47, '', 34, 0, 0, 0, 1,
'2010-11-07 11:13:16', '2010-11-07 11:13:16'),
(48, '', 34, 0, 0, 0, 1,
'2010-11-07 11:13:33', '2010-11-07 11:13:33'),
(49, '', 34, 0, 0, 0, 1,
'2010-11-07 11:14:04', '2010-11-07 11:14:04'),
(50, '', 34, 0, 0, 0, 1,
'2010-11-07 11:14:23', '2011-04-22 01:16:01'),
(51, '', 34, 0, 0, 0, 1,
'2010-11-07 11:14:38', '2011-04-22 01:16:13'),
(52, '', 34, 0, 0, 0, 1,
'2010-11-07 11:16:09', '2011-04-22 01:54:57'),
(53, '', 34, 0, 0, 0, 1,
'2010-11-07 11:28:53', '2011-04-22 01:14:36'),
(54, '', 34, 0, 0, 0, 1,
'2010-11-07 11:29:16', '2011-04-22 01:16:50'),
(55, '', 34, 0, 0, 0, 1,
'2010-11-08 10:31:32', '2010-11-08 10:31:32'),
(56, '', 34, 0, 0, 0, 1,
'2010-11-08 10:31:50', '2011-04-22 01:16:37'),
(57, '', 0, 1, 1, 3, 1,
'2011-04-26 08:53:16', '2011-05-30 12:15:05'),
(58, '', 52, 0, 0, 0, 1,
'2011-05-08 13:44:16', '2011-05-08 13:44:16');
--
--------------------------------------------------------
--
-- Table
structure for table `oc_category_description`
--
DROP TABLE IF EXISTS
`oc_category_description`;
CREATE TABLE `oc_category_description` (
`category_id` int(11) NOT NULL,
`language_id` int(11) NOT NULL,
`name`
varchar(255) NOT NULL,
`description` text NOT NULL,
`meta_title`
varchar(255) NOT NULL,
`meta_h1` varchar(255) NOT NULL,
`meta_description` varchar(255) NOT NULL,
`meta_keyword` varchar(255) NOT
NULL,
PRIMARY KEY (`category_id`,`language_id`),
KEY `name` (`name`)
)
ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
--
-- Dumping
data for table `oc_category_description`
--
INSERT INTO
`oc_category_description` (`category_id`, `language_id`, `name`,
`description`, `meta_title`, `meta_h1`, `meta_description`, `meta_keyword`)
VALUES
(28, 1, 'Мониторы', '', '', '', '', ''),
(33, 1,
'Камеры', '', '', '', '', ''),
(32, 1, 'Веб-камеры', '', '',
'', '', ''),
(31, 1, 'Сканеры', '', '', '', '', ''),
(30, 1,
'Принтеры', '', '', '', '', ''),
(29, 1, 'Мышки', '', '', '',
'', ''),
(27, 1, 'Mac', '', '', '', '', ''),
(26, 1, 'PC', '', '', '', '',
''),
(17, 1, 'Програмное обеспечение', '', '', '', '',
''),
(25, 1, 'Компоненты', '', '', '', '', ''),
(24, 1,
'Телефоны и PDA', '', '', '', '', ''),
(20, 1,
'Компьютеры', '<p>\r\n Пример текста в
описания категории</p>\r\n', 'H1
заголовок Комьпютеров', '', '', ''),
(35, 1, 'test 1',
'', '', '', '', ''),
(36, 1, 'test 2', '', '', '', '', ''),
(37, 1, 'test
5', '', '', '', '', ''),
(38, 1, 'test 4', '', '', '', '', ''),
(39, 1,
'test 6', '', '', '', '', ''),
(40, 1, 'test 7', '', '', '', '', ''),
(41,
1, 'test 8', '', '', '', '', ''),
(42, 1, 'test 9', '', '', '', '',
''),
(43, 1, 'test 11', '', '', '', '', ''),
(34, 1, 'MP3 Плееры',
'<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', '', '', '', ''),
(18, 1,
'Ноутбуки', '<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', '', '', '',
''),
(44, 1, 'test 12', '', '', '', '', ''),
(45, 1, 'Windows', '', '', '',
'', ''),
(46, 1, 'Macs', '', '', '', '', ''),
(47, 1, 'test 15', '', '',
'', '', ''),
(48, 1, 'test 16', '', '', '', '', ''),
(49, 1, 'test 17', '',
'', '', '', ''),
(50, 1, 'test 18', '', '', '', '', ''),
(51, 1, 'test 19',
'', '', '', '', ''),
(52, 1, 'test 20', '', '', '', '', ''),
(53, 1, 'test
21', '', '', '', '', ''),
(54, 1, 'test 22', '', '', '', '', ''),
(55, 1,
'test 23', '', '', '', '', ''),
(56, 1, 'test 24', '', '', '', '',
''),
(57, 1, 'Планшеты', '', '', '', '', ''),
(58, 1, 'test 25',
'', '', '', '', ''),
(28, 2, 'Monitors', '', '', '', '', ''),
(33, 2,
'Cameras', '', '', '', '', ''),
(32, 2, 'Web Cameras', '', '', '', '',
''),
(31, 2, 'Scanners', '', '', '', '', ''),
(30, 2, 'Printers', '', '',
'', '', ''),
(29, 2, 'Mice and Trackballs', '', '', '', '', ''),
(27, 2,
'Mac', '', '', '', '', ''),
(26, 2, 'PC', '', '', '', '', ''),
(17, 2,
'Software', '', '', '', '', ''),
(25, 2, 'Components', '', '', '', '',
''),
(24, 2, 'Phones & PDAs', '', '', '', '', ''),
(20, 2,
'Desktops', '<p>\r\n Example of category description
text</p>\r\n', 'Example of category description', '', '',
''),
(35, 2, 'test 1', '', '', '', '', ''),
(36, 2, 'test 2', '', '', '',
'', ''),
(37, 2, 'test 5', '', '', '', '', ''),
(38, 2, 'test 4', '', '',
'', '', ''),
(39, 2, 'test 6', '', '', '', '', ''),
(40, 2, 'test 7', '',
'', '', '', ''),
(41, 2, 'test 8', '', '', '', '', ''),
(42, 2, 'test 9',
'', '', '', '', ''),
(43, 2, 'test 11', '', '', '', '', ''),
(34, 2, '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', '', '', '', ''),
(18, 2,
'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', '', '', '',
''),
(44, 2, 'test 12', '', '', '', '', ''),
(45, 2, 'Windows', '', '', '',
'', ''),
(46, 2, 'Macs', '', '', '', '', ''),
(47, 2, 'test 15', '', '',
'', '', ''),
(48, 2, 'test 16', '', '', '', '', ''),
(49, 2, 'test 17', '',
'', '', '', ''),
(50, 2, 'test 18', '', '', '', '', ''),
(51, 2, 'test 19',
'', '', '', '', ''),
(52, 2, 'test 20', '', '', '', '', ''),
(53, 2, 'test
21', '', '', '', '', ''),
(54, 2, 'test 22', '', '', '', '', ''),
(55, 2,
'test 23', '', '', '', '', ''),
(56, 2, 'test 24', '', '', '', '',
''),
(57, 2, 'Tablets', '', '', '', '', ''),
(58, 2, 'test 25', '', '', '',
'', '');
--
--------------------------------------------------------
--
-- Table
structure for table `oc_category_filter`
--
DROP TABLE IF EXISTS
`oc_category_filter`;
CREATE TABLE `oc_category_filter` (
`category_id`
int(11) NOT NULL,
`filter_id` int(11) NOT NULL,
PRIMARY KEY
(`category_id`,`filter_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_category_path`
--
DROP TABLE IF EXISTS
`oc_category_path`;
CREATE TABLE `oc_category_path` (
`category_id`
int(11) NOT NULL,
`path_id` int(11) NOT NULL,
`level` int(11) NOT
NULL,
PRIMARY KEY (`category_id`,`path_id`)
) ENGINE=MyISAM DEFAULT
CHARSET=utf8 COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_category_path`
--
INSERT INTO `oc_category_path` (`category_id`,
`path_id`, `level`) VALUES
(25, 25, 0),
(28, 25, 0),
(28, 28, 1),
(35, 25,
0),
(35, 28, 1),
(35, 35, 2),
(36, 25, 0),
(36, 28, 1),
(36, 36, 2),
(29,
25, 0),
(29, 29, 1),
(30, 25, 0),
(30, 30, 1),
(31, 25, 0),
(31, 31,
1),
(32, 25, 0),
(32, 32, 1),
(20, 20, 0),
(27, 20, 0),
(27, 27, 1),
(26,
20, 0),
(26, 26, 1),
(24, 24, 0),
(18, 18, 0),
(45, 18, 0),
(45, 45,
1),
(46, 18, 0),
(46, 46, 1),
(17, 17, 0),
(33, 33, 0),
(34, 34, 0),
(37,
34, 0),
(37, 37, 1),
(38, 34, 0),
(38, 38, 1),
(39, 34, 0),
(39, 39,
1),
(40, 34, 0),
(40, 40, 1),
(41, 34, 0),
(41, 41, 1),
(42, 34, 0),
(42,
42, 1),
(43, 34, 0),
(43, 43, 1),
(44, 34, 0),
(44, 44, 1),
(47, 34,
0),
(47, 47, 1),
(48, 34, 0),
(48, 48, 1),
(49, 34, 0),
(49, 49, 1),
(50,
34, 0),
(50, 50, 1),
(51, 34, 0),
(51, 51, 1),
(52, 34, 0),
(52, 52,
1),
(58, 34, 0),
(58, 52, 1),
(58, 58, 2),
(53, 34, 0),
(53, 53, 1),
(54,
34, 0),
(54, 54, 1),
(55, 34, 0),
(55, 55, 1),
(56, 34, 0),
(56, 56,
1),
(57, 57, 0);
--
--------------------------------------------------------
--
-- Table
structure for table `oc_category_to_layout`
--
DROP TABLE IF EXISTS
`oc_category_to_layout`;
CREATE TABLE `oc_category_to_layout` (
`category_id` int(11) NOT NULL,
`store_id` int(11) NOT NULL,
`layout_id` int(11) NOT NULL,
PRIMARY KEY (`category_id`,`store_id`)
)
ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_category_to_store`
--
DROP TABLE IF EXISTS
`oc_category_to_store`;
CREATE TABLE `oc_category_to_store` (
`category_id` int(11) NOT NULL,
`store_id` int(11) NOT NULL,
PRIMARY
KEY (`category_id`,`store_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_category_to_store`
--
INSERT INTO `oc_category_to_store`
(`category_id`, `store_id`) VALUES
(17, 0),
(18, 0),
(20, 0),
(24, 0),
(25,
0),
(26, 0),
(27, 0),
(28, 0),
(29, 0),
(30, 0),
(31, 0),
(32, 0),
(33,
0),
(34, 0),
(35, 0),
(36, 0),
(37, 0),
(38, 0),
(39, 0),
(40, 0),
(41,
0),
(42, 0),
(43, 0),
(44, 0),
(45, 0),
(46, 0),
(47, 0),
(48, 0),
(49,
0),
(50, 0),
(51, 0),
(52, 0),
(53, 0),
(54, 0),
(55, 0),
(56, 0),
(57,
0),
(58, 0);
--
--------------------------------------------------------
--
-- Table
structure for table `oc_country`
--
DROP TABLE IF EXISTS
`oc_country`;
CREATE TABLE `oc_country` (
`country_id` int(11) NOT NULL
AUTO_INCREMENT,
`name` varchar(128) NOT NULL,
`iso_code_2` varchar(2)
NOT NULL,
`iso_code_3` varchar(3) NOT NULL,
`address_format` text NOT
NULL,
`postcode_required` tinyint(1) NOT NULL,
`status` tinyint(1) NOT
NULL DEFAULT '1',
PRIMARY KEY (`country_id`)
) ENGINE=MyISAM DEFAULT
CHARSET=utf8 COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_country`
--
INSERT INTO `oc_country` (`country_id`, `name`,
`iso_code_2`, `iso_code_3`, `address_format`, `postcode_required`,
`status`) VALUES
(1, 'Афганистан', 'AF', 'AFG', '', 0, 1),
(2,
'Албания', 'AL', 'ALB', '', 0, 1),
(3, 'Алжир', 'DZ', 'DZA',
'', 0, 1),
(4, 'Восточное Самоа', 'AS', 'ASM', '', 0, 1),
(5,
'Андорра', 'AD', 'AND', '', 0, 1),
(6, 'Ангола', 'AO', 'AGO',
'', 0, 1),
(7, 'Ангилья', 'AI', 'AIA', '', 0, 1),
(8,
'Антарктида', 'AQ', 'ATA', '', 0, 1),
(9, 'Антигуа и
Барбуда', 'AG', 'ATG', '', 0, 1),
(10, 'Аргентина', 'AR',
'ARG', '', 0, 1),
(11, 'Армения', 'AM', 'ARM', '', 0, 1),
(12,
'Аруба', 'AW', 'ABW', '', 0, 1),
(13, 'Австралия', 'AU',
'AUS', '', 0, 1),
(14, 'Австрия', 'AT', 'AUT', '', 0, 1),
(15,
'Азербайджан', 'AZ', 'AZE', '', 0, 1),
(16, 'Багамские
острова', 'BS', 'BHS', '', 0, 1),
(17, 'Бахрейн', 'BH',
'BHR', '', 0, 1),
(18, 'Бангладеш', 'BD', 'BGD', '', 0, 1),
(19,
'Барбадос', 'BB', 'BRB', '', 0, 1),
(20, 'Белоруссия
(Беларусь)', 'BY', 'BLR', '', 0, 1),
(21, 'Бельгия', 'BE',
'BEL', '', 0, 1),
(22, 'Белиз', 'BZ', 'BLZ', '', 0, 1),
(23,
'Бенин', 'BJ', 'BEN', '', 0, 1),
(24, 'Бермудские
острова', 'BM', 'BMU', '', 0, 1),
(25, 'Бутан', 'BT', 'BTN',
'', 0, 1),
(26, 'Боливия', 'BO', 'BOL', '', 0, 1),
(27,
'Босния и Герцеговина', 'BA', 'BIH', '', 0, 1),
(28,
'Ботсвана', 'BW', 'BWA', '', 0, 1),
(29, 'Остров Буве',
'BV', 'BVT', '', 0, 1),
(30, 'Бразилия', 'BR', 'BRA', '', 0,
1),
(31, 'Британская территория в Индийском
океане', 'IO', 'IOT', '', 0, 1),
(32, 'Бруней', 'BN', 'BRN',
'', 0, 1),
(33, 'Болгария', 'BG', 'BGR', '', 0, 1),
(34,
'Буркина-Фасо', 'BF', 'BFA', '', 0, 1),
(35, 'Бурунди',
'BI', 'BDI', '', 0, 1),
(36, 'Камбоджа', 'KH', 'KHM', '', 0,
1),
(37, 'Камерун', 'CM', 'CMR', '', 0, 1),
(38, 'Канада',
'CA', 'CAN', '', 0, 1),
(39, 'Кабо-Верде', 'CV', 'CPV', '', 0,
1),
(40, 'Каймановы острова', 'KY', 'CYM', '', 0, 1),
(41,
'Центрально-Африканская Республика', 'CF',
'CAF', '', 0, 1),
(42, 'Чад', 'TD', 'TCD', '', 0, 1),
(43, 'Чили',
'CL', 'CHL', '', 0, 1),
(44, 'Китайская Народная
Республика', 'CN', 'CHN', '', 0, 1),
(45, 'Остров
Рождества', 'CX', 'CXR', '', 0, 1),
(46, 'Кокосовые
острова', 'CC', 'CCK', '', 0, 1),
(47, 'Колумбия', 'CO',
'COL', '', 0, 1),
(48, 'Коморские острова', 'KM', 'COM',
'', 0, 1),
(49, 'Конго', 'CG', 'COG', '', 0, 1),
(50, 'Острова
Кука', 'CK', 'COK', '', 0, 1),
(51, 'Коста-Рика', 'CR', 'CRI',
'', 0, 1),
(52, 'Кот д''Ивуар', 'CI', 'CIV', '', 0, 1),
(53,
'Хорватия', 'HR', 'HRV', '', 0, 1),
(54, 'Куба', 'CU', 'CUB',
'', 0, 1),
(55, 'Кипр', 'CY', 'CYP', '', 0, 1),
(56, 'Чехия',
'CZ', 'CZE', '', 0, 1),
(57, 'Дания', 'DK', 'DNK', '', 0, 1),
(58,
'Джибути', 'DJ', 'DJI', '', 0, 1),
(59, 'Доминика', 'DM',
'DMA', '', 0, 1),
(60, 'Доминиканская Республика',
'DO', 'DOM', '', 0, 1),
(61, 'Восточный Тимор', 'TP', 'TMP',
'', 0, 1),
(62, 'Эквадор', 'EC', 'ECU', '', 0, 1),
(63,
'Египет', 'EG', 'EGY', '', 0, 1),
(64, 'Сальвадор', 'SV',
'SLV', '', 0, 1),
(65, 'Экваториальная Гвинея', 'GQ',
'GNQ', '', 0, 1),
(66, 'Эритрея', 'ER', 'ERI', '', 0, 1),
(67,
'Эстония', 'EE', 'EST', '', 0, 1),
(68, 'Эфиопия', 'ET',
'ETH', '', 0, 1),
(69, 'Фолклендские (Мальвинские)
острова', 'FK', 'FLK', '', 0, 1),
(70, 'Фарерские
острова', 'FO', 'FRO', '', 0, 1),
(71, 'Фиджи', 'FJ', 'FJI',
'', 0, 1),
(72, 'Финляндия', 'FI', 'FIN', '', 0, 1),
(73,
'Франция', 'FR', 'FRA', '', 0, 1),
(74, 'Франция,
Метрополия', 'FX', 'FXX', '', 0, 1),
(75, 'Французская
Гвиана', 'GF', 'GUF', '', 0, 1),
(76, 'Французская
Полинезия', 'PF', 'PYF', '', 0, 1),
(77, 'Французские
Южные территории', 'TF', 'ATF', '', 0, 1),
(78,
'Габон', 'GA', 'GAB', '', 0, 1),
(79, 'Гамбия', 'GM', 'GMB', '',
0, 1),
(80, 'Грузия', 'GE', 'GEO', '', 0, 1),
(81,
'Германия', 'DE', 'DEU', '{company}\r\n{firstname}
{lastname}\r\n{address_1}\r\n{address_2}\r\n{postcode}
{city}\r\n{country}', 0, 1),
(82, 'Гана', 'GH', 'GHA', '', 0, 1),
(83,
'Гибралтар', 'GI', 'GIB', '', 0, 1),
(84, 'Греция', 'GR',
'GRC', '', 0, 1),
(85, 'Гренландия', 'GL', 'GRL', '', 0, 1),
(86,
'Гренада', 'GD', 'GRD', '', 0, 1),
(87, 'Гваделупа', 'GP',
'GLP', '', 0, 1),
(88, 'Гуам', 'GU', 'GUM', '', 0, 1),
(89,
'Гватемала', 'GT', 'GTM', '', 0, 1),
(90, 'Гвинея', 'GN',
'GIN', '', 0, 1),
(91, 'Гвинея-Бисау', 'GW', 'GNB', '', 0,
1),
(92, 'Гайана', 'GY', 'GUY', '', 0, 1),
(93, 'Гаити', 'HT',
'HTI', '', 0, 1),
(94, 'Херд и Макдональд, острова',
'HM', 'HMD', '', 0, 1),
(95, 'Гондурас', 'HN', 'HND', '', 0,
1),
(96, 'Гонконг', 'HK', 'HKG', '', 0, 1),
(97, 'Венгрия',
'HU', 'HUN', '', 0, 1),
(98, 'Исландия', 'IS', 'ISL', '', 0,
1),
(99, 'Индия', 'IN', 'IND', '', 0, 1),
(100, 'Индонезия',
'ID', 'IDN', '', 0, 1),
(101, 'Иран', 'IR', 'IRN', '', 0, 1),
(102,
'Ирак', 'IQ', 'IRQ', '', 0, 1),
(103, 'Ирландия', 'IE', 'IRL',
'', 0, 1),
(104, 'Израиль', 'IL', 'ISR', '', 0, 1),
(105,
'Италия', 'IT', 'ITA', '', 0, 1),
(106, 'Ямайка', 'JM', 'JAM',
'', 0, 1),
(107, 'Япония', 'JP', 'JPN', '', 0, 1),
(108,
'Иордания', 'JO', 'JOR', '', 0, 1),
(109, 'Казахстан',
'KZ', 'KAZ', '', 0, 1),
(110, 'Кения', 'KE', 'KEN', '', 0, 1),
(111,
'Кирибати', 'KI', 'KIR', '', 0, 1),
(112, 'Корейская
Народно-Демократическая Республика', 'KP',
'PRK', '', 0, 1),
(113, 'Республика Корея', 'KR', 'KOR', '',
0, 1),
(114, 'Кувейт', 'KW', 'KWT', '', 0, 1),
(115,
'Киргизия (Кыргызстан)', 'KG', 'KGZ', '', 0, 1),
(116,
'Лаос', 'LA', 'LAO', '', 0, 1),
(117, 'Латвия', 'LV', 'LVA', '',
0, 1),
(118, 'Ливан', 'LB', 'LBN', '', 0, 1),
(119, 'Лесото',
'LS', 'LSO', '', 0, 1),
(120, 'Либерия', 'LR', 'LBR', '', 0,
1),
(121, 'Ливия', 'LY', 'LBY', '', 0, 1),
(122,
'Лихтенштейн', 'LI', 'LIE', '', 0, 1),
(123, 'Литва', 'LT',
'LTU', '', 0, 1),
(124, 'Люксембург', 'LU', 'LUX', '', 0,
1),
(125, 'Макао', 'MO', 'MAC', '', 0, 1),
(126, 'Македония',
'MK', 'MKD', '', 0, 1),
(127, 'Мадагаскар', 'MG', 'MDG', '', 0,
1),
(128, 'Малави', 'MW', 'MWI', '', 0, 1),
(129, 'Малайзия',
'MY', 'MYS', '', 0, 1),
(130, 'Мальдивы', 'MV', 'MDV', '', 0,
1),
(131, 'Мали', 'ML', 'MLI', '', 0, 1),
(132, 'Мальта', 'MT',
'MLT', '', 0, 1),
(133, 'Маршалловы острова', 'MH', 'MHL',
'', 0, 1),
(134, 'Мартиника', 'MQ', 'MTQ', '', 0, 1),
(135,
'Мавритания', 'MR', 'MRT', '', 0, 1),
(136, 'Маврикий',
'MU', 'MUS', '', 0, 1),
(137, 'Майотта', 'YT', 'MYT', '', 0,
1),
(138, 'Мексика', 'MX', 'MEX', '', 0, 1),
(139,
'Микронезия', 'FM', 'FSM', '', 0, 1),
(140, 'Молдова',
'MD', 'MDA', '', 0, 1),
(141, 'Монако', 'MC', 'MCO', '', 0, 1),
(142,
'Монголия', 'MN', 'MNG', '', 0, 1),
(143, 'Монтсеррат',
'MS', 'MSR', '', 0, 1),
(144, 'Марокко', 'MA', 'MAR', '', 0,
1),
(145, 'Мозамбик', 'MZ', 'MOZ', '', 0, 1),
(146, 'Мьянма',
'MM', 'MMR', '', 0, 1),
(147, 'Намибия', 'NA', 'NAM', '', 0,
1),
(148, 'Науру', 'NR', 'NRU', '', 0, 1),
(149, 'Непал', 'NP',
'NPL', '', 0, 1),
(150, 'Нидерланды', 'NL', 'NLD', '', 0,
1),
(151, 'Антильские (Нидерландские)
острова', 'AN', 'ANT', '', 0, 1),
(152, 'Новая
Каледония', 'NC', 'NCL', '', 0, 1),
(153, 'Новая
Зеландия', 'NZ', 'NZL', '', 0, 1),
(154, 'Никарагуа',
'NI', 'NIC', '', 0, 1),
(155, 'Нигер', 'NE', 'NER', '', 0, 1),
(156,
'Нигерия', 'NG', 'NGA', '', 0, 1),
(157, 'Ниуэ', 'NU', 'NIU',
'', 0, 1),
(158, 'Остров Норфолк', 'NF', 'NFK', '', 0,
1),
(159, 'Северные Марианские острова', 'MP',
'MNP', '', 0, 1),
(160, 'Норвегия', 'NO', 'NOR', '', 0, 1),
(161,
'Оман', 'OM', 'OMN', '', 0, 1),
(162, 'Пакистан', 'PK', 'PAK',
'', 0, 1),
(163, 'Палау', 'PW', 'PLW', '', 0, 1),
(164,
'Панама', 'PA', 'PAN', '', 0, 1),
(165, 'Папуа - Новая
Гвинея', 'PG', 'PNG', '', 0, 1),
(166, 'Парагвай', 'PY',
'PRY', '', 0, 1),
(167, 'Перу', 'PE', 'PER', '', 0, 1),
(168,
'Филиппины', 'PH', 'PHL', '', 0, 1),
(169, 'Острова
Питкэрн', 'PN', 'PCN', '', 0, 1),
(170, 'Польша', 'PL', 'POL',
'', 0, 1),
(171, 'Португалия', 'PT', 'PRT', '', 0, 1),
(172,
'Пуэрто-Рико', 'PR', 'PRI', '', 0, 1),
(173, 'Катар', 'QA',
'QAT', '', 0, 1),
(174, 'Реюньон', 'RE', 'REU', '', 0, 1),
(175,
'Румыния', 'RO', 'ROM', '', 0, 1),
(176, 'Российская
Федерация', 'RU', 'RUS', '', 0, 1),
(177, 'Руанда', 'RW',
'RWA', '', 0, 1),
(178, 'Сент-Китс и Невис', 'KN', 'KNA', '',
0, 1),
(179, 'Сент-Люсия', 'LC', 'LCA', '', 0, 1),
(180,
'Сент-Винсент и Гренадины', 'VC', 'VCT', '', 0,
1),
(181, 'Западное Самоа', 'WS', 'WSM', '', 0, 1),
(182,
'Сан-Марино', 'SM', 'SMR', '', 0, 1),
(183, 'Сан-Томе и
Принсипи', 'ST', 'STP', '', 0, 1),
(184, 'Саудовская
Аравия', 'SA', 'SAU', '', 0, 1),
(185, 'Сенегал', 'SN', 'SEN',
'', 0, 1),
(186, 'Сейшельские острова', 'SC', 'SYC', '',
0, 1),
(187, 'Сьерра-Леоне', 'SL', 'SLE', '', 0, 1),
(188,
'Сингапур', 'SG', 'SGP', '', 0, 1),
(189, 'Словакия', '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),
(190, 'Словения', 'SI',
'SVN', '', 0, 1),
(191, 'Соломоновы острова', 'SB', 'SLB',
'', 0, 1),
(192, 'Сомали', 'SO', 'SOM', '', 0, 1),
(193,
'Южно-Африканская Республика', 'ZA', 'ZAF', '', 0,
1),
(194, 'Южная Джорджия и Южные Сандвичевы
острова', 'GS', 'SGS', '', 0, 1),
(195, 'Испания', 'ES',
'ESP', '', 0, 1),
(196, 'Шри-Ланка', 'LK', 'LKA', '', 0, 1),
(197,
'Остров Святой Елены', 'SH', 'SHN', '', 0, 1),
(198,
'Сен-Пьер и Микелон', 'PM', 'SPM', '', 0, 1),
(199,
'Судан', 'SD', 'SDN', '', 0, 1),
(200, 'Суринам', 'SR', 'SUR',
'', 0, 1),
(201, 'Шпицберген и Ян Майен', 'SJ', 'SJM',
'', 0, 1),
(202, 'Свазиленд', 'SZ', 'SWZ', '', 0, 1),
(203,
'Швеция', 'SE', 'SWE', '', 0, 1),
(204, 'Швейцария', 'CH',
'CHE', '', 0, 1),
(205, 'Сирия', 'SY', 'SYR', '', 0, 1),
(206,
'Тайвань (провинция Китая)', 'TW', 'TWN', '', 0,
1),
(207, 'Таджикистан', 'TJ', 'TJK', '', 0, 1),
(208,
'Танзания', 'TZ', 'TZA', '', 0, 1),
(209, 'Таиланд', 'TH',
'THA', '', 0, 1),
(210, 'Того', 'TG', 'TGO', '', 0, 1),
(211,
'Токелау', 'TK', 'TKL', '', 0, 1),
(212, 'Тонга', 'TO', 'TON',
'', 0, 1),
(213, 'Тринидад и Тобаго', 'TT', 'TTO', '', 0,
1),
(214, 'Тунис', 'TN', 'TUN', '', 0, 1),
(215, 'Турция', 'TR',
'TUR', '', 0, 1),
(216, 'Туркменистан', 'TM', 'TKM', '', 0,
1),
(217, 'Острова Теркс и Кайкос', 'TC', 'TCA', '', 0,
1),
(218, 'Тувалу', 'TV', 'TUV', '', 0, 1),
(219, 'Уганда',
'UG', 'UGA', '', 0, 1),
(220, 'Украина', 'UA', 'UKR', '', 0,
1),
(221, 'Объединенные Арабские Эмираты', 'AE',
'ARE', '', 0, 1),
(222, 'Великобритания', 'GB', 'GBR', '', 1,
1),
(223, 'Соединенные Штаты Америки', '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),
(224, 'Мелкие отдаленные
острова США', 'UM', 'UMI', '', 0, 1),
(225, 'Уругвай',
'UY', 'URY', '', 0, 1),
(226, 'Узбекистан', 'UZ', 'UZB', '', 0,
1),
(227, 'Вануату', 'VU', 'VUT', '', 0, 1),
(228, 'Ватикан',
'VA', 'VAT', '', 0, 1),
(229, 'Венесуэла', 'VE', 'VEN', '', 0,
1),
(230, 'Вьетнам', 'VN', 'VNM', '', 0, 1),
(231,
'Виргинские острова (Британские)', 'VG', 'VGB',
'', 0, 1),
(232, 'Виргинские острова (США)', 'VI',
'VIR', '', 0, 1),
(233, 'Уоллис и Футуна', 'WF', 'WLF', '', 0,
1),
(234, 'Западная Сахара', 'EH', 'ESH', '', 0, 1),
(235,
'Йемен', 'YE', 'YEM', '', 0, 1),
(236, 'Сербия и
Черногория', 'CS', 'SCG', '', 0, 1),
(237, 'Заир', 'ZR',
'ZAR', '', 0, 1),
(238, 'Замбия', 'ZM', 'ZMB', '', 0, 1),
(239,
'Зимбабве', 'ZW', 'ZWE', '', 0, 1),
(242, 'Черногория',
'ME', 'MNE', '', 0, 1),
(243, 'Сербия', 'RS', 'SRB', '', 0, 1),
(244,
'Аландские острова', 'AX', 'ALA', '', 0, 1),
(245,
'Бонайре, Синт-Эстатиус и Саба', 'BQ', 'BES', '',
0, 1),
(246, 'Кюрасао', 'CW', 'CUW', '', 0, 1),
(247,
'Палестинская территория,
оккупированная', 'PS', 'PSE', '', 0, 1),
(248, 'Южный
Судан', 'SS', 'SSD', '', 0, 1),
(249, 'Санкт-Бартелеми',
'BL', 'BLM', '', 0, 1),
(250, 'Санкт-Мартин
(французская часть)', 'MF', 'MAF', '', 0, 1),
(251,
'Канарские Острова', 'IC', 'ICA', '', 0, 1),
(252,
'Остров Вознесения (Великобритания)', 'AC',
'ASC', '', 0, 1),
(253, 'Косово, Республика', 'XK', 'UNK',
'', 0, 1),
(254, 'Остров Мэн', 'IM', 'IMN', '', 0, 1),
(255,
'Тристан-да-Кунья', 'TA', 'SHN', '', 0, 1),
(256,
'Остров Гернси', 'GG', 'GGY', '', 0, 1),
(257, 'Остров
Джерси', 'JE', 'JEY', '', 0, 1);
--
--------------------------------------------------------
--
-- Table
structure for table `oc_coupon`
--
DROP TABLE IF EXISTS
`oc_coupon`;
CREATE TABLE `oc_coupon` (
`coupon_id` int(11) NOT NULL
AUTO_INCREMENT,
`name` varchar(128) NOT NULL,
`code` varchar(10) NOT
NULL,
`type` char(1) NOT NULL,
`discount` decimal(15,4) NOT NULL,
`logged` tinyint(1) NOT NULL,
`shipping` tinyint(1) NOT NULL,
`total`
decimal(15,4) NOT NULL,
`date_start` date NOT NULL DEFAULT '0000-00-00',
`date_end` date NOT NULL DEFAULT '0000-00-00',
`uses_total` int(11) NOT
NULL,
`uses_customer` varchar(11) NOT NULL,
`status` tinyint(1) NOT
NULL,
`date_added` datetime NOT NULL,
PRIMARY KEY (`coupon_id`)
)
ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
--
-- Dumping
data for table `oc_coupon`
--
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
(4, '-10% скидка', '2222', 'P', 10.0000, 0, 0,
0.0000, '2011-01-01', '2012-01-01', 10, '10', 1, '2009-01-27
13:55:03'),
(5, 'Бесплатная доставка', '3333', 'P',
0.0000, 0, 1, 100.0000, '2009-03-01', '2009-08-31', 10, '10', 1,
'2009-03-14 21:13:53'),
(6, '-10.00 скидка', '1111', 'F', 10.0000, 0,
0, 10.0000, '1970-11-01', '2020-11-01', 100000, '10000', 1, '2009-03-14
21:15:18');
--
--------------------------------------------------------
--
-- Table
structure for table `oc_coupon_category`
--
DROP TABLE IF EXISTS
`oc_coupon_category`;
CREATE TABLE `oc_coupon_category` (
`coupon_id`
int(11) NOT NULL,
`category_id` int(11) NOT NULL,
PRIMARY KEY
(`coupon_id`,`category_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_coupon_history`
--
DROP TABLE IF EXISTS
`oc_coupon_history`;
CREATE TABLE `oc_coupon_history` (
`coupon_history_id` int(11) NOT NULL AUTO_INCREMENT,
`coupon_id` int(11)
NOT NULL,
`order_id` int(11) NOT NULL,
`customer_id` int(11) NOT NULL,
`amount` decimal(15,4) NOT NULL,
`date_added` datetime NOT NULL,
PRIMARY KEY (`coupon_history_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_coupon_product`
--
DROP TABLE IF EXISTS
`oc_coupon_product`;
CREATE TABLE `oc_coupon_product` (
`coupon_product_id` int(11) NOT NULL AUTO_INCREMENT,
`coupon_id` int(11)
NOT NULL,
`product_id` int(11) NOT NULL,
PRIMARY KEY
(`coupon_product_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_currency`
--
DROP TABLE IF EXISTS
`oc_currency`;
CREATE TABLE `oc_currency` (
`currency_id` int(11) NOT
NULL AUTO_INCREMENT,
`title` varchar(32) NOT NULL,
`code` varchar(3)
NOT NULL,
`symbol_left` varchar(12) NOT NULL,
`symbol_right`
varchar(12) NOT NULL,
`decimal_place` char(1) NOT NULL,
`value`
float(15,8) NOT NULL,
`status` tinyint(1) NOT NULL,
`date_modified`
datetime NOT NULL,
PRIMARY KEY (`currency_id`)
) ENGINE=MyISAM DEFAULT
CHARSET=utf8 COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_currency`
--
INSERT INTO `oc_currency` (`currency_id`, `title`,
`code`, `symbol_left`, `symbol_right`, `decimal_place`, `value`, `status`,
`date_modified`) VALUES
(1, 'Рубль', 'RUB', '', ' р.', '2',
1.00000000, 1, '2015-11-10 17:33:53'),
(2, 'US Dollar', 'USD', '$', '',
'2', 0.01550000, 1, '2015-11-10 17:33:53'),
(3, 'Euro', 'EUR', '', '€',
'2', 0.01440000, 1, '2015-11-10 17:33:53');
--
--------------------------------------------------------
--
-- Table
structure for table `oc_customer`
--
DROP TABLE IF EXISTS
`oc_customer`;
CREATE TABLE `oc_customer` (
`customer_id` int(11) NOT
NULL AUTO_INCREMENT,
`customer_group_id` int(11) NOT NULL,
`store_id`
int(11) NOT NULL DEFAULT '0',
`firstname` varchar(32) NOT NULL,
`lastname` varchar(32) NOT NULL,
`email` varchar(96) NOT NULL,
`telephone` varchar(32) NOT NULL,
`fax` varchar(32) NOT NULL,
`password` varchar(40) NOT NULL,
`salt` varchar(9) NOT NULL,
`cart`
text,
`wishlist` text,
`newsletter` tinyint(1) NOT NULL DEFAULT '0',
`address_id` int(11) NOT NULL DEFAULT '0',
`custom_field` text NOT NULL,
`ip` varchar(40) NOT NULL,
`status` tinyint(1) NOT NULL,
`approved`
tinyint(1) NOT NULL,
`safe` tinyint(1) NOT NULL,
`token` text NOT
NULL,
`date_added` datetime NOT NULL,
PRIMARY KEY (`customer_id`)
)
ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_customer_activity`
--
DROP TABLE IF EXISTS
`oc_customer_activity`;
CREATE TABLE `oc_customer_activity` (
`activity_id` int(11) NOT NULL AUTO_INCREMENT,
`customer_id` int(11) NOT
NULL,
`key` varchar(64) NOT NULL,
`data` text NOT NULL,
`ip`
varchar(40) NOT NULL,
`date_added` datetime NOT NULL,
PRIMARY KEY
(`activity_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_customer_group`
--
DROP TABLE IF EXISTS
`oc_customer_group`;
CREATE TABLE `oc_customer_group` (
`customer_group_id` int(11) NOT NULL AUTO_INCREMENT,
`approval` int(1)
NOT NULL,
`sort_order` int(3) NOT NULL,
PRIMARY KEY
(`customer_group_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_customer_group`
--
INSERT INTO `oc_customer_group`
(`customer_group_id`, `approval`, `sort_order`) VALUES
(1, 0, 1);
--
--------------------------------------------------------
--
-- Table
structure for table `oc_customer_group_description`
--
DROP TABLE IF
EXISTS `oc_customer_group_description`;
CREATE TABLE
`oc_customer_group_description` (
`customer_group_id` int(11) NOT NULL,
`language_id` int(11) NOT NULL,
`name` varchar(32) NOT NULL,
`description` text NOT NULL,
PRIMARY KEY
(`customer_group_id`,`language_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_customer_group_description`
--
INSERT INTO
`oc_customer_group_description` (`customer_group_id`, `language_id`,
`name`, `description`) VALUES
(1, 1, 'Default', 'test');
--
--------------------------------------------------------
--
-- Table
structure for table `oc_customer_history`
--
DROP TABLE IF EXISTS
`oc_customer_history`;
CREATE TABLE `oc_customer_history` (
`customer_history_id` int(11) NOT NULL AUTO_INCREMENT,
`customer_id`
int(11) NOT NULL,
`comment` text NOT NULL,
`date_added` datetime NOT
NULL,
PRIMARY KEY (`customer_history_id`)
) ENGINE=MyISAM DEFAULT
CHARSET=utf8 COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_customer_login`
--
DROP TABLE IF EXISTS
`oc_customer_login`;
CREATE TABLE `oc_customer_login` (
`customer_login_id` int(11) NOT NULL AUTO_INCREMENT,
`email` varchar(96)
NOT NULL,
`ip` varchar(40) NOT NULL,
`total` int(4) NOT NULL,
`date_added` datetime NOT NULL,
`date_modified` datetime NOT NULL,
PRIMARY KEY (`customer_login_id`),
KEY `email` (`email`),
KEY `ip`
(`ip`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_customer_ip`
--
DROP TABLE IF EXISTS
`oc_customer_ip`;
CREATE TABLE `oc_customer_ip` (
`customer_ip_id`
int(11) NOT NULL AUTO_INCREMENT,
`customer_id` int(11) NOT NULL,
`ip`
varchar(40) NOT NULL,
`date_added` datetime NOT NULL,
PRIMARY KEY
(`customer_ip_id`),
KEY `ip` (`ip`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_customer_online`
--
DROP TABLE IF EXISTS
`oc_customer_online`;
CREATE TABLE `oc_customer_online` (
`ip`
varchar(40) NOT NULL,
`customer_id` int(11) NOT NULL,
`url` text NOT
NULL,
`referer` text NOT NULL,
`date_added` datetime NOT NULL,
PRIMARY KEY (`ip`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_customer_reward`
--
DROP TABLE IF EXISTS
`oc_customer_reward`;
CREATE TABLE `oc_customer_reward` (
`customer_reward_id` int(11) NOT NULL AUTO_INCREMENT,
`customer_id`
int(11) NOT NULL DEFAULT '0',
`order_id` int(11) NOT NULL DEFAULT '0',
`description` text NOT NULL,
`points` int(8) NOT NULL DEFAULT '0',
`date_added` datetime NOT NULL,
PRIMARY KEY (`customer_reward_id`)
)
ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_customer_transaction`
--
DROP TABLE IF EXISTS
`oc_customer_transaction`;
CREATE TABLE `oc_customer_transaction` (
`customer_transaction_id` int(11) NOT NULL AUTO_INCREMENT,
`customer_id`
int(11) NOT NULL,
`order_id` int(11) NOT NULL,
`description` text NOT
NULL,
`amount` decimal(15,4) NOT NULL,
`date_added` datetime NOT NULL,
PRIMARY KEY (`customer_transaction_id`)
) ENGINE=MyISAM DEFAULT
CHARSET=utf8 COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_customer_wishlist`
--
DROP TABLE IF EXISTS
`oc_customer_wishlist`;
CREATE TABLE `oc_customer_wishlist` (
`customer_id` int(11) NOT NULL,
`product_id` int(11) NOT NULL,
`date_added` datetime NOT NULL,
PRIMARY KEY
(`customer_id`,`product_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_custom_field`
--
DROP TABLE IF EXISTS
`oc_custom_field`;
CREATE TABLE `oc_custom_field` (
`custom_field_id`
int(11) NOT NULL AUTO_INCREMENT,
`type` varchar(32) NOT NULL,
`value`
text NOT NULL,
`location` varchar(7) NOT NULL,
`status` tinyint(1) NOT
NULL,
`sort_order` int(3) NOT NULL,
PRIMARY KEY (`custom_field_id`)
)
ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_custom_field_customer_group`
--
DROP TABLE IF
EXISTS `oc_custom_field_customer_group`;
CREATE TABLE
`oc_custom_field_customer_group` (
`custom_field_id` int(11) NOT NULL,
`customer_group_id` int(11) NOT NULL,
`required` tinyint(1) NOT NULL,
PRIMARY KEY (`custom_field_id`,`customer_group_id`)
) ENGINE=MyISAM DEFAULT
CHARSET=utf8 COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_custom_field_description`
--
DROP TABLE IF EXISTS
`oc_custom_field_description`;
CREATE TABLE `oc_custom_field_description`
(
`custom_field_id` int(11) NOT NULL,
`language_id` int(11) NOT NULL,
`name` varchar(128) NOT NULL,
PRIMARY KEY
(`custom_field_id`,`language_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_custom_field_value`
--
DROP TABLE IF EXISTS
`oc_custom_field_value`;
CREATE TABLE `oc_custom_field_value` (
`custom_field_value_id` int(11) NOT NULL AUTO_INCREMENT,
`custom_field_id` int(11) NOT NULL,
`sort_order` int(3) NOT NULL,
PRIMARY KEY (`custom_field_value_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_custom_field_value_description`
--
DROP TABLE IF
EXISTS `oc_custom_field_value_description`;
CREATE TABLE
`oc_custom_field_value_description` (
`custom_field_value_id` int(11) NOT
NULL,
`language_id` int(11) NOT NULL,
`custom_field_id` int(11) NOT
NULL,
`name` varchar(128) NOT NULL,
PRIMARY KEY
(`custom_field_value_id`,`language_id`)
) ENGINE=MyISAM DEFAULT
CHARSET=utf8 COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_download`
--
DROP TABLE IF EXISTS
`oc_download`;
CREATE TABLE `oc_download` (
`download_id` int(11) NOT
NULL AUTO_INCREMENT,
`filename` varchar(128) NOT NULL,
`mask`
varchar(128) NOT NULL,
`date_added` datetime NOT NULL,
PRIMARY KEY
(`download_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_download_description`
--
DROP TABLE IF EXISTS
`oc_download_description`;
CREATE TABLE `oc_download_description` (
`download_id` int(11) NOT NULL,
`language_id` int(11) NOT NULL,
`name`
varchar(64) NOT NULL,
PRIMARY KEY (`download_id`,`language_id`)
)
ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_event`
--
DROP TABLE IF EXISTS `oc_event`;
CREATE
TABLE `oc_event` (
`event_id` int(11) NOT NULL AUTO_INCREMENT,
`code`
varchar(32) NOT NULL,
`trigger` text NOT NULL,
`action` text NOT NULL,
PRIMARY KEY (`event_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_event`
--
INSERT INTO `oc_event` (`event_id`, `code`, `trigger`,
`action`) VALUES
(1, 'voucher', 'post.order.history.add',
'total/voucher/send');
--
--------------------------------------------------------
--
-- Table
structure for table `oc_extension`
--
DROP TABLE IF EXISTS
`oc_extension`;
CREATE TABLE `oc_extension` (
`extension_id` int(11) NOT
NULL AUTO_INCREMENT,
`type` varchar(32) NOT NULL,
`code` varchar(32)
NOT NULL,
PRIMARY KEY (`extension_id`)
) ENGINE=MyISAM DEFAULT
CHARSET=utf8 COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_extension`
--
INSERT INTO `oc_extension` (`extension_id`, `type`,
`code`) VALUES
(1, 'payment', 'cod'),
(2, 'total', 'shipping'),
(3,
'total', 'sub_total'),
(4, 'total', 'tax'),
(5, 'total', 'total'),
(6,
'module', 'banner'),
(7, 'module', 'carousel'),
(8, 'total', 'credit'),
(9,
'shipping', 'flat'),
(10, 'total', 'handling'),
(11, 'total',
'low_order_fee'),
(12, 'total', 'coupon'),
(13, 'module', 'category'),
(14,
'module', 'account'),
(15, 'total', 'reward'),
(16, 'total',
'voucher'),
(17, 'payment', 'free_checkout'),
(18, 'module',
'featured'),
(19, 'module', 'slideshow');
--
--------------------------------------------------------
--
-- Table
structure for table `oc_filter`
--
DROP TABLE IF EXISTS
`oc_filter`;
CREATE TABLE `oc_filter` (
`filter_id` int(11) NOT NULL
AUTO_INCREMENT,
`filter_group_id` int(11) NOT NULL,
`sort_order` int(3)
NOT NULL,
PRIMARY KEY (`filter_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_filter_description`
--
DROP TABLE IF EXISTS
`oc_filter_description`;
CREATE TABLE `oc_filter_description` (
`filter_id` int(11) NOT NULL,
`language_id` int(11) NOT NULL,
`filter_group_id` int(11) NOT NULL,
`name` varchar(64) NOT NULL,
PRIMARY KEY (`filter_id`,`language_id`)
) ENGINE=MyISAM DEFAULT
CHARSET=utf8 COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_filter_group`
--
DROP TABLE IF EXISTS
`oc_filter_group`;
CREATE TABLE `oc_filter_group` (
`filter_group_id`
int(11) NOT NULL AUTO_INCREMENT,
`sort_order` int(3) NOT NULL,
PRIMARY
KEY (`filter_group_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_filter_group_description`
--
DROP TABLE IF EXISTS
`oc_filter_group_description`;
CREATE TABLE `oc_filter_group_description`
(
`filter_group_id` int(11) NOT NULL,
`language_id` int(11) NOT NULL,
`name` varchar(64) NOT NULL,
PRIMARY KEY
(`filter_group_id`,`language_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_geo_zone`
--
DROP TABLE IF EXISTS
`oc_geo_zone`;
CREATE TABLE `oc_geo_zone` (
`geo_zone_id` int(11) NOT
NULL AUTO_INCREMENT,
`name` varchar(32) NOT NULL,
`description`
varchar(255) NOT NULL,
`date_modified` datetime NOT NULL,
`date_added`
datetime NOT NULL,
PRIMARY KEY (`geo_zone_id`)
) ENGINE=MyISAM DEFAULT
CHARSET=utf8 COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_geo_zone`
--
INSERT INTO `oc_geo_zone` (`geo_zone_id`, `name`,
`description`, `date_modified`, `date_added`) VALUES
(3, 'НДС',
'Облагаемые НДС', '2010-02-26 22:33:24', '2009-01-06
23:26:25');
--
--------------------------------------------------------
--
-- Table
structure for table `oc_information`
--
DROP TABLE IF EXISTS
`oc_information`;
CREATE TABLE `oc_information` (
`information_id`
int(11) NOT NULL AUTO_INCREMENT,
`bottom` int(1) NOT NULL DEFAULT '0',
`sort_order` int(3) NOT NULL DEFAULT '0',
`status` tinyint(1) NOT NULL
DEFAULT '1',
PRIMARY KEY (`information_id`)
) ENGINE=MyISAM DEFAULT
CHARSET=utf8 COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_information`
--
INSERT INTO `oc_information` (`information_id`,
`bottom`, `sort_order`, `status`) VALUES
(3, 1, 3, 1),
(4, 1, 1, 1),
(5, 1,
4, 1),
(6, 1, 2, 1);
--
--------------------------------------------------------
--
-- Table
structure for table `oc_information_description`
--
DROP TABLE IF EXISTS
`oc_information_description`;
CREATE TABLE `oc_information_description` (
`information_id` int(11) NOT NULL,
`language_id` int(11) NOT NULL,
`title` varchar(64) NOT NULL,
`description` text NOT NULL,
`meta_title`
varchar(255) NOT NULL,
`meta_h1` varchar(255) NOT NULL,
`meta_description` varchar(255) NOT NULL,
`meta_keyword` varchar(255) NOT
NULL,
PRIMARY KEY (`information_id`,`language_id`)
) ENGINE=MyISAM
DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_information_description`
--
INSERT INTO `oc_information_description`
(`information_id`, `language_id`, `title`, `description`, `meta_title`,
`meta_h1`, `meta_description`, `meta_keyword`) VALUES
(4, 1, 'О нас',
'<p>\r\n О нас</p>\r\n', '', '', '',
''),
(5, 1, 'Условия соглашения',
'<p>\r\n Условия
соглашения</p>\r\n', '', '', '', ''),
(3, 1,
'Политика Безопасности',
'<p>\r\n Политика
Безопасности</p>\r\n', '', '', '', ''),
(6, 1,
'Информация о доставке',
'<p>\r\n Информация о
доставке</p>\r\n', '', '', '', ''),
(4, 2, 'About
Us', '<p>\r\n About Us</p>\r\n', '', '', '',
''),
(5, 2, 'Terms & Conditions', '<p>\r\n Terms
&amp; Conditions</p>\r\n', '', '', '', ''),
(3, 2,
'Privacy Policy', '<p>\r\n Privacy
Policy</p>\r\n', '', '', '', ''),
(6, 2, 'Delivery
Information', '<p>\r\n Delivery
Information</p>\r\n', '', '', '', '');
--
--------------------------------------------------------
--
-- Table
structure for table `oc_information_to_layout`
--
DROP TABLE IF EXISTS
`oc_information_to_layout`;
CREATE TABLE `oc_information_to_layout` (
`information_id` int(11) NOT NULL,
`store_id` int(11) NOT NULL,
`layout_id` int(11) NOT NULL,
PRIMARY KEY (`information_id`,`store_id`)
)
ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_information_to_store`
--
DROP TABLE IF EXISTS
`oc_information_to_store`;
CREATE TABLE `oc_information_to_store` (
`information_id` int(11) NOT NULL,
`store_id` int(11) NOT NULL,
PRIMARY
KEY (`information_id`,`store_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_information_to_store`
--
INSERT INTO `oc_information_to_store`
(`information_id`, `store_id`) VALUES
(3, 0),
(4, 0),
(5, 0),
(6, 0);
--
--------------------------------------------------------
--
-- Table
structure for table `oc_language`
--
DROP TABLE IF EXISTS
`oc_language`;
CREATE TABLE `oc_language` (
`language_id` int(11) NOT
NULL AUTO_INCREMENT,
`name` varchar(32) NOT NULL,
`code` varchar(5) NOT
NULL,
`locale` varchar(255) NOT NULL,
`image` varchar(64) NOT NULL,
`directory` varchar(32) NOT NULL,
`sort_order` int(3) NOT NULL DEFAULT
'0',
`status` tinyint(1) NOT NULL,
PRIMARY KEY (`language_id`),
KEY
`name` (`name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_language`
--
INSERT INTO `oc_language` (`language_id`, `name`, `code`,
`locale`, `image`, `directory`, `sort_order`, `status`) VALUES
(1,
'Russian', 'ru', 'ru_RU.UTF-8,ru_RU,russian', 'ru.png', 'russian', 1,
1),
(2, 'English', 'en', 'en_US.UTF-8,en_US,en-gb,english', 'gb.png',
'english', 2, 1);
--
--------------------------------------------------------
--
-- Table
structure for table `oc_layout`
--
DROP TABLE IF EXISTS
`oc_layout`;
CREATE TABLE `oc_layout` (
`layout_id` int(11) NOT NULL
AUTO_INCREMENT,
`name` varchar(64) NOT NULL,
PRIMARY KEY
(`layout_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_layout`
--
INSERT INTO `oc_layout` (`layout_id`, `name`) VALUES
(1,
'Главная'),
(2, 'Продукт'),
(3, 'Категория'),
(4,
'По умолчанию'),
(5, 'Производитель'),
(6,
'Аккаунт'),
(7, 'Оформление заказ'),
(8,
'Контакты'),
(9, 'Карта сайта'),
(10,
'Партнерская программа'),
(11,
'Информация'),
(12, 'Сравнение'),
(13,
'Поиск');
--
--------------------------------------------------------
--
-- Table
structure for table `oc_layout_module`
--
DROP TABLE IF EXISTS
`oc_layout_module`;
CREATE TABLE `oc_layout_module` (
`layout_module_id`
int(11) NOT NULL AUTO_INCREMENT,
`layout_id` int(11) NOT NULL,
`code`
varchar(64) NOT NULL,
`position` varchar(14) NOT NULL,
`sort_order`
int(3) NOT NULL,
PRIMARY KEY (`layout_module_id`)
) ENGINE=MyISAM DEFAULT
CHARSET=utf8 COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_layout_module`
--
INSERT INTO `oc_layout_module` (`layout_module_id`,
`layout_id`, `code`, `position`, `sort_order`) VALUES
(2, 4, '0',
'content_top', 0),
(3, 4, '0', 'content_top', 1),
(20, 5, '0',
'column_left', 2),
(69, 10, 'affiliate', 'column_right', 1),
(68, 6,
'account', 'column_right', 1),
(67, 1, 'carousel.29', 'content_top',
3),
(66, 1, 'slideshow.27', 'content_top', 1),
(65, 1, 'featured.28',
'content_top', 2),
(72, 3, 'category', 'column_left', 1),
(73, 3,
'banner.30', 'column_left', 2);
--
--------------------------------------------------------
--
-- Table
structure for table `oc_layout_route`
--
DROP TABLE IF EXISTS
`oc_layout_route`;
CREATE TABLE `oc_layout_route` (
`layout_route_id`
int(11) NOT NULL AUTO_INCREMENT,
`layout_id` int(11) NOT NULL,
`store_id` int(11) NOT NULL,
`route` varchar(255) NOT NULL,
PRIMARY KEY
(`layout_route_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_layout_route`
--
INSERT INTO `oc_layout_route` (`layout_route_id`,
`layout_id`, `store_id`, `route`) VALUES
(38, 6, 0, 'account/%'),
(17, 10,
0, 'affiliate/%'),
(44, 3, 0, 'product/category'),
(42, 1, 0,
'common/home'),
(20, 2, 0, 'product/product'),
(24, 11, 0,
'information/information'),
(23, 7, 0, 'checkout/%'),
(31, 8, 0,
'information/contact'),
(32, 9, 0, 'information/sitemap'),
(34, 4, 0,
''),
(45, 5, 0, 'product/manufacturer'),
(52, 12, 0,
'product/compare'),
(53, 13, 0, 'product/search');
--
--------------------------------------------------------
--
-- Table
structure for table `oc_length_class`
--
DROP TABLE IF EXISTS
`oc_length_class`;
CREATE TABLE `oc_length_class` (
`length_class_id`
int(11) NOT NULL AUTO_INCREMENT,
`value` decimal(15,2) NOT NULL,
PRIMARY KEY (`length_class_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_length_class`
--
INSERT INTO `oc_length_class` (`length_class_id`,
`value`) VALUES
(1, '1.00'),
(2, '10.00'),
(3, '0.39370000');
--
--------------------------------------------------------
--
-- Table
structure for table `oc_length_class_description`
--
DROP TABLE IF EXISTS
`oc_length_class_description`;
CREATE TABLE `oc_length_class_description`
(
`length_class_id` int(11) NOT NULL AUTO_INCREMENT,
`language_id`
int(11) NOT NULL,
`title` varchar(32) NOT NULL,
`unit` varchar(4) NOT
NULL,
PRIMARY KEY (`length_class_id`,`language_id`)
) ENGINE=MyISAM
DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_length_class_description`
--
INSERT INTO `oc_length_class_description`
(`length_class_id`, `language_id`, `title`, `unit`) VALUES
(1, 1,
'Сантиметр', 'см'),
(2, 1, 'Миллиметр', 'мм'),
(1, 2,
'Centimeter', 'cm'),
(2, 2, 'Millimeter', 'mm');
--
--------------------------------------------------------
--
-- Table
structure for table `oc_location`
--
DROP TABLE IF EXISTS
`oc_location`;
CREATE TABLE `oc_location` (
`location_id` int(11) NOT
NULL AUTO_INCREMENT,
`name` varchar(32) NOT NULL,
`address` text NOT
NULL,
`telephone` varchar(32) NOT NULL,
`fax` varchar(32) NOT NULL,
`geocode` varchar(32) NOT NULL,
`image` varchar(255) DEFAULT NULL,
`open` text NOT NULL,
`comment` text NOT NULL,
PRIMARY KEY
(`location_id`),
KEY `name` (`name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_manufacturer`
--
DROP TABLE IF EXISTS
`oc_manufacturer`;
CREATE TABLE `oc_manufacturer` (
`manufacturer_id`
int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(64) NOT NULL,
`image`
varchar(255) DEFAULT NULL,
`sort_order` int(3) NOT NULL,
PRIMARY KEY
(`manufacturer_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_manufacturer`
--
INSERT INTO `oc_manufacturer` (`manufacturer_id`,
`name`, `image`, `sort_order`) VALUES
(5, 'HTC',
'catalog/demo/htc_logo.jpg', 0),
(6, 'Palm', 'catalog/demo/palm_logo.jpg',
0),
(7, 'Hewlett-Packard', 'catalog/demo/hp_logo.jpg', 0),
(8, 'Apple',
'catalog/demo/apple_logo.jpg', 0),
(9, 'Canon',
'catalog/demo/canon_logo.jpg', 0),
(10, 'Sony',
'catalog/demo/sony_logo.jpg', 0);
--
--------------------------------------------------------
--
--
Структура таблиці `oc_manufacturer_description`
--
DROP
TABLE IF EXISTS `oc_manufacturer_description`;
CREATE TABLE
`oc_manufacturer_description` (
`manufacturer_id` int(11) NOT NULL,
`language_id` int(11) NOT NULL,
`name` varchar(64) NOT NULL,
`description` text NOT NULL,
`meta_title` varchar(255) NOT NULL,
`meta_h1` varchar(255) NOT NULL,
`meta_description` varchar(255) NOT
NULL,
`meta_keyword` varchar(255) NOT NULL,
PRIMARY KEY
(`manufacturer_id`,`language_id`)
) ENGINE=MyISAM DEFAULT
CHARSET=utf8;
--
-- Дамп даних таблиці
`oc_manufacturer_description`
--
INSERT INTO `oc_manufacturer_description`
(`manufacturer_id`, `language_id`, `name`, `description`, `meta_title`,
`meta_h1`, `meta_description`, `meta_keyword`) VALUES
(5, 1, 'HTC', '',
'HTC', '', '', ''),
(5, 2, 'HTC', '', 'HTC', '', '', ''),
(6, 1, 'Palm',
'', 'Palm', '', '', ''),
(6, 2, 'Palm', '', 'Palm', '', '', ''),
(7, 1,
'Hewlett-Packard', '', 'Hewlett-Packard', '', '', ''),
(7, 2,
'Hewlett-Packard', '', 'Hewlett-Packard', '', '', ''),
(8, 1, 'Apple', '',
'Apple', '', '', ''),
(8, 2, 'Apple', '', 'Apple', '', '', ''),
(9, 1,
'Canon', 'Пример текста в описания
производителя', 'Canon', '', '', ''),
(9, 2, 'Canon', 'Example
of manufacturer description text', 'Canon', '', '', ''),
(10, 1, 'Sony',
'', 'Sony', '', '', ''),
(10, 2, 'Sony', '', 'Sony', '', '', '');
--
--
Table structure for table `oc_manufacturer_to_store`
--
DROP TABLE IF
EXISTS `oc_manufacturer_to_store`;
CREATE TABLE `oc_manufacturer_to_store`
(
`manufacturer_id` int(11) NOT NULL,
`store_id` int(11) NOT NULL,
PRIMARY KEY (`manufacturer_id`,`store_id`)
) ENGINE=MyISAM DEFAULT
CHARSET=utf8 COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_manufacturer_to_store`
--
INSERT INTO `oc_manufacturer_to_store`
(`manufacturer_id`, `store_id`) VALUES
(5, 0),
(6, 0),
(7, 0),
(8, 0),
(9,
0),
(10, 0);
--
--------------------------------------------------------
--
-- Table
structure for table `oc_marketing`
--
DROP TABLE IF EXISTS
`oc_marketing`;
CREATE TABLE `oc_marketing` (
`marketing_id` int(11) NOT
NULL AUTO_INCREMENT,
`name` varchar(32) NOT NULL,
`description` text
NOT NULL,
`code` varchar(64) NOT NULL,
`clicks` int(5) NOT NULL DEFAULT
'0',
`date_added` datetime NOT NULL,
PRIMARY KEY (`marketing_id`)
)
ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_modification`
--
DROP TABLE IF EXISTS
`oc_modification`;
CREATE TABLE `oc_modification` (
`modification_id`
int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(64) NOT NULL,
`code`
varchar(64) NOT NULL,
`author` varchar(64) NOT NULL,
`version`
varchar(32) NOT NULL,
`link` varchar(255) NOT NULL,
`xml` text NOT
NULL,
`status` tinyint(1) NOT NULL,
`date_added` datetime NOT NULL,
PRIMARY KEY (`modification_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
----------------------------------------------------------
-- Table
structure for table `oc_module`
--
DROP TABLE IF EXISTS
`oc_module`;
CREATE TABLE `oc_module` (
`module_id` int(11) NOT NULL
AUTO_INCREMENT,
`name` varchar(64) NOT NULL,
`code` varchar(32) NOT
NULL,
`setting` text NOT NULL,
PRIMARY KEY (`module_id`)
)
ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
--
-- Dumping
data for table `oc_module`
--
INSERT INTO `oc_module` (`module_id`,
`name`, `code`, `setting`) VALUES
(30, 'Category', 'banner',
'{"name":"Category","banner_id":"6","width":"182","height":"182","status":"1"}'),
(29,
'Home Page', 'carousel', '{"name":"Home
Page","banner_id":"8","width":"130","height":"100","status":"1"}'),
(28,
'Home Page', 'featured', '{"name":"Home
Page","product":["43","40","42","30"],"limit":"4","width":"200","height":"200","status":"1"}'),
(27,
'Home Page', 'slideshow', '{"name":"Home
Page","banner_id":"7","width":"1140","height":"380","status":"1"}'),
(31,
'Banner 1', 'banner', '{"name":"Banner
1","banner_id":"6","width":"182","height":"182","status":"1"}');
--
--------------------------------------------------------
--
-- Table
structure for table `oc_option`
--
DROP TABLE IF EXISTS
`oc_option`;
CREATE TABLE `oc_option` (
`option_id` int(11) NOT NULL
AUTO_INCREMENT,
`type` varchar(32) NOT NULL,
`sort_order` int(3) NOT
NULL,
PRIMARY KEY (`option_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_option`
--
INSERT INTO `oc_option` (`option_id`, `type`, `sort_order`)
VALUES
(1, 'radio', 1),
(2, 'checkbox', 2),
(4, 'text', 3),
(5, 'select',
4),
(6, 'textarea', 5),
(7, 'file', 6),
(8, 'date', 7),
(9, 'time',
8),
(10, 'datetime', 9),
(11, 'select', 10),
(12, 'date', 11);
--
--------------------------------------------------------
--
-- Table
structure for table `oc_option_description`
--
DROP TABLE IF EXISTS
`oc_option_description`;
CREATE TABLE `oc_option_description` (
`option_id` int(11) NOT NULL,
`language_id` int(11) NOT NULL,
`name`
varchar(128) NOT NULL,
PRIMARY KEY (`option_id`,`language_id`)
)
ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
--
-- Dumping
data for table `oc_option_description`
--
INSERT INTO
`oc_option_description` (`option_id`, `language_id`, `name`) VALUES
(1, 1,
'Переключатель'),
(2, 1, 'Флажок'),
(4, 1,
'Текст'),
(6, 1, 'Текстовая область'),
(8, 1,
'Дата'),
(7, 1, 'Файл'),
(5, 1, 'Список'),
(9, 1,
'Время'),
(10, 1, 'Дата и Время'),
(12, 1, 'Дата
доставки'),
(11, 1, 'Размер'),
(1, 2, 'Radio'),
(2, 2,
'Checkbox'),
(4, 2, 'Text'),
(6, 2, 'Textarea'),
(8, 2, 'Date'),
(7, 2,
'File'),
(5, 2, 'Select'),
(9, 2, 'Time'),
(10, 2, 'Date &
Time'),
(12, 2, 'Delivery Date'),
(11, 2, 'Size');
--
--------------------------------------------------------
--
-- Table
structure for table `oc_option_value`
--
DROP TABLE IF EXISTS
`oc_option_value`;
CREATE TABLE `oc_option_value` (
`option_value_id`
int(11) NOT NULL AUTO_INCREMENT,
`option_id` int(11) NOT NULL,
`image`
varchar(255) NOT NULL,
`sort_order` int(3) NOT NULL,
PRIMARY KEY
(`option_value_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_option_value`
--
INSERT INTO `oc_option_value` (`option_value_id`,
`option_id`, `image`, `sort_order`) VALUES
(43, 1, '', 3),
(32, 1, '',
1),
(45, 2, '', 4),
(44, 2, '', 3),
(42, 5, '', 4),
(41, 5, '', 3),
(39, 5,
'', 1),
(40, 5, '', 2),
(31, 1, '', 2),
(23, 2, '', 1),
(24, 2, '',
2),
(46, 11, '', 1),
(47, 11, '', 2),
(48, 11, '', 3);
--
--------------------------------------------------------
--
-- Table
structure for table `oc_option_value_description`
--
DROP TABLE IF EXISTS
`oc_option_value_description`;
CREATE TABLE `oc_option_value_description`
(
`option_value_id` int(11) NOT NULL,
`language_id` int(11) NOT NULL,
`option_id` int(11) NOT NULL,
`name` varchar(128) NOT NULL,
PRIMARY KEY
(`option_value_id`,`language_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_option_value_description`
--
INSERT INTO `oc_option_value_description`
(`option_value_id`, `language_id`, `option_id`, `name`) VALUES
(43, 1, 1,
'Large'),
(32, 1, 1, 'Small'),
(45, 1, 2, 'Флажок 4'),
(44, 1, 2,
'Флажок 3'),
(31, 1, 1, 'Medium'),
(42, 1, 5, 'Желтый'),
(41,
1, 5, 'Зеленый'),
(39, 1, 5, 'Красный'),
(40, 1, 5,
'Синий'),
(23, 1, 2, 'Флажок 1'),
(24, 1, 2, 'Флажок
2'),
(48, 1, 11, 'Large'),
(47, 1, 11, 'Medium'),
(46, 1, 11,
'Small'),
(43, 2, 1, 'Large'),
(32, 2, 1, 'Small'),
(45, 2, 2, 'Checkbox
4'),
(44, 2, 2, 'Checkbox 3'),
(31, 2, 1, 'Medium'),
(42, 2, 5,
'Yellow'),
(41, 2, 5, 'Green'),
(39, 2, 5, 'Red'),
(40, 2, 5, 'Blue'),
(23,
2, 2, 'Checkbox 1'),
(24, 2, 2, 'Checkbox 2'),
(48, 2, 11, 'Large'),
(47,
2, 11, 'Medium'),
(46, 2, 11, 'Small');
--
--------------------------------------------------------
--
-- Table
structure for table `oc_order`
--
DROP TABLE IF EXISTS `oc_order`;
CREATE
TABLE `oc_order` (
`order_id` int(11) NOT NULL AUTO_INCREMENT,
`invoice_no` int(11) NOT NULL DEFAULT '0',
`invoice_prefix` varchar(26)
NOT NULL,
`store_id` int(11) NOT NULL DEFAULT '0',
`store_name`
varchar(64) NOT NULL,
`store_url` varchar(255) NOT NULL,
`customer_id`
int(11) NOT NULL DEFAULT '0',
`customer_group_id` int(11) NOT NULL
DEFAULT '0',
`firstname` varchar(32) NOT NULL,
`lastname` varchar(32)
NOT NULL,
`email` varchar(96) NOT NULL,
`telephone` varchar(32) NOT
NULL,
`fax` varchar(32) NOT NULL,
`custom_field` text NOT NULL,
`payment_firstname` varchar(32) NOT NULL,
`payment_lastname` varchar(32)
NOT NULL,
`payment_company` varchar(40) NOT NULL,
`payment_address_1`
varchar(128) NOT NULL,
`payment_address_2` varchar(128) NOT NULL,
`payment_city` varchar(128) NOT NULL,
`payment_postcode` varchar(10) NOT
NULL,
`payment_country` varchar(128) NOT NULL,
`payment_country_id`
int(11) NOT NULL,
`payment_zone` varchar(128) NOT NULL,
`payment_zone_id` int(11) NOT NULL,
`payment_address_format` text NOT
NULL,
`payment_custom_field` text NOT NULL,
`payment_method`
varchar(128) NOT NULL,
`payment_code` varchar(128) NOT NULL,
`shipping_firstname` varchar(32) NOT NULL,
`shipping_lastname`
varchar(32) NOT NULL,
`shipping_company` varchar(40) NOT NULL,
`shipping_address_1` varchar(128) NOT NULL,
`shipping_address_2`
varchar(128) NOT NULL,
`shipping_city` varchar(128) NOT NULL,
`shipping_postcode` varchar(10) NOT NULL,
`shipping_country` varchar(128)
NOT NULL,
`shipping_country_id` int(11) NOT NULL,
`shipping_zone`
varchar(128) NOT NULL,
`shipping_zone_id` int(11) NOT NULL,
`shipping_address_format` text NOT NULL,
`shipping_custom_field` text NOT
NULL,
`shipping_method` varchar(128) NOT NULL,
`shipping_code`
varchar(128) NOT NULL,
`comment` text NOT NULL,
`total` decimal(15,4)
NOT NULL DEFAULT '0.0000',
`order_status_id` int(11) NOT NULL DEFAULT
'0',
`affiliate_id` int(11) NOT NULL,
`commission` decimal(15,4) NOT
NULL,
`marketing_id` int(11) NOT NULL,
`tracking` varchar(64) NOT
NULL,
`language_id` int(11) NOT NULL,
`currency_id` int(11) NOT NULL,
`currency_code` varchar(3) NOT NULL,
`currency_value` decimal(15,8) NOT
NULL DEFAULT '1.00000000',
`ip` varchar(40) NOT NULL,
`forwarded_ip`
varchar(40) NOT NULL,
`user_agent` varchar(255) NOT NULL,
`accept_language` varchar(255) NOT NULL,
`date_added` datetime NOT NULL,
`date_modified` datetime NOT NULL,
PRIMARY KEY (`order_id`)
)
ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_order_custom_field`
--
DROP TABLE IF EXISTS
`oc_order_custom_field`;
CREATE TABLE `oc_order_custom_field` (
`order_custom_field_id` int(11) NOT NULL AUTO_INCREMENT,
`order_id`
int(11) NOT NULL,
`custom_field_id` int(11) NOT NULL,
`custom_field_value_id` int(11) NOT NULL,
`name` varchar(255) NOT NULL,
`value` text NOT NULL,
`type` varchar(32) NOT NULL,
`location`
varchar(16) NOT NULL,
PRIMARY KEY (`order_custom_field_id`)
)
ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_order_history`
--
DROP TABLE IF EXISTS
`oc_order_history`;
CREATE TABLE `oc_order_history` (
`order_history_id`
int(11) NOT NULL AUTO_INCREMENT,
`order_id` int(11) NOT NULL,
`order_status_id` int(11) NOT NULL,
`notify` tinyint(1) NOT NULL DEFAULT
'0',
`comment` text NOT NULL,
`date_added` datetime NOT NULL,
PRIMARY
KEY (`order_history_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_order_option`
--
DROP TABLE IF EXISTS
`oc_order_option`;
CREATE TABLE `oc_order_option` (
`order_option_id`
int(11) NOT NULL AUTO_INCREMENT,
`order_id` int(11) NOT NULL,
`order_product_id` int(11) NOT NULL,
`product_option_id` int(11) NOT
NULL,
`product_option_value_id` int(11) NOT NULL DEFAULT '0',
`name`
varchar(255) NOT NULL,
`value` text NOT NULL,
`type` varchar(32) NOT
NULL,
PRIMARY KEY (`order_option_id`)
) ENGINE=MyISAM DEFAULT
CHARSET=utf8 COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_order_product`
--
DROP TABLE IF EXISTS
`oc_order_product`;
CREATE TABLE `oc_order_product` (
`order_product_id`
int(11) NOT NULL AUTO_INCREMENT,
`order_id` int(11) NOT NULL,
`product_id` int(11) NOT NULL,
`name` varchar(255) NOT NULL,
`model`
varchar(64) NOT NULL,
`quantity` int(4) NOT NULL,
`price` decimal(15,4)
NOT NULL DEFAULT '0.0000',
`total` decimal(15,4) NOT NULL DEFAULT
'0.0000',
`tax` decimal(15,4) NOT NULL DEFAULT '0.0000',
`reward`
int(8) NOT NULL,
PRIMARY KEY (`order_product_id`)
) ENGINE=MyISAM DEFAULT
CHARSET=utf8 COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_order_recurring`
--
DROP TABLE IF EXISTS
`oc_order_recurring`;
CREATE TABLE `oc_order_recurring` (
`order_recurring_id` int(11) NOT NULL AUTO_INCREMENT,
`order_id` int(11)
NOT NULL,
`reference` varchar(255) NOT NULL,
`product_id` int(11) NOT
NULL,
`product_name` varchar(255) NOT NULL,
`product_quantity` int(11)
NOT NULL,
`recurring_id` int(11) NOT NULL,
`recurring_name`
varchar(255) NOT NULL,
`recurring_description` varchar(255) NOT NULL,
`recurring_frequency` varchar(25) NOT NULL,
`recurring_cycle` smallint(6)
NOT NULL,
`recurring_duration` smallint(6) NOT NULL,
`recurring_price`
decimal(10,4) NOT NULL,
`trial` tinyint(1) NOT NULL,
`trial_frequency`
varchar(25) NOT NULL,
`trial_cycle` smallint(6) NOT NULL,
`trial_duration` smallint(6) NOT NULL,
`trial_price` decimal(10,4) NOT
NULL,
`status` tinyint(4) NOT NULL,
`date_added` datetime NOT NULL,
PRIMARY KEY (`order_recurring_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_order_recurring_transaction`
--
DROP TABLE IF
EXISTS `oc_order_recurring_transaction`;
CREATE TABLE
`oc_order_recurring_transaction` (
`order_recurring_transaction_id`
int(11) NOT NULL AUTO_INCREMENT,
`order_recurring_id` int(11) NOT NULL,
`reference` varchar(255) NOT NULL,
`type` varchar(255) NOT NULL,
`amount` decimal(10,4) NOT NULL,
`date_added` datetime NOT NULL,
PRIMARY KEY (`order_recurring_transaction_id`)
) ENGINE=MyISAM DEFAULT
CHARSET=utf8 COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_order_status`
--
DROP TABLE IF EXISTS
`oc_order_status`;
CREATE TABLE `oc_order_status` (
`order_status_id`
int(11) NOT NULL AUTO_INCREMENT,
`language_id` int(11) NOT NULL,
`name`
varchar(32) NOT NULL,
PRIMARY KEY (`order_status_id`,`language_id`)
)
ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
--
-- Dumping
data for table `oc_order_status`
--
INSERT INTO `oc_order_status`
(`order_status_id`, `language_id`, `name`) VALUES
(1, 1,
'Ожидание'),
(2, 1, 'В обработке'),
(3, 1,
'Доставлено'),
(7, 1, 'Отменено'),
(5, 1, 'Сделка
завершена'),
(8, 1, 'Возврат'),
(9, 1, 'Отмена и
аннулирование'),
(10, 1, 'Неудавшийся'),
(11, 1,
'Возмещенный'),
(12, 1, 'Полностью
измененный'),
(13, 1, 'Полный возврат'),
(1, 2,
'Pending'),
(2, 2, 'Processing'),
(3, 2, 'Shipped'),
(7, 2,
'Canceled'),
(5, 2, 'Complete'),
(8, 2, 'Denied'),
(9, 2, 'Canceled
Reversal'),
(10, 2, 'Failed'),
(11, 2, 'Refunded'),
(12, 2,
'Reversed'),
(13, 2, 'Chargeback');
--
--------------------------------------------------------
--
-- Table
structure for table `oc_order_total`
--
DROP TABLE IF EXISTS
`oc_order_total`;
CREATE TABLE `oc_order_total` (
`order_total_id`
int(10) NOT NULL AUTO_INCREMENT,
`order_id` int(11) NOT NULL,
`code`
varchar(32) NOT NULL,
`title` varchar(255) NOT NULL,
`value`
decimal(15,4) NOT NULL DEFAULT '0.0000',
`sort_order` int(3) NOT NULL,
PRIMARY KEY (`order_total_id`),
KEY `order_id` (`order_id`)
)
ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_order_voucher`
--
DROP TABLE IF EXISTS
`oc_order_voucher`;
CREATE TABLE `oc_order_voucher` (
`order_voucher_id`
int(11) NOT NULL AUTO_INCREMENT,
`order_id` int(11) NOT NULL,
`voucher_id` int(11) NOT NULL,
`description` varchar(255) NOT NULL,
`code` varchar(10) NOT NULL,
`from_name` varchar(64) NOT NULL,
`from_email` varchar(96) NOT NULL,
`to_name` varchar(64) NOT NULL,
`to_email` varchar(96) NOT NULL,
`voucher_theme_id` int(11) NOT NULL,
`message` text NOT NULL,
`amount` decimal(15,4) NOT NULL,
PRIMARY KEY
(`order_voucher_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_product`
--
DROP TABLE IF EXISTS
`oc_product`;
CREATE TABLE `oc_product` (
`product_id` int(11) NOT NULL
AUTO_INCREMENT,
`model` varchar(64) NOT NULL,
`sku` varchar(64) NOT
NULL,
`upc` varchar(12) NOT NULL,
`ean` varchar(14) NOT NULL,
`jan`
varchar(13) NOT NULL,
`isbn` varchar(17) NOT NULL,
`mpn` varchar(64)
NOT NULL,
`location` varchar(128) NOT NULL,
`quantity` int(4) NOT NULL
DEFAULT '0',
`stock_status_id` int(11) NOT NULL,
`image` varchar(255)
DEFAULT NULL,
`manufacturer_id` int(11) NOT NULL,
`shipping` tinyint(1)
NOT NULL DEFAULT '1',
`price` decimal(15,4) NOT NULL DEFAULT '0.0000',
`points` int(8) NOT NULL DEFAULT '0',
`tax_class_id` int(11) NOT NULL,
`date_available` date NOT NULL DEFAULT '0000-00-00',
`weight`
decimal(15,2) NOT NULL DEFAULT '0.00',
`weight_class_id` int(11) NOT NULL
DEFAULT '0',
`length` decimal(15,2) NOT NULL DEFAULT '0.00',
`width`
decimal(15,2) NOT NULL DEFAULT '0.00',
`height` decimal(15,2) NOT NULL
DEFAULT '0.00',
`length_class_id` int(11) NOT NULL DEFAULT '0',
`subtract` tinyint(1) NOT NULL DEFAULT '1',
`minimum` int(11) NOT NULL
DEFAULT '1',
`sort_order` int(11) NOT NULL DEFAULT '0',
`status`
tinyint(1) NOT NULL DEFAULT '0',
`viewed` int(5) NOT NULL DEFAULT '0',
`date_added` datetime NOT NULL,
`date_modified` datetime NOT NULL,
PRIMARY KEY (`product_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_product`
--
INSERT INTO `oc_product` (`product_id`, `model`, `sku`,
`upc`, `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`,
`date_added`, `date_modified`, `viewed`) VALUES
(28, 'Товар 1', '',
'', '', 939, 7, 'catalog/demo/htc_touch_hd_1.jpg', 5, 1, 100.0000, 200, 9,
'2009-02-03', 146.40000000, 2, 0.00, 0.00, 0.00, 1, 1, 1, 0, 1, '2009-02-03
16:06:50', '2011-09-30 01:05:39', 0),
(29, 'Товар 2', '', '', '', 999,
6, 'catalog/demo/palm_treo_pro_1.jpg', 6, 1, 279.9900, 0, 9, '2009-02-03',
133.00, 2, 0.00, 0.00, 0.00, 3, 1, 1, 0, 1, '2009-02-03 16:42:17',
'2011-09-30 01:06:08', 0),
(30, 'Товар 3', '', '', '', 7, 6,
'catalog/demo/canon_eos_5d_1.jpg', 9, 1, 100.0000, 0, 9, '2009-02-03',
0.00, 1, 0.00, 0.00, 0.00, 1, 1, 1, 0, 1, '2009-02-03 16:59:00',
'2011-09-30 01:05:23', 0),
(31, 'Товар 4', '', '', '', 1000, 6,
'catalog/demo/nikon_d300_1.jpg', 0, 1, 80.0000, 0, 9, '2009-02-03', 0.00,
1, 0.00, 0.00, 0.00, 3, 1, 1, 0, 1, '2009-02-03 17:00:10', '2011-09-30
01:06:00', 0),
(32, 'Товар 5', '', '', '', 999, 6,
'catalog/demo/ipod_touch_1.jpg', 8, 1, 100.0000, 0, 9, '2009-02-03', 5.00,
1, 0.00, 0.00, 0.00, 1, 1, 1, 0, 1, '2009-02-03 17:07:26', '2011-09-30
01:07:22', 0),
(33, 'Товар 6', '', '', '', 1000, 6,
'catalog/demo/samsung_syncmaster_941bw.jpg', 0, 1, 200.0000, 0, 9,
'2009-02-03', 5.00, 1, 0.00, 0.00, 0.00, 2, 1, 1, 0, 1, '2009-02-03
17:08:31', '2011-09-30 01:06:29', 0),
(34, 'Товар 7', '', '', '',
1000, 6, 'catalog/demo/ipod_shuffle_1.jpg', 8, 1, 100.0000, 0, 9,
'2009-02-03', 5.00, 1, 0.00, 0.00, 0.00, 2, 1, 1, 0, 1, '2009-02-03
18:07:54', '2011-09-30 01:07:17', 0),
(35, 'Товар 8', '', '', '',
1000, 5, '', 0, 0, 100.0000, 0, 9, '2009-02-03', 5.00, 1, 0.00, 0.00, 0.00,
1, 1, 1, 0, 1, '2009-02-03 18:08:31', '2011-09-30 01:06:17', 0),
(36,
'Товар 9', '', '', '', 994, 6, 'catalog/demo/ipod_nano_1.jpg', 8, 0,
100.0000, 100, 9, '2009-02-03', 5.00, 1, 0.00, 0.00, 0.00, 2, 1, 1, 0, 1,
'2009-02-03 18:09:19', '2011-09-30 01:07:12', 0),
(40, 'Товар 11', '',
'', '', 970, 5, 'catalog/demo/iphone_1.jpg', 8, 1, 101.0000, 0, 9,
'2009-02-03', 10.00, 1, 0.00, 0.00, 0.00, 1, 1, 1, 0, 1, '2009-02-03
21:07:12', '2011-09-30 01:06:53', 0),
(41, 'Товар 14', '', '', '',
977, 5, 'catalog/demo/imac_1.jpg', 8, 1, 100.0000, 0, 9, '2009-02-03',
5.00, 1, 0.00, 0.00, 0.00, 1, 1, 1, 0, 1, '2009-02-03 21:07:26',
'2011-09-30 01:06:44', 0),
(42, 'Товар 15', '', '', '', 990, 5,
'catalog/demo/apple_cinema_30.jpg', 8, 1, 100.0000, 400, 9, '2009-02-04',
12.50000000, 1, 1.00, 2.00, 3.00, 1, 1, 2, 0, 1, '2009-02-03 21:07:37',
'2011-09-30 00:46:19', 0),
(43, 'Товар 16', '', '', '', 929, 5,
'catalog/demo/macbook_1.jpg', 8, 0, 500.0000, 0, 9, '2009-02-03', 0.00, 1,
0.00, 0.00, 0.00, 2, 1, 1, 0, 1, '2009-02-03 21:07:49', '2011-09-30
01:05:46', 0),
(44, 'Товар 17', '', '', '', 1000, 5,
'catalog/demo/macbook_air_1.jpg', 8, 1, 1000.0000, 0, 9, '2009-02-03',
0.00, 1, 0.00, 0.00, 0.00, 2, 1, 1, 0, 1, '2009-02-03 21:08:00',
'2011-09-30 01:05:53', 0),
(45, 'Товар 18', '', '', '', 998, 5,
'catalog/demo/macbook_pro_1.jpg', 8, 1, 2000.0000, 0, 100, '2009-02-03',
0.00, 1, 0.00, 0.00, 0.00, 2, 1, 1, 0, 1, '2009-02-03 21:08:17',
'2011-09-15 22:22:01', 0),
(46, 'Товар 19', '', '', '', 1000, 5,
'catalog/demo/sony_vaio_1.jpg', 10, 1, 1000.0000, 0, 9, '2009-02-03', 0.00,
1, 0.00, 0.00, 0.00, 2, 1, 1, 0, 1, '2009-02-03 21:08:29', '2011-09-30
01:06:39', 0),
(47, 'Товар 21', '', '', '', 1000, 5,
'catalog/demo/hp_1.jpg', 7, 1, 100.0000, 400, 9, '2009-02-03', 1.00, 1,
0.00, 0.00, 0.00, 1, 0, 1, 0, 1, '2009-02-03 21:08:40', '2011-09-30
01:05:28', 0),
(48, 'Товар 20', 'test 1', '', 'test 2', 995, 5,
'catalog/demo/ipod_classic_1.jpg', 8, 1, 100.0000, 0, 9, '2009-02-08',
1.00, 1, 0.00, 0.00, 0.00, 2, 1, 1, 0, 1, '2009-02-08 17:21:51',
'2011-09-30 01:07:06', 0),
(49, 'SAM1', '', '', '', 0, 8,
'catalog/demo/samsung_tab_1.jpg', 0, 1, 199.9900, 0, 9, '2011-04-25', 0.00,
1, 0.00, 0.00, 0.00, 1, 1, 1, 1, 1, '2011-04-26 08:57:34', '2011-09-30
01:06:23', 0);
--
--------------------------------------------------------
--
-- Table
structure for table `oc_product_attribute`
--
DROP TABLE IF EXISTS
`oc_product_attribute`;
CREATE TABLE `oc_product_attribute` (
`product_id` int(11) NOT NULL,
`attribute_id` int(11) NOT NULL,
`language_id` int(11) NOT NULL,
`text` text NOT NULL,
PRIMARY KEY
(`product_id`,`attribute_id`,`language_id`)
) ENGINE=MyISAM DEFAULT
CHARSET=utf8 COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_product_attribute`
--
INSERT INTO `oc_product_attribute`
(`product_id`, `attribute_id`, `language_id`, `text`) VALUES
(43, 2, 1,
'1'),
(47, 2, 1, '4'),
(43, 4, 1, '8гб'),
(42, 3, 1, '100мгц'),
(47,
4, 1, '16ГБ'),
(43, 2, 2, '1'),
(47, 2, 2, '4'),
(43, 4, 2, '8gb'),
(42,
3, 2, '100mhz'),
(47, 4, 2, '16GB');
--
--------------------------------------------------------
--
-- Table
structure for table `oc_product_description`
--
DROP TABLE IF EXISTS
`oc_product_description`;
CREATE TABLE `oc_product_description` (
`product_id` int(11) NOT NULL,
`language_id` int(11) NOT NULL,
`name`
varchar(255) NOT NULL,
`description` text NOT NULL,
`tag` text NOT
NULL,
`meta_title` varchar(255) NOT NULL,
`meta_h1` varchar(255) NOT
NULL,
`meta_description` varchar(255) NOT NULL,
`meta_keyword`
varchar(255) NOT NULL,
PRIMARY KEY (`product_id`,`language_id`),
KEY
`name` (`name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_product_description`
--
INSERT INTO `oc_product_description`
(`product_id`, `language_id`, `name`, `description`, `tag`, `meta_title`,
`meta_h1`, `meta_description`, `meta_keyword`) VALUES
(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"', '', '', ''),
(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', '', 'Canon EOS 5D', '', '', ''),
(49, 1,
'Samsung Galaxy Tab 10.1', '<p>\r\n Samsung Galaxy Tab 10.1,
is the world&rsquo;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 &ndash; 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 &ndash; 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&rsquo;s Hub, Music Hub and Samsung Mini
Apps Tray &ndash; 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.&nbsp;&auml;&ouml;</p>\r\n', '',
'Samsung Galaxy Tab 10.1', '', '', ''),
(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&#39;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&#39;s exclusive EXPEED Image Processing System that
is central to driving the speed and processing power needed for many of the
camera&#39;s new features. The D300 features a new 51-point
autofocus system with Nikon&#39;s 3D Focus Tracking feature and two
new LiveView shooting modes that allow users to frame a photograph using
the camera&#39;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&#39;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', '', '', ''),
(44, 1,
'MacBook Air', '<div>\r\n MacBook Air is ultrathin,
ultraportable, and ultra unlike anything else. But you don&rsquo;t
lose inches and pounds overnight. It&rsquo;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', '', '', ''),
(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', '', '', ''),
(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&rsquo;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&reg; 6.1 Professional
Edition</li>\r\n <li>\r\n Qualcomm&reg;
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
&mdash; 850MHz, 1900MHz,
2100MHz</li>\r\n <li>\r\n Quad-band GSM
&mdash;
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',
'', '', ''),
(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>&nbsp;</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', '',
'', ''),
(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&#39;s latest, most powerful
innovation yet: Intel&reg; Centrino&reg; 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', '', '', ''),
(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&#39;re at the
office</p>\r\n', '', 'HP LP3065', '', '', ''),
(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 &nbsp;</p>\r\n', '',
'iPod Touch', '', '', ''),
(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', '', '', ''),
(33, 1, 'Samsung
SyncMaster 941BW', '<div>\r\n Imagine the advantages of going
big without slowing down. The big 19&quot; 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&#39;s not hard to
imagine.</div>\r\n', '', 'Samsung SyncMaster 941BW', '', '',
''),
(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', '', '', ''),
(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', '',
'', ''),
(35, 1, 'Product 8', '<p>\r\n Product
8</p>\r\n', '', 'Product 8', '', '', ''),
(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', '', '', ''),
(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', '', '', ''),
(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&quot; 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&reg; MSM 7201A&trade; 528
MHz</li>\r\n <li>\r\n Windows
Mobile&reg; 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&trade; 3D &amp; Touch-sensitive front
panel buttons</li>\r\n <li>\r\n GPS and A-GPS
ready</li>\r\n <li>\r\n Bluetooth&reg;
2.0 with Enhanced Data Rate and A2DP for wireless stereo
headsets</li>\r\n <li>\r\n Wi-Fi&reg;:
IEEE 802.11 b/g</li>\r\n <li>\r\n HTC
ExtUSB&trade; (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&trade; 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', '', '', ''),
(42, 2, 'Apple Cinema 30"',
'<p><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.&nbsp;<br><br></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.&nbsp;<br><br></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.&nbsp;<br><br></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.&nbsp;<br><br></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></font></font></p><h3
style="font-family: ''Open Sans'', sans-serif; color: rgb(102,
102,
102);">Features:</h3><p>Unrivaled
display
performance</p><ul><li>30-inch
(viewable) active-matrix liquid crystal display provides breathtaking image
quality and vivid, richly saturated
color.</li><li>Support for 2560-by-1600 pixel
resolution for display of high definition still and video
imagery.</li><li>Wide-format design for
simultaneous display of two full pages of text and
graphics.</li><li>Industry standard DVI
connector for direct attachment to Mac- and Windows-based desktops and
notebooks</li><li>Incredibly wide (170 degree)
horizontal and vertical viewing angle for maximum visibility and color
performance.</li><li>Lightning-fast pixel
response for full-motion digital video
playback.</li><li>Support for 16.7 million
saturated colors, for use in all graphics-intensive
applications.</li></ul><p>Simple
setup and
operation</p><ul><li>Single cable
with elegant breakout for connection to DVI, USB and FireWire
ports</li><li>Built-in two-port USB 2.0 hub for
easy connection of desktop peripheral
devices.</li><li>Two FireWire 400 ports to
support iSight and other desktop
peripherals</li></ul><p>Sleek,
elegant design</p><ul><li>Huge
virtual workspace, very small
footprint.</li><li>Narrow Bezel design to
minimize visual impact of using dual
displays</li><li>Unique hinge design for
effortless adjustment</li><li>Support for VESA
mounting solutions (Apple Cinema Display VESA Mount Adapter sold
separately)</li></ul><h3
style="font-family: ''Open Sans'', sans-serif; color: rgb(102,
102, 102);">Technical
specifications</h3><p><b>Screen
size (diagonal viewable image
size)</b></p><ul><li>Apple
Cinema HD Display: 30 inches (29.7-inch
viewable)</li></ul><p><b>Screen
type</b></p><ul><li>Thin
film transistor (TFT) active-matrix liquid crystal display
(AMLCD)</li></ul><p><b>Resolutions</b></p><ul><li>2560
x 1600 pixels (optimum resolution)</li><li>2048
x 1280</li><li>1920 x
1200</li><li>1280 x
800</li><li>1024 x
640</li></ul><p><b>Display
colors
(maximum)</b></p><ul><li>16.7
million</li></ul><p><b>Viewing
angle
(typical)</b></p><ul><li>170°
horizontal; 170°
vertical</li></ul><p><b>Brightness
(typical)</b></p><ul><li>30-inch
Cinema HD Display: 400
cd/m2</li></ul><p><b>Contrast
ratio
(typical)</b></p><ul><li>700:1</li></ul><p><b>Response
time
(typical)</b></p><ul><li>16
ms</li></ul><p><b>Pixel
pitch</b></p><ul><li>30-inch
Cinema HD Display: 0.250
mm</li></ul><p><b>Screen
treatment</b></p><ul><li>Antiglare
hardcoat</li></ul><p><b>User
controls (hardware and
software)</b></p><ul><li>Display
Power,</li><li>System sleep,
wake</li><li>Brightness</li><li>Monitor
tilt</li></ul><p><b>Connectors
and
cables</b><br>Cable</p><ul><li>DVI
(Digital Visual Interface)</li><li>FireWire
400</li><li>USB
2.0</li><li>DC power (24
V)</li></ul><p>Connectors</p><ul><li>Two-port,
self-powered USB 2.0 hub</li><li>Two FireWire
400 ports</li><li>Kensington security
port</li></ul><p><b>VESA
mount adapter</b><br>Requires optional Cinema
Display VESA Mount Adapter
(M9649G/A)</p><ul><li>Compatible
with VESA FDMI (MIS-D, 100, C) compliant mounting
solutions</li></ul><p><b>Electrical
requirements</b></p><ul><li>Input
voltage: 100-240 VAC 50-60Hz</li><li>Maximum
power when operating: 150W</li><li>Energy saver
mode: 3W or
less</li></ul><p><b>Environmental
requirements</b></p><ul><li>Operating
temperature: 50° to 95° F (10° to 35°
C)</li><li>Storage temperature: -40° to 116°
F (-40° to 47° C)</li><li>Operating humidity:
20% to 80% noncondensing</li><li>Maximum
operating altitude: 10,000
feet</li></ul><p><b>Agency
approvals</b></p><ul><li>FCC
Part 15 Class B</li><li>EN55022 Class
B</li><li>EN55024</li><li>VCCI
Class B</li><li>AS/NZS 3548 Class
B</li><li>CNS 13438 Class
B</li><li>ICES-003 Class
B</li><li>ISO 13406 part
2</li><li>MPR
II</li><li>IEC
60950</li><li>UL
60950</li><li>CSA
60950</li><li>EN60950</li><li>ENERGY
STAR</li><li>TCO
''03</li></ul><p><b>Size
and weight</b><br>30-inch Apple Cinema HD
Display</p><ul><li>Height: 21.3
inches (54.3 cm)</li><li>Width: 27.2 inches
(68.8 cm)</li><li>Depth: 8.46 inches (21.5
cm)</li><li>Weight: 27.5 pounds (12.5
kg)</li></ul><p><b>System
Requirements</b></p><ul><li>Mac
Pro, all graphic options</li><li>MacBook
Pro</li><li>Power Mac G5 (PCI-X) with ATI
Radeon 9650 or better or NVIDIA GeForce 6800 GT DDL or
better</li><li>Power Mac G5 (PCI Express), all
graphics options</li><li>PowerBook G4 with
dual-link DVI support</li><li>Windows PC and
graphics card that supports DVI ports with dual-link digital bandwidth and
VESA DDC standard for plug-and-play
setup</li></ul>', '', 'Apple Cinema
30"', '', '', ''),
(30, 2, 'Canon EOS 5D',
'<p>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...)
äë<br></p>', '', 'Canon EOS 5D', '', '',
''),
(49, 2, 'Samsung Galaxy Tab 10.1', '<p>\r\n Samsung
Galaxy Tab 10.1, is the world&rsquo;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 &ndash; 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 &ndash; 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&rsquo;s Hub, Music Hub and Samsung Mini
Apps Tray &ndash; 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.&nbsp;&auml;&ouml;</p>\r\n', '',
'Samsung Galaxy Tab 10.1', '', '', ''),
(31, 2, '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&#39;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&#39;s exclusive EXPEED Image Processing System that
is central to driving the speed and processing power needed for many of the
camera&#39;s new features. The D300 features a new 51-point
autofocus system with Nikon&#39;s 3D Focus Tracking feature and two
new LiveView shooting modes that allow users to frame a photograph using
the camera&#39;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&#39;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', '', '', ''),
(44, 2,
'MacBook Air', '<div>\r\n MacBook Air is ultrathin,
ultraportable, and ultra unlike anything else. But you don&rsquo;t
lose inches and pounds overnight. It&rsquo;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', '', '', ''),
(45, 2,
'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', '', '', ''),
(29, 2,
'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&rsquo;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&reg; 6.1 Professional
Edition</li>\r\n <li>\r\n Qualcomm&reg;
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
&mdash; 850MHz, 1900MHz,
2100MHz</li>\r\n <li>\r\n Quad-band GSM
&mdash;
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',
'', '', ''),
(36, 2, '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>&nbsp;</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', '',
'', ''),
(46, 2, 'Sony VAIO', '<div>\r\n Unprecedented power.
The next generation of processing technology has arrived. Built into the
newest VAIO notebooks lies Intel&#39;s latest, most powerful
innovation yet: Intel&reg; Centrino&reg; 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', '', '', ''),
(47, 2, '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&#39;re at the
office</p>\r\n', '', 'HP LP3065', '', '', ''),
(32, 2, '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 &nbsp;</p>\r\n', '',
'iPod Touch', '', '', ''),
(41, 2, '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', '', '', ''),
(33, 2, 'Samsung
SyncMaster 941BW', '<div>\r\n Imagine the advantages of going
big without slowing down. The big 19&quot; 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&#39;s not hard to
imagine.</div>\r\n', '', 'Samsung SyncMaster 941BW', '', '',
''),
(34, 2, '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', '', '', ''),
(43, 2, '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', '',
'', ''),
(35, 2, 'Product 8', '<p>\r\n Product
8</p>\r\n', '', 'Product 8', '', '', ''),
(48, 2, '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', '', '', ''),
(40, 2,
'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', '', '', ''),
(28, 2, '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&quot; 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&reg; MSM 7201A&trade; 528
MHz</li>\r\n <li>\r\n Windows
Mobile&reg; 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&trade; 3D &amp; Touch-sensitive front
panel buttons</li>\r\n <li>\r\n GPS and A-GPS
ready</li>\r\n <li>\r\n Bluetooth&reg;
2.0 with Enhanced Data Rate and A2DP for wireless stereo
headsets</li>\r\n <li>\r\n Wi-Fi&reg;:
IEEE 802.11 b/g</li>\r\n <li>\r\n HTC
ExtUSB&trade; (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&trade; 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', '', '', '');
--
--------------------------------------------------------
--
-- Table
structure for table `oc_product_discount`
--
DROP TABLE IF EXISTS
`oc_product_discount`;
CREATE TABLE `oc_product_discount` (
`product_discount_id` int(11) NOT NULL AUTO_INCREMENT,
`product_id`
int(11) NOT NULL,
`customer_group_id` int(11) NOT NULL,
`quantity`
int(4) NOT NULL DEFAULT '0',
`priority` int(5) NOT NULL DEFAULT '1',
`price` decimal(15,4) NOT NULL DEFAULT '0.0000',
`date_start` date NOT
NULL DEFAULT '0000-00-00',
`date_end` date NOT NULL DEFAULT
'0000-00-00',
PRIMARY KEY (`product_discount_id`),
KEY `product_id`
(`product_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_product_discount`
--
INSERT INTO `oc_product_discount`
(`product_discount_id`, `product_id`, `customer_group_id`, `quantity`,
`priority`, `price`, `date_start`, `date_end`) VALUES
(440, 42, 1, 30, 1,
'66.0000', '0000-00-00', '0000-00-00'),
(439, 42, 1, 20, 1, '77.0000',
'0000-00-00', '0000-00-00'),
(438, 42, 1, 10, 1, '88.0000', '0000-00-00',
'0000-00-00');
--
--------------------------------------------------------
--
-- Table
structure for table `oc_product_filter`
--
DROP TABLE IF EXISTS
`oc_product_filter`;
CREATE TABLE `oc_product_filter` (
`product_id`
int(11) NOT NULL,
`filter_id` int(11) NOT NULL,
PRIMARY KEY
(`product_id`,`filter_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_product_image`
--
DROP TABLE IF EXISTS
`oc_product_image`;
CREATE TABLE `oc_product_image` (
`product_image_id`
int(11) NOT NULL AUTO_INCREMENT,
`product_id` int(11) NOT NULL,
`image`
varchar(255) DEFAULT NULL,
`sort_order` int(3) NOT NULL DEFAULT '0',
PRIMARY KEY (`product_image_id`),
KEY `product_id` (`product_id`)
)
ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
--
-- Dumping
data for table `oc_product_image`
--
INSERT INTO `oc_product_image`
(`product_image_id`, `product_id`, `image`, `sort_order`) VALUES
(2345, 30,
'catalog/demo/canon_eos_5d_2.jpg', 0),
(2321, 47, 'catalog/demo/hp_3.jpg',
0),
(2035, 28, 'catalog/demo/htc_touch_hd_2.jpg', 0),
(2351, 41,
'catalog/demo/imac_3.jpg', 0),
(1982, 40, 'catalog/demo/iphone_6.jpg',
0),
(2001, 36, 'catalog/demo/ipod_nano_5.jpg', 0),
(2000, 36,
'catalog/demo/ipod_nano_4.jpg', 0),
(2005, 34,
'catalog/demo/ipod_shuffle_5.jpg', 0),
(2004, 34,
'catalog/demo/ipod_shuffle_4.jpg', 0),
(2011, 32,
'catalog/demo/ipod_touch_7.jpg', 0),
(2010, 32,
'catalog/demo/ipod_touch_6.jpg', 0),
(2009, 32,
'catalog/demo/ipod_touch_5.jpg', 0),
(1971, 43,
'catalog/demo/macbook_5.jpg', 0),
(1970, 43, 'catalog/demo/macbook_4.jpg',
0),
(1974, 44, 'catalog/demo/macbook_air_4.jpg', 0),
(1973, 44,
'catalog/demo/macbook_air_2.jpg', 0),
(1977, 45,
'catalog/demo/macbook_pro_2.jpg', 0),
(1976, 45,
'catalog/demo/macbook_pro_3.jpg', 0),
(1986, 31,
'catalog/demo/nikon_d300_3.jpg', 0),
(1985, 31,
'catalog/demo/nikon_d300_2.jpg', 0),
(1988, 29,
'catalog/demo/palm_treo_pro_3.jpg', 0),
(1995, 46,
'catalog/demo/sony_vaio_5.jpg', 0),
(1994, 46,
'catalog/demo/sony_vaio_4.jpg', 0),
(1991, 48,
'catalog/demo/ipod_classic_4.jpg', 0),
(1990, 48,
'catalog/demo/ipod_classic_3.jpg', 0),
(1981, 40,
'catalog/demo/iphone_2.jpg', 0),
(1980, 40, 'catalog/demo/iphone_5.jpg',
0),
(2344, 30, 'catalog/demo/canon_eos_5d_3.jpg', 0),
(2320, 47,
'catalog/demo/hp_2.jpg', 0),
(2034, 28, 'catalog/demo/htc_touch_hd_3.jpg',
0),
(2350, 41, 'catalog/demo/imac_2.jpg', 0),
(1979, 40,
'catalog/demo/iphone_3.jpg', 0),
(1978, 40, 'catalog/demo/iphone_4.jpg',
0),
(1989, 48, 'catalog/demo/ipod_classic_2.jpg', 0),
(1999, 36,
'catalog/demo/ipod_nano_2.jpg', 0),
(1998, 36,
'catalog/demo/ipod_nano_3.jpg', 0),
(2003, 34,
'catalog/demo/ipod_shuffle_2.jpg', 0),
(2002, 34,
'catalog/demo/ipod_shuffle_3.jpg', 0),
(2008, 32,
'catalog/demo/ipod_touch_2.jpg', 0),
(2007, 32,
'catalog/demo/ipod_touch_3.jpg', 0),
(2006, 32,
'catalog/demo/ipod_touch_4.jpg', 0),
(1969, 43,
'catalog/demo/macbook_2.jpg', 0),
(1968, 43, 'catalog/demo/macbook_3.jpg',
0),
(1972, 44, 'catalog/demo/macbook_air_3.jpg', 0),
(1975, 45,
'catalog/demo/macbook_pro_4.jpg', 0),
(1984, 31,
'catalog/demo/nikon_d300_4.jpg', 0),
(1983, 31,
'catalog/demo/nikon_d300_5.jpg', 0),
(1987, 29,
'catalog/demo/palm_treo_pro_2.jpg', 0),
(1993, 46,
'catalog/demo/sony_vaio_2.jpg', 0),
(1992, 46,
'catalog/demo/sony_vaio_3.jpg', 0),
(2327, 49,
'catalog/demo/samsung_tab_7.jpg', 0),
(2326, 49,
'catalog/demo/samsung_tab_6.jpg', 0),
(2325, 49,
'catalog/demo/samsung_tab_5.jpg', 0),
(2324, 49,
'catalog/demo/samsung_tab_4.jpg', 0),
(2323, 49,
'catalog/demo/samsung_tab_3.jpg', 0),
(2322, 49,
'catalog/demo/samsung_tab_2.jpg', 0),
(2317, 42,
'catalog/demo/canon_logo.jpg', 0),
(2316, 42, 'catalog/demo/hp_1.jpg',
0),
(2315, 42, 'catalog/demo/compaq_presario.jpg', 0),
(2314, 42,
'catalog/demo/canon_eos_5d_1.jpg', 0),
(2313, 42,
'catalog/demo/canon_eos_5d_2.jpg', 0);
--
--------------------------------------------------------
--
-- Table
structure for table `oc_product_option`
--
DROP TABLE IF EXISTS
`oc_product_option`;
CREATE TABLE `oc_product_option` (
`product_option_id` int(11) NOT NULL AUTO_INCREMENT,
`product_id` int(11)
NOT NULL,
`option_id` int(11) NOT NULL,
`value` text NOT NULL,
`required` tinyint(1) NOT NULL,
PRIMARY KEY (`product_option_id`)
)
ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
--
-- Dumping
data for table `oc_product_option`
--
INSERT INTO `oc_product_option`
(`product_option_id`, `product_id`, `option_id`, `value`, `required`)
VALUES
(224, 35, 11, '', 1),
(225, 47, 12, '2011-04-22', 1),
(223, 42, 2,
'', 1),
(217, 42, 5, '', 1),
(209, 42, 6, '', 1),
(218, 42, 1, '',
1),
(208, 42, 4, 'test', 1),
(219, 42, 8, '2011-02-20', 1),
(222, 42, 7,
'', 1),
(221, 42, 9, '22:25', 1),
(220, 42, 10, '2011-02-20 22:25',
1),
(226, 30, 5, '', 1);
--
--------------------------------------------------------
--
-- Table
structure for table `oc_product_option_value`
--
DROP TABLE IF EXISTS
`oc_product_option_value`;
CREATE TABLE `oc_product_option_value` (
`product_option_value_id` int(11) NOT NULL AUTO_INCREMENT,
`product_option_id` int(11) NOT NULL,
`product_id` int(11) NOT NULL,
`option_id` int(11) NOT NULL,
`option_value_id` int(11) NOT NULL,
`quantity` int(3) NOT NULL,
`subtract` tinyint(1) NOT NULL,
`price`
decimal(15,4) NOT NULL,
`price_prefix` varchar(1) NOT NULL,
`points`
int(8) NOT NULL,
`points_prefix` varchar(1) NOT NULL,
`weight`
decimal(15,2) NOT NULL,
`weight_prefix` varchar(1) NOT NULL,
PRIMARY
KEY (`product_option_value_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_product_option_value`
--
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
(1, 217, 42,
5, 41, 100, 0, '1.0000', '+', 0, '+', '1.00', '+'),
(6, 218, 42, 1, 31,
146, 1, '20.0000', '+', 2, '-', '20.00', '+'),
(7, 218, 42, 1, 43, 300, 1,
'30.0000', '+', 3, '+', '30.00', '+'),
(5, 218, 42, 1, 32, 96, 1,
'10.0000', '+', 1, '+', '10.00', '+'),
(4, 217, 42, 5, 39, 92, 1, '4.0000',
'+', 0, '+', '4.00', '+'),
(2, 217, 42, 5, 42, 200, 1, '2.0000', '+', 0,
'+', '2.00', '+'),
(3, 217, 42, 5, 40, 300, 0, '3.0000', '+', 0, '+',
'3.00', '+'),
(8, 223, 42, 2, 23, 48, 1, '10.0000', '+', 0, '+', '10.00',
'+'),
(10, 223, 42, 2, 44, 2696, 1, '30.0000', '+', 0, '+', '30.00',
'+'),
(9, 223, 42, 2, 24, 194, 1, '20.0000', '+', 0, '+', '20.00',
'+'),
(11, 223, 42, 2, 45, 3998, 1, '40.0000', '+', 0, '+', '40.00',
'+'),
(12, 224, 35, 11, 46, 0, 1, '5.0000', '+', 0, '+', '0.00', '+'),
(13,
224, 35, 11, 47, 10, 1, '10.0000', '+', 0, '+', '0.00', '+'),
(14, 224, 35,
11, 48, 15, 1, '15.0000', '+', 0, '+', '0.00', '+'),
(16, 226, 30, 5, 40,
5, 1, '0.0000', '+', 0, '+', '0.00', '+'),
(15, 226, 30, 5, 39, 2, 1,
'0.0000', '+', 0, '+', '0.00', '+');
--
--------------------------------------------------------
--
-- Table
structure for table `oc_product_recurring`
--
DROP TABLE IF EXISTS
`oc_product_recurring`;
CREATE TABLE `oc_product_recurring` (
`product_id` int(11) NOT NULL,
`recurring_id` int(11) NOT NULL,
`customer_group_id` int(11) NOT NULL,
PRIMARY KEY
(`product_id`,`recurring_id`,`customer_group_id`)
) ENGINE=MyISAM DEFAULT
CHARSET=utf8 COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_product_related`
--
DROP TABLE IF EXISTS
`oc_product_related`;
CREATE TABLE `oc_product_related` (
`product_id`
int(11) NOT NULL,
`related_id` int(11) NOT NULL,
PRIMARY KEY
(`product_id`,`related_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_product_related`
--
INSERT INTO `oc_product_related` (`product_id`,
`related_id`) VALUES
(40, 42),
(41, 42),
(42, 40),
(42, 41);
--
--------------------------------------------------------
--
-- Table
structure for table `oc_product_reward`
--
DROP TABLE IF EXISTS
`oc_product_reward`;
CREATE TABLE `oc_product_reward` (
`product_reward_id` int(11) NOT NULL AUTO_INCREMENT,
`product_id` int(11)
NOT NULL DEFAULT '0',
`customer_group_id` int(11) NOT NULL DEFAULT '0',
`points` int(8) NOT NULL DEFAULT '0',
PRIMARY KEY (`product_reward_id`)
)
ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
--
-- Dumping
data for table `oc_product_reward`
--
INSERT INTO `oc_product_reward`
(`product_reward_id`, `product_id`, `customer_group_id`, `points`)
VALUES
(515, 42, 1, 100),
(519, 47, 1, 300),
(379, 28, 1, 400),
(329, 43,
1, 600),
(339, 29, 1, 0),
(343, 48, 1, 0),
(335, 40, 1, 0),
(539, 30, 1,
200),
(331, 44, 1, 700),
(333, 45, 1, 800),
(337, 31, 1, 0),
(425, 35, 1,
0),
(345, 33, 1, 0),
(347, 46, 1, 0),
(545, 41, 1, 0),
(351, 36, 1,
0),
(353, 34, 1, 0),
(355, 32, 1, 0),
(521, 49, 1, 1000);
--
--------------------------------------------------------
--
-- Table
structure for table `oc_product_special`
--
DROP TABLE IF EXISTS
`oc_product_special`;
CREATE TABLE `oc_product_special` (
`product_special_id` int(11) NOT NULL AUTO_INCREMENT,
`product_id`
int(11) NOT NULL,
`customer_group_id` int(11) NOT NULL,
`priority`
int(5) NOT NULL DEFAULT '1',
`price` decimal(15,4) NOT NULL DEFAULT
'0.0000',
`date_start` date NOT NULL DEFAULT '0000-00-00',
`date_end`
date NOT NULL DEFAULT '0000-00-00',
PRIMARY KEY (`product_special_id`),
KEY `product_id` (`product_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_product_special`
--
INSERT INTO `oc_product_special`
(`product_special_id`, `product_id`, `customer_group_id`, `priority`,
`price`, `date_start`, `date_end`) VALUES
(419, 42, 1, 1, '90.0000',
'0000-00-00', '0000-00-00'),
(439, 30, 1, 2, '90.0000', '0000-00-00',
'0000-00-00'),
(438, 30, 1, 1, '80.0000', '0000-00-00', '0000-00-00');
--
--------------------------------------------------------
--
-- Table
structure for table `oc_product_to_category`
--
DROP TABLE IF EXISTS
`oc_product_to_category`;
CREATE TABLE `oc_product_to_category` (
`product_id` int(11) NOT NULL,
`category_id` int(11) NOT NULL,
`main_category` tinyint(1) NOT NULL default '0',
PRIMARY KEY
(`product_id`,`category_id`),
KEY `category_id` (`category_id`)
)
ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
--
-- Dumping
data for table `oc_product_to_category`
--
INSERT INTO
`oc_product_to_category` (`product_id`, `category_id`) VALUES
(28,
20),
(28, 24),
(29, 20),
(29, 24),
(30, 20),
(30, 33),
(31, 33),
(32,
34),
(33, 20),
(33, 28),
(34, 34),
(35, 20),
(36, 34),
(40, 20),
(40,
24),
(41, 27),
(42, 20),
(42, 28),
(43, 18),
(43, 20),
(44, 18),
(44,
20),
(45, 18),
(46, 18),
(46, 20),
(47, 18),
(47, 20),
(48, 20),
(48,
34),
(49, 57);
--
--------------------------------------------------------
--
-- Table
structure for table `oc_product_to_download`
--
DROP TABLE IF EXISTS
`oc_product_to_download`;
CREATE TABLE `oc_product_to_download` (
`product_id` int(11) NOT NULL,
`download_id` int(11) NOT NULL,
PRIMARY
KEY (`product_id`,`download_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_product_to_layout`
--
DROP TABLE IF EXISTS
`oc_product_to_layout`;
CREATE TABLE `oc_product_to_layout` (
`product_id` int(11) NOT NULL,
`store_id` int(11) NOT NULL,
`layout_id`
int(11) NOT NULL,
PRIMARY KEY (`product_id`,`store_id`)
) ENGINE=MyISAM
DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_product_to_store`
--
DROP TABLE IF EXISTS
`oc_product_to_store`;
CREATE TABLE `oc_product_to_store` (
`product_id`
int(11) NOT NULL,
`store_id` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY
(`product_id`,`store_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_product_to_store`
--
INSERT INTO `oc_product_to_store` (`product_id`,
`store_id`) VALUES
(28, 0),
(29, 0),
(30, 0),
(31, 0),
(32, 0),
(33,
0),
(34, 0),
(35, 0),
(36, 0),
(40, 0),
(41, 0),
(42, 0),
(43, 0),
(44,
0),
(45, 0),
(46, 0),
(47, 0),
(48, 0),
(49, 0);
--
--------------------------------------------------------
--
-- Table
structure for table `oc_recurring`
--
DROP TABLE IF EXISTS
`oc_recurring`;
CREATE TABLE `oc_recurring` (
`recurring_id` int(11) NOT
NULL AUTO_INCREMENT,
`price` decimal(10,4) NOT NULL,
`frequency`
enum('day','week','semi_month','month','year') NOT NULL,
`duration`
int(10) unsigned NOT NULL,
`cycle` int(10) unsigned NOT NULL,
`trial_status` tinyint(4) NOT NULL,
`trial_price` decimal(10,4) NOT
NULL,
`trial_frequency` enum('day','week','semi_month','month','year')
NOT NULL,
`trial_duration` int(10) unsigned NOT NULL,
`trial_cycle`
int(10) unsigned NOT NULL,
`status` tinyint(4) NOT NULL,
`sort_order`
int(11) NOT NULL,
PRIMARY KEY (`recurring_id`)
) ENGINE=MyISAM DEFAULT
CHARSET=utf8 COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_recurring_description`
--
DROP TABLE IF EXISTS
`oc_recurring_description`;
CREATE TABLE `oc_recurring_description` (
`recurring_id` int(11) NOT NULL,
`language_id` int(11) NOT NULL,
`name`
varchar(255) NOT NULL,
PRIMARY KEY (`recurring_id`,`language_id`)
)
ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_return`
--
DROP TABLE IF EXISTS
`oc_return`;
CREATE TABLE `oc_return` (
`return_id` int(11) NOT NULL
AUTO_INCREMENT,
`order_id` int(11) NOT NULL,
`product_id` int(11) NOT
NULL,
`customer_id` int(11) NOT NULL,
`firstname` varchar(32) NOT
NULL,
`lastname` varchar(32) NOT NULL,
`email` varchar(96) NOT NULL,
`telephone` varchar(32) NOT NULL,
`product` varchar(255) NOT NULL,
`model` varchar(64) NOT NULL,
`quantity` int(4) NOT NULL,
`opened`
tinyint(1) NOT NULL,
`return_reason_id` int(11) NOT NULL,
`return_action_id` int(11) NOT NULL,
`return_status_id` int(11) NOT
NULL,
`comment` text,
`date_ordered` date NOT NULL DEFAULT
'0000-00-00',
`date_added` datetime NOT NULL,
`date_modified` datetime
NOT NULL,
PRIMARY KEY (`return_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_return_action`
--
DROP TABLE IF EXISTS
`oc_return_action`;
CREATE TABLE `oc_return_action` (
`return_action_id`
int(11) NOT NULL AUTO_INCREMENT,
`language_id` int(11) NOT NULL DEFAULT
'0',
`name` varchar(64) NOT NULL,
PRIMARY KEY
(`return_action_id`,`language_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_return_action`
--
INSERT INTO `oc_return_action` (`return_action_id`,
`language_id`, `name`) VALUES
(1, 1, 'Возвращены
средства'),
(2, 1, 'Выдан в кредит'),
(3, 1,
'Отправлена замена (отправлен другой
товар для замены)'),
(1, 2, 'Refunded'),
(2, 2, 'Credit
Issued'),
(3, 2, 'Replacement Sent');
--
--------------------------------------------------------
--
-- Table
structure for table `oc_return_history`
--
DROP TABLE IF EXISTS
`oc_return_history`;
CREATE TABLE `oc_return_history` (
`return_history_id` int(11) NOT NULL AUTO_INCREMENT,
`return_id` int(11)
NOT NULL,
`return_status_id` int(11) NOT NULL,
`notify` tinyint(1) NOT
NULL,
`comment` text NOT NULL,
`date_added` datetime NOT NULL,
PRIMARY KEY (`return_history_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_return_reason`
--
DROP TABLE IF EXISTS
`oc_return_reason`;
CREATE TABLE `oc_return_reason` (
`return_reason_id`
int(11) NOT NULL AUTO_INCREMENT,
`language_id` int(11) NOT NULL DEFAULT
'0',
`name` varchar(128) NOT NULL,
PRIMARY KEY
(`return_reason_id`,`language_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_return_reason`
--
INSERT INTO `oc_return_reason` (`return_reason_id`,
`language_id`, `name`) VALUES
(1, 1, 'Получен/доставлен
неисправным (сломанным)'),
(2, 1, 'Получен не
тот (ошибочный) товар'),
(4, 1, 'Ошибочный,
пожалуйста, укажите/приложите
подробности'),
(5, 1, 'Другое (другая
причина), пожалуйста, укажите/приложите
подробности'),
(1, 2, 'Dead On Arrival'),
(2, 2, 'Received Wrong
Item'),
(4, 2, 'Faulty, please supply details'),
(5, 2, 'Other, please
supply details');
--
--------------------------------------------------------
--
-- Table
structure for table `oc_return_status`
--
DROP TABLE IF EXISTS
`oc_return_status`;
CREATE TABLE `oc_return_status` (
`return_status_id`
int(11) NOT NULL AUTO_INCREMENT,
`language_id` int(11) NOT NULL DEFAULT
'0',
`name` varchar(32) NOT NULL,
PRIMARY KEY
(`return_status_id`,`language_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_return_status`
--
INSERT INTO `oc_return_status` (`return_status_id`,
`language_id`, `name`) VALUES
(1, 1, 'Рассматриваемый /
находящийся в процессе рассмотрения'),
(3,
1, 'Готов (к отправке) / или Завершен'),
(2, 1,
'Заказ "висит" в ожидании
поступления товаров, которых в данный
момент нет на складе.'),
(1, 2, 'Pending'),
(3, 2,
'Complete'),
(2, 2, 'Awaiting Products');
--
--------------------------------------------------------
--
-- Table
structure for table `oc_review`
--
DROP TABLE IF EXISTS
`oc_review`;
CREATE TABLE `oc_review` (
`review_id` int(11) NOT NULL
AUTO_INCREMENT,
`product_id` int(11) NOT NULL,
`customer_id` int(11)
NOT NULL,
`author` varchar(64) NOT NULL,
`text` text NOT NULL,
`rating` int(1) NOT NULL,
`status` tinyint(1) NOT NULL DEFAULT '0',
`date_added` datetime NOT NULL,
`date_modified` datetime NOT NULL,
PRIMARY KEY (`review_id`),
KEY `product_id` (`product_id`)
)
ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_setting`
--
DROP TABLE IF EXISTS
`oc_setting`;
CREATE TABLE `oc_setting` (
`setting_id` int(11) NOT NULL
AUTO_INCREMENT,
`store_id` int(11) NOT NULL DEFAULT '0',
`code`
varchar(32) NOT NULL,
`key` varchar(64) NOT NULL,
`value` text NOT
NULL,
`serialized` tinyint(1) NOT NULL,
PRIMARY KEY (`setting_id`)
)
ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
--
-- Dumping
data for table `oc_setting`
--
INSERT INTO `oc_setting` (`setting_id`,
`store_id`, `code`, `key`, `value`, `serialized`) VALUES
(1, 0, 'shipping',
'shipping_sort_order', '3', 0),
(2, 0, 'sub_total', 'sub_total_sort_order',
'1', 0),
(3, 0, 'sub_total', 'sub_total_status', '1', 0),
(4, 0, 'tax',
'tax_status', '1', 0),
(5, 0, 'total', 'total_sort_order', '9', 0),
(6, 0,
'total', 'total_status', '1', 0),
(7, 0, 'tax', 'tax_sort_order', '5',
0),
(8, 0, 'free_checkout', 'free_checkout_sort_order', '1', 0),
(9, 0,
'cod', 'cod_sort_order', '5', 0),
(10, 0, 'cod', 'cod_total', '0.01',
0),
(11, 0, 'cod', 'cod_order_status_id', '1', 0),
(12, 0, 'cod',
'cod_geo_zone_id', '0', 0),
(13, 0, 'cod', 'cod_status', '1', 0),
(14, 0,
'shipping', 'shipping_status', '1', 0),
(15, 0, 'shipping',
'shipping_estimator', '1', 0),
(27, 0, 'coupon', 'coupon_sort_order', '4',
0),
(28, 0, 'coupon', 'coupon_status', '1', 0),
(34, 0, 'flat',
'flat_sort_order', '1', 0),
(35, 0, 'flat', 'flat_status', '1', 0),
(36, 0,
'flat', 'flat_geo_zone_id', '0', 0),
(37, 0, 'flat', 'flat_tax_class_id',
'9', 0),
(41, 0, 'flat', 'flat_cost', '5.00', 0),
(42, 0, 'credit',
'credit_sort_order', '7', 0),
(43, 0, 'credit', 'credit_status', '1',
0),
(53, 0, 'reward', 'reward_sort_order', '2', 0),
(54, 0, 'reward',
'reward_status', '1', 0),
(146, 0, 'category', 'category_status', '1',
0),
(158, 0, 'account', 'account_status', '1', 0),
(159, 0, 'affiliate',
'affiliate_status', '1', 0),
(267, 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),
(266, 0, 'config', 'config_shared', '0', 0),
(265, 0, 'config',
'config_secure', '0', 0),
(94, 0, 'voucher', 'voucher_sort_order', '8',
0),
(95, 0, 'voucher', 'voucher_status', '1', 0),
(261, 0, 'config',
'config_fraud_detection', '0', 0),
(260, 0, 'config', 'config_mail_alert',
'', 0),
(103, 0, 'free_checkout', 'free_checkout_status', '1', 0),
(104, 0,
'free_checkout', 'free_checkout_order_status_id', '1', 0),
(258, 0,
'config', 'config_ftp_status', '0', 0),
(257, 0, 'config',
'config_ftp_root', '', 0),
(256, 0, 'config', 'config_ftp_password', '',
0),
(255, 0, 'config', 'config_ftp_username', '', 0),
(254, 0, 'config',
'config_ftp_port', '21', 0),
(253, 0, 'config', 'config_ftp_hostname', '',
0),
(252, 0, 'config', 'config_image_location_height', '50', 0),
(251, 0,
'config', 'config_image_location_width', '268', 0),
(250, 0, 'config',
'config_image_cart_height', '47', 0),
(249, 0, 'config',
'config_image_cart_width', '47', 0),
(248, 0, 'config',
'config_image_wishlist_height', '47', 0),
(181, 0, 'config',
'config_meta_title', 'Мой Магазин', 0),
(182, 0, 'config',
'config_meta_description', 'Мой Магазин', 0),
(183, 0, 'config',
'config_meta_keyword', '', 0),
(184, 0, 'config', 'config_template',
'default', 0),
(185, 0, 'config', 'config_layout_id', '4', 0),
(186, 0,
'config', 'config_country_id', '176', 0),
(187, 0, 'config',
'config_zone_id', '2761', 0),
(188, 0, 'config', 'config_language', 'ru',
0),
(189, 0, 'config', 'config_admin_language', 'ru', 0),
(190, 0,
'config', 'config_currency', 'RUB', 0),
(191, 0, 'config',
'config_currency_auto', '1', 0),
(192, 0, 'config',
'config_length_class_id', '1', 0),
(193, 0, 'config',
'config_weight_class_id', '1', 0),
(194, 0, 'config',
'config_product_count', '1', 0),
(195, 0, 'config', 'config_product_limit',
'15', 0),
(196, 0, 'config', 'config_product_description_length', '100',
0),
(197, 0, 'config', 'config_limit_admin', '20', 0),
(198, 0, 'config',
'config_review_status', '1', 0),
(199, 0, 'config', 'config_review_guest',
'1', 0),
(200, 0, 'config', 'config_review_mail', '0', 0),
(201, 0,
'config', 'config_voucher_min', '1', 0),
(202, 0, 'config',
'config_voucher_max', '1000', 0),
(203, 0, 'config', 'config_tax', '1',
0),
(204, 0, 'config', 'config_tax_default', 'shipping', 0),
(205, 0,
'config', 'config_tax_customer', 'shipping', 0),
(206, 0, 'config',
'config_customer_online', '0', 0),
(207, 0, 'config',
'config_customer_group_id', '1', 0),
(208, 0, 'config',
'config_customer_group_display', '["1"]', 1),
(209, 0, 'config',
'config_customer_price', '0', 0),
(210, 0, 'config', 'config_account_id',
'3', 0),
(211, 0, 'config', 'config_account_mail', '0', 0),
(212, 0,
'config', 'config_invoice_prefix', 'INV-2016-00', 0),
(213, 0, 'config',
'config_api_id', '1', 0),
(214, 0, 'config', 'config_cart_weight', '1',
0),
(215, 0, 'config', 'config_checkout_guest', '1', 0),
(216, 0, 'config',
'config_checkout_id', '5', 0),
(217, 0, 'config', 'config_order_status_id',
'1', 0),
(218, 0, 'config', 'config_processing_status',
'["5","1","2","12","3"]',
1),
(219, 0, 'config', 'config_complete_status',
'["5","3"]', 1),
(220, 0, 'config',
'config_order_mail', '0', 0),
(221, 0, 'config', 'config_stock_display',
'0', 0),
(222, 0, 'config', 'config_stock_warning', '0', 0),
(223, 0,
'config', 'config_stock_checkout', '0', 0),
(224, 0, 'config',
'config_affiliate_approval', '0', 0),
(225, 0, 'config',
'config_affiliate_auto', '0', 0),
(226, 0, 'config',
'config_affiliate_commission', '5', 0),
(227, 0, 'config',
'config_affiliate_id', '4', 0),
(228, 0, 'config', 'config_affiliate_mail',
'0', 0),
(229, 0, 'config', 'config_return_id', '0', 0),
(230, 0, 'config',
'config_return_status_id', '2', 0),
(231, 0, 'config', 'config_logo',
'catalog/logo.png', 0),
(232, 0, 'config', 'config_icon',
'catalog/cart.png', 0),
(233, 0, 'config', 'config_image_category_width',
'80', 0),
(234, 0, 'config', 'config_image_category_height', '80',
0),
(235, 0, 'config', 'config_image_thumb_width', '228', 0),
(236, 0,
'config', 'config_image_thumb_height', '228', 0),
(237, 0, 'config',
'config_image_popup_width', '500', 0),
(238, 0, 'config',
'config_image_popup_height', '500', 0),
(239, 0, 'config',
'config_image_product_width', '228', 0),
(240, 0, 'config',
'config_image_product_height', '228', 0),
(241, 0, 'config',
'config_image_additional_width', '74', 0),
(242, 0, 'config',
'config_image_additional_height', '74', 0),
(243, 0, 'config',
'config_image_related_width', '80', 0),
(244, 0, 'config',
'config_image_related_height', '80', 0),
(245, 0, 'config',
'config_image_compare_width', '90', 0),
(246, 0, 'config',
'config_image_compare_height', '90', 0),
(247, 0, 'config',
'config_image_wishlist_width', '47', 0),
(180, 0, 'config',
'config_comment', '', 0),
(179, 0, 'config', 'config_open', '', 0),
(178,
0, 'config', 'config_image', '', 0),
(177, 0, 'config', 'config_fax', '',
0),
(176, 0, 'config', 'config_telephone', '123456789', 0),
(175, 0,
'config', 'config_email', 'admin@store.ru', 0),
(174, 0, 'config',
'config_geocode', '54.718681,20.499113', 0),
(172, 0, 'config',
'config_owner', 'Мое Имя', 0),
(173, 0, 'config', 'config_address',
'Адрес', 0),
(171, 0, 'config', 'config_name', 'Мой
Магазин', 0),
(268, 0, 'config', 'config_seo_url', '0', 0),
(269, 0,
'config', 'config_file_max_size', '300000', 0),
(270, 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),
(271, 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),
(272, 0, 'config', 'config_maintenance', '0', 0),
(273, 0, 'config',
'config_password', '1', 0),
(274, 0, 'config', 'config_encryption',
'87431d38e7edce36d5153707d4cd2bf9', 0),
(275, 0, 'config',
'config_compression', '0', 0),
(276, 0, 'config', 'config_error_display',
'1', 0),
(277, 0, 'config', 'config_error_log', '1', 0),
(278, 0, 'config',
'config_error_filename', 'error.log', 0),
(279, 0, 'config',
'config_google_analytics', '', 0),
(280, 0, 'config',
'config_mail_protocol', 'mail', 0),
(281, 0, 'config',
'config_mail_parameter', '', 0),
(282, 0, 'config',
'config_mail_smtp_hostname', '', 0),
(283, 0, 'config',
'config_mail_smtp_username', '', 0),
(284, 0, 'config',
'config_mail_smtp_password', '', 0),
(285, 0, 'config',
'config_mail_smtp_port', '25', 0),
(286, 0, 'config',
'config_mail_smtp_timeout', '5', 0),
(287, 0, 'config', 'config_captcha',
'basic_captcha', 0),
(288, 0, 'config', 'config_captcha_page',
'["review","return","contact"]', 1),
(289, 0,
'config', 'config_login_attempts', '5', 0),
(290, 0, 'config',
'config_mail_regexp', '/^[^\@]+@.*.[a-z]{2,15}$/i', 0),
(291, 0, 'config',
'config_langdata', '{"1":{"meta_title":"Мой
Магазин","meta_description":"Мой
Магазин","meta_keyword":"","name":"Мой
Магазин","owner":"Мое
Имя","address":"Адрес","open":"с
10ч до 18ч\\r\\nобед с 14ч до 15ч\\r\\nвоскресенье
-
выходной","comment":""},"2":{"meta_title":"Your
Store","meta_description":"My
Store","meta_keyword":"","name":"Your
Store","owner":"Your
Name","address":"Address
1","open":"","comment":""}}',
1);
-- --------------------------------------------------------
--
--
Table structure for table `oc_stock_status`
--
DROP TABLE IF EXISTS
`oc_stock_status`;
CREATE TABLE `oc_stock_status` (
`stock_status_id`
int(11) NOT NULL AUTO_INCREMENT,
`language_id` int(11) NOT NULL,
`name`
varchar(32) NOT NULL,
PRIMARY KEY (`stock_status_id`,`language_id`)
)
ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
--
-- Dumping
data for table `oc_stock_status`
--
INSERT INTO `oc_stock_status`
(`stock_status_id`, `language_id`, `name`) VALUES
(7, 1, 'В
наличии'),
(8, 1, 'Предзаказ'),
(5, 1, 'Нет в
наличии'),
(6, 1, 'Ожидание 2-3 дня'),
(7, 2, 'In
Stock'),
(8, 2, 'Pre-Order'),
(5, 2, 'Out Of Stock'),
(6, 2, '2 - 3
Days');
-- --------------------------------------------------------
--
--
Table structure for table `oc_store`
--
DROP TABLE IF EXISTS
`oc_store`;
CREATE TABLE `oc_store` (
`store_id` int(11) NOT NULL
AUTO_INCREMENT,
`name` varchar(64) NOT NULL,
`url` varchar(255) NOT
NULL,
`ssl` varchar(255) NOT NULL,
PRIMARY KEY (`store_id`)
)
ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_tax_class`
--
DROP TABLE IF EXISTS
`oc_tax_class`;
CREATE TABLE `oc_tax_class` (
`tax_class_id` int(11) NOT
NULL AUTO_INCREMENT,
`title` varchar(32) NOT NULL,
`description`
varchar(255) NOT NULL,
`date_added` datetime NOT NULL,
`date_modified`
datetime NOT NULL,
PRIMARY KEY (`tax_class_id`)
) ENGINE=MyISAM DEFAULT
CHARSET=utf8 COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_tax_class`
--
INSERT INTO `oc_tax_class` (`tax_class_id`, `title`,
`description`, `date_added`, `date_modified`) VALUES
(9, 'Налоги',
'Облагаемые налогом', '2009-01-06 23:21:53', '2011-03-09
21:17:10'),
(10, 'Цифровые товары', 'Цифровые',
'2011-09-21 22:19:39', '2011-09-22 10:27:36');
--
--------------------------------------------------------
--
-- Table
structure for table `oc_tax_rate`
--
DROP TABLE IF EXISTS
`oc_tax_rate`;
CREATE TABLE `oc_tax_rate` (
`tax_rate_id` int(11) NOT
NULL AUTO_INCREMENT,
`geo_zone_id` int(11) NOT NULL DEFAULT '0',
`name`
varchar(32) NOT NULL,
`rate` decimal(15,4) NOT NULL DEFAULT '0.0000',
`type` char(1) NOT NULL,
`date_added` datetime NOT NULL,
`date_modified` datetime NOT NULL,
PRIMARY KEY (`tax_rate_id`)
)
ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
--
-- Dumping
data for table `oc_tax_rate`
--
INSERT INTO `oc_tax_rate` (`tax_rate_id`,
`geo_zone_id`, `name`, `rate`, `type`, `date_added`, `date_modified`)
VALUES
(86, 3, 'НДС (20%)', '20.0000', 'P', '2011-03-09 21:17:10',
'2011-09-22 22:24:29'),
(87, 3, 'Экологический налог
(-2.00)', '2.0000', 'F', '2011-09-21 21:49:23', '2011-09-23 00:40:19');
--
--------------------------------------------------------
--
-- Table
structure for table `oc_tax_rate_to_customer_group`
--
DROP TABLE IF
EXISTS `oc_tax_rate_to_customer_group`;
CREATE TABLE
`oc_tax_rate_to_customer_group` (
`tax_rate_id` int(11) NOT NULL,
`customer_group_id` int(11) NOT NULL,
PRIMARY KEY
(`tax_rate_id`,`customer_group_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_tax_rate_to_customer_group`
--
INSERT INTO
`oc_tax_rate_to_customer_group` (`tax_rate_id`, `customer_group_id`)
VALUES
(86, 1),
(87, 1);
--
--------------------------------------------------------
--
-- Table
structure for table `oc_tax_rule`
--
DROP TABLE IF EXISTS
`oc_tax_rule`;
CREATE TABLE `oc_tax_rule` (
`tax_rule_id` int(11) NOT
NULL AUTO_INCREMENT,
`tax_class_id` int(11) NOT NULL,
`tax_rate_id`
int(11) NOT NULL,
`based` varchar(10) NOT NULL,
`priority` int(5) NOT
NULL DEFAULT '1',
PRIMARY KEY (`tax_rule_id`)
) ENGINE=MyISAM DEFAULT
CHARSET=utf8 COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_tax_rule`
--
INSERT INTO `oc_tax_rule` (`tax_rule_id`, `tax_class_id`,
`tax_rate_id`, `based`, `priority`) VALUES
(121, 10, 86, 'payment',
1),
(120, 10, 87, 'store', 0),
(128, 9, 86, 'shipping', 1),
(127, 9, 87,
'shipping', 2);
--
--------------------------------------------------------
--
-- Table
structure for table `oc_upload`
--
DROP TABLE IF EXISTS
`oc_upload`;
CREATE TABLE `oc_upload` (
`upload_id` int(11) NOT NULL
AUTO_INCREMENT,
`name` varchar(255) NOT NULL,
`filename` varchar(255)
NOT NULL,
`code` varchar(255) NOT NULL,
`date_added` datetime NOT
NULL,
PRIMARY KEY (`upload_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_url_alias`
--
DROP TABLE IF EXISTS
`oc_url_alias`;
CREATE TABLE `oc_url_alias` (
`url_alias_id` int(11) NOT
NULL AUTO_INCREMENT,
`query` varchar(255) NOT NULL,
`keyword`
varchar(255) NOT NULL,
PRIMARY KEY (`url_alias_id`),
KEY `query`
(`query`),
KEY `keyword` (`keyword`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_url_alias`
--
INSERT INTO `oc_url_alias` (`url_alias_id`, `query`,
`keyword`) VALUES
(601, 'account/voucher', 'vouchers'),
(602,
'account/wishlist', 'wishlist'),
(603, 'account/account',
'my-account'),
(604, 'checkout/cart', 'cart'),
(605, 'checkout/checkout',
'checkout'),
(606, 'account/login', 'login'),
(607, 'account/logout',
'logout'),
(608, 'account/order', 'order-history'),
(609,
'account/newsletter', 'newsletter'),
(610, 'product/special',
'specials'),
(611, 'affiliate/account', 'affiliates'),
(612,
'checkout/voucher', 'gift-vouchers'),
(613, 'product/manufacturer',
'brands'),
(614, 'information/contact', 'contact-us'),
(615,
'account/return/insert', 'request-return'),
(616, 'information/sitemap',
'sitemap'),
(617, 'account/forgotten', 'forgot-password'),
(618,
'account/download', 'downloads'),
(619, 'account/return', 'returns'),
(620,
'account/transaction', 'transactions'),
(621, 'account/register',
'create-account'),
(622, 'product/compare', 'compare-products'),
(623,
'product/search', 'search'),
(624, 'account/edit', 'edit-account'),
(625,
'account/password', 'change-password'),
(626, 'account/address',
'address-book'),
(627, 'account/reward', 'reward-points'),
(628,
'affiliate/edit', 'edit-affiliate-account'),
(629, 'affiliate/password',
'change-affiliate-password'),
(630, 'affiliate/payment',
'affiliate-payment-options'),
(631, 'affiliate/tracking',
'affiliate-tracking-code'),
(632, 'affiliate/transaction',
'affiliate-transactions'),
(633, 'affiliate/logout',
'affiliate-logout'),
(634, 'affiliate/forgotten',
'affiliate-forgot-password'),
(635, 'affiliate/register',
'create-affiliate-account'),
(636, 'affiliate/login',
'affiliate-login'),
(637, 'account/return/add', 'add-return'),
(638,
'common/home', ''),
(824, 'product_id=48', 'ipod-classic'),
(836,
'category_id=20', 'desktops'),
(834, 'category_id=26', 'pc'),
(835,
'category_id=27', 'mac'),
(730, 'manufacturer_id=8', 'apple'),
(772,
'information_id=4', 'about_us'),
(768, 'product_id=42', 'test'),
(789,
'category_id=34', 'mp3-players'),
(781, 'category_id=36', 'test2'),
(774,
'category_id=18', 'laptop-notebook'),
(775, 'category_id=46',
'macs'),
(776, 'category_id=45', 'windows'),
(777, 'category_id=25',
'component'),
(778, 'category_id=29', 'mouse'),
(779, 'category_id=28',
'monitor'),
(780, 'category_id=35', 'test1'),
(782, 'category_id=30',
'printer'),
(783, 'category_id=31', 'scanner'),
(784, 'category_id=32',
'web-camera'),
(785, 'category_id=57', 'tablet'),
(786, 'category_id=17',
'software'),
(787, 'category_id=24', 'smartphone'),
(788, 'category_id=33',
'camera'),
(790, 'category_id=43', 'test11'),
(791, 'category_id=44',
'test12'),
(792, 'category_id=47', 'test15'),
(793, 'category_id=48',
'test16'),
(794, 'category_id=49', 'test17'),
(795, 'category_id=50',
'test18'),
(796, 'category_id=51', 'test19'),
(797, 'category_id=52',
'test20'),
(798, 'category_id=58', 'test25'),
(799, 'category_id=53',
'test21'),
(800, 'category_id=54', 'test22'),
(801, 'category_id=55',
'test23'),
(802, 'category_id=56', 'test24'),
(803, 'category_id=38',
'test4'),
(804, 'category_id=37', 'test5'),
(805, 'category_id=39',
'test6'),
(806, 'category_id=40', 'test7'),
(807, 'category_id=41',
'test8'),
(808, 'category_id=42', 'test9'),
(809, 'product_id=30',
'canon-eos-5d'),
(840, 'product_id=47', 'hp-lp3065'),
(811,
'product_id=28', 'htc-touch-hd'),
(812, 'product_id=43', 'macbook'),
(813,
'product_id=44', 'macbook-air'),
(814, 'product_id=45',
'macbook-pro'),
(816, 'product_id=31', 'nikon-d300'),
(817,
'product_id=29', 'palm-treo-pro'),
(818, 'product_id=35',
'product-8'),
(819, 'product_id=49', 'samsung-galaxy-tab-10-1'),
(820,
'product_id=33', 'samsung-syncmaster-941bw'),
(821, 'product_id=46',
'sony-vaio'),
(837, 'product_id=41', 'imac'),
(823, 'product_id=40',
'iphone'),
(825, 'product_id=36', 'ipod-nano'),
(826, 'product_id=34',
'ipod-shuffle'),
(827, 'product_id=32', 'ipod-touch'),
(828,
'manufacturer_id=9', 'canon'),
(829, 'manufacturer_id=5', 'htc'),
(830,
'manufacturer_id=7', 'hewlett-packard'),
(831, 'manufacturer_id=6',
'palm'),
(832, 'manufacturer_id=10', 'sony'),
(841, 'information_id=6',
'delivery'),
(842, 'information_id=3', 'privacy'),
(843,
'information_id=5', 'terms');
--
--------------------------------------------------------
--
-- Table
structure for table `oc_user`
--
DROP TABLE IF EXISTS `oc_user`;
CREATE
TABLE `oc_user` (
`user_id` int(11) NOT NULL AUTO_INCREMENT,
`user_group_id` int(11) NOT NULL,
`username` varchar(20) NOT NULL,
`password` varchar(40) NOT NULL,
`salt` varchar(9) NOT NULL,
`firstname` varchar(32) NOT NULL,
`lastname` varchar(32) NOT NULL,
`email` varchar(96) NOT NULL,
`image` varchar(255) NOT NULL,
`code`
varchar(40) NOT NULL,
`ip` varchar(40) NOT NULL,
`status` tinyint(1)
NOT NULL,
`date_added` datetime NOT NULL,
PRIMARY KEY (`user_id`)
)
ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_user_group`
--
DROP TABLE IF EXISTS
`oc_user_group`;
CREATE TABLE `oc_user_group` (
`user_group_id` int(11)
NOT NULL AUTO_INCREMENT,
`name` varchar(64) NOT NULL,
`permission` text
NOT NULL,
PRIMARY KEY (`user_group_id`)
) ENGINE=MyISAM DEFAULT
CHARSET=utf8 COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_user_group`
--
INSERT INTO `oc_user_group` (`user_group_id`, `name`,
`permission`) VALUES
(1, 'Administrator',
'{"access":["analytics\/google_analytics","captcha\/basic_captcha","captcha\/google_captcha","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\/filemanager","common\/menu","common\/profile","common\/sass","common\/stats","customer\/custom_field","customer\/customer","customer\/customer_group","design\/banner","design\/layout","extension\/analytics","extension\/captcha","extension\/feed","extension\/fraud","extension\/installer","extension\/modification","extension\/module","extension\/openbay","extension\/payment","extension\/shipping","extension\/total","feed\/google_base","feed\/google_sitemap","feed\/openbaypro","fraud\/fraudlabspro","fraud\/ip","fraud\/maxmind","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","marketing\/affiliate","marketing\/contact","marketing\/coupon","marketing\/marketing","module\/account","module\/affiliate","module\/amazon_login","module\/amazon_pay","module\/banner","module\/bestseller","module\/carousel","module\/category","module\/ebay_listing","module\/featured","module\/filter","module\/google_hangouts","module\/html","module\/information","module\/latest","module\/pp_button","module\/pp_login","module\/slideshow","module\/special","module\/store","module\/unisender","octeam\/toolset","octeam_tools\/cache","octeam_tools\/seo_manager","openbay\/amazon","openbay\/amazon_listing","openbay\/amazon_product","openbay\/amazonus","openbay\/amazonus_listing","openbay\/amazonus_product","openbay\/ebay","openbay\/ebay_profile","openbay\/ebay_template","openbay\/etsy","openbay\/etsy_product","openbay\/etsy_shipping","openbay\/etsy_shop","payment\/amazon_login_pay","payment\/authorizenet_aim","payment\/authorizenet_sim","payment\/bank_transfer","payment\/bluepay_hosted","payment\/bluepay_redirect","payment\/cheque","payment\/cod","payment\/firstdata","payment\/firstdata_remote","payment\/free_checkout","payment\/g2apay","payment\/globalpay","payment\/globalpay_remote","payment\/klarna_account","payment\/klarna_invoice","payment\/liqpay","payment\/nochex","payment\/paymate","payment\/paypoint","payment\/payza","payment\/perpetual_payments","payment\/pp_express","payment\/pp_payflow","payment\/pp_payflow_iframe","payment\/pp_pro","payment\/pp_pro_iframe","payment\/pp_standard","payment\/qiwi_rest","payment\/realex","payment\/realex_remote","payment\/sagepay_direct","payment\/sagepay_server","payment\/sagepay_us","payment\/sberbank_transfer","payment\/securetrading_pp","payment\/securetrading_ws","payment\/skrill","payment\/twocheckout","payment\/web_payment_software","payment\/worldpay","report\/affiliate","report\/affiliate_activity","report\/affiliate_login","report\/customer_activity","report\/customer_credit","report\/customer_login","report\/customer_online","report\/customer_order","report\/customer_reward","report\/marketing","report\/product_purchased","report\/product_viewed","report\/sale_coupon","report\/sale_order","report\/sale_return","report\/sale_shipping","report\/sale_tax","sale\/order","sale\/recurring","sale\/return","sale\/voucher","sale\/voucher_theme","setting\/setting","setting\/store","shipping\/auspost","shipping\/citylink","shipping\/fedex","shipping\/flat","shipping\/free","shipping\/item","shipping\/parcelforce_48","shipping\/pickup","shipping\/royal_mail","shipping\/ups","shipping\/usps","shipping\/weight","tool\/backup","tool\/error_log","tool\/upload","total\/coupon","total\/credit","total\/handling","total\/klarna_fee","total\/low_order_fee","total\/reward","total\/shipping","total\/sub_total","total\/tax","total\/total","total\/voucher","user\/api","user\/user","user\/user_permission"],"modify":["analytics\/google_analytics","captcha\/basic_captcha","captcha\/google_captcha","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\/filemanager","common\/menu","common\/profile","common\/sass","common\/stats","customer\/custom_field","customer\/customer","customer\/customer_group","design\/banner","design\/layout","extension\/analytics","extension\/captcha","extension\/feed","extension\/fraud","extension\/installer","extension\/modification","extension\/module","extension\/openbay","extension\/payment","extension\/shipping","extension\/total","feed\/google_base","feed\/google_sitemap","feed\/openbaypro","fraud\/fraudlabspro","fraud\/ip","fraud\/maxmind","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","marketing\/affiliate","marketing\/contact","marketing\/coupon","marketing\/marketing","module\/account","module\/affiliate","module\/amazon_login","module\/amazon_pay","module\/banner","module\/bestseller","module\/carousel","module\/category","module\/ebay_listing","module\/featured","module\/filter","module\/google_hangouts","module\/html","module\/information","module\/latest","module\/pp_button","module\/pp_login","module\/slideshow","module\/special","module\/store","module\/unisender","octeam\/toolset","octeam_tools\/cache","octeam_tools\/seo_manager","openbay\/amazon","openbay\/amazon_listing","openbay\/amazon_product","openbay\/amazonus","openbay\/amazonus_listing","openbay\/amazonus_product","openbay\/ebay","openbay\/ebay_profile","openbay\/ebay_template","openbay\/etsy","openbay\/etsy_product","openbay\/etsy_shipping","openbay\/etsy_shop","payment\/amazon_login_pay","payment\/authorizenet_aim","payment\/authorizenet_sim","payment\/bank_transfer","payment\/bluepay_hosted","payment\/bluepay_redirect","payment\/cheque","payment\/cod","payment\/firstdata","payment\/firstdata_remote","payment\/free_checkout","payment\/g2apay","payment\/globalpay","payment\/globalpay_remote","payment\/klarna_account","payment\/klarna_invoice","payment\/liqpay","payment\/nochex","payment\/paymate","payment\/paypoint","payment\/payza","payment\/perpetual_payments","payment\/pp_express","payment\/pp_payflow","payment\/pp_payflow_iframe","payment\/pp_pro","payment\/pp_pro_iframe","payment\/pp_standard","payment\/qiwi_rest","payment\/realex","payment\/realex_remote","payment\/sagepay_direct","payment\/sagepay_server","payment\/sagepay_us","payment\/sberbank_transfer","payment\/securetrading_pp","payment\/securetrading_ws","payment\/skrill","payment\/twocheckout","payment\/web_payment_software","payment\/worldpay","report\/affiliate","report\/affiliate_activity","report\/affiliate_login","report\/customer_activity","report\/customer_credit","report\/customer_login","report\/customer_online","report\/customer_order","report\/customer_reward","report\/marketing","report\/product_purchased","report\/product_viewed","report\/sale_coupon","report\/sale_order","report\/sale_return","report\/sale_shipping","report\/sale_tax","sale\/order","sale\/recurring","sale\/return","sale\/voucher","sale\/voucher_theme","setting\/setting","setting\/store","shipping\/auspost","shipping\/citylink","shipping\/fedex","shipping\/flat","shipping\/free","shipping\/item","shipping\/parcelforce_48","shipping\/pickup","shipping\/royal_mail","shipping\/ups","shipping\/usps","shipping\/weight","tool\/backup","tool\/error_log","tool\/upload","total\/coupon","total\/credit","total\/handling","total\/klarna_fee","total\/low_order_fee","total\/reward","total\/shipping","total\/sub_total","total\/tax","total\/total","total\/voucher","user\/api","user\/user","user\/user_permission"],"hiden":["module\/amazon_login","module\/amazon_pay","module\/ebay_listing","module\/pp_button","module\/pp_login","payment\/amazon_login_pay","payment\/authorizenet_aim","payment\/authorizenet_sim","payment\/bluepay_hosted","payment\/bluepay_redirect","payment\/cheque","payment\/firstdata","payment\/firstdata_remote","payment\/g2apay","payment\/globalpay","payment\/globalpay_remote","payment\/klarna_account","payment\/klarna_invoice","payment\/liqpay","payment\/nochex","payment\/paymate","payment\/paypoint","payment\/payza","payment\/perpetual_payments","payment\/pp_express","payment\/pp_payflow","payment\/pp_payflow_iframe","payment\/pp_pro","payment\/pp_pro_iframe","payment\/realex","payment\/realex_remote","payment\/sagepay_direct","payment\/sagepay_server","payment\/sagepay_us","payment\/securetrading_pp","payment\/securetrading_ws","payment\/skrill","payment\/twocheckout","payment\/web_payment_software","payment\/worldpay","shipping\/auspost","shipping\/by_total","shipping\/citylink","shipping\/fedex","shipping\/royal_mail","shipping\/ups","shipping\/usps"]}'),
(10,
'Demonstration', '');
--
--------------------------------------------------------
--
-- Table
structure for table `oc_voucher`
--
DROP TABLE IF EXISTS
`oc_voucher`;
CREATE TABLE `oc_voucher` (
`voucher_id` int(11) NOT NULL
AUTO_INCREMENT,
`order_id` int(11) NOT NULL,
`code` varchar(10) NOT
NULL,
`from_name` varchar(64) NOT NULL,
`from_email` varchar(96) NOT
NULL,
`to_name` varchar(64) NOT NULL,
`to_email` varchar(96) NOT NULL,
`voucher_theme_id` int(11) NOT NULL,
`message` text NOT NULL,
`amount`
decimal(15,4) NOT NULL,
`status` tinyint(1) NOT NULL,
`date_added`
datetime NOT NULL,
PRIMARY KEY (`voucher_id`)
) ENGINE=MyISAM DEFAULT
CHARSET=utf8 COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_voucher_history`
--
DROP TABLE IF EXISTS
`oc_voucher_history`;
CREATE TABLE `oc_voucher_history` (
`voucher_history_id` int(11) NOT NULL AUTO_INCREMENT,
`voucher_id`
int(11) NOT NULL,
`order_id` int(11) NOT NULL,
`amount` decimal(15,4)
NOT NULL,
`date_added` datetime NOT NULL,
PRIMARY KEY
(`voucher_history_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_voucher_theme`
--
DROP TABLE IF EXISTS
`oc_voucher_theme`;
CREATE TABLE `oc_voucher_theme` (
`voucher_theme_id`
int(11) NOT NULL AUTO_INCREMENT,
`image` varchar(255) NOT NULL,
PRIMARY
KEY (`voucher_theme_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_voucher_theme`
--
INSERT INTO `oc_voucher_theme` (`voucher_theme_id`,
`image`) VALUES
(8, 'catalog/demo/canon_eos_5d_2.jpg'),
(7,
'catalog/demo/gift-voucher-birthday.jpg'),
(6,
'catalog/demo/apple_logo.jpg');
--
--------------------------------------------------------
--
-- Table
structure for table `oc_voucher_theme_description`
--
DROP TABLE IF EXISTS
`oc_voucher_theme_description`;
CREATE TABLE `oc_voucher_theme_description`
(
`voucher_theme_id` int(11) NOT NULL,
`language_id` int(11) NOT NULL,
`name` varchar(32) NOT NULL,
PRIMARY KEY
(`voucher_theme_id`,`language_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_voucher_theme_description`
--
INSERT INTO
`oc_voucher_theme_description` (`voucher_theme_id`, `language_id`, `name`)
VALUES
(6, 1, 'Рождество'),
(7, 1, 'День
рождения'),
(8, 1, 'Основной'),
(6, 2, 'Christmas'),
(7, 2,
'Birthday'),
(8, 2, 'General');
--
--------------------------------------------------------
--
-- Table
structure for table `oc_weight_class`
--
DROP TABLE IF EXISTS
`oc_weight_class`;
CREATE TABLE `oc_weight_class` (
`weight_class_id`
int(11) NOT NULL AUTO_INCREMENT,
`value` decimal(15,2) NOT NULL DEFAULT
'0.00',
PRIMARY KEY (`weight_class_id`)
) ENGINE=MyISAM DEFAULT
CHARSET=utf8 COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_weight_class`
--
INSERT INTO `oc_weight_class` (`weight_class_id`,
`value`) VALUES
(1, '1.00'),
(2, '1000.00'),
(5, '2.20'),
(6, '35.27');
--
--------------------------------------------------------
--
-- Table
structure for table `oc_weight_class_description`
--
DROP TABLE IF EXISTS
`oc_weight_class_description`;
CREATE TABLE `oc_weight_class_description`
(
`weight_class_id` int(11) NOT NULL AUTO_INCREMENT,
`language_id`
int(11) NOT NULL,
`title` varchar(32) NOT NULL,
`unit` varchar(4) NOT
NULL,
PRIMARY KEY (`weight_class_id`,`language_id`)
) ENGINE=MyISAM
DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_weight_class_description`
--
INSERT INTO `oc_weight_class_description`
(`weight_class_id`, `language_id`, `title`, `unit`) VALUES
(1, 1,
'Килограммы', 'кг'),
(2, 1, 'Граммы', 'г'),
(1, 2,
'Kilogram', 'kg'),
(2, 2, 'Gram', 'g');
--
--------------------------------------------------------
--
-- Table
structure for table `oc_zone`
--
DROP TABLE IF EXISTS `oc_zone`;
CREATE
TABLE `oc_zone` (
`zone_id` int(11) NOT NULL AUTO_INCREMENT,
`country_id` int(11) NOT NULL,
`name` varchar(128) NOT NULL,
`code`
varchar(32) NOT NULL,
`status` tinyint(1) NOT NULL DEFAULT '1',
PRIMARY
KEY (`zone_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
-- Dumping data for table `oc_zone`
--
INSERT
INTO `oc_zone` (`zone_id`, `country_id`, `code`, `name`, `status`)
VALUES
(1, 1, 'BDS', 'Бадахшан', 1),
(2, 1, 'BDG', 'Бадгис',
1),
(3, 1, 'BGL', 'Баглан', 1),
(4, 1, 'BAL', 'Балх', 1),
(5, 1,
'BAM', 'Бамиан', 1),
(6, 1, 'FRA', 'Фарах', 1),
(7, 1, 'FYB',
'Фарьяб', 1),
(8, 1, 'GHA', 'Газни', 1),
(9, 1, 'GHO', 'Гор',
1),
(10, 1, 'HEL', 'Гильменд', 1),
(11, 1, 'HER', 'Герат',
1),
(12, 1, 'JOW', 'Джаузджан', 1),
(13, 1, 'KAB', 'Кабул',
1),
(14, 1, 'KAN', 'Кандагар', 1),
(15, 1, 'KAP', 'Каписа',
1),
(16, 1, 'KHO', 'Хост', 1),
(17, 1, 'KNR', 'Кунар', 1),
(18, 1,
'KDZ', 'Кундуз', 1),
(19, 1, 'LAG', 'Лагман', 1),
(20, 1,
'LOW', 'Логар', 1),
(21, 1, 'NAN', 'Нангархар', 1),
(22, 1,
'NIM', 'Нимроз', 1),
(23, 1, 'NUR', 'Нуристан', 1),
(24, 1,
'ORU', 'Урузган', 1),
(25, 1, 'PIA', 'Пактия', 1),
(26, 1,
'PKA', 'Пактика', 1),
(27, 1, 'PAR', 'Парван', 1),
(28, 1,
'SAM', 'Саманган', 1),
(29, 1, 'SAR', 'Сари-Пуль', 1),
(30,
1, 'TAK', 'Тахар', 1),
(31, 1, 'WAR', 'Вардак', 1),
(32, 1,
'ZAB', 'Забуль', 1),
(33, 2, 'BR', 'Берат', 1),
(34, 2, 'BU',
'Булькиза', 1),
(35, 2, 'DL', 'Дельвина', 1),
(36, 2, 'DV',
'Девол', 1),
(37, 2, 'DI', 'Дибра', 1),
(38, 2, 'DR',
'Дуррес', 1),
(39, 2, 'EL', 'Эльбасан', 1),
(40, 2, 'ER',
'Колёня', 1),
(41, 2, 'FR', 'Фиери', 1),
(42, 2, 'GJ',
'Гирокастра', 1),
(43, 2, 'GR', 'Грамши', 1),
(44, 2, 'HA',
'Хас', 1),
(45, 2, 'KA', 'Кавая', 1),
(46, 2, 'KB', 'Курбин',
1),
(47, 2, 'KC', 'Кучова', 1),
(48, 2, 'KO', 'Корча', 1),
(49,
2, 'KR', 'Круя', 1),
(50, 2, 'KU', 'Кукес', 1),
(51, 2, 'LB',
'Либражди', 1),
(52, 2, 'LE', 'Лежа', 1),
(53, 2, 'LU',
'Люшня', 1),
(54, 2, 'MM', 'Мальси-э-Мади', 1),
(55, 2,
'MK', 'Малакастра', 1),
(56, 2, 'MT', 'Мати', 1),
(57, 2,
'MR', 'Мирдита', 1),
(58, 2, 'PQ', 'Пекини', 1),
(59, 2, 'PR',
'Пермети', 1),
(60, 2, 'PG', 'Поградец', 1),
(61, 2, 'PU',
'Пука', 1),
(62, 2, 'SH', 'Шкодер', 1),
(63, 2, 'SK',
'Скрапари', 1),
(64, 2, 'SR', 'Саранда', 1),
(65, 2, 'TE',
'Тепелена', 1),
(66, 2, 'TP', 'Тропоя', 1),
(67, 2, 'TR',
'Тирана', 1),
(68, 2, 'VL', 'Влёра', 1),
(69, 3, 'ADR',
'Адрар', 1),
(70, 3, 'ADE', 'Айн-Дефла', 1),
(71, 3, 'ATE',
'Айн-Темухент', 1),
(72, 3, 'ALG', 'Алжир', 1),
(73, 3,
'ANN', 'Аннаба', 1),
(74, 3, 'BAT', 'Батна', 1),
(75, 3, 'BEC',
'Бешар', 1),
(76, 3, 'BEJ', 'Беджая', 1),
(77, 3, 'BIS',
'Бискра', 1),
(78, 3, 'BLI', 'Блида', 1),
(79, 3, 'BBA',
'Бордж-Бу-Арреридж', 1),
(80, 3, 'BOA', 'Буйра',
1),
(81, 3, 'BMD', 'Бумердес', 1),
(82, 3, 'CHL', 'Шлеф',
1),
(83, 3, 'CON', 'Константина', 1),
(84, 3, 'DJE',
'Джельфа', 1),
(85, 3, 'EBA', 'Эль-Баяд', 1),
(86, 3, 'EOU',
'Эль-Уэд', 1),
(87, 3, 'ETA', 'Эль-Тарф', 1),
(88, 3, 'GHA',
'Гардая', 1),
(89, 3, 'GUE', 'Гуэльма', 1),
(90, 3, 'ILL',
'Иллизи', 1),
(91, 3, 'JIJ', 'Джиджель', 1),
(92, 3, 'KHE',
'Хеншела', 1),
(93, 3, 'LAG', 'Лагуат', 1),
(94, 3, 'MUA',
'Маскара', 1),
(95, 3, 'MED', 'Медеа', 1),
(96, 3, 'MIL',
'Мила', 1),
(97, 3, 'MOS', 'Мостаганем', 1),
(98, 3, 'MSI',
'Мсила', 1),
(99, 3, 'NAA', 'Наама', 1),
(100, 3, 'ORA',
'Оран', 1),
(101, 3, 'OUA', 'Уаргла', 1),
(102, 3, 'OEB', 'Ум
Эль-Буахи', 1),
(103, 3, 'REL', 'Релизан', 1),
(104, 3,
'SAI', 'Саида', 1),
(105, 3, 'SET', 'Сетиф', 1),
(106, 3, 'SBA',
'Сиди-Бель-Аббес', 1),
(107, 3, 'SKI', 'Скикда',
1),
(108, 3, 'SAH', 'Сук-Ахрас', 1),
(109, 3, 'TAM',
'Таменрассет', 1),
(110, 3, 'TEB', 'Тебесса', 1),
(111,
3, 'TIA', 'Тиарет', 1),
(112, 3, 'TIN', 'Тиндуф', 1),
(113, 3,
'TIP', 'Типаза', 1),
(114, 3, 'TIS', 'Тиссемсилт',
1),
(115, 3, 'TOU', 'Тизи-Узу', 1),
(116, 3, 'TLE',
'Тлемсен', 1),
(117, 4, 'E', 'Восточный округ',
1),
(118, 4, 'M', 'Мануа', 1),
(119, 4, 'R', 'Остров Роз',
1),
(120, 4, 'S', 'Остров Суэйнс', 1),
(121, 4, 'W',
'Западный округ', 1),
(122, 5, 'ALV',
'Андорра-ла-Велья', 1),
(123, 5, 'CAN', 'Канильо',
1),
(124, 5, 'ENC', 'Энкамп', 1),
(125, 5, 'ESE',
'Эскальдес-Энгордань', 1),
(126, 5, 'LMA',
'Ла-Массана', 1),
(127, 5, 'ORD', 'Ордино', 1),
(128, 5,
'SJL', 'Сант-Жулия-де-Лория', 1),
(129, 6, 'BGO',
'Бенго', 1),
(130, 6, 'BGU', 'Бенгела', 1),
(131, 6, 'BIE',
'Бие', 1),
(132, 6, 'CAB', 'Кабинда', 1),
(133, 6, 'CCU',
'Квандо-Кубанго', 1),
(134, 6, 'CNO', 'Северная
Кванза', 1),
(135, 6, 'CUS', 'Южная Кванза', 1),
(136, 6,
'CNN', 'Кунене', 1),
(137, 6, 'HUA', 'Уамбо', 1),
(138, 6,
'HUI', 'Уила', 1),
(139, 6, 'LUA', 'Луанда', 1),
(140, 6, 'LNO',
'Северная Лунда', 1),
(141, 6, 'LSU', 'Южная Лунда',
1),
(142, 6, 'MAL', 'Маланже', 1),
(143, 6, 'MOX', 'Мошико',
1),
(144, 6, 'NAM', 'Намибе', 1),
(145, 6, 'UIG', 'Уиже',
1),
(146, 6, 'ZAI', 'Заире', 1),
(147, 9, 'ASG',
'Сент-Джордж', 1),
(148, 9, 'ASJ', 'Сент-Джон', 1),
(149,
9, 'ASM', 'Сент-Мери', 1),
(150, 9, 'ASL', 'Сент-Пол',
1),
(151, 9, 'ASR', 'Сент-Петер', 1),
(152, 9, 'ASH',
'Сент-Филип', 1),
(153, 9, 'BAR', 'Барбуда', 1),
(154, 9,
'RED', 'Редонда', 1),
(155, 10, 'AN', 'Антарктида и
острова Южной Атлантики', 1),
(156, 10, 'BA',
'Буэнос-Айрес', 1),
(157, 10, 'CA', 'Катамарка',
1),
(158, 10, 'CH', 'Чако', 1),
(159, 10, 'CU', 'Чубут', 1),
(160,
10, 'CO', 'Кордова', 1),
(161, 10, 'CR', 'Корриентес',
1),
(162, 10, 'DF', 'Федеральный округ', 1),
(163, 10,
'ER', 'Энтре-Риос', 1),
(164, 10, 'FO', 'Формоса',
1),
(165, 10, 'JU', 'Жужуй', 1),
(166, 10, 'LP', 'Ла-Пампа',
1),
(167, 10, 'LR', 'Ла-Риоха', 1),
(168, 10, 'ME',
'Мендоса', 1),
(169, 10, 'MI', 'Мисьонес', 1),
(170, 10,
'NE', 'Неукен', 1),
(171, 10, 'RN', 'Рио-Негро', 1),
(172,
10, 'SA', 'Сальта', 1),
(173, 10, 'SJ', 'Сан-Хуан', 1),
(174,
10, 'SL', 'Сан-Луис', 1),
(175, 10, 'SC', 'Санта-Крус',
1),
(176, 10, 'SF', 'Санта-Фе', 1),
(177, 10, 'SD',
'Сантьяго-дель-Эстеро', 1),
(178, 10, 'TF',
'Тьерра-дель-Фуэго', 1),
(179, 10, 'TU', 'Тукуман',
1),
(180, 11, 'AGT', 'Арагацотн', 1),
(181, 11, 'ARR',
'Арарат', 1),
(182, 11, 'ARM', 'Армавир', 1),
(183, 11, 'GEG',
'Гегаркуник', 1),
(184, 11, 'KOT', 'Котайк', 1),
(185, 11,
'LOR', 'Лори', 1),
(186, 11, 'SHI', 'Ширак', 1),
(187, 11, 'SYU',
'Сюник', 1),
(188, 11, 'TAV', 'Тавуш', 1),
(189, 11, 'VAY',
'Вайоц Дзор', 1),
(190, 11, 'YER', 'Ереван', 1),
(191, 13,
'ACT', 'Австралийская столичная
территория', 1),
(192, 13, 'NSW', 'Новый Южный
Уэльс', 1),
(193, 13, 'NT', 'Северная территория',
1),
(194, 13, 'QLD', 'Квинсленд', 1),
(195, 13, 'SA', 'Южная
Австралия', 1),
(196, 13, 'TAS', 'Тасмания', 1),
(197, 13,
'VIC', 'Виктория', 1),
(198, 13, 'WA', 'Западная
Австралия', 1),
(199, 14, 'BUR', 'Бургенланд', 1),
(200,
14, 'KAR', 'Каринтия', 1),
(201, 14, 'NOS', 'Нижняя
Австрия', 1),
(202, 14, 'OOS', 'Верхняя Австрия',
1),
(203, 14, 'SAL', 'Зальцбург', 1),
(204, 14, 'STE',
'Штирия', 1),
(205, 14, 'TIR', 'Тироль', 1),
(206, 14, 'VOR',
'Форарльберг', 1),
(207, 14, 'WIE', 'Вена', 1),
(208, 15,
'AB', 'Ali Bayramli', 1),
(209, 15, 'ABS', 'Abseron', 1),
(210, 15, 'AGC',
'AgcabAdi', 1),
(211, 15, 'AGM', 'Agdam', 1),
(212, 15, 'AGS', 'Agdas',
1),
(213, 15, 'AGA', 'Agstafa', 1),
(214, 15, 'AGU', 'Agsu', 1),
(215, 15,
'AST', 'Astara', 1),
(216, 15, 'BA', 'Baki', 1),
(217, 15, 'BAB', 'BabAk',
1),
(218, 15, 'BAL', 'BalakAn', 1),
(219, 15, 'BAR', 'BArdA', 1),
(220, 15,
'BEY', 'Beylaqan', 1),
(221, 15, 'BIL', 'Bilasuvar', 1),
(222, 15, 'CAB',
'Cabrayil', 1),
(223, 15, 'CAL', 'Calilabab', 1),
(224, 15, 'CUL', 'Culfa',
1),
(225, 15, 'DAS', 'Daskasan', 1),
(226, 15, 'DAV', 'Davaci', 1),
(227,
15, 'FUZ', 'Fuzuli', 1),
(228, 15, 'GA', 'Ganca', 1),
(229, 15, 'GAD',
'Gadabay', 1),
(230, 15, 'GOR', 'Goranboy', 1),
(231, 15, 'GOY', 'Goycay',
1),
(232, 15, 'HAC', 'Haciqabul', 1),
(233, 15, 'IMI', 'Imisli', 1),
(234,
15, 'ISM', 'Ismayilli', 1),
(235, 15, 'KAL', 'Kalbacar', 1),
(236, 15,
'KUR', 'Kurdamir', 1),
(237, 15, 'LA', 'Lankaran', 1),
(238, 15, 'LAC',
'Lacin', 1),
(239, 15, 'LAN', 'Lankaran', 1),
(240, 15, 'LER', 'Lerik',
1),
(241, 15, 'MAS', 'Masalli', 1),
(242, 15, 'MI', 'Mingacevir', 1),
(243,
15, 'NA', 'Naftalan', 1),
(244, 15, 'NEF', 'Neftcala', 1),
(245, 15, 'OGU',
'Oguz', 1),
(246, 15, 'ORD', 'Ordubad', 1),
(247, 15, 'QAB', 'Qabala',
1),
(248, 15, 'QAX', 'Qax', 1),
(249, 15, 'QAZ', 'Qazax', 1),
(250, 15,
'QOB', 'Qobustan', 1),
(251, 15, 'QBA', 'Quba', 1),
(252, 15, 'QBI',
'Qubadli', 1),
(253, 15, 'QUS', 'Qusar', 1),
(254, 15, 'SA', 'Saki',
1),
(255, 15, 'SAT', 'Saatli', 1),
(256, 15, 'SAB', 'Sabirabad', 1),
(257,
15, 'SAD', 'Sadarak', 1),
(258, 15, 'SAH', 'Sahbuz', 1),
(259, 15, 'SAK',
'Saki', 1),
(260, 15, 'SAL', 'Salyan', 1),
(261, 15, 'SM', 'Sumqayit',
1),
(262, 15, 'SMI', 'Samaxi', 1),
(263, 15, 'SKR', 'Samkir', 1),
(264, 15,
'SMX', 'Samux', 1),
(265, 15, 'SAR', 'Sarur', 1),
(266, 15, 'SIY',
'Siyazan', 1),
(267, 15, 'SS', 'Susa', 1),
(268, 15, 'SUS', 'Susa',
1),
(269, 15, 'TAR', 'Tartar', 1),
(270, 15, 'TOV', 'Tovuz', 1),
(271, 15,
'UCA', 'Ucar', 1),
(272, 15, 'XA', 'Xankandi', 1),
(273, 15, 'XAC',
'Xacmaz', 1),
(274, 15, 'XAN', 'Xanlar', 1),
(275, 15, 'XIZ', 'Xizi',
1),
(276, 15, 'XCI', 'Xocali', 1),
(277, 15, 'XVD', 'Xocavand', 1),
(278,
15, 'YAR', 'Yardimli', 1),
(279, 15, 'YEV', 'Yevlax', 1),
(280, 15, 'ZAN',
'Zangilan', 1),
(281, 15, 'ZAQ', 'Zaqatala', 1),
(282, 15, 'ZAR', 'Zardab',
1),
(283, 15, 'NX', 'Naxcivan', 1),
(284, 16, 'ACK', 'Acklins', 1),
(285,
16, 'BER', 'Berry Islands', 1),
(286, 16, 'BIM', 'Bimini', 1),
(287, 16,
'BLK', 'Black Point', 1),
(288, 16, 'CAT', 'Cat Island', 1),
(289, 16,
'CAB', 'Central Abaco', 1),
(290, 16, 'CAN', 'Central Andros', 1),
(291,
16, 'CEL', 'Central Eleuthera', 1),
(292, 16, 'FRE', 'City of Freeport',
1),
(293, 16, 'CRO', 'Crooked Island', 1),
(294, 16, 'EGB', 'East Grand
Bahama', 1),
(295, 16, 'EXU', 'Exuma', 1),
(296, 16, 'GRD', 'Grand Cay',
1),
(297, 16, 'HAR', 'Harbour Island', 1),
(298, 16, 'HOP', 'Hope Town',
1),
(299, 16, 'INA', 'Inagua', 1),
(300, 16, 'LNG', 'Long Island',
1),
(301, 16, 'MAN', 'Mangrove Cay', 1),
(302, 16, 'MAY', 'Mayaguana',
1),
(303, 16, 'MOO', 'Moore''s Island', 1),
(304, 16, 'NAB', 'North Abaco',
1),
(305, 16, 'NAN', 'North Andros', 1),
(306, 16, 'NEL', 'North
Eleuthera', 1),
(307, 16, 'RAG', 'Ragged Island', 1),
(308, 16, 'RUM', 'Rum
Cay', 1),
(309, 16, 'SAL', 'San Salvador', 1),
(310, 16, 'SAB', 'South
Abaco', 1),
(311, 16, 'SAN', 'South Andros', 1),
(312, 16, 'SEL', 'South
Eleuthera', 1),
(313, 16, 'SWE', 'Spanish Wells', 1),
(314, 16, 'WGB',
'West Grand Bahama', 1),
(315, 17, 'CAP', 'Capital', 1),
(316, 17, 'CEN',
'Central', 1),
(317, 17, 'MUH', 'Muharraq', 1),
(318, 17, 'NOR',
'Northern', 1),
(319, 17, 'SOU', 'Southern', 1),
(320, 18, 'BAR',
'Barisal', 1),
(321, 18, 'CHI', 'Chittagong', 1),
(322, 18, 'DHA', 'Dhaka',
1),
(323, 18, 'KHU', 'Khulna', 1),
(324, 18, 'RAJ', 'Rajshahi', 1),
(325,
18, 'SYL', 'Sylhet', 1),
(326, 19, 'CC', 'Christ Church', 1),
(327, 19,
'AND', 'Saint Andrew', 1),
(328, 19, 'GEO', 'Saint George', 1),
(329, 19,
'JAM', 'Saint James', 1),
(330, 19, 'JOH', 'Saint John', 1),
(331, 19,
'JOS', 'Saint Joseph', 1),
(332, 19, 'LUC', 'Saint Lucy', 1),
(333, 19,
'MIC', 'Saint Michael', 1),
(334, 19, 'PET', 'Saint Peter', 1),
(335, 19,
'PHI', 'Saint Philip', 1),
(336, 19, 'THO', 'Saint Thomas', 1),
(337, 20,
'BR', 'Брест', 1),
(338, 20, 'HO', 'Гомель', 1),
(339, 20, 'HM',
'Минск', 1),
(340, 20, 'HR', 'Гродно', 1),
(341, 20, 'MA',
'Могилев', 1),
(342, 20, 'MI', 'Минская область',
1),
(343, 20, 'VI', 'Витебск', 1),
(344, 21, 'VAN', 'Antwerpen',
1),
(345, 21, 'WBR', 'Brabant Wallon', 1),
(346, 21, 'WHT', 'Hainaut',
1),
(347, 21, 'WLG', 'Liege', 1),
(348, 21, 'VLI', 'Limburg', 1),
(349, 21,
'WLX', 'Luxembourg', 1),
(350, 21, 'WNA', 'Namur', 1),
(351, 21, 'VOV',
'Oost-Vlaanderen', 1),
(352, 21, 'VBR', 'Vlaams Brabant', 1),
(353, 21,
'VWV', 'West-Vlaanderen', 1),
(354, 22, 'BZ', 'Belize', 1),
(355, 22, 'CY',
'Cayo', 1),
(356, 22, 'CR', 'Corozal', 1),
(357, 22, 'OW', 'Orange Walk',
1),
(358, 22, 'SC', 'Stann Creek', 1),
(359, 22, 'TO', 'Toledo', 1),
(360,
23, 'AL', 'Alibori', 1),
(361, 23, 'AK', 'Atakora', 1),
(362, 23, 'AQ',
'Atlantique', 1),
(363, 23, 'BO', 'Borgou', 1),
(364, 23, 'CO', 'Collines',
1),
(365, 23, 'DO', 'Donga', 1),
(366, 23, 'KO', 'Kouffo', 1),
(367, 23,
'LI', 'Littoral', 1),
(368, 23, 'MO', 'Mono', 1),
(369, 23, 'OU', 'Oueme',
1),
(370, 23, 'PL', 'Plateau', 1),
(371, 23, 'ZO', 'Zou', 1),
(372, 24,
'DS', 'Devonshire', 1),
(373, 24, 'HC', 'Hamilton City', 1),
(374, 24,
'HA', 'Hamilton', 1),
(375, 24, 'PG', 'Paget', 1),
(376, 24, 'PB',
'Pembroke', 1),
(377, 24, 'GC', 'Saint George City', 1),
(378, 24, 'SG',
'Saint George''s', 1),
(379, 24, 'SA', 'Sandys', 1),
(380, 24, 'SM',
'Smith''s', 1),
(381, 24, 'SH', 'Southampton', 1),
(382, 24, 'WA',
'Warwick', 1),
(383, 25, 'BUM', 'Bumthang', 1),
(384, 25, 'CHU', 'Chukha',
1),
(385, 25, 'DAG', 'Dagana', 1),
(386, 25, 'GAS', 'Gasa', 1),
(387, 25,
'HAA', 'Haa', 1),
(388, 25, 'LHU', 'Lhuntse', 1),
(389, 25, 'MON',
'Mongar', 1),
(390, 25, 'PAR', 'Paro', 1),
(391, 25, 'PEM', 'Pemagatshel',
1),
(392, 25, 'PUN', 'Punakha', 1),
(393, 25, 'SJO', 'Samdrup Jongkhar',
1),
(394, 25, 'SAT', 'Samtse', 1),
(395, 25, 'SAR', 'Sarpang', 1),
(396,
25, 'THI', 'Thimphu', 1),
(397, 25, 'TRG', 'Trashigang', 1),
(398, 25,
'TRY', 'Trashiyangste', 1),
(399, 25, 'TRO', 'Trongsa', 1),
(400, 25,
'TSI', 'Tsirang', 1),
(401, 25, 'WPH', 'Wangdue Phodrang', 1),
(402, 25,
'ZHE', 'Zhemgang', 1),
(403, 26, 'BEN', 'Beni', 1),
(404, 26, 'CHU',
'Chuquisaca', 1),
(405, 26, 'COC', 'Cochabamba', 1),
(406, 26, 'LPZ', 'La
Paz', 1),
(407, 26, 'ORU', 'Oruro', 1),
(408, 26, 'PAN', 'Pando', 1),
(409,
26, 'POT', 'Potosi', 1),
(410, 26, 'SCZ', 'Santa Cruz', 1),
(411, 26,
'TAR', 'Tarija', 1),
(412, 27, 'BRO', 'Brcko district', 1),
(413, 27,
'FUS', 'Unsko-Sanski Kanton', 1),
(414, 27, 'FPO', 'Posavski Kanton',
1),
(415, 27, 'FTU', 'Tuzlanski Kanton', 1),
(416, 27, 'FZE',
'Zenicko-Dobojski Kanton', 1),
(417, 27, 'FBP', 'Bosanskopodrinjski
Kanton', 1),
(418, 27, 'FSB', 'Srednjebosanski Kanton', 1),
(419, 27,
'FHN', 'Hercegovacko-neretvanski Kanton', 1),
(420, 27, 'FZH',
'Zapadnohercegovacka Zupanija', 1),
(421, 27, 'FSA', 'Kanton Sarajevo',
1),
(422, 27, 'FZA', 'Zapadnobosanska', 1),
(423, 27, 'SBL', 'Banja Luka',
1),
(424, 27, 'SDO', 'Doboj', 1),
(425, 27, 'SBI', 'Bijeljina', 1),
(426,
27, 'SVL', 'Vlasenica', 1),
(427, 27, 'SSR', 'Sarajevo-Romanija or
Sokolac', 1),
(428, 27, 'SFO', 'Foca', 1),
(429, 27, 'STR', 'Trebinje',
1),
(430, 28, 'CE', 'Central', 1),
(431, 28, 'GH', 'Ghanzi', 1),
(432, 28,
'KD', 'Kgalagadi', 1),
(433, 28, 'KT', 'Kgatleng', 1),
(434, 28, 'KW',
'Kweneng', 1),
(435, 28, 'NG', 'Ngamiland', 1),
(436, 28, 'NE', 'North
East', 1),
(437, 28, 'NW', 'North West', 1),
(438, 28, 'SE', 'South East',
1),
(439, 28, 'SO', 'Southern', 1),
(440, 30, 'AC', 'Acre', 1),
(441, 30,
'AL', 'Alagoas', 1),
(442, 30, 'AP', 'Amapa', 1),
(443, 30, 'AM',
'Amazonas', 1),
(444, 30, 'BA', 'Bahia', 1),
(445, 30, 'CE', 'Ceara',
1),
(446, 30, 'DF', 'Distrito Federal', 1),
(447, 30, 'ES', 'Espirito
Santo', 1),
(448, 30, 'GO', 'Goias', 1),
(449, 30, 'MA', 'Maranhao',
1),
(450, 30, 'MT', 'Mato Grosso', 1),
(451, 30, 'MS', 'Mato Grosso do
Sul', 1),
(452, 30, 'MG', 'Minas Gerais', 1),
(453, 30, 'PA', 'Para',
1),
(454, 30, 'PB', 'Paraiba', 1),
(455, 30, 'PR', 'Parana', 1),
(456, 30,
'PE', 'Pernambuco', 1),
(457, 30, 'PI', 'Piaui', 1),
(458, 30, 'RJ', 'Rio
de Janeiro', 1),
(459, 30, 'RN', 'Rio Grande do Norte', 1),
(460, 30, 'RS',
'Rio Grande do Sul', 1),
(461, 30, 'RO', 'Rondonia', 1),
(462, 30, 'RR',
'Roraima', 1),
(463, 30, 'SC', 'Santa Catarina', 1),
(464, 30, 'SP', 'Sao
Paulo', 1),
(465, 30, 'SE', 'Sergipe', 1),
(466, 30, 'TO', 'Tocantins',
1),
(467, 31, 'PB', 'Peros Banhos', 1),
(468, 31, 'SI', 'Salomon Islands',
1),
(469, 31, 'NI', 'Nelsons Island', 1),
(470, 31, 'TB', 'Three Brothers',
1),
(471, 31, 'EA', 'Eagle Islands', 1),
(472, 31, 'DI', 'Danger Island',
1),
(473, 31, 'EG', 'Egmont Islands', 1),
(474, 31, 'DG', 'Diego Garcia',
1),
(475, 32, 'BEL', 'Belait', 1),
(476, 32, 'BRM', 'Brunei and Muara',
1),
(477, 32, 'TEM', 'Temburong', 1),
(478, 32, 'TUT', 'Tutong', 1),
(479,
33, '', 'Blagoevgrad', 1),
(480, 33, '', 'Burgas', 1),
(481, 33, '',
'Dobrich', 1),
(482, 33, '', 'Gabrovo', 1),
(483, 33, '', 'Haskovo',
1),
(484, 33, '', 'Kardjali', 1),
(485, 33, '', 'Kyustendil', 1),
(486, 33,
'', 'Lovech', 1),
(487, 33, '', 'Montana', 1),
(488, 33, '', 'Pazardjik',
1),
(489, 33, '', 'Pernik', 1),
(490, 33, '', 'Pleven', 1),
(491, 33, '',
'Plovdiv', 1),
(492, 33, '', 'Razgrad', 1),
(493, 33, '', 'Shumen',
1),
(494, 33, '', 'Silistra', 1),
(495, 33, '', 'Sliven', 1),
(496, 33, '',
'Smolyan', 1),
(497, 33, '', 'Sofia', 1),
(498, 33, '', 'Sofia - town',
1),
(499, 33, '', 'Stara Zagora', 1),
(500, 33, '', 'Targovishte',
1),
(501, 33, '', 'Varna', 1),
(502, 33, '', 'Veliko Tarnovo', 1),
(503,
33, '', 'Vidin', 1),
(504, 33, '', 'Vratza', 1),
(505, 33, '', 'Yambol',
1),
(506, 34, 'BAL', 'Bale', 1),
(507, 34, 'BAM', 'Bam', 1),
(508, 34,
'BAN', 'Banwa', 1),
(509, 34, 'BAZ', 'Bazega', 1),
(510, 34, 'BOR',
'Bougouriba', 1),
(511, 34, 'BLG', 'Boulgou', 1),
(512, 34, 'BOK',
'Boulkiemde', 1),
(513, 34, 'COM', 'Comoe', 1),
(514, 34, 'GAN',
'Ganzourgou', 1),
(515, 34, 'GNA', 'Gnagna', 1),
(516, 34, 'GOU', 'Gourma',
1),
(517, 34, 'HOU', 'Houet', 1),
(518, 34, 'IOA', 'Ioba', 1),
(519, 34,
'KAD', 'Kadiogo', 1),
(520, 34, 'KEN', 'Kenedougou', 1),
(521, 34, 'KOD',
'Komondjari', 1),
(522, 34, 'KOP', 'Kompienga', 1),
(523, 34, 'KOS',
'Kossi', 1),
(524, 34, 'KOL', 'Koulpelogo', 1),
(525, 34, 'KOT',
'Kouritenga', 1),
(526, 34, 'KOW', 'Kourweogo', 1),
(527, 34, 'LER',
'Leraba', 1),
(528, 34, 'LOR', 'Loroum', 1),
(529, 34, 'MOU', 'Mouhoun',
1),
(530, 34, 'NAH', 'Nahouri', 1),
(531, 34, 'NAM', 'Namentenga',
1),
(532, 34, 'NAY', 'Nayala', 1),
(533, 34, 'NOU', 'Noumbiel', 1),
(534,
34, 'OUB', 'Oubritenga', 1),
(535, 34, 'OUD', 'Oudalan', 1),
(536, 34,
'PAS', 'Passore', 1),
(537, 34, 'PON', 'Poni', 1),
(538, 34, 'SAG',
'Sanguie', 1),
(539, 34, 'SAM', 'Sanmatenga', 1),
(540, 34, 'SEN', 'Seno',
1),
(541, 34, 'SIS', 'Sissili', 1),
(542, 34, 'SOM', 'Soum', 1),
(543, 34,
'SOR', 'Sourou', 1),
(544, 34, 'TAP', 'Tapoa', 1),
(545, 34, 'TUY', 'Tuy',
1),
(546, 34, 'YAG', 'Yagha', 1),
(547, 34, 'YAT', 'Yatenga', 1),
(548, 34,
'ZIR', 'Ziro', 1),
(549, 34, 'ZOD', 'Zondoma', 1),
(550, 34, 'ZOW',
'Zoundweogo', 1),
(551, 35, 'BB', 'Bubanza', 1),
(552, 35, 'BJ',
'Bujumbura', 1),
(553, 35, 'BR', 'Bururi', 1),
(554, 35, 'CA', 'Cankuzo',
1),
(555, 35, 'CI', 'Cibitoke', 1),
(556, 35, 'GI', 'Gitega', 1),
(557, 35,
'KR', 'Karuzi', 1),
(558, 35, 'KY', 'Kayanza', 1),
(559, 35, 'KI',
'Kirundo', 1),
(560, 35, 'MA', 'Makamba', 1),
(561, 35, 'MU', 'Muramvya',
1),
(562, 35, 'MY', 'Muyinga', 1),
(563, 35, 'MW', 'Mwaro', 1),
(564, 35,
'NG', 'Ngozi', 1),
(565, 35, 'RT', 'Rutana', 1),
(566, 35, 'RY', 'Ruyigi',
1),
(567, 36, 'PP', 'Phnom Penh', 1),
(568, 36, 'PS', 'Preah Seihanu
(Kompong Som or Sihanoukville)', 1),
(569, 36, 'PA', 'Pailin', 1),
(570,
36, 'KB', 'Keb', 1),
(571, 36, 'BM', 'Banteay Meanchey', 1),
(572, 36,
'BA', 'Battambang', 1),
(573, 36, 'KM', 'Kampong Cham', 1),
(574, 36, 'KN',
'Kampong Chhnang', 1),
(575, 36, 'KU', 'Kampong Speu', 1),
(576, 36, 'KO',
'Kampong Som', 1),
(577, 36, 'KT', 'Kampong Thom', 1),
(578, 36, 'KP',
'Kampot', 1),
(579, 36, 'KL', 'Kandal', 1),
(580, 36, 'KK', 'Kaoh Kong',
1),
(581, 36, 'KR', 'Kratie', 1),
(582, 36, 'MK', 'Mondul Kiri', 1),
(583,
36, 'OM', 'Oddar Meancheay', 1),
(584, 36, 'PU', 'Pursat', 1),
(585, 36,
'PR', 'Preah Vihear', 1),
(586, 36, 'PG', 'Prey Veng', 1),
(587, 36, 'RK',
'Ratanak Kiri', 1),
(588, 36, 'SI', 'Siemreap', 1),
(589, 36, 'ST', 'Stung
Treng', 1),
(590, 36, 'SR', 'Svay Rieng', 1),
(591, 36, 'TK', 'Takeo',
1),
(592, 37, 'ADA', 'Adamawa (Adamaoua)', 1),
(593, 37, 'CEN', 'Centre',
1),
(594, 37, 'EST', 'East (Est)', 1),
(595, 37, 'EXN', 'Extreme North
(Extreme-Nord)', 1),
(596, 37, 'LIT', 'Littoral', 1),
(597, 37, 'NOR',
'North (Nord)', 1),
(598, 37, 'NOT', 'Northwest (Nord-Ouest)', 1),
(599,
37, 'OUE', 'West (Ouest)', 1),
(600, 37, 'SUD', 'South (Sud)', 1),
(601,
37, 'SOU', 'Southwest (Sud-Ouest).', 1),
(602, 38, 'AB', 'Alberta',
1),
(603, 38, 'BC', 'British Columbia', 1),
(604, 38, 'MB', 'Manitoba',
1),
(605, 38, 'NB', 'New Brunswick', 1),
(606, 38, 'NL', 'Newfoundland and
Labrador', 1),
(607, 38, 'NT', 'Northwest Territories', 1),
(608, 38, 'NS',
'Nova Scotia', 1),
(609, 38, 'NU', 'Nunavut', 1),
(610, 38, 'ON',
'Ontario', 1),
(611, 38, 'PE', 'Prince Edward Island', 1),
(612, 38, 'QC',
'Québec', 1),
(613, 38, 'SK', 'Saskatchewan', 1),
(614, 38,
'YT', 'Yukon Territory', 1),
(615, 39, 'BV', 'Boa Vista', 1),
(616, 39,
'BR', 'Brava', 1),
(617, 39, 'CS', 'Calheta de Sao Miguel', 1),
(618, 39,
'MA', 'Maio', 1),
(619, 39, 'MO', 'Mosteiros', 1),
(620, 39, 'PA', 'Paul',
1),
(621, 39, 'PN', 'Porto Novo', 1),
(622, 39, 'PR', 'Praia', 1),
(623,
39, 'RG', 'Ribeira Grande', 1),
(624, 39, 'SL', 'Sal', 1),
(625, 39, 'CA',
'Santa Catarina', 1),
(626, 39, 'CR', 'Santa Cruz', 1),
(627, 39, 'SD',
'Sao Domingos', 1),
(628, 39, 'SF', 'Sao Filipe', 1),
(629, 39, 'SN', 'Sao
Nicolau', 1),
(630, 39, 'SV', 'Sao Vicente', 1),
(631, 39, 'TA',
'Tarrafal', 1),
(632, 40, 'CR', 'Creek', 1),
(633, 40, 'EA', 'Eastern',
1),
(634, 40, 'ML', 'Midland', 1),
(635, 40, 'ST', 'South Town', 1),
(636,
40, 'SP', 'Spot Bay', 1),
(637, 40, 'SK', 'Stake Bay', 1),
(638, 40, 'WD',
'West End', 1),
(639, 40, 'WN', 'Western', 1),
(640, 41, 'BBA',
'Bamingui-Bangoran', 1),
(641, 41, 'BKO', 'Basse-Kotto', 1),
(642, 41,
'HKO', 'Haute-Kotto', 1),
(643, 41, 'HMB', 'Haut-Mbomou', 1),
(644, 41,
'KEM', 'Kemo', 1),
(645, 41, 'LOB', 'Lobaye', 1),
(646, 41, 'MKD',
'Mambere-KadeÔ', 1),
(647, 41, 'MBO', 'Mbomou', 1),
(648, 41, 'NMM',
'Nana-Mambere', 1),
(649, 41, 'OMP', 'Ombella-M''Poko', 1),
(650, 41,
'OUK', 'Ouaka', 1),
(651, 41, 'OUH', 'Ouham', 1),
(652, 41, 'OPE',
'Ouham-Pende', 1),
(653, 41, 'VAK', 'Vakaga', 1),
(654, 41, 'NGR',
'Nana-Grebizi', 1),
(655, 41, 'SMB', 'Sangha-Mbaere', 1),
(656, 41, 'BAN',
'Bangui', 1),
(657, 42, 'BA', 'Batha', 1),
(658, 42, 'BI', 'Biltine',
1),
(659, 42, 'BE', 'Borkou-Ennedi-Tibesti', 1),
(660, 42, 'CB',
'Chari-Baguirmi', 1),
(661, 42, 'GU', 'Guera', 1),
(662, 42, 'KA', 'Kanem',
1),
(663, 42, 'LA', 'Lac', 1),
(664, 42, 'LC', 'Logone Occidental',
1),
(665, 42, 'LR', 'Logone Oriental', 1),
(666, 42, 'MK', 'Mayo-Kebbi',
1),
(667, 42, 'MC', 'Moyen-Chari', 1),
(668, 42, 'OU', 'Ouaddai', 1),
(669,
42, 'SA', 'Salamat', 1),
(670, 42, 'TA', 'Tandjile', 1),
(671, 43, 'AI',
'Aisen del General Carlos Ibanez', 1),
(672, 43, 'AN', 'Antofagasta',
1),
(673, 43, 'AR', 'Araucania', 1),
(674, 43, 'AT', 'Atacama', 1),
(675,
43, 'BI', 'Bio-Bio', 1),
(676, 43, 'CO', 'Coquimbo', 1),
(677, 43, 'LI',
'Libertador General Bernardo O''Hi', 1),
(678, 43, 'LL', 'Los Lagos',
1),
(679, 43, 'MA', 'Magallanes y de la Antartica Chi', 1),
(680, 43, 'ML',
'Maule', 1),
(681, 43, 'RM', 'Region Metropolitana', 1),
(682, 43, 'TA',
'Tarapaca', 1),
(683, 43, 'VS', 'Valparaiso', 1),
(684, 44, 'AN', 'Anhui',
1),
(685, 44, 'BE', 'Beijing', 1),
(686, 44, 'CH', 'Chongqing', 1),
(687,
44, 'FU', 'Fujian', 1),
(688, 44, 'GA', 'Gansu', 1),
(689, 44, 'GU',
'Guangdong', 1),
(690, 44, 'GX', 'Guangxi', 1),
(691, 44, 'GZ', 'Guizhou',
1),
(692, 44, 'HA', 'Hainan', 1),
(693, 44, 'HB', 'Hebei', 1),
(694, 44,
'HL', 'Heilongjiang', 1),
(695, 44, 'HE', 'Henan', 1),
(696, 44, 'HK',
'Hong Kong', 1),
(697, 44, 'HU', 'Hubei', 1),
(698, 44, 'HN', 'Hunan',
1),
(699, 44, 'IM', 'Inner Mongolia', 1),
(700, 44, 'JI', 'Jiangsu',
1),
(701, 44, 'JX', 'Jiangxi', 1),
(702, 44, 'JL', 'Jilin', 1),
(703, 44,
'LI', 'Liaoning', 1),
(704, 44, 'MA', 'Macau', 1),
(705, 44, 'NI',
'Ningxia', 1),
(706, 44, 'SH', 'Shaanxi', 1),
(707, 44, 'SA', 'Shandong',
1),
(708, 44, 'SG', 'Shanghai', 1),
(709, 44, 'SX', 'Shanxi', 1),
(710, 44,
'SI', 'Sichuan', 1),
(711, 44, 'TI', 'Tianjin', 1),
(712, 44, 'XI',
'Xinjiang', 1),
(713, 44, 'YU', 'Yunnan', 1),
(714, 44, 'ZH', 'Zhejiang',
1),
(715, 46, 'D', 'Direction Island', 1),
(716, 46, 'H', 'Home Island',
1),
(717, 46, 'O', 'Horsburgh Island', 1),
(718, 46, 'S', 'South Island',
1),
(719, 46, 'W', 'West Island', 1),
(720, 47, 'AMZ', 'Amazonas',
1),
(721, 47, 'ANT', 'Antioquia', 1),
(722, 47, 'ARA', 'Arauca', 1),
(723,
47, 'ATL', 'Atlantico', 1),
(724, 47, 'BDC', 'Bogota D.C.', 1),
(725, 47,
'BOL', 'Bolivar', 1),
(726, 47, 'BOY', 'Boyaca', 1),
(727, 47, 'CAL',
'Caldas', 1),
(728, 47, 'CAQ', 'Caqueta', 1),
(729, 47, 'CAS', 'Casanare',
1),
(730, 47, 'CAU', 'Cauca', 1),
(731, 47, 'CES', 'Cesar', 1),
(732, 47,
'CHO', 'Choco', 1),
(733, 47, 'COR', 'Cordoba', 1),
(734, 47, 'CAM',
'Cundinamarca', 1),
(735, 47, 'GNA', 'Guainia', 1),
(736, 47, 'GJR',
'Guajira', 1),
(737, 47, 'GVR', 'Guaviare', 1),
(738, 47, 'HUI', 'Huila',
1),
(739, 47, 'MAG', 'Magdalena', 1),
(740, 47, 'MET', 'Meta', 1),
(741,
47, 'NAR', 'Narino', 1),
(742, 47, 'NDS', 'Norte de Santander', 1),
(743,
47, 'PUT', 'Putumayo', 1),
(744, 47, 'QUI', 'Quindio', 1),
(745, 47, 'RIS',
'Risaralda', 1),
(746, 47, 'SAP', 'San Andres y Providencia', 1),
(747, 47,
'SAN', 'Santander', 1),
(748, 47, 'SUC', 'Sucre', 1),
(749, 47, 'TOL',
'Tolima', 1),
(750, 47, 'VDC', 'Valle del Cauca', 1),
(751, 47, 'VAU',
'Vaupes', 1),
(752, 47, 'VIC', 'Vichada', 1),
(753, 48, 'G', 'Grande
Comore', 1),
(754, 48, 'A', 'Anjouan', 1),
(755, 48, 'M', 'Moheli',
1),
(756, 49, 'BO', 'Bouenza', 1),
(757, 49, 'BR', 'Brazzaville', 1),
(758,
49, 'CU', 'Cuvette', 1),
(759, 49, 'CO', 'Cuvette-Ouest', 1),
(760, 49,
'KO', 'Kouilou', 1),
(761, 49, 'LE', 'Lekoumou', 1),
(762, 49, 'LI',
'Likouala', 1),
(763, 49, 'NI', 'Niari', 1),
(764, 49, 'PL', 'Plateaux',
1),
(765, 49, 'PO', 'Pool', 1),
(766, 49, 'SA', 'Sangha', 1),
(767, 50,
'PU', 'Pukapuka', 1),
(768, 50, 'RK', 'Rakahanga', 1),
(769, 50, 'MK',
'Manihiki', 1),
(770, 50, 'PE', 'Penrhyn', 1),
(771, 50, 'NI', 'Nassau
Island', 1),
(772, 50, 'SU', 'Surwarrow', 1),
(773, 50, 'PA', 'Palmerston',
1),
(774, 50, 'AI', 'Aitutaki', 1),
(775, 50, 'MA', 'Manuae', 1),
(776, 50,
'TA', 'Takutea', 1),
(777, 50, 'MT', 'Mitiaro', 1),
(778, 50, 'AT', 'Atiu',
1),
(779, 50, 'MU', 'Mauke', 1),
(780, 50, 'RR', 'Rarotonga', 1),
(781, 50,
'MG', 'Mangaia', 1),
(782, 51, 'AL', 'Alajuela', 1),
(783, 51, 'CA',
'Cartago', 1),
(784, 51, 'GU', 'Guanacaste', 1),
(785, 51, 'HE', 'Heredia',
1),
(786, 51, 'LI', 'Limon', 1),
(787, 51, 'PU', 'Puntarenas', 1),
(788,
51, 'SJ', 'San Jose', 1),
(789, 52, 'ABE', 'Abengourou', 1),
(790, 52,
'ABI', 'Abidjan', 1),
(791, 52, 'ABO', 'Aboisso', 1),
(792, 52, 'ADI',
'Adiake', 1),
(793, 52, 'ADZ', 'Adzope', 1),
(794, 52, 'AGB', 'Agboville',
1),
(795, 52, 'AGN', 'Agnibilekrou', 1),
(796, 52, 'ALE', 'Alepe',
1),
(797, 52, 'BOC', 'Bocanda', 1),
(798, 52, 'BAN', 'Bangolo', 1),
(799,
52, 'BEO', 'Beoumi', 1),
(800, 52, 'BIA', 'Biankouma', 1),
(801, 52, 'BDK',
'Bondoukou', 1),
(802, 52, 'BGN', 'Bongouanou', 1),
(803, 52, 'BFL',
'Bouafle', 1),
(804, 52, 'BKE', 'Bouake', 1),
(805, 52, 'BNA', 'Bouna',
1),
(806, 52, 'BDL', 'Boundiali', 1),
(807, 52, 'DKL', 'Dabakala',
1),
(808, 52, 'DBU', 'Dabou', 1),
(809, 52, 'DAL', 'Daloa', 1),
(810, 52,
'DAN', 'Danane', 1),
(811, 52, 'DAO', 'Daoukro', 1),
(812, 52, 'DIM',
'Dimbokro', 1),
(813, 52, 'DIV', 'Divo', 1),
(814, 52, 'DUE', 'Duekoue',
1),
(815, 52, 'FER', 'Ferkessedougou', 1),
(816, 52, 'GAG', 'Gagnoa',
1),
(817, 52, 'GBA', 'Grand-Bassam', 1),
(818, 52, 'GLA', 'Grand-Lahou',
1),
(819, 52, 'GUI', 'Guiglo', 1),
(820, 52, 'ISS', 'Issia', 1),
(821, 52,
'JAC', 'Jacqueville', 1),
(822, 52, 'KAT', 'Katiola', 1),
(823, 52, 'KOR',
'Korhogo', 1),
(824, 52, 'LAK', 'Lakota', 1),
(825, 52, 'MAN', 'Man',
1),
(826, 52, 'MKN', 'Mankono', 1),
(827, 52, 'MBA', 'Mbahiakro', 1),
(828,
52, 'ODI', 'Odienne', 1),
(829, 52, 'OUM', 'Oume', 1),
(830, 52, 'SAK',
'Sakassou', 1),
(831, 52, 'SPE', 'San-Pedro', 1),
(832, 52, 'SAS',
'Sassandra', 1),
(833, 52, 'SEG', 'Seguela', 1),
(834, 52, 'SIN', 'Sinfra',
1),
(835, 52, 'SOU', 'Soubre', 1),
(836, 52, 'TAB', 'Tabou', 1),
(837, 52,
'TAN', 'Tanda', 1),
(838, 52, 'TIE', 'Tiebissou', 1),
(839, 52, 'TIN',
'Tingrela', 1),
(840, 52, 'TIA', 'Tiassale', 1),
(841, 52, 'TBA', 'Touba',
1),
(842, 52, 'TLP', 'Toulepleu', 1),
(843, 52, 'TMD', 'Toumodi', 1),
(844,
52, 'VAV', 'Vavoua', 1),
(845, 52, 'YAM', 'Yamoussoukro', 1),
(846, 52,
'ZUE', 'Zuenoula', 1),
(847, 53, 'BB', 'Bjelovar-Bilogora', 1),
(848, 53,
'CZ', 'City of Zagreb', 1),
(849, 53, 'DN', 'Dubrovnik-Neretva', 1),
(850,
53, 'IS', 'Istra', 1),
(851, 53, 'KA', 'Karlovac', 1),
(852, 53, 'KK',
'Koprivnica-Krizevci', 1),
(853, 53, 'KZ', 'Krapina-Zagorje', 1),
(854, 53,
'LS', 'Lika-Senj', 1),
(855, 53, 'ME', 'Medimurje', 1),
(856, 53, 'OB',
'Osijek-Baranja', 1),
(857, 53, 'PS', 'Pozega-Slavonia', 1),
(858, 53,
'PG', 'Primorje-Gorski Kotar', 1),
(859, 53, 'SI', 'Sibenik', 1),
(860, 53,
'SM', 'Sisak-Moslavina', 1),
(861, 53, 'SB', 'Slavonski Brod-Posavina',
1),
(862, 53, 'SD', 'Split-Dalmatia', 1),
(863, 53, 'VA', 'Varazdin',
1),
(864, 53, 'VP', 'Virovitica-Podravina', 1),
(865, 53, 'VS',
'Vukovar-Srijem', 1),
(866, 53, 'ZK', 'Zadar-Knin', 1),
(867, 53, 'ZA',
'Zagreb', 1),
(868, 54, 'CA', 'Camaguey', 1),
(869, 54, 'CD', 'Ciego de
Avila', 1),
(870, 54, 'CI', 'Cienfuegos', 1),
(871, 54, 'CH', 'Ciudad de La
Habana', 1),
(872, 54, 'GR', 'Granma', 1),
(873, 54, 'GU', 'Guantanamo',
1),
(874, 54, 'HO', 'Holguin', 1),
(875, 54, 'IJ', 'Isla de la Juventud',
1),
(876, 54, 'LH', 'La Habana', 1),
(877, 54, 'LT', 'Las Tunas', 1),
(878,
54, 'MA', 'Matanzas', 1),
(879, 54, 'PR', 'Pinar del Rio', 1),
(880, 54,
'SS', 'Sancti Spiritus', 1),
(881, 54, 'SC', 'Santiago de Cuba', 1),
(882,
54, 'VC', 'Villa Clara', 1),
(883, 55, 'F', 'Famagusta', 1),
(884, 55, 'K',
'Kyrenia', 1),
(885, 55, 'A', 'Larnaca', 1),
(886, 55, 'I', 'Limassol',
1),
(887, 55, 'N', 'Nicosia', 1),
(888, 55, 'P', 'Paphos', 1),
(889, 56,
'U', 'Ústecký', 1),
(890, 56, 'C', 'Jihočeský', 1),
(891, 56, 'B',
'Jihomoravský', 1),
(892, 56, 'K', 'Karlovarský', 1),
(893, 56, 'H',
'Královehradecký', 1),
(894, 56, 'L', 'Liberecký', 1),
(895, 56, 'T',
'Moravskoslezský', 1),
(896, 56, 'M', 'Olomoucký', 1),
(897, 56, 'E',
'Pardubický', 1),
(898, 56, 'P', 'Plzeňský', 1),
(899, 56, 'A', 'Praha',
1),
(900, 56, 'S', 'Středočeský', 1),
(901, 56, 'J', 'Vysočina',
1),
(902, 56, 'Z', 'Zlínský', 1),
(903, 57, 'AR', 'Arhus', 1),
(904, 57,
'BH', 'Bornholm', 1),
(905, 57, 'CO', 'Copenhagen', 1),
(906, 57, 'FO',
'Faroe Islands', 1),
(907, 57, 'FR', 'Frederiksborg', 1),
(908, 57, 'FY',
'Fyn', 1),
(909, 57, 'KO', 'Kobenhavn', 1),
(910, 57, 'NO', 'Nordjylland',
1),
(911, 57, 'RI', 'Ribe', 1),
(912, 57, 'RK', 'Ringkobing', 1),
(913, 57,
'RO', 'Roskilde', 1),
(914, 57, 'SO', 'Sonderjylland', 1),
(915, 57, 'ST',
'Storstrom', 1),
(916, 57, 'VK', 'Vejle', 1),
(917, 57, 'VJ',
'Vestjælland', 1),
(918, 57, 'VB', 'Viborg', 1),
(919, 58, 'S',
'''Ali Sabih', 1),
(920, 58, 'K', 'Dikhil', 1),
(921, 58, 'J', 'Djibouti',
1),
(922, 58, 'O', 'Obock', 1),
(923, 58, 'T', 'Tadjoura', 1),
(924, 59,
'AND', 'Saint Andrew Parish', 1),
(925, 59, 'DAV', 'Saint David Parish',
1),
(926, 59, 'GEO', 'Saint George Parish', 1),
(927, 59, 'JOH', 'Saint
John Parish', 1),
(928, 59, 'JOS', 'Saint Joseph Parish', 1),
(929, 59,
'LUK', 'Saint Luke Parish', 1),
(930, 59, 'MAR', 'Saint Mark Parish',
1),
(931, 59, 'PAT', 'Saint Patrick Parish', 1),
(932, 59, 'PAU', 'Saint
Paul Parish', 1),
(933, 59, 'PET', 'Saint Peter Parish', 1),
(934, 60,
'DN', 'Distrito Nacional', 1),
(935, 60, 'AZ', 'Azua', 1),
(936, 60, 'BC',
'Baoruco', 1),
(937, 60, 'BH', 'Barahona', 1),
(938, 60, 'DJ', 'Dajabon',
1),
(939, 60, 'DU', 'Duarte', 1),
(940, 60, 'EL', 'Elias Pina', 1),
(941,
60, 'SY', 'El Seybo', 1),
(942, 60, 'ET', 'Espaillat', 1),
(943, 60, 'HM',
'Hato Mayor', 1),
(944, 60, 'IN', 'Independencia', 1),
(945, 60, 'AL', 'La
Altagracia', 1),
(946, 60, 'RO', 'La Romana', 1),
(947, 60, 'VE', 'La
Vega', 1),
(948, 60, 'MT', 'Maria Trinidad Sanchez', 1),
(949, 60, 'MN',
'Monsenor Nouel', 1),
(950, 60, 'MC', 'Monte Cristi', 1),
(951, 60, 'MP',
'Monte Plata', 1),
(952, 60, 'PD', 'Pedernales', 1),
(953, 60, 'PR',
'Peravia (Bani)', 1),
(954, 60, 'PP', 'Puerto Plata', 1),
(955, 60, 'SL',
'Salcedo', 1),
(956, 60, 'SM', 'Samana', 1),
(957, 60, 'SH', 'Sanchez
Ramirez', 1),
(958, 60, 'SC', 'San Cristobal', 1),
(959, 60, 'JO', 'San
Jose de Ocoa', 1),
(960, 60, 'SJ', 'San Juan', 1),
(961, 60, 'PM', 'San
Pedro de Macoris', 1),
(962, 60, 'SA', 'Santiago', 1),
(963, 60, 'ST',
'Santiago Rodriguez', 1),
(964, 60, 'SD', 'Santo Domingo', 1),
(965, 60,
'VA', 'Valverde', 1),
(966, 61, 'AL', 'Aileu', 1),
(967, 61, 'AN',
'Ainaro', 1),
(968, 61, 'BA', 'Baucau', 1),
(969, 61, 'BO', 'Bobonaro',
1),
(970, 61, 'CO', 'Cova Lima', 1),
(971, 61, 'DI', 'Dili', 1),
(972, 61,
'ER', 'Ermera', 1),
(973, 61, 'LA', 'Lautem', 1),
(974, 61, 'LI',
'Liquica', 1),
(975, 61, 'MT', 'Manatuto', 1),
(976, 61, 'MF', 'Manufahi',
1),
(977, 61, 'OE', 'Oecussi', 1),
(978, 61, 'VI', 'Viqueque', 1),
(979,
62, 'AZU', 'Azuay', 1),
(980, 62, 'BOL', 'Bolivar', 1),
(981, 62, 'CAN',
'Cañar', 1),
(982, 62, 'CAR', 'Carchi', 1),
(983, 62, 'CHI',
'Chimborazo', 1),
(984, 62, 'COT', 'Cotopaxi', 1),
(985, 62, 'EOR', 'El
Oro', 1),
(986, 62, 'ESM', 'Esmeraldas', 1),
(987, 62, 'GPS',
'Galápagos', 1),
(988, 62, 'GUA', 'Guayas', 1),
(989, 62, 'IMB',
'Imbabura', 1),
(990, 62, 'LOJ', 'Loja', 1),
(991, 62, 'LRO', 'Los Rios',
1),
(992, 62, 'MAN', 'Manabí', 1),
(993, 62, 'MSA', 'Morona
Santiago', 1),
(994, 62, 'NAP', 'Napo', 1),
(995, 62, 'ORE', 'Orellana',
1),
(996, 62, 'PAS', 'Pastaza', 1),
(997, 62, 'PIC', 'Pichincha', 1),
(998,
62, 'SUC', 'Sucumbíos', 1),
(999, 62, 'TUN', 'Tungurahua',
1),
(1000, 62, 'ZCH', 'Zamora Chinchipe', 1),
(1001, 63, 'DHY', 'Ad
Daqahliyah', 1),
(1002, 63, 'BAM', 'Al Bahr al Ahmar', 1),
(1003, 63,
'BHY', 'Al Buhayrah', 1),
(1004, 63, 'FYM', 'Al Fayyum', 1),
(1005, 63,
'GBY', 'Al Gharbiyah', 1),
(1006, 63, 'IDR', 'Al Iskandariyah', 1),
(1007,
63, 'IML', 'Al Isma''iliyah', 1),
(1008, 63, 'JZH', 'Al Jizah', 1),
(1009,
63, 'MFY', 'Al Minufiyah', 1),
(1010, 63, 'MNY', 'Al Minya', 1),
(1011, 63,
'QHR', 'Al Qahirah', 1),
(1012, 63, 'QLY', 'Al Qalyubiyah', 1),
(1013, 63,
'WJD', 'Al Wadi al Jadid', 1),
(1014, 63, 'SHQ', 'Ash Sharqiyah',
1),
(1015, 63, 'SWY', 'As Suways', 1),
(1016, 63, 'ASW', 'Aswan',
1),
(1017, 63, 'ASY', 'Asyut', 1),
(1018, 63, 'BSW', 'Bani Suwayf',
1),
(1019, 63, 'BSD', 'Bur Sa''id', 1),
(1020, 63, 'DMY', 'Dumyat',
1),
(1021, 63, 'JNS', 'Janub Sina''', 1),
(1022, 63, 'KSH', 'Kafr ash
Shaykh', 1),
(1023, 63, 'MAT', 'Matruh', 1),
(1024, 63, 'QIN', 'Qina',
1),
(1025, 63, 'SHS', 'Shamal Sina''', 1),
(1026, 63, 'SUH', 'Suhaj',
1),
(1027, 64, 'AH', 'Ahuachapan', 1),
(1028, 64, 'CA', 'Cabanas',
1),
(1029, 64, 'CH', 'Chalatenango', 1),
(1030, 64, 'CU', 'Cuscatlan',
1),
(1031, 64, 'LB', 'La Libertad', 1),
(1032, 64, 'PZ', 'La Paz',
1),
(1033, 64, 'UN', 'La Union', 1),
(1034, 64, 'MO', 'Morazan', 1),
(1035,
64, 'SM', 'San Miguel', 1),
(1036, 64, 'SS', 'San Salvador', 1),
(1037, 64,
'SV', 'San Vicente', 1),
(1038, 64, 'SA', 'Santa Ana', 1),
(1039, 64, 'SO',
'Sonsonate', 1),
(1040, 64, 'US', 'Usulutan', 1),
(1041, 65, 'AN',
'Provincia Annobon', 1),
(1042, 65, 'BN', 'Provincia Bioko Norte',
1),
(1043, 65, 'BS', 'Provincia Bioko Sur', 1),
(1044, 65, 'CS', 'Provincia
Centro Sur', 1),
(1045, 65, 'KN', 'Provincia Kie-Ntem', 1),
(1046, 65,
'LI', 'Provincia Litoral', 1),
(1047, 65, 'WN', 'Provincia Wele-Nzas',
1),
(1048, 66, 'MA', 'Central (Maekel)', 1),
(1049, 66, 'KE', 'Anseba
(Keren)', 1),
(1050, 66, 'DK', 'Southern Red Sea (Debub-Keih-Bahri)',
1),
(1051, 66, 'SK', 'Northern Red Sea (Semien-Keih-Bahri)', 1),
(1052, 66,
'DE', 'Southern (Debub)', 1),
(1053, 66, 'BR', 'Gash-Barka (Barentu)',
1),
(1054, 67, 'HA', 'Harjumaa (Tallinn)', 1),
(1055, 67, 'HI', 'Hiiumaa
(Kardla)', 1),
(1056, 67, 'IV', 'Ida-Virumaa (Johvi)', 1),
(1057, 67, 'JA',
'Jarvamaa (Paide)', 1),
(1058, 67, 'JO', 'Jogevamaa (Jogeva)', 1),
(1059,
67, 'LV', 'Laane-Virumaa (Rakvere)', 1),
(1060, 67, 'LA', 'Laanemaa
(Haapsalu)', 1),
(1061, 67, 'PA', 'Parnumaa (Parnu)', 1),
(1062, 67, 'PO',
'Polvamaa (Polva)', 1),
(1063, 67, 'RA', 'Raplamaa (Rapla)', 1),
(1064, 67,
'SA', 'Saaremaa (Kuessaare)', 1),
(1065, 67, 'TA', 'Tartumaa (Tartu)',
1),
(1066, 67, 'VA', 'Valgamaa (Valga)', 1),
(1067, 67, 'VI', 'Viljandimaa
(Viljandi)', 1),
(1068, 67, 'VO', 'Vorumaa (Voru)', 1),
(1069, 68, 'AF',
'Afar', 1),
(1070, 68, 'AH', 'Amhara', 1),
(1071, 68, 'BG',
'Benishangul-Gumaz', 1),
(1072, 68, 'GB', 'Gambela', 1),
(1073, 68, 'HR',
'Hariai', 1),
(1074, 68, 'OR', 'Oromia', 1),
(1075, 68, 'SM', 'Somali',
1),
(1076, 68, 'SN', 'Southern Nations - Nationalities and Peoples Region',
1),
(1077, 68, 'TG', 'Tigray', 1),
(1078, 68, 'AA', 'Addis Ababa',
1),
(1079, 68, 'DD', 'Dire Dawa', 1),
(1080, 71, 'C', 'Central Division',
1),
(1081, 71, 'N', 'Northern Division', 1),
(1082, 71, 'E', 'Eastern
Division', 1),
(1083, 71, 'W', 'Western Division', 1),
(1084, 71, 'R',
'Rotuma', 1),
(1085, 72, 'AL', 'Ahvenanmaan Laani', 1),
(1086, 72, 'ES',
'Etela-Suomen Laani', 1),
(1087, 72, 'IS', 'Ita-Suomen Laani', 1),
(1088,
72, 'LS', 'Lansi-Suomen Laani', 1),
(1089, 72, 'LA', 'Lapin Lanani',
1),
(1090, 72, 'OU', 'Oulun Laani', 1),
(1091, 73, 'AL', 'Alsace',
1),
(1092, 73, 'AQ', 'Aquitaine', 1),
(1093, 73, 'AU', 'Auvergne',
1),
(1094, 73, 'BR', 'Brittany', 1),
(1095, 73, 'BU', 'Burgundy',
1),
(1096, 73, 'CE', 'Center Loire Valley', 1),
(1097, 73, 'CH',
'Champagne', 1),
(1098, 73, 'CO', 'Corse', 1),
(1099, 73, 'FR', 'France
Comte', 1),
(1100, 73, 'LA', 'Languedoc Roussillon', 1),
(1101, 73, 'LI',
'Limousin', 1),
(1102, 73, 'LO', 'Lorraine', 1),
(1103, 73, 'MI', 'Midi
Pyrenees', 1),
(1104, 73, 'NO', 'Nord Pas de Calais', 1),
(1105, 73, 'NR',
'Normandy', 1),
(1106, 73, 'PA', 'Paris / Ill de France', 1),
(1107, 73,
'PI', 'Picardie', 1),
(1108, 73, 'PO', 'Poitou Charente', 1),
(1109, 73,
'PR', 'Provence', 1),
(1110, 73, 'RH', 'Rhone Alps', 1),
(1111, 73, 'RI',
'Riviera', 1),
(1112, 73, 'WE', 'Western Loire Valley', 1),
(1113, 74,
'Et', 'Etranger', 1),
(1114, 74, '01', 'Ain', 1),
(1115, 74, '02', 'Aisne',
1),
(1116, 74, '03', 'Allier', 1),
(1117, 74, '04', 'Alpes de Haute
Provence', 1),
(1118, 74, '05', 'Hautes-Alpes', 1),
(1119, 74, '06', 'Alpes
Maritimes', 1),
(1120, 74, '07', 'Ardèche', 1),
(1121, 74, '08',
'Ardennes', 1),
(1122, 74, '09', 'Ariège', 1),
(1123, 74, '10',
'Aube', 1),
(1124, 74, '11', 'Aude', 1),
(1125, 74, '12', 'Aveyron',
1),
(1126, 74, '13', 'Bouches du Rhône', 1),
(1127, 74, '14',
'Calvados', 1),
(1128, 74, '15', 'Cantal', 1),
(1129, 74, '16', 'Charente',
1),
(1130, 74, '17', 'Charente Maritime', 1),
(1131, 74, '18', 'Cher',
1),
(1132, 74, '19', 'Corrèze', 1),
(1133, 74, '2A', 'Corse du
Sud', 1),
(1134, 74, '2B', 'Haute Corse', 1),
(1135, 74, '21',
'Côte d'or', 1),
(1136, 74, '22', 'Côtes
d'Armor', 1),
(1137, 74, '23', 'Creuse', 1),
(1138, 74, '24',
'Dordogne', 1),
(1139, 74, '25', 'Doubs', 1),
(1140, 74, '26',
'Drôme', 1),
(1141, 74, '27', 'Eure', 1),
(1142, 74, '28', 'Eure
et Loir', 1),
(1143, 74, '29', 'Finistère', 1),
(1144, 74, '30',
'Gard', 1),
(1145, 74, '31', 'Haute Garonne', 1),
(1146, 74, '32', 'Gers',
1),
(1147, 74, '33', 'Gironde', 1),
(1148, 74, '34', 'Hérault',
1),
(1149, 74, '35', 'Ille et Vilaine', 1),
(1150, 74, '36', 'Indre',
1),
(1151, 74, '37', 'Indre et Loire', 1),
(1152, 74, '38',
'Isére', 1),
(1153, 74, '39', 'Jura', 1),
(1154, 74, '40',
'Landes', 1),
(1155, 74, '41', 'Loir et Cher', 1),
(1156, 74, '42',
'Loire', 1),
(1157, 74, '43', 'Haute Loire', 1),
(1158, 74, '44', 'Loire
Atlantique', 1),
(1159, 74, '45', 'Loiret', 1),
(1160, 74, '46', 'Lot',
1),
(1161, 74, '47', 'Lot et Garonne', 1),
(1162, 74, '48',
'Lozère', 1),
(1163, 74, '49', 'Maine et Loire', 1),
(1164, 74,
'50', 'Manche', 1),
(1165, 74, '51', 'Marne', 1),
(1166, 74, '52', 'Haute
Marne', 1),
(1167, 74, '53', 'Mayenne', 1),
(1168, 74, '54', 'Meurthe et
Moselle', 1),
(1169, 74, '55', 'Meuse', 1),
(1170, 74, '56', 'Morbihan',
1),
(1171, 74, '57', 'Moselle', 1),
(1172, 74, '58', 'Nièvre',
1),
(1173, 74, '59', 'Nord', 1),
(1174, 74, '60', 'Oise', 1),
(1175, 74,
'61', 'Orne', 1),
(1176, 74, '62', 'Pas de Calais', 1),
(1177, 74, '63',
'Puy de Dôme', 1),
(1178, 74, '64',
'Pyrénées Atlantiques', 1),
(1179, 74, '65', 'Hautes
Pyrénées', 1),
(1180, 74, '66',
'Pyrénées Orientales', 1),
(1181, 74, '67', 'Bas
Rhin', 1),
(1182, 74, '68', 'Haut Rhin', 1),
(1183, 74, '69',
'Rhône', 1),
(1184, 74, '70', 'Haute Saône', 1),
(1185,
74, '71', 'Saône et Loire', 1),
(1186, 74, '72', 'Sarthe',
1),
(1187, 74, '73', 'Savoie', 1),
(1188, 74, '74', 'Haute Savoie',
1),
(1189, 74, '75', 'Paris', 1),
(1190, 74, '76', 'Seine Maritime',
1),
(1191, 74, '77', 'Seine et Marne', 1),
(1192, 74, '78', 'Yvelines',
1),
(1193, 74, '79', 'Deux Sèvres', 1),
(1194, 74, '80',
'Somme', 1),
(1195, 74, '81', 'Tarn', 1),
(1196, 74, '82', 'Tarn et
Garonne', 1),
(1197, 74, '83', 'Var', 1),
(1198, 74, '84', 'Vaucluse',
1),
(1199, 74, '85', 'Vendée', 1),
(1200, 74, '86', 'Vienne',
1),
(1201, 74, '87', 'Haute Vienne', 1),
(1202, 74, '88', 'Vosges',
1),
(1203, 74, '89', 'Yonne', 1),
(1204, 74, '90', 'Territoire de Belfort',
1),
(1205, 74, '91', 'Essonne', 1),
(1206, 74, '92', 'Hauts de Seine',
1),
(1207, 74, '93', 'Seine St-Denis', 1),
(1208, 74, '94', 'Val de Marne',
1),
(1209, 74, '95', 'Val d''Oise', 1),
(1210, 76, 'M', 'Archipel des
Marquises', 1),
(1211, 76, 'T', 'Archipel des Tuamotu', 1),
(1212, 76, 'I',
'Archipel des Tubuai', 1),
(1213, 76, 'V', 'Iles du Vent', 1),
(1214, 76,
'S', 'Iles Sous-le-Vent', 1),
(1215, 77, 'C', 'Iles Crozet', 1),
(1216, 77,
'K', 'Iles Kerguelen', 1),
(1217, 77, 'A', 'Ile Amsterdam', 1),
(1218, 77,
'P', 'Ile Saint-Paul', 1),
(1219, 77, 'D', 'Adelie Land', 1),
(1220, 78,
'ES', 'Estuaire', 1),
(1221, 78, 'HO', 'Haut-Ogooue', 1),
(1222, 78, 'MO',
'Moyen-Ogooue', 1),
(1223, 78, 'NG', 'Ngounie', 1),
(1224, 78, 'NY',
'Nyanga', 1),
(1225, 78, 'OI', 'Ogooue-Ivindo', 1),
(1226, 78, 'OL',
'Ogooue-Lolo', 1),
(1227, 78, 'OM', 'Ogooue-Maritime', 1),
(1228, 78, 'WN',
'Woleu-Ntem', 1),
(1229, 79, 'BJ', 'Banjul', 1),
(1230, 79, 'BS', 'Basse',
1),
(1231, 79, 'BR', 'Brikama', 1),
(1232, 79, 'JA', 'Janjangbure',
1),
(1233, 79, 'KA', 'Kanifeng', 1),
(1234, 79, 'KE', 'Kerewan', 1),
(1235,
79, 'KU', 'Kuntaur', 1),
(1236, 79, 'MA', 'Mansakonko', 1),
(1237, 79,
'LR', 'Lower River', 1),
(1238, 79, 'CR', 'Central River', 1),
(1239, 79,
'NB', 'North Bank', 1),
(1240, 79, 'UR', 'Upper River', 1),
(1241, 79,
'WE', 'Western', 1),
(1242, 80, 'AB', 'Abkhazia', 1),
(1243, 80, 'AJ',
'Ajaria', 1),
(1244, 80, 'TB', 'Tbilisi', 1),
(1245, 80, 'GU', 'Guria',
1),
(1246, 80, 'IM', 'Imereti', 1),
(1247, 80, 'KA', 'Kakheti', 1),
(1248,
80, 'KK', 'Kvemo Kartli', 1),
(1249, 80, 'MM', 'Mtskheta-Mtianeti',
1),
(1250, 80, 'RL', 'Racha Lechkhumi and Kvemo Svanet', 1),
(1251, 80,
'SZ', 'Samegrelo-Zemo Svaneti', 1),
(1252, 80, 'SJ', 'Samtskhe-Javakheti',
1),
(1253, 80, 'SK', 'Shida Kartli', 1),
(1254, 81, 'BAW',
'Baden-Württemberg', 1),
(1255, 81, 'BAY', 'Bayern', 1),
(1256,
81, 'BER', 'Berlin', 1),
(1257, 81, 'BRG', 'Brandenburg', 1),
(1258, 81,
'BRE', 'Bremen', 1),
(1259, 81, 'HAM', 'Hamburg', 1),
(1260, 81, 'HES',
'Hessen', 1),
(1261, 81, 'MEC', 'Mecklenburg-Vorpommern', 1),
(1262, 81,
'NDS', 'Niedersachsen', 1),
(1263, 81, 'NRW', 'Nordrhein-Westfalen',
1),
(1264, 81, 'RHE', 'Rheinland-Pfalz', 1),
(1265, 81, 'SAR', 'Saarland',
1),
(1266, 81, 'SAS', 'Sachsen', 1),
(1267, 81, 'SAC', 'Sachsen-Anhalt',
1),
(1268, 81, 'SCN', 'Schleswig-Holstein', 1),
(1269, 81, 'THE',
'Thüringen', 1),
(1270, 82, 'AS', 'Ashanti Region', 1),
(1271, 82,
'BA', 'Brong-Ahafo Region', 1),
(1272, 82, 'CE', 'Central Region',
1),
(1273, 82, 'EA', 'Eastern Region', 1),
(1274, 82, 'GA', 'Greater Accra
Region', 1),
(1275, 82, 'NO', 'Northern Region', 1),
(1276, 82, 'UE',
'Upper East Region', 1),
(1277, 82, 'UW', 'Upper West Region', 1),
(1278,
82, 'VO', 'Volta Region', 1),
(1279, 82, 'WE', 'Western Region', 1),
(1280,
84, 'AT', 'Attica', 1),
(1281, 84, 'CN', 'Central Greece', 1),
(1282, 84,
'CM', 'Central Macedonia', 1),
(1283, 84, 'CR', 'Crete', 1),
(1284, 84,
'EM', 'East Macedonia and Thrace', 1),
(1285, 84, 'EP', 'Epirus',
1),
(1286, 84, 'II', 'Ionian Islands', 1),
(1287, 84, 'NA', 'North Aegean',
1),
(1288, 84, 'PP', 'Peloponnesos', 1),
(1289, 84, 'SA', 'South Aegean',
1),
(1290, 84, 'TH', 'Thessaly', 1),
(1291, 84, 'WG', 'West Greece',
1),
(1292, 84, 'WM', 'West Macedonia', 1),
(1293, 85, 'A', 'Avannaa',
1),
(1294, 85, 'T', 'Tunu', 1),
(1295, 85, 'K', 'Kitaa', 1),
(1296, 86,
'A', 'Saint Andrew', 1),
(1297, 86, 'D', 'Saint David', 1),
(1298, 86, 'G',
'Saint George', 1),
(1299, 86, 'J', 'Saint John', 1),
(1300, 86, 'M',
'Saint Mark', 1),
(1301, 86, 'P', 'Saint Patrick', 1),
(1302, 86, 'C',
'Carriacou', 1),
(1303, 86, 'Q', 'Petit Martinique', 1),
(1304, 89, 'AV',
'Alta Verapaz', 1),
(1305, 89, 'BV', 'Baja Verapaz', 1),
(1306, 89, 'CM',
'Chimaltenango', 1),
(1307, 89, 'CQ', 'Chiquimula', 1),
(1308, 89, 'PE',
'El Peten', 1),
(1309, 89, 'PR', 'El Progreso', 1),
(1310, 89, 'QC', 'El
Quiche', 1),
(1311, 89, 'ES', 'Escuintla', 1),
(1312, 89, 'GU',
'Guatemala', 1),
(1313, 89, 'HU', 'Huehuetenango', 1),
(1314, 89, 'IZ',
'Izabal', 1),
(1315, 89, 'JA', 'Jalapa', 1),
(1316, 89, 'JU', 'Jutiapa',
1),
(1317, 89, 'QZ', 'Quetzaltenango', 1),
(1318, 89, 'RE', 'Retalhuleu',
1),
(1319, 89, 'ST', 'Sacatepequez', 1),
(1320, 89, 'SM', 'San Marcos',
1),
(1321, 89, 'SR', 'Santa Rosa', 1),
(1322, 89, 'SO', 'Solola',
1),
(1323, 89, 'SU', 'Suchitepequez', 1),
(1324, 89, 'TO', 'Totonicapan',
1),
(1325, 89, 'ZA', 'Zacapa', 1),
(1326, 90, 'CNK', 'Conakry', 1),
(1327,
90, 'BYL', 'Beyla', 1),
(1328, 90, 'BFA', 'Boffa', 1),
(1329, 90, 'BOK',
'Boke', 1),
(1330, 90, 'COY', 'Coyah', 1),
(1331, 90, 'DBL', 'Dabola',
1),
(1332, 90, 'DLB', 'Dalaba', 1),
(1333, 90, 'DGR', 'Dinguiraye',
1),
(1334, 90, 'DBR', 'Dubreka', 1),
(1335, 90, 'FRN', 'Faranah',
1),
(1336, 90, 'FRC', 'Forecariah', 1),
(1337, 90, 'FRI', 'Fria',
1),
(1338, 90, 'GAO', 'Gaoual', 1),
(1339, 90, 'GCD', 'Gueckedou',
1),
(1340, 90, 'KNK', 'Kankan', 1),
(1341, 90, 'KRN', 'Kerouane',
1),
(1342, 90, 'KND', 'Kindia', 1),
(1343, 90, 'KSD', 'Kissidougou',
1),
(1344, 90, 'KBA', 'Koubia', 1),
(1345, 90, 'KDA', 'Koundara',
1),
(1346, 90, 'KRA', 'Kouroussa', 1),
(1347, 90, 'LAB', 'Labe', 1),
(1348,
90, 'LLM', 'Lelouma', 1),
(1349, 90, 'LOL', 'Lola', 1),
(1350, 90, 'MCT',
'Macenta', 1),
(1351, 90, 'MAL', 'Mali', 1),
(1352, 90, 'MAM', 'Mamou',
1),
(1353, 90, 'MAN', 'Mandiana', 1),
(1354, 90, 'NZR', 'Nzerekore',
1),
(1355, 90, 'PIT', 'Pita', 1),
(1356, 90, 'SIG', 'Siguiri', 1),
(1357,
90, 'TLM', 'Telimele', 1),
(1358, 90, 'TOG', 'Tougue', 1),
(1359, 90,
'YOM', 'Yomou', 1),
(1360, 91, 'BF', 'Bafata Region', 1),
(1361, 91, 'BB',
'Biombo Region', 1),
(1362, 91, 'BS', 'Bissau Region', 1),
(1363, 91, 'BL',
'Bolama Region', 1),
(1364, 91, 'CA', 'Cacheu Region', 1),
(1365, 91, 'GA',
'Gabu Region', 1),
(1366, 91, 'OI', 'Oio Region', 1),
(1367, 91, 'QU',
'Quinara Region', 1),
(1368, 91, 'TO', 'Tombali Region', 1),
(1369, 92,
'BW', 'Barima-Waini', 1),
(1370, 92, 'CM', 'Cuyuni-Mazaruni', 1),
(1371,
92, 'DM', 'Demerara-Mahaica', 1),
(1372, 92, 'EC', 'East
Berbice-Corentyne', 1),
(1373, 92, 'EW', 'Essequibo Islands-West Demerara',
1),
(1374, 92, 'MB', 'Mahaica-Berbice', 1),
(1375, 92, 'PM',
'Pomeroon-Supenaam', 1),
(1376, 92, 'PI', 'Potaro-Siparuni', 1),
(1377, 92,
'UD', 'Upper Demerara-Berbice', 1),
(1378, 92, 'UT', 'Upper Takutu-Upper
Essequibo', 1),
(1379, 93, 'AR', 'Artibonite', 1),
(1380, 93, 'CE',
'Centre', 1),
(1381, 93, 'GA', 'Grand''Anse', 1),
(1382, 93, 'ND', 'Nord',
1),
(1383, 93, 'NE', 'Nord-Est', 1),
(1384, 93, 'NO', 'Nord-Ouest',
1),
(1385, 93, 'OU', 'Ouest', 1),
(1386, 93, 'SD', 'Sud', 1),
(1387, 93,
'SE', 'Sud-Est', 1),
(1388, 94, 'F', 'Flat Island', 1),
(1389, 94, 'M',
'McDonald Island', 1),
(1390, 94, 'S', 'Shag Island', 1),
(1391, 94, 'H',
'Heard Island', 1),
(1392, 95, 'AT', 'Atlantida', 1),
(1393, 95, 'CH',
'Choluteca', 1),
(1394, 95, 'CL', 'Colon', 1),
(1395, 95, 'CM',
'Comayagua', 1),
(1396, 95, 'CP', 'Copan', 1),
(1397, 95, 'CR', 'Cortes',
1),
(1398, 95, 'PA', 'El Paraiso', 1),
(1399, 95, 'FM', 'Francisco
Morazan', 1),
(1400, 95, 'GD', 'Gracias a Dios', 1),
(1401, 95, 'IN',
'Intibuca', 1),
(1402, 95, 'IB', 'Islas de la Bahia (Bay Islands)',
1),
(1403, 95, 'PZ', 'La Paz', 1),
(1404, 95, 'LE', 'Lempira', 1),
(1405,
95, 'OC', 'Ocotepeque', 1),
(1406, 95, 'OL', 'Olancho', 1),
(1407, 95,
'SB', 'Santa Barbara', 1),
(1408, 95, 'VA', 'Valle', 1),
(1409, 95, 'YO',
'Yoro', 1),
(1410, 96, 'HCW', 'Central and Western Hong Kong Island',
1),
(1411, 96, 'HEA', 'Eastern Hong Kong Island', 1),
(1412, 96, 'HSO',
'Southern Hong Kong Island', 1),
(1413, 96, 'HWC', 'Wan Chai Hong Kong
Island', 1),
(1414, 96, 'KKC', 'Kowloon City Kowloon', 1),
(1415, 96,
'KKT', 'Kwun Tong Kowloon', 1),
(1416, 96, 'KSS', 'Sham Shui Po Kowloon',
1),
(1417, 96, 'KWT', 'Wong Tai Sin Kowloon', 1),
(1418, 96, 'KYT', 'Yau
Tsim Mong Kowloon', 1),
(1419, 96, 'NIS', 'Islands New Territories',
1),
(1420, 96, 'NKT', 'Kwai Tsing New Territories', 1),
(1421, 96, 'NNO',
'North New Territories', 1),
(1422, 96, 'NSK', 'Sai Kung New Territories',
1),
(1423, 96, 'NST', 'Sha Tin New Territories', 1),
(1424, 96, 'NTP', 'Tai
Po New Territories', 1),
(1425, 96, 'NTW', 'Tsuen Wan New Territories',
1),
(1426, 96, 'NTM', 'Tuen Mun New Territories', 1),
(1427, 96, 'NYL',
'Yuen Long New Territories', 1),
(1428, 97, 'BK', 'Bacs-Kiskun', 1),
(1429,
97, 'BA', 'Baranya', 1),
(1430, 97, 'BE', 'Bekes', 1),
(1431, 97, 'BS',
'Bekescsaba', 1),
(1432, 97, 'BZ', 'Borsod-Abauj-Zemplen', 1),
(1433, 97,
'BU', 'Budapest', 1),
(1434, 97, 'CS', 'Csongrad', 1),
(1435, 97, 'DE',
'Debrecen', 1),
(1436, 97, 'DU', 'Dunaujvaros', 1),
(1437, 97, 'EG',
'Eger', 1),
(1438, 97, 'FE', 'Fejer', 1),
(1439, 97, 'GY', 'Gyor',
1),
(1440, 97, 'GM', 'Gyor-Moson-Sopron', 1),
(1441, 97, 'HB',
'Hajdu-Bihar', 1),
(1442, 97, 'HE', 'Heves', 1),
(1443, 97, 'HO',
'Hodmezovasarhely', 1),
(1444, 97, 'JN', 'Jasz-Nagykun-Szolnok', 1),
(1445,
97, 'KA', 'Kaposvar', 1),
(1446, 97, 'KE', 'Kecskemet', 1),
(1447, 97,
'KO', 'Komarom-Esztergom', 1),
(1448, 97, 'MI', 'Miskolc', 1),
(1449, 97,
'NA', 'Nagykanizsa', 1),
(1450, 97, 'NO', 'Nograd', 1),
(1451, 97, 'NY',
'Nyiregyhaza', 1),
(1452, 97, 'PE', 'Pecs', 1),
(1453, 97, 'PS', 'Pest',
1),
(1454, 97, 'SO', 'Somogy', 1),
(1455, 97, 'SP', 'Sopron', 1),
(1456,
97, 'SS', 'Szabolcs-Szatmar-Bereg', 1),
(1457, 97, 'SZ', 'Szeged',
1),
(1458, 97, 'SE', 'Szekesfehervar', 1),
(1459, 97, 'SL', 'Szolnok',
1),
(1460, 97, 'SM', 'Szombathely', 1),
(1461, 97, 'TA', 'Tatabanya',
1),
(1462, 97, 'TO', 'Tolna', 1),
(1463, 97, 'VA', 'Vas', 1),
(1464, 97,
'VE', 'Veszprem', 1),
(1465, 97, 'ZA', 'Zala', 1),
(1466, 97, 'ZZ',
'Zalaegerszeg', 1),
(1467, 98, 'AL', 'Austurland', 1),
(1468, 98, 'HF',
'Hofuoborgarsvaeoi', 1),
(1469, 98, 'NE', 'Norourland eystra', 1),
(1470,
98, 'NV', 'Norourland vestra', 1),
(1471, 98, 'SL', 'Suourland', 1),
(1472,
98, 'SN', 'Suournes', 1),
(1473, 98, 'VF', 'Vestfiroir', 1),
(1474, 98,
'VL', 'Vesturland', 1),
(1475, 99, 'AN', 'Andaman and Nicobar Islands',
1),
(1476, 99, 'AP', 'Andhra Pradesh', 1),
(1477, 99, 'AR', 'Arunachal
Pradesh', 1),
(1478, 99, 'AS', 'Assam', 1),
(1479, 99, 'BI', 'Bihar',
1),
(1480, 99, 'CH', 'Chandigarh', 1),
(1481, 99, 'DA', 'Dadra and Nagar
Haveli', 1),
(1482, 99, 'DM', 'Daman and Diu', 1),
(1483, 99, 'DE',
'Delhi', 1),
(1484, 99, 'GO', 'Goa', 1),
(1485, 99, 'GU', 'Gujarat',
1),
(1486, 99, 'HA', 'Haryana', 1),
(1487, 99, 'HP', 'Himachal Pradesh',
1),
(1488, 99, 'JA', 'Jammu and Kashmir', 1),
(1489, 99, 'KA', 'Karnataka',
1),
(1490, 99, 'KE', 'Kerala', 1),
(1491, 99, 'LI', 'Lakshadweep Islands',
1),
(1492, 99, 'MP', 'Madhya Pradesh', 1),
(1493, 99, 'MA', 'Maharashtra',
1),
(1494, 99, 'MN', 'Manipur', 1),
(1495, 99, 'ME', 'Meghalaya',
1),
(1496, 99, 'MI', 'Mizoram', 1),
(1497, 99, 'NA', 'Nagaland', 1),
(1498,
99, 'OR', 'Orissa', 1),
(1499, 99, 'PO', 'Pondicherry', 1),
(1500, 99,
'PU', 'Punjab', 1),
(1501, 99, 'RA', 'Rajasthan', 1),
(1502, 99, 'SI',
'Sikkim', 1),
(1503, 99, 'TN', 'Tamil Nadu', 1),
(1504, 99, 'TR',
'Tripura', 1),
(1505, 99, 'UP', 'Uttar Pradesh', 1),
(1506, 99, 'WB', 'West
Bengal', 1),
(1507, 100, 'AC', 'Aceh', 1),
(1508, 100, 'BA', 'Bali',
1),
(1509, 100, 'BT', 'Banten', 1),
(1510, 100, 'BE', 'Bengkulu',
1),
(1511, 100, 'BD', 'BoDeTaBek', 1),
(1512, 100, 'GO', 'Gorontalo',
1),
(1513, 100, 'JK', 'Jakarta Raya', 1),
(1514, 100, 'JA', 'Jambi',
1),
(1515, 100, 'JB', 'Jawa Barat', 1),
(1516, 100, 'JT', 'Jawa Tengah',
1),
(1517, 100, 'JI', 'Jawa Timur', 1),
(1518, 100, 'KB', 'Kalimantan
Barat', 1),
(1519, 100, 'KS', 'Kalimantan Selatan', 1),
(1520, 100, 'KT',
'Kalimantan Tengah', 1),
(1521, 100, 'KI', 'Kalimantan Timur', 1),
(1522,
100, 'BB', 'Kepulauan Bangka Belitung', 1),
(1523, 100, 'LA', 'Lampung',
1),
(1524, 100, 'MA', 'Maluku', 1),
(1525, 100, 'MU', 'Maluku Utara',
1),
(1526, 100, 'NB', 'Nusa Tenggara Barat', 1),
(1527, 100, 'NT', 'Nusa
Tenggara Timur', 1),
(1528, 100, 'PA', 'Papua', 1),
(1529, 100, 'RI',
'Riau', 1),
(1530, 100, 'SN', 'Sulawesi Selatan', 1),
(1531, 100, 'ST',
'Sulawesi Tengah', 1),
(1532, 100, 'SG', 'Sulawesi Tenggara', 1),
(1533,
100, 'SA', 'Sulawesi Utara', 1),
(1534, 100, 'SB', 'Sumatera Barat',
1),
(1535, 100, 'SS', 'Sumatera Selatan', 1),
(1536, 100, 'SU', 'Sumatera
Utara', 1);
INSERT INTO `oc_zone` (`zone_id`, `country_id`, `code`, `name`,
`status`) VALUES
(1537, 100, 'YO', 'Yogyakarta', 1),
(1538, 101, 'TEH',
'Tehran', 1),
(1539, 101, 'QOM', 'Qom', 1),
(1540, 101, 'MKZ', 'Markazi',
1),
(1541, 101, 'QAZ', 'Qazvin', 1),
(1542, 101, 'GIL', 'Gilan', 1),
(1543,
101, 'ARD', 'Ardabil', 1),
(1544, 101, 'ZAN', 'Zanjan', 1),
(1545, 101,
'EAZ', 'East Azarbaijan', 1),
(1546, 101, 'WEZ', 'West Azarbaijan',
1),
(1547, 101, 'KRD', 'Kurdistan', 1),
(1548, 101, 'HMD', 'Hamadan',
1),
(1549, 101, 'KRM', 'Kermanshah', 1),
(1550, 101, 'ILM', 'Ilam',
1),
(1551, 101, 'LRS', 'Lorestan', 1),
(1552, 101, 'KZT', 'Khuzestan',
1),
(1553, 101, 'CMB', 'Chahar Mahaal and Bakhtiari', 1),
(1554, 101,
'KBA', 'Kohkiluyeh and Buyer Ahmad', 1),
(1555, 101, 'BSH', 'Bushehr',
1),
(1556, 101, 'FAR', 'Fars', 1),
(1557, 101, 'HRM', 'Hormozgan',
1),
(1558, 101, 'SBL', 'Sistan and Baluchistan', 1),
(1559, 101, 'KRB',
'Kerman', 1),
(1560, 101, 'YZD', 'Yazd', 1),
(1561, 101, 'EFH', 'Esfahan',
1),
(1562, 101, 'SMN', 'Semnan', 1),
(1563, 101, 'MZD', 'Mazandaran',
1),
(1564, 101, 'GLS', 'Golestan', 1),
(1565, 101, 'NKH', 'North Khorasan',
1),
(1566, 101, 'RKH', 'Razavi Khorasan', 1),
(1567, 101, 'SKH', 'South
Khorasan', 1),
(1568, 102, 'BD', 'Baghdad', 1),
(1569, 102, 'SD', 'Salah ad
Din', 1),
(1570, 102, 'DY', 'Diyala', 1),
(1571, 102, 'WS', 'Wasit',
1),
(1572, 102, 'MY', 'Maysan', 1),
(1573, 102, 'BA', 'Al Basrah',
1),
(1574, 102, 'DQ', 'Dhi Qar', 1),
(1575, 102, 'MU', 'Al Muthanna',
1),
(1576, 102, 'QA', 'Al Qadisyah', 1),
(1577, 102, 'BB', 'Babil',
1),
(1578, 102, 'KB', 'Al Karbala', 1),
(1579, 102, 'NJ', 'An Najaf',
1),
(1580, 102, 'AB', 'Al Anbar', 1),
(1581, 102, 'NN', 'Ninawa',
1),
(1582, 102, 'DH', 'Dahuk', 1),
(1583, 102, 'AL', 'Arbil', 1),
(1584,
102, 'TM', 'At Ta''mim', 1),
(1585, 102, 'SL', 'As Sulaymaniyah',
1),
(1586, 103, 'CA', 'Carlow', 1),
(1587, 103, 'CV', 'Cavan', 1),
(1588,
103, 'CL', 'Clare', 1),
(1589, 103, 'CO', 'Cork', 1),
(1590, 103, 'DO',
'Donegal', 1),
(1591, 103, 'DU', 'Dublin', 1),
(1592, 103, 'GA', 'Galway',
1),
(1593, 103, 'KE', 'Kerry', 1),
(1594, 103, 'KI', 'Kildare', 1),
(1595,
103, 'KL', 'Kilkenny', 1),
(1596, 103, 'LA', 'Laois', 1),
(1597, 103, 'LE',
'Leitrim', 1),
(1598, 103, 'LI', 'Limerick', 1),
(1599, 103, 'LO',
'Longford', 1),
(1600, 103, 'LU', 'Louth', 1),
(1601, 103, 'MA', 'Mayo',
1),
(1602, 103, 'ME', 'Meath', 1),
(1603, 103, 'MO', 'Monaghan', 1),
(1604,
103, 'OF', 'Offaly', 1),
(1605, 103, 'RO', 'Roscommon', 1),
(1606, 103,
'SL', 'Sligo', 1),
(1607, 103, 'TI', 'Tipperary', 1),
(1608, 103, 'WA',
'Waterford', 1),
(1609, 103, 'WE', 'Westmeath', 1),
(1610, 103, 'WX',
'Wexford', 1),
(1611, 103, 'WI', 'Wicklow', 1),
(1612, 104, 'BS', 'Be''er
Sheva', 1),
(1613, 104, 'BH', 'Bika''at Hayarden', 1),
(1614, 104, 'EA',
'Eilat and Arava', 1),
(1615, 104, 'GA', 'Galil', 1),
(1616, 104, 'HA',
'Haifa', 1),
(1617, 104, 'JM', 'Jehuda Mountains', 1),
(1618, 104, 'JE',
'Jerusalem', 1),
(1619, 104, 'NE', 'Negev', 1),
(1620, 104, 'SE',
'Semaria', 1),
(1621, 104, 'SH', 'Sharon', 1),
(1622, 104, 'TA', 'Tel Aviv
(Gosh Dan)', 1),
(3860, 105, 'CL', 'Caltanissetta', 1),
(3842, 105, 'AG',
'Agrigento', 1),
(3843, 105, 'AL', 'Alessandria', 1),
(3844, 105, 'AN',
'Ancona', 1),
(3845, 105, 'AO', 'Aosta', 1),
(3846, 105, 'AR', 'Arezzo',
1),
(3847, 105, 'AP', 'Ascoli Piceno', 1),
(3848, 105, 'AT', 'Asti',
1),
(3849, 105, 'AV', 'Avellino', 1),
(3850, 105, 'BA', 'Bari', 1),
(3851,
105, 'BL', 'Belluno', 1),
(3852, 105, 'BN', 'Benevento', 1),
(3853, 105,
'BG', 'Bergamo', 1),
(3854, 105, 'BI', 'Biella', 1),
(3855, 105, 'BO',
'Bologna', 1),
(3856, 105, 'BZ', 'Bolzano', 1),
(3857, 105, 'BS',
'Brescia', 1),
(3858, 105, 'BR', 'Brindisi', 1),
(3859, 105, 'CA',
'Cagliari', 1),
(1643, 106, 'CLA', 'Clarendon Parish', 1),
(1644, 106,
'HAN', 'Hanover Parish', 1),
(1645, 106, 'KIN', 'Kingston Parish',
1),
(1646, 106, 'MAN', 'Manchester Parish', 1),
(1647, 106, 'POR',
'Portland Parish', 1),
(1648, 106, 'AND', 'Saint Andrew Parish', 1),
(1649,
106, 'ANN', 'Saint Ann Parish', 1),
(1650, 106, 'CAT', 'Saint Catherine
Parish', 1),
(1651, 106, 'ELI', 'Saint Elizabeth Parish', 1),
(1652, 106,
'JAM', 'Saint James Parish', 1),
(1653, 106, 'MAR', 'Saint Mary Parish',
1),
(1654, 106, 'THO', 'Saint Thomas Parish', 1),
(1655, 106, 'TRL',
'Trelawny Parish', 1),
(1656, 106, 'WML', 'Westmoreland Parish', 1),
(1657,
107, 'AI', 'Aichi', 1),
(1658, 107, 'AK', 'Akita', 1),
(1659, 107, 'AO',
'Aomori', 1),
(1660, 107, 'CH', 'Chiba', 1),
(1661, 107, 'EH', 'Ehime',
1),
(1662, 107, 'FK', 'Fukui', 1),
(1663, 107, 'FU', 'Fukuoka', 1),
(1664,
107, 'FS', 'Fukushima', 1),
(1665, 107, 'GI', 'Gifu', 1),
(1666, 107, 'GU',
'Gumma', 1),
(1667, 107, 'HI', 'Hiroshima', 1),
(1668, 107, 'HO',
'Hokkaido', 1),
(1669, 107, 'HY', 'Hyogo', 1),
(1670, 107, 'IB', 'Ibaraki',
1),
(1671, 107, 'IS', 'Ishikawa', 1),
(1672, 107, 'IW', 'Iwate', 1),
(1673,
107, 'KA', 'Kagawa', 1),
(1674, 107, 'KG', 'Kagoshima', 1),
(1675, 107,
'KN', 'Kanagawa', 1),
(1676, 107, 'KO', 'Kochi', 1),
(1677, 107, 'KU',
'Kumamoto', 1),
(1678, 107, 'KY', 'Kyoto', 1),
(1679, 107, 'MI', 'Mie',
1),
(1680, 107, 'MY', 'Miyagi', 1),
(1681, 107, 'MZ', 'Miyazaki',
1),
(1682, 107, 'NA', 'Nagano', 1),
(1683, 107, 'NG', 'Nagasaki',
1),
(1684, 107, 'NR', 'Nara', 1),
(1685, 107, 'NI', 'Niigata', 1),
(1686,
107, 'OI', 'Oita', 1),
(1687, 107, 'OK', 'Okayama', 1),
(1688, 107, 'ON',
'Okinawa', 1),
(1689, 107, 'OS', 'Osaka', 1),
(1690, 107, 'SA', 'Saga',
1),
(1691, 107, 'SI', 'Saitama', 1),
(1692, 107, 'SH', 'Shiga', 1),
(1693,
107, 'SM', 'Shimane', 1),
(1694, 107, 'SZ', 'Shizuoka', 1),
(1695, 107,
'TO', 'Tochigi', 1),
(1696, 107, 'TS', 'Tokushima', 1),
(1697, 107, 'TK',
'Tokyo', 1),
(1698, 107, 'TT', 'Tottori', 1),
(1699, 107, 'TY', 'Toyama',
1),
(1700, 107, 'WA', 'Wakayama', 1),
(1701, 107, 'YA', 'Yamagata',
1),
(1702, 107, 'YM', 'Yamaguchi', 1),
(1703, 107, 'YN', 'Yamanashi',
1),
(1704, 108, 'AM', '''Amman', 1),
(1705, 108, 'AJ', 'Ajlun', 1),
(1706,
108, 'AA', 'Al ''Aqabah', 1),
(1707, 108, 'AB', 'Al Balqa''', 1),
(1708,
108, 'AK', 'Al Karak', 1),
(1709, 108, 'AL', 'Al Mafraq', 1),
(1710, 108,
'AT', 'At Tafilah', 1),
(1711, 108, 'AZ', 'Az Zarqa''', 1),
(1712, 108,
'IR', 'Irbid', 1),
(1713, 108, 'JA', 'Jarash', 1),
(1714, 108, 'MA',
'Ma''an', 1),
(1715, 108, 'MD', 'Madaba', 1),
(1716, 109, 'AL',
'Алматинская область', 1),
(1717, 109, 'AC',
'Алматы - город республ-го значения',
1),
(1718, 109, 'AM', 'Акмолинская область', 1),
(1719,
109, 'AQ', 'Актюбинская область', 1),
(1720, 109, 'AS',
'Астана - город республ-го значения',
1),
(1721, 109, 'AT', 'Атырауская область', 1),
(1722,
109, 'BA', 'Западно-Казахстанская область',
1),
(1723, 109, 'BY', 'Байконур - город республ-го
значения', 1),
(1724, 109, 'MA', 'Мангистауская
область', 1),
(1725, 109, 'ON', 'Южно-Казахстанская
область', 1),
(1726, 109, 'PA', 'Павлодарская
область', 1),
(1727, 109, 'QA', 'Карагандинская
область', 1),
(1728, 109, 'QO', 'Костанайская
область', 1),
(1729, 109, 'QY', 'Кызылординская
область', 1),
(1730, 109, 'SH',
'Восточно-Казахстанская область', 1),
(1731,
109, 'SO', 'Северо-Казахстанская область',
1),
(1732, 109, 'ZH', 'Жамбылская область', 1),
(1733,
110, 'CE', 'Central', 1),
(1734, 110, 'CO', 'Coast', 1),
(1735, 110, 'EA',
'Eastern', 1),
(1736, 110, 'NA', 'Nairobi Area', 1),
(1737, 110, 'NE',
'North Eastern', 1),
(1738, 110, 'NY', 'Nyanza', 1),
(1739, 110, 'RV',
'Rift Valley', 1),
(1740, 110, 'WE', 'Western', 1),
(1741, 111, 'AG',
'Abaiang', 1),
(1742, 111, 'AM', 'Abemama', 1),
(1743, 111, 'AK',
'Aranuka', 1),
(1744, 111, 'AO', 'Arorae', 1),
(1745, 111, 'BA', 'Banaba',
1),
(1746, 111, 'BE', 'Beru', 1),
(1747, 111, 'bT', 'Butaritari',
1),
(1748, 111, 'KA', 'Kanton', 1),
(1749, 111, 'KR', 'Kiritimati',
1),
(1750, 111, 'KU', 'Kuria', 1),
(1751, 111, 'MI', 'Maiana', 1),
(1752,
111, 'MN', 'Makin', 1),
(1753, 111, 'ME', 'Marakei', 1),
(1754, 111, 'NI',
'Nikunau', 1),
(1755, 111, 'NO', 'Nonouti', 1),
(1756, 111, 'ON', 'Onotoa',
1),
(1757, 111, 'TT', 'Tabiteuea', 1),
(1758, 111, 'TR', 'Tabuaeran',
1),
(1759, 111, 'TM', 'Tamana', 1),
(1760, 111, 'TW', 'Tarawa', 1),
(1761,
111, 'TE', 'Teraina', 1),
(1762, 112, 'CHA', 'Chagang-do', 1),
(1763, 112,
'HAB', 'Hamgyong-bukto', 1),
(1764, 112, 'HAN', 'Hamgyong-namdo',
1),
(1765, 112, 'HWB', 'Hwanghae-bukto', 1),
(1766, 112, 'HWN',
'Hwanghae-namdo', 1),
(1767, 112, 'KAN', 'Kangwon-do', 1),
(1768, 112,
'PYB', 'P''yongan-bukto', 1),
(1769, 112, 'PYN', 'P''yongan-namdo',
1),
(1770, 112, 'YAN', 'Ryanggang-do (Yanggang-do)', 1),
(1771, 112, 'NAJ',
'Rason Directly Governed City', 1),
(1772, 112, 'PYO', 'P''yongyang Special
City', 1),
(1773, 113, 'CO', 'Ch''ungch''ong-bukto', 1),
(1774, 113, 'CH',
'Ch''ungch''ong-namdo', 1),
(1775, 113, 'CD', 'Cheju-do', 1),
(1776, 113,
'CB', 'Cholla-bukto', 1),
(1777, 113, 'CN', 'Cholla-namdo', 1),
(1778, 113,
'IG', 'Inch''on-gwangyoksi', 1),
(1779, 113, 'KA', 'Kangwon-do', 1),
(1780,
113, 'KG', 'Kwangju-gwangyoksi', 1),
(1781, 113, 'KD', 'Kyonggi-do',
1),
(1782, 113, 'KB', 'Kyongsang-bukto', 1),
(1783, 113, 'KN',
'Kyongsang-namdo', 1),
(1784, 113, 'PG', 'Pusan-gwangyoksi', 1),
(1785,
113, 'SO', 'Soul-t''ukpyolsi', 1),
(1786, 113, 'TA', 'Taegu-gwangyoksi',
1),
(1787, 113, 'TG', 'Taejon-gwangyoksi', 1),
(1788, 114, 'AL', 'Al
''Asimah', 1),
(1789, 114, 'AA', 'Al Ahmadi', 1),
(1790, 114, 'AF', 'Al
Farwaniyah', 1),
(1791, 114, 'AJ', 'Al Jahra''', 1),
(1792, 114, 'HA',
'Hawalli', 1),
(1793, 115, 'GB', 'Bishkek', 1),
(1794, 115, 'B', 'Batken',
1),
(1795, 115, 'C', 'Chu', 1),
(1796, 115, 'J', 'Jalal-Abad', 1),
(1797,
115, 'N', 'Naryn', 1),
(1798, 115, 'O', 'Osh', 1),
(1799, 115, 'T',
'Talas', 1),
(1800, 115, 'Y', 'Ysyk-Kol', 1),
(1801, 116, 'VT',
'Vientiane', 1),
(1802, 116, 'AT', 'Attapu', 1),
(1803, 116, 'BK', 'Bokeo',
1),
(1804, 116, 'BL', 'Bolikhamxai', 1),
(1805, 116, 'CH', 'Champasak',
1),
(1806, 116, 'HO', 'Houaphan', 1),
(1807, 116, 'KH', 'Khammouan',
1),
(1808, 116, 'LM', 'Louang Namtha', 1),
(1809, 116, 'LP',
'Louangphabang', 1),
(1810, 116, 'OU', 'Oudomxai', 1),
(1811, 116, 'PH',
'Phongsali', 1),
(1812, 116, 'SL', 'Salavan', 1),
(1813, 116, 'SV',
'Savannakhet', 1),
(1814, 116, 'VI', 'Vientiane', 1),
(1815, 116, 'XA',
'Xaignabouli', 1),
(1816, 116, 'XE', 'Xekong', 1),
(1817, 116, 'XI',
'Xiangkhoang', 1),
(1818, 116, 'XN', 'Xaisomboun', 1),
(1819, 117, 'AIZ',
'Aizkraukles Rajons', 1),
(1820, 117, 'ALU', 'Aluksnes Rajons', 1),
(1821,
117, 'BAL', 'Balvu Rajons', 1),
(1822, 117, 'BAU', 'Bauskas Rajons',
1),
(1823, 117, 'CES', 'Cesu Rajons', 1),
(1824, 117, 'DGR', 'Daugavpils
Rajons', 1),
(1825, 117, 'DOB', 'Dobeles Rajons', 1),
(1826, 117, 'GUL',
'Gulbenes Rajons', 1),
(1827, 117, 'JEK', 'Jekabpils Rajons', 1),
(1828,
117, 'JGR', 'Jelgavas Rajons', 1),
(1829, 117, 'KRA', 'Kraslavas Rajons',
1),
(1830, 117, 'KUL', 'Kuldigas Rajons', 1),
(1831, 117, 'LPR', 'Liepajas
Rajons', 1),
(1832, 117, 'LIM', 'Limbazu Rajons', 1),
(1833, 117, 'LUD',
'Ludzas Rajons', 1),
(1834, 117, 'MAD', 'Madonas Rajons', 1),
(1835, 117,
'OGR', 'Ogres Rajons', 1),
(1836, 117, 'PRE', 'Preilu Rajons', 1),
(1837,
117, 'RZR', 'Rezeknes Rajons', 1),
(1838, 117, 'RGR', 'Rigas Rajons',
1),
(1839, 117, 'SAL', 'Saldus Rajons', 1),
(1840, 117, 'TAL', 'Talsu
Rajons', 1),
(1841, 117, 'TUK', 'Tukuma Rajons', 1),
(1842, 117, 'VLK',
'Valkas Rajons', 1),
(1843, 117, 'VLM', 'Valmieras Rajons', 1),
(1844, 117,
'VSR', 'Ventspils Rajons', 1),
(1845, 117, 'DGV', 'Daugavpils', 1),
(1846,
117, 'JGV', 'Jelgava', 1),
(1847, 117, 'JUR', 'Jurmala', 1),
(1848, 117,
'LPK', 'Liepaja', 1),
(1849, 117, 'RZK', 'Rezekne', 1),
(1850, 117, 'RGA',
'Riga', 1),
(1851, 117, 'VSL', 'Ventspils', 1),
(1852, 119, 'BE', 'Berea',
1),
(1853, 119, 'BB', 'Butha-Buthe', 1),
(1854, 119, 'LE', 'Leribe',
1),
(1855, 119, 'MF', 'Mafeteng', 1),
(1856, 119, 'MS', 'Maseru',
1),
(1857, 119, 'MH', 'Mohale''s Hoek', 1),
(1858, 119, 'MK', 'Mokhotlong',
1),
(1859, 119, 'QN', 'Qacha''s Nek', 1),
(1860, 119, 'QT', 'Quthing',
1),
(1861, 119, 'TT', 'Thaba-Tseka', 1),
(1862, 120, 'BI', 'Bomi',
1),
(1863, 120, 'BG', 'Bong', 1),
(1864, 120, 'GB', 'Grand Bassa',
1),
(1865, 120, 'CM', 'Grand Cape Mount', 1),
(1866, 120, 'GG', 'Grand
Gedeh', 1),
(1867, 120, 'GK', 'Grand Kru', 1),
(1868, 120, 'LO', 'Lofa',
1),
(1869, 120, 'MG', 'Margibi', 1),
(1870, 120, 'ML', 'Maryland',
1),
(1871, 120, 'MS', 'Montserrado', 1),
(1872, 120, 'NB', 'Nimba',
1),
(1873, 120, 'RC', 'River Cess', 1),
(1874, 120, 'SN', 'Sinoe',
1),
(1875, 121, 'AJ', 'Ajdabiya', 1),
(1876, 121, 'AZ', 'Al ''Aziziyah',
1),
(1877, 121, 'FA', 'Al Fatih', 1),
(1878, 121, 'JA', 'Al Jabal al
Akhdar', 1),
(1879, 121, 'JU', 'Al Jufrah', 1),
(1880, 121, 'KH', 'Al
Khums', 1),
(1881, 121, 'KU', 'Al Kufrah', 1),
(1882, 121, 'NK', 'An Nuqat
al Khams', 1),
(1883, 121, 'AS', 'Ash Shati''', 1),
(1884, 121, 'AW',
'Awbari', 1),
(1885, 121, 'ZA', 'Az Zawiyah', 1),
(1886, 121, 'BA',
'Banghazi', 1),
(1887, 121, 'DA', 'Darnah', 1),
(1888, 121, 'GD',
'Ghadamis', 1),
(1889, 121, 'GY', 'Gharyan', 1),
(1890, 121, 'MI',
'Misratah', 1),
(1891, 121, 'MZ', 'Murzuq', 1),
(1892, 121, 'SB', 'Sabha',
1),
(1893, 121, 'SW', 'Sawfajjin', 1),
(1894, 121, 'SU', 'Surt', 1),
(1895,
121, 'TL', 'Tarabulus (Tripoli)', 1),
(1896, 121, 'TH', 'Tarhunah',
1),
(1897, 121, 'TU', 'Tubruq', 1),
(1898, 121, 'YA', 'Yafran', 1),
(1899,
121, 'ZL', 'Zlitan', 1),
(1900, 122, 'V', 'Vaduz', 1),
(1901, 122, 'A',
'Schaan', 1),
(1902, 122, 'B', 'Balzers', 1),
(1903, 122, 'N', 'Triesen',
1),
(1904, 122, 'E', 'Eschen', 1),
(1905, 122, 'M', 'Mauren', 1),
(1906,
122, 'T', 'Triesenberg', 1),
(1907, 122, 'R', 'Ruggell', 1),
(1908, 122,
'G', 'Gamprin', 1),
(1909, 122, 'L', 'Schellenberg', 1),
(1910, 122, 'P',
'Planken', 1),
(1911, 123, 'AL', 'Alytus', 1),
(1912, 123, 'KA', 'Kaunas',
1),
(1913, 123, 'KL', 'Klaipeda', 1),
(1914, 123, 'MA', 'Marijampole',
1),
(1915, 123, 'PA', 'Panevezys', 1),
(1916, 123, 'SI', 'Siauliai',
1),
(1917, 123, 'TA', 'Taurage', 1),
(1918, 123, 'TE', 'Telsiai',
1),
(1919, 123, 'UT', 'Utena', 1),
(1920, 123, 'VI', 'Vilnius', 1),
(1921,
124, 'DD', 'Diekirch', 1),
(1922, 124, 'DC', 'Clervaux', 1),
(1923, 124,
'DR', 'Redange', 1),
(1924, 124, 'DV', 'Vianden', 1),
(1925, 124, 'DW',
'Wiltz', 1),
(1926, 124, 'GG', 'Grevenmacher', 1),
(1927, 124, 'GE',
'Echternach', 1),
(1928, 124, 'GR', 'Remich', 1),
(1929, 124, 'LL',
'Luxembourg', 1),
(1930, 124, 'LC', 'Capellen', 1),
(1931, 124, 'LE',
'Esch-sur-Alzette', 1),
(1932, 124, 'LM', 'Mersch', 1),
(1933, 125, 'OLF',
'Our Lady Fatima Parish', 1),
(1934, 125, 'ANT', 'St. Anthony Parish',
1),
(1935, 125, 'LAZ', 'St. Lazarus Parish', 1),
(1936, 125, 'CAT',
'Cathedral Parish', 1),
(1937, 125, 'LAW', 'St. Lawrence Parish',
1),
(1938, 127, 'AN', 'Antananarivo', 1),
(1939, 127, 'AS', 'Antsiranana',
1),
(1940, 127, 'FN', 'Fianarantsoa', 1),
(1941, 127, 'MJ', 'Mahajanga',
1),
(1942, 127, 'TM', 'Toamasina', 1),
(1943, 127, 'TL', 'Toliara',
1),
(1944, 128, 'BLK', 'Balaka', 1),
(1945, 128, 'BLT', 'Blantyre',
1),
(1946, 128, 'CKW', 'Chikwawa', 1),
(1947, 128, 'CRD', 'Chiradzulu',
1),
(1948, 128, 'CTP', 'Chitipa', 1),
(1949, 128, 'DDZ', 'Dedza',
1),
(1950, 128, 'DWA', 'Dowa', 1),
(1951, 128, 'KRG', 'Karonga', 1),
(1952,
128, 'KSG', 'Kasungu', 1),
(1953, 128, 'LKM', 'Likoma', 1),
(1954, 128,
'LLG', 'Lilongwe', 1),
(1955, 128, 'MCG', 'Machinga', 1),
(1956, 128,
'MGC', 'Mangochi', 1),
(1957, 128, 'MCH', 'Mchinji', 1),
(1958, 128, 'MLJ',
'Mulanje', 1),
(1959, 128, 'MWZ', 'Mwanza', 1),
(1960, 128, 'MZM',
'Mzimba', 1),
(1961, 128, 'NTU', 'Ntcheu', 1),
(1962, 128, 'NKB', 'Nkhata
Bay', 1),
(1963, 128, 'NKH', 'Nkhotakota', 1),
(1964, 128, 'NSJ', 'Nsanje',
1),
(1965, 128, 'NTI', 'Ntchisi', 1),
(1966, 128, 'PHL', 'Phalombe',
1),
(1967, 128, 'RMP', 'Rumphi', 1),
(1968, 128, 'SLM', 'Salima',
1),
(1969, 128, 'THY', 'Thyolo', 1),
(1970, 128, 'ZBA', 'Zomba', 1),
(1971,
129, 'JO', 'Johor', 1),
(1972, 129, 'KE', 'Kedah', 1),
(1973, 129, 'KL',
'Kelantan', 1),
(1974, 129, 'LA', 'Labuan', 1),
(1975, 129, 'ME', 'Melaka',
1),
(1976, 129, 'NS', 'Negeri Sembilan', 1),
(1977, 129, 'PA', 'Pahang',
1),
(1978, 129, 'PE', 'Perak', 1),
(1979, 129, 'PR', 'Perlis', 1),
(1980,
129, 'PP', 'Pulau Pinang', 1),
(1981, 129, 'SA', 'Sabah', 1),
(1982, 129,
'SR', 'Sarawak', 1),
(1983, 129, 'SE', 'Selangor', 1),
(1984, 129, 'TE',
'Terengganu', 1),
(1985, 129, 'WP', 'Wilayah Persekutuan', 1),
(1986, 130,
'THU', 'Thiladhunmathi Uthuru', 1),
(1987, 130, 'THD', 'Thiladhunmathi
Dhekunu', 1),
(1988, 130, 'MLU', 'Miladhunmadulu Uthuru', 1),
(1989, 130,
'MLD', 'Miladhunmadulu Dhekunu', 1),
(1990, 130, 'MAU', 'Maalhosmadulu
Uthuru', 1),
(1991, 130, 'MAD', 'Maalhosmadulu Dhekunu', 1),
(1992, 130,
'FAA', 'Faadhippolhu', 1),
(1993, 130, 'MAA', 'Male Atoll', 1),
(1994, 130,
'AAU', 'Ari Atoll Uthuru', 1),
(1995, 130, 'AAD', 'Ari Atoll Dheknu',
1),
(1996, 130, 'FEA', 'Felidhe Atoll', 1),
(1997, 130, 'MUA', 'Mulaku
Atoll', 1),
(1998, 130, 'NAU', 'Nilandhe Atoll Uthuru', 1),
(1999, 130,
'NAD', 'Nilandhe Atoll Dhekunu', 1),
(2000, 130, 'KLH', 'Kolhumadulu',
1),
(2001, 130, 'HDH', 'Hadhdhunmathi', 1),
(2002, 130, 'HAU', 'Huvadhu
Atoll Uthuru', 1),
(2003, 130, 'HAD', 'Huvadhu Atoll Dhekunu', 1),
(2004,
130, 'FMU', 'Fua Mulaku', 1),
(2005, 130, 'ADD', 'Addu', 1),
(2006, 131,
'GA', 'Gao', 1),
(2007, 131, 'KY', 'Kayes', 1),
(2008, 131, 'KD', 'Kidal',
1),
(2009, 131, 'KL', 'Koulikoro', 1),
(2010, 131, 'MP', 'Mopti',
1),
(2011, 131, 'SG', 'Segou', 1),
(2012, 131, 'SK', 'Sikasso', 1),
(2013,
131, 'TB', 'Tombouctou', 1),
(2014, 131, 'CD', 'Bamako Capital District',
1),
(2015, 132, 'ATT', 'Attard', 1),
(2016, 132, 'BAL', 'Balzan',
1),
(2017, 132, 'BGU', 'Birgu', 1),
(2018, 132, 'BKK', 'Birkirkara',
1),
(2019, 132, 'BRZ', 'Birzebbuga', 1),
(2020, 132, 'BOR', 'Bormla',
1),
(2021, 132, 'DIN', 'Dingli', 1),
(2022, 132, 'FGU', 'Fgura', 1),
(2023,
132, 'FLO', 'Floriana', 1),
(2024, 132, 'GDJ', 'Gudja', 1),
(2025, 132,
'GZR', 'Gzira', 1),
(2026, 132, 'GRG', 'Gargur', 1),
(2027, 132, 'GXQ',
'Gaxaq', 1),
(2028, 132, 'HMR', 'Hamrun', 1),
(2029, 132, 'IKL', 'Iklin',
1),
(2030, 132, 'ISL', 'Isla', 1),
(2031, 132, 'KLK', 'Kalkara', 1),
(2032,
132, 'KRK', 'Kirkop', 1),
(2033, 132, 'LIJ', 'Lija', 1),
(2034, 132, 'LUQ',
'Luqa', 1),
(2035, 132, 'MRS', 'Marsa', 1),
(2036, 132, 'MKL',
'Marsaskala', 1),
(2037, 132, 'MXL', 'Marsaxlokk', 1),
(2038, 132, 'MDN',
'Mdina', 1),
(2039, 132, 'MEL', 'Melliea', 1),
(2040, 132, 'MGR', 'Mgarr',
1),
(2041, 132, 'MST', 'Mosta', 1),
(2042, 132, 'MQA', 'Mqabba', 1),
(2043,
132, 'MSI', 'Msida', 1),
(2044, 132, 'MTF', 'Mtarfa', 1),
(2045, 132,
'NAX', 'Naxxar', 1),
(2046, 132, 'PAO', 'Paola', 1),
(2047, 132, 'PEM',
'Pembroke', 1),
(2048, 132, 'PIE', 'Pieta', 1),
(2049, 132, 'QOR', 'Qormi',
1),
(2050, 132, 'QRE', 'Qrendi', 1),
(2051, 132, 'RAB', 'Rabat', 1),
(2052,
132, 'SAF', 'Safi', 1),
(2053, 132, 'SGI', 'San Giljan', 1),
(2054, 132,
'SLU', 'Santa Lucija', 1),
(2055, 132, 'SPB', 'San Pawl il-Bahar',
1),
(2056, 132, 'SGW', 'San Gwann', 1),
(2057, 132, 'SVE', 'Santa Venera',
1),
(2058, 132, 'SIG', 'Siggiewi', 1),
(2059, 132, 'SLM', 'Sliema',
1),
(2060, 132, 'SWQ', 'Swieqi', 1),
(2061, 132, 'TXB', 'Ta Xbiex',
1),
(2062, 132, 'TRX', 'Tarxien', 1),
(2063, 132, 'VLT', 'Valletta',
1),
(2064, 132, 'XGJ', 'Xgajra', 1),
(2065, 132, 'ZBR', 'Zabbar',
1),
(2066, 132, 'ZBG', 'Zebbug', 1),
(2067, 132, 'ZJT', 'Zejtun',
1),
(2068, 132, 'ZRQ', 'Zurrieq', 1),
(2069, 132, 'FNT', 'Fontana',
1),
(2070, 132, 'GHJ', 'Ghajnsielem', 1),
(2071, 132, 'GHR', 'Gharb',
1),
(2072, 132, 'GHS', 'Ghasri', 1),
(2073, 132, 'KRC', 'Kercem',
1),
(2074, 132, 'MUN', 'Munxar', 1),
(2075, 132, 'NAD', 'Nadur', 1),
(2076,
132, 'QAL', 'Qala', 1),
(2077, 132, 'VIC', 'Victoria', 1),
(2078, 132,
'SLA', 'San Lawrenz', 1),
(2079, 132, 'SNT', 'Sannat', 1),
(2080, 132,
'ZAG', 'Xagra', 1),
(2081, 132, 'XEW', 'Xewkija', 1),
(2082, 132, 'ZEB',
'Zebbug', 1),
(2083, 133, 'ALG', 'Ailinginae', 1),
(2084, 133, 'ALL',
'Ailinglaplap', 1),
(2085, 133, 'ALK', 'Ailuk', 1),
(2086, 133, 'ARN',
'Arno', 1),
(2087, 133, 'AUR', 'Aur', 1),
(2088, 133, 'BKR', 'Bikar',
1),
(2089, 133, 'BKN', 'Bikini', 1),
(2090, 133, 'BKK', 'Bokak', 1),
(2091,
133, 'EBN', 'Ebon', 1),
(2092, 133, 'ENT', 'Enewetak', 1),
(2093, 133,
'EKB', 'Erikub', 1),
(2094, 133, 'JBT', 'Jabat', 1),
(2095, 133, 'JLT',
'Jaluit', 1),
(2096, 133, 'JEM', 'Jemo', 1),
(2097, 133, 'KIL', 'Kili',
1),
(2098, 133, 'KWJ', 'Kwajalein', 1),
(2099, 133, 'LAE', 'Lae',
1),
(2100, 133, 'LIB', 'Lib', 1),
(2101, 133, 'LKP', 'Likiep', 1),
(2102,
133, 'MJR', 'Majuro', 1),
(2103, 133, 'MLP', 'Maloelap', 1),
(2104, 133,
'MJT', 'Mejit', 1),
(2105, 133, 'MIL', 'Mili', 1),
(2106, 133, 'NMK',
'Namorik', 1),
(2107, 133, 'NAM', 'Namu', 1),
(2108, 133, 'RGL',
'Rongelap', 1),
(2109, 133, 'RGK', 'Rongrik', 1),
(2110, 133, 'TOK',
'Toke', 1),
(2111, 133, 'UJA', 'Ujae', 1),
(2112, 133, 'UJL', 'Ujelang',
1),
(2113, 133, 'UTK', 'Utirik', 1),
(2114, 133, 'WTH', 'Wotho', 1),
(2115,
133, 'WTJ', 'Wotje', 1),
(2116, 135, 'AD', 'Adrar', 1),
(2117, 135, 'AS',
'Assaba', 1),
(2118, 135, 'BR', 'Brakna', 1),
(2119, 135, 'DN', 'Dakhlet
Nouadhibou', 1),
(2120, 135, 'GO', 'Gorgol', 1),
(2121, 135, 'GM',
'Guidimaka', 1),
(2122, 135, 'HC', 'Hodh Ech Chargui', 1),
(2123, 135,
'HG', 'Hodh El Gharbi', 1),
(2124, 135, 'IN', 'Inchiri', 1),
(2125, 135,
'TA', 'Tagant', 1),
(2126, 135, 'TZ', 'Tiris Zemmour', 1),
(2127, 135,
'TR', 'Trarza', 1),
(2128, 135, 'NO', 'Nouakchott', 1),
(2129, 136, 'BR',
'Beau Bassin-Rose Hill', 1),
(2130, 136, 'CU', 'Curepipe', 1),
(2131, 136,
'PU', 'Port Louis', 1),
(2132, 136, 'QB', 'Quatre Bornes', 1),
(2133, 136,
'VP', 'Vacoas-Phoenix', 1),
(2134, 136, 'AG', 'Agalega Islands', 1),
(2135,
136, 'CC', 'Cargados Carajos Shoals (Saint Brandon Islands)', 1),
(2136,
136, 'RO', 'Rodrigues', 1),
(2137, 136, 'BL', 'Black River', 1),
(2138,
136, 'FL', 'Flacq', 1),
(2139, 136, 'GP', 'Grand Port', 1),
(2140, 136,
'MO', 'Moka', 1),
(2141, 136, 'PA', 'Pamplemousses', 1),
(2142, 136, 'PW',
'Plaines Wilhems', 1),
(2143, 136, 'PL', 'Port Louis', 1),
(2144, 136,
'RR', 'Riviere du Rempart', 1),
(2145, 136, 'SA', 'Savanne', 1),
(2146,
138, 'BN', 'Baja California Norte', 1),
(2147, 138, 'BS', 'Baja California
Sur', 1),
(2148, 138, 'CA', 'Campeche', 1),
(2149, 138, 'CI', 'Chiapas',
1),
(2150, 138, 'CH', 'Chihuahua', 1),
(2151, 138, 'CZ', 'Coahuila de
Zaragoza', 1),
(2152, 138, 'CL', 'Colima', 1),
(2153, 138, 'DF', 'Distrito
Federal', 1),
(2154, 138, 'DU', 'Durango', 1),
(2155, 138, 'GA',
'Guanajuato', 1),
(2156, 138, 'GE', 'Guerrero', 1),
(2157, 138, 'HI',
'Hidalgo', 1),
(2158, 138, 'JA', 'Jalisco', 1),
(2159, 138, 'ME', 'Mexico',
1),
(2160, 138, 'MI', 'Michoacan de Ocampo', 1),
(2161, 138, 'MO',
'Morelos', 1),
(2162, 138, 'NA', 'Nayarit', 1),
(2163, 138, 'NL', 'Nuevo
Leon', 1),
(2164, 138, 'OA', 'Oaxaca', 1),
(2165, 138, 'PU', 'Puebla',
1),
(2166, 138, 'QA', 'Queretaro de Arteaga', 1),
(2167, 138, 'QR',
'Quintana Roo', 1),
(2168, 138, 'SA', 'San Luis Potosi', 1),
(2169, 138,
'SI', 'Sinaloa', 1),
(2170, 138, 'SO', 'Sonora', 1),
(2171, 138, 'TB',
'Tabasco', 1),
(2172, 138, 'TM', 'Tamaulipas', 1),
(2173, 138, 'TL',
'Tlaxcala', 1),
(2174, 138, 'VE', 'Veracruz-Llave', 1),
(2175, 138, 'YU',
'Yucatan', 1),
(2176, 138, 'ZA', 'Zacatecas', 1),
(2177, 139, 'C', 'Chuuk',
1),
(2178, 139, 'K', 'Kosrae', 1),
(2179, 139, 'P', 'Pohnpei', 1),
(2180,
139, 'Y', 'Yap', 1),
(2181, 140, 'GA', 'Gagauzia', 1),
(2182, 140, 'CU',
'Chisinau', 1),
(2183, 140, 'BA', 'Balti', 1),
(2184, 140, 'CA', 'Cahul',
1),
(2185, 140, 'ED', 'Edinet', 1),
(2186, 140, 'LA', 'Lapusna', 1),
(2187,
140, 'OR', 'Orhei', 1),
(2188, 140, 'SO', 'Soroca', 1),
(2189, 140, 'TI',
'Tighina', 1),
(2190, 140, 'UN', 'Ungheni', 1),
(2191, 140, 'SN', 'St‚nga
Nistrului', 1),
(2192, 141, 'FV', 'Fontvieille', 1),
(2193, 141, 'LC', 'La
Condamine', 1),
(2194, 141, 'MV', 'Monaco-Ville', 1),
(2195, 141, 'MC',
'Monte-Carlo', 1),
(2196, 142, '1', 'Ulanbaatar', 1),
(2197, 142, '035',
'Orhon', 1),
(2198, 142, '037', 'Darhan uul', 1),
(2199, 142, '039',
'Hentiy', 1),
(2200, 142, '041', 'Hovsgol', 1),
(2201, 142, '043', 'Hovd',
1),
(2202, 142, '046', 'Uvs', 1),
(2203, 142, '047', 'Tov', 1),
(2204, 142,
'049', 'Selenge', 1),
(2205, 142, '051', 'Suhbaatar', 1),
(2206, 142,
'053', 'Omnogovi', 1),
(2207, 142, '055', 'Ovorhangay', 1),
(2208, 142,
'057', 'Dzavhan', 1),
(2209, 142, '059', 'DundgovL', 1),
(2210, 142, '061',
'Dornod', 1),
(2211, 142, '063', 'Dornogov', 1),
(2212, 142, '064',
'Govi-Sumber', 1),
(2213, 142, '065', 'Govi-Altay', 1),
(2214, 142, '067',
'Bulgan', 1),
(2215, 142, '069', 'Bayanhongor', 1),
(2216, 142, '071',
'Bayan-Olgiy', 1),
(2217, 142, '073', 'Arhangay', 1),
(2218, 143, 'A',
'Saint Anthony', 1),
(2219, 143, 'G', 'Saint Georges', 1),
(2220, 143, 'P',
'Saint Peter', 1),
(2221, 144, 'AGD', 'Agadir', 1),
(2222, 144, 'HOC', 'Al
Hoceima', 1),
(2223, 144, 'AZI', 'Azilal', 1),
(2224, 144, 'BME', 'Beni
Mellal', 1),
(2225, 144, 'BSL', 'Ben Slimane', 1),
(2226, 144, 'BLM',
'Boulemane', 1),
(2227, 144, 'CBL', 'Casablanca', 1),
(2228, 144, 'CHA',
'Chaouen', 1),
(2229, 144, 'EJA', 'El Jadida', 1),
(2230, 144, 'EKS', 'El
Kelaa des Sraghna', 1),
(2231, 144, 'ERA', 'Er Rachidia', 1),
(2232, 144,
'ESS', 'Essaouira', 1),
(2233, 144, 'FES', 'Fes', 1),
(2234, 144, 'FIG',
'Figuig', 1),
(2235, 144, 'GLM', 'Guelmim', 1),
(2236, 144, 'IFR',
'Ifrane', 1),
(2237, 144, 'KEN', 'Kenitra', 1),
(2238, 144, 'KHM',
'Khemisset', 1),
(2239, 144, 'KHN', 'Khenifra', 1),
(2240, 144, 'KHO',
'Khouribga', 1),
(2241, 144, 'LYN', 'Laayoune', 1),
(2242, 144, 'LAR',
'Larache', 1),
(2243, 144, 'MRK', 'Marrakech', 1),
(2244, 144, 'MKN',
'Meknes', 1),
(2245, 144, 'NAD', 'Nador', 1),
(2246, 144, 'ORZ',
'Ouarzazate', 1),
(2247, 144, 'OUJ', 'Oujda', 1),
(2248, 144, 'RSA',
'Rabat-Sale', 1),
(2249, 144, 'SAF', 'Safi', 1),
(2250, 144, 'SET',
'Settat', 1),
(2251, 144, 'SKA', 'Sidi Kacem', 1),
(2252, 144, 'TGR',
'Tangier', 1),
(2253, 144, 'TAN', 'Tan-Tan', 1),
(2254, 144, 'TAO',
'Taounate', 1),
(2255, 144, 'TRD', 'Taroudannt', 1),
(2256, 144, 'TAT',
'Tata', 1),
(2257, 144, 'TAZ', 'Taza', 1),
(2258, 144, 'TET', 'Tetouan',
1),
(2259, 144, 'TIZ', 'Tiznit', 1),
(2260, 144, 'ADK', 'Ad Dakhla',
1),
(2261, 144, 'BJD', 'Boujdour', 1),
(2262, 144, 'ESM', 'Es Smara',
1),
(2263, 145, 'CD', 'Cabo Delgado', 1),
(2264, 145, 'GZ', 'Gaza',
1),
(2265, 145, 'IN', 'Inhambane', 1),
(2266, 145, 'MN', 'Manica',
1),
(2267, 145, 'MC', 'Maputo (city)', 1),
(2268, 145, 'MP', 'Maputo',
1),
(2269, 145, 'NA', 'Nampula', 1),
(2270, 145, 'NI', 'Niassa', 1),
(2271,
145, 'SO', 'Sofala', 1),
(2272, 145, 'TE', 'Tete', 1),
(2273, 145, 'ZA',
'Zambezia', 1),
(2274, 146, 'AY', 'Ayeyarwady', 1),
(2275, 146, 'BG',
'Bago', 1),
(2276, 146, 'MG', 'Magway', 1),
(2277, 146, 'MD', 'Mandalay',
1),
(2278, 146, 'SG', 'Sagaing', 1),
(2279, 146, 'TN', 'Tanintharyi',
1),
(2280, 146, 'YG', 'Yangon', 1),
(2281, 146, 'CH', 'Chin State',
1),
(2282, 146, 'KC', 'Kachin State', 1),
(2283, 146, 'KH', 'Kayah State',
1),
(2284, 146, 'KN', 'Kayin State', 1),
(2285, 146, 'MN', 'Mon State',
1),
(2286, 146, 'RK', 'Rakhine State', 1),
(2287, 146, 'SH', 'Shan State',
1),
(2288, 147, 'CA', 'Caprivi', 1),
(2289, 147, 'ER', 'Erongo', 1),
(2290,
147, 'HA', 'Hardap', 1),
(2291, 147, 'KR', 'Karas', 1),
(2292, 147, 'KV',
'Kavango', 1),
(2293, 147, 'KH', 'Khomas', 1),
(2294, 147, 'KU', 'Kunene',
1),
(2295, 147, 'OW', 'Ohangwena', 1),
(2296, 147, 'OK', 'Omaheke',
1),
(2297, 147, 'OT', 'Omusati', 1),
(2298, 147, 'ON', 'Oshana', 1),
(2299,
147, 'OO', 'Oshikoto', 1),
(2300, 147, 'OJ', 'Otjozondjupa', 1),
(2301,
148, 'AO', 'Aiwo', 1),
(2302, 148, 'AA', 'Anabar', 1),
(2303, 148, 'AT',
'Anetan', 1),
(2304, 148, 'AI', 'Anibare', 1),
(2305, 148, 'BA', 'Baiti',
1),
(2306, 148, 'BO', 'Boe', 1),
(2307, 148, 'BU', 'Buada', 1),
(2308, 148,
'DE', 'Denigomodu', 1),
(2309, 148, 'EW', 'Ewa', 1),
(2310, 148, 'IJ',
'Ijuw', 1),
(2311, 148, 'ME', 'Meneng', 1),
(2312, 148, 'NI', 'Nibok',
1),
(2313, 148, 'UA', 'Uaboe', 1),
(2314, 148, 'YA', 'Yaren', 1),
(2315,
149, 'BA', 'Bagmati', 1),
(2316, 149, 'BH', 'Bheri', 1),
(2317, 149, 'DH',
'Dhawalagiri', 1),
(2318, 149, 'GA', 'Gandaki', 1),
(2319, 149, 'JA',
'Janakpur', 1),
(2320, 149, 'KA', 'Karnali', 1),
(2321, 149, 'KO', 'Kosi',
1),
(2322, 149, 'LU', 'Lumbini', 1),
(2323, 149, 'MA', 'Mahakali',
1),
(2324, 149, 'ME', 'Mechi', 1),
(2325, 149, 'NA', 'Narayani', 1),
(2326,
149, 'RA', 'Rapti', 1),
(2327, 149, 'SA', 'Sagarmatha', 1),
(2328, 149,
'SE', 'Seti', 1),
(2329, 150, 'DR', 'Drenthe', 1),
(2330, 150, 'FL',
'Flevoland', 1),
(2331, 150, 'FR', 'Friesland', 1),
(2332, 150, 'GE',
'Gelderland', 1),
(2333, 150, 'GR', 'Groningen', 1),
(2334, 150, 'LI',
'Limburg', 1),
(2335, 150, 'NB', 'Noord Brabant', 1),
(2336, 150, 'NH',
'Noord Holland', 1),
(2337, 150, 'OV', 'Overijssel', 1),
(2338, 150, 'UT',
'Utrecht', 1),
(2339, 150, 'ZE', 'Zeeland', 1),
(2340, 150, 'ZH', 'Zuid
Holland', 1),
(2341, 152, 'L', 'Iles Loyaute', 1),
(2342, 152, 'N', 'Nord',
1),
(2343, 152, 'S', 'Sud', 1),
(2344, 153, 'AUK', 'Auckland', 1),
(2345,
153, 'BOP', 'Bay of Plenty', 1),
(2346, 153, 'CAN', 'Canterbury',
1),
(2347, 153, 'COR', 'Coromandel', 1),
(2348, 153, 'GIS', 'Gisborne',
1),
(2349, 153, 'FIO', 'Fiordland', 1),
(2350, 153, 'HKB', 'Hawke''s Bay',
1),
(2351, 153, 'MBH', 'Marlborough', 1),
(2352, 153, 'MWT',
'Manawatu-Wanganui', 1),
(2353, 153, 'MCM', 'Mt Cook-Mackenzie', 1),
(2354,
153, 'NSN', 'Nelson', 1),
(2355, 153, 'NTL', 'Northland', 1),
(2356, 153,
'OTA', 'Otago', 1),
(2357, 153, 'STL', 'Southland', 1),
(2358, 153, 'TKI',
'Taranaki', 1),
(2359, 153, 'WGN', 'Wellington', 1),
(2360, 153, 'WKO',
'Waikato', 1),
(2361, 153, 'WAI', 'Wairprarapa', 1),
(2362, 153, 'WTC',
'West Coast', 1),
(2363, 154, 'AN', 'Atlantico Norte', 1),
(2364, 154,
'AS', 'Atlantico Sur', 1),
(2365, 154, 'BO', 'Boaco', 1),
(2366, 154, 'CA',
'Carazo', 1),
(2367, 154, 'CI', 'Chinandega', 1),
(2368, 154, 'CO',
'Chontales', 1),
(2369, 154, 'ES', 'Esteli', 1),
(2370, 154, 'GR',
'Granada', 1),
(2371, 154, 'JI', 'Jinotega', 1),
(2372, 154, 'LE', 'Leon',
1),
(2373, 154, 'MD', 'Madriz', 1),
(2374, 154, 'MN', 'Managua', 1),
(2375,
154, 'MS', 'Masaya', 1),
(2376, 154, 'MT', 'Matagalpa', 1),
(2377, 154,
'NS', 'Nuevo Segovia', 1),
(2378, 154, 'RS', 'Rio San Juan', 1),
(2379,
154, 'RI', 'Rivas', 1),
(2380, 155, 'AG', 'Agadez', 1),
(2381, 155, 'DF',
'Diffa', 1),
(2382, 155, 'DS', 'Dosso', 1),
(2383, 155, 'MA', 'Maradi',
1),
(2384, 155, 'NM', 'Niamey', 1),
(2385, 155, 'TH', 'Tahoua', 1),
(2386,
155, 'TL', 'Tillaberi', 1),
(2387, 155, 'ZD', 'Zinder', 1),
(2388, 156,
'AB', 'Abia', 1),
(2389, 156, 'CT', 'Abuja Federal Capital Territory',
1),
(2390, 156, 'AD', 'Adamawa', 1),
(2391, 156, 'AK', 'Akwa Ibom',
1),
(2392, 156, 'AN', 'Anambra', 1),
(2393, 156, 'BC', 'Bauchi', 1),
(2394,
156, 'BY', 'Bayelsa', 1),
(2395, 156, 'BN', 'Benue', 1),
(2396, 156, 'BO',
'Borno', 1),
(2397, 156, 'CR', 'Cross River', 1),
(2398, 156, 'DE',
'Delta', 1),
(2399, 156, 'EB', 'Ebonyi', 1),
(2400, 156, 'ED', 'Edo',
1),
(2401, 156, 'EK', 'Ekiti', 1),
(2402, 156, 'EN', 'Enugu', 1),
(2403,
156, 'GO', 'Gombe', 1),
(2404, 156, 'IM', 'Imo', 1),
(2405, 156, 'JI',
'Jigawa', 1),
(2406, 156, 'KD', 'Kaduna', 1),
(2407, 156, 'KN', 'Kano',
1),
(2408, 156, 'KT', 'Katsina', 1),
(2409, 156, 'KE', 'Kebbi', 1),
(2410,
156, 'KO', 'Kogi', 1),
(2411, 156, 'KW', 'Kwara', 1),
(2412, 156, 'LA',
'Lagos', 1),
(2413, 156, 'NA', 'Nassarawa', 1),
(2414, 156, 'NI', 'Niger',
1),
(2415, 156, 'OG', 'Ogun', 1),
(2416, 156, 'ONG', 'Ondo', 1),
(2417,
156, 'OS', 'Osun', 1),
(2418, 156, 'OY', 'Oyo', 1),
(2419, 156, 'PL',
'Plateau', 1),
(2420, 156, 'RI', 'Rivers', 1),
(2421, 156, 'SO', 'Sokoto',
1),
(2422, 156, 'TA', 'Taraba', 1),
(2423, 156, 'YO', 'Yobe', 1),
(2424,
156, 'ZA', 'Zamfara', 1),
(2425, 159, 'N', 'Northern Islands', 1),
(2426,
159, 'R', 'Rota', 1),
(2427, 159, 'S', 'Saipan', 1),
(2428, 159, 'T',
'Tinian', 1),
(2429, 160, 'AK', 'Akershus', 1),
(2430, 160, 'AA',
'Aust-Agder', 1),
(2431, 160, 'BU', 'Buskerud', 1),
(2432, 160, 'FM',
'Finnmark', 1),
(2433, 160, 'HM', 'Hedmark', 1),
(2434, 160, 'HL',
'Hordaland', 1),
(2435, 160, 'MR', 'More og Romdal', 1),
(2436, 160, 'NT',
'Nord-Trondelag', 1),
(2437, 160, 'NL', 'Nordland', 1),
(2438, 160, 'OF',
'Ostfold', 1),
(2439, 160, 'OP', 'Oppland', 1),
(2440, 160, 'OL', 'Oslo',
1),
(2441, 160, 'RL', 'Rogaland', 1),
(2442, 160, 'ST', 'Sor-Trondelag',
1),
(2443, 160, 'SJ', 'Sogn og Fjordane', 1),
(2444, 160, 'SV', 'Svalbard',
1),
(2445, 160, 'TM', 'Telemark', 1),
(2446, 160, 'TR', 'Troms', 1),
(2447,
160, 'VA', 'Vest-Agder', 1),
(2448, 160, 'VF', 'Vestfold', 1),
(2449, 161,
'DA', 'Ad Dakhiliyah', 1),
(2450, 161, 'BA', 'Al Batinah', 1),
(2451, 161,
'WU', 'Al Wusta', 1),
(2452, 161, 'SH', 'Ash Sharqiyah', 1),
(2453, 161,
'ZA', 'Az Zahirah', 1),
(2454, 161, 'MA', 'Masqat', 1),
(2455, 161, 'MU',
'Musandam', 1),
(2456, 161, 'ZU', 'Zufar', 1),
(2457, 162, 'B',
'Balochistan', 1),
(2458, 162, 'T', 'Federally Administered Tribal Areas',
1),
(2459, 162, 'I', 'Islamabad Capital Territory', 1),
(2460, 162, 'N',
'North-West Frontier', 1),
(2461, 162, 'P', 'Punjab', 1),
(2462, 162, 'S',
'Sindh', 1),
(2463, 163, 'AM', 'Aimeliik', 1),
(2464, 163, 'AR', 'Airai',
1),
(2465, 163, 'AN', 'Angaur', 1),
(2466, 163, 'HA', 'Hatohobei',
1),
(2467, 163, 'KA', 'Kayangel', 1),
(2468, 163, 'KO', 'Koror', 1),
(2469,
163, 'ME', 'Melekeok', 1),
(2470, 163, 'NA', 'Ngaraard', 1),
(2471, 163,
'NG', 'Ngarchelong', 1),
(2472, 163, 'ND', 'Ngardmau', 1),
(2473, 163,
'NT', 'Ngatpang', 1),
(2474, 163, 'NC', 'Ngchesar', 1),
(2475, 163, 'NR',
'Ngeremlengui', 1),
(2476, 163, 'NW', 'Ngiwal', 1),
(2477, 163, 'PE',
'Peleliu', 1),
(2478, 163, 'SO', 'Sonsorol', 1),
(2479, 164, 'BT', 'Bocas
del Toro', 1),
(2480, 164, 'CH', 'Chiriqui', 1),
(2481, 164, 'CC', 'Cocle',
1),
(2482, 164, 'CL', 'Colon', 1),
(2483, 164, 'DA', 'Darien', 1),
(2484,
164, 'HE', 'Herrera', 1),
(2485, 164, 'LS', 'Los Santos', 1),
(2486, 164,
'PA', 'Panama', 1),
(2487, 164, 'SB', 'San Blas', 1),
(2488, 164, 'VG',
'Veraguas', 1),
(2489, 165, 'BV', 'Bougainville', 1),
(2490, 165, 'CE',
'Central', 1),
(2491, 165, 'CH', 'Chimbu', 1),
(2492, 165, 'EH', 'Eastern
Highlands', 1),
(2493, 165, 'EB', 'East New Britain', 1),
(2494, 165, 'ES',
'East Sepik', 1),
(2495, 165, 'EN', 'Enga', 1),
(2496, 165, 'GU', 'Gulf',
1),
(2497, 165, 'MD', 'Madang', 1),
(2498, 165, 'MN', 'Manus', 1),
(2499,
165, 'MB', 'Milne Bay', 1),
(2500, 165, 'MR', 'Morobe', 1),
(2501, 165,
'NC', 'National Capital', 1),
(2502, 165, 'NI', 'New Ireland', 1),
(2503,
165, 'NO', 'Northern', 1),
(2504, 165, 'SA', 'Sandaun', 1),
(2505, 165,
'SH', 'Southern Highlands', 1),
(2506, 165, 'WE', 'Western', 1),
(2507,
165, 'WH', 'Western Highlands', 1),
(2508, 165, 'WB', 'West New Britain',
1),
(2509, 166, 'AG', 'Alto Paraguay', 1),
(2510, 166, 'AN', 'Alto Parana',
1),
(2511, 166, 'AM', 'Amambay', 1),
(2512, 166, 'AS', 'Asuncion',
1),
(2513, 166, 'BO', 'Boqueron', 1),
(2514, 166, 'CG', 'Caaguazu',
1),
(2515, 166, 'CZ', 'Caazapa', 1),
(2516, 166, 'CN', 'Canindeyu',
1),
(2517, 166, 'CE', 'Central', 1),
(2518, 166, 'CC', 'Concepcion',
1),
(2519, 166, 'CD', 'Cordillera', 1),
(2520, 166, 'GU', 'Guaira',
1),
(2521, 166, 'IT', 'Itapua', 1),
(2522, 166, 'MI', 'Misiones',
1),
(2523, 166, 'NE', 'Neembucu', 1),
(2524, 166, 'PA', 'Paraguari',
1),
(2525, 166, 'PH', 'Presidente Hayes', 1),
(2526, 166, 'SP', 'San
Pedro', 1),
(2527, 167, 'AM', 'Amazonas', 1),
(2528, 167, 'AN', 'Ancash',
1),
(2529, 167, 'AP', 'Apurimac', 1),
(2530, 167, 'AR', 'Arequipa',
1),
(2531, 167, 'AY', 'Ayacucho', 1),
(2532, 167, 'CJ', 'Cajamarca',
1),
(2533, 167, 'CL', 'Callao', 1),
(2534, 167, 'CU', 'Cusco', 1),
(2535,
167, 'HV', 'Huancavelica', 1),
(2536, 167, 'HO', 'Huanuco', 1),
(2537, 167,
'IC', 'Ica', 1),
(2538, 167, 'JU', 'Junin', 1),
(2539, 167, 'LD', 'La
Libertad', 1),
(2540, 167, 'LY', 'Lambayeque', 1),
(2541, 167, 'LI',
'Lima', 1),
(2542, 167, 'LO', 'Loreto', 1),
(2543, 167, 'MD', 'Madre de
Dios', 1),
(2544, 167, 'MO', 'Moquegua', 1),
(2545, 167, 'PA', 'Pasco',
1),
(2546, 167, 'PI', 'Piura', 1),
(2547, 167, 'PU', 'Puno', 1),
(2548,
167, 'SM', 'San Martin', 1),
(2549, 167, 'TA', 'Tacna', 1),
(2550, 167,
'TU', 'Tumbes', 1),
(2551, 167, 'UC', 'Ucayali', 1),
(2552, 168, 'ABR',
'Abra', 1),
(2553, 168, 'ANO', 'Agusan del Norte', 1),
(2554, 168, 'ASU',
'Agusan del Sur', 1),
(2555, 168, 'AKL', 'Aklan', 1),
(2556, 168, 'ALB',
'Albay', 1),
(2557, 168, 'ANT', 'Antique', 1),
(2558, 168, 'APY', 'Apayao',
1),
(2559, 168, 'AUR', 'Aurora', 1),
(2560, 168, 'BAS', 'Basilan',
1),
(2561, 168, 'BTA', 'Bataan', 1),
(2562, 168, 'BTE', 'Batanes',
1),
(2563, 168, 'BTG', 'Batangas', 1),
(2564, 168, 'BLR', 'Biliran',
1),
(2565, 168, 'BEN', 'Benguet', 1),
(2566, 168, 'BOL', 'Bohol',
1),
(2567, 168, 'BUK', 'Bukidnon', 1),
(2568, 168, 'BUL', 'Bulacan',
1),
(2569, 168, 'CAG', 'Cagayan', 1),
(2570, 168, 'CNO', 'Camarines Norte',
1),
(2571, 168, 'CSU', 'Camarines Sur', 1),
(2572, 168, 'CAM', 'Camiguin',
1),
(2573, 168, 'CAP', 'Capiz', 1),
(2574, 168, 'CAT', 'Catanduanes',
1),
(2575, 168, 'CAV', 'Cavite', 1),
(2576, 168, 'CEB', 'Cebu', 1),
(2577,
168, 'CMP', 'Compostela', 1),
(2578, 168, 'DNO', 'Davao del Norte',
1),
(2579, 168, 'DSU', 'Davao del Sur', 1),
(2580, 168, 'DOR', 'Davao
Oriental', 1),
(2581, 168, 'ESA', 'Eastern Samar', 1),
(2582, 168, 'GUI',
'Guimaras', 1),
(2583, 168, 'IFU', 'Ifugao', 1),
(2584, 168, 'INO', 'Ilocos
Norte', 1),
(2585, 168, 'ISU', 'Ilocos Sur', 1),
(2586, 168, 'ILO',
'Iloilo', 1),
(2587, 168, 'ISA', 'Isabela', 1),
(2588, 168, 'KAL',
'Kalinga', 1),
(2589, 168, 'LAG', 'Laguna', 1),
(2590, 168, 'LNO', 'Lanao
del Norte', 1),
(2591, 168, 'LSU', 'Lanao del Sur', 1),
(2592, 168, 'UNI',
'La Union', 1),
(2593, 168, 'LEY', 'Leyte', 1),
(2594, 168, 'MAG',
'Maguindanao', 1),
(2595, 168, 'MRN', 'Marinduque', 1),
(2596, 168, 'MSB',
'Masbate', 1),
(2597, 168, 'MIC', 'Mindoro Occidental', 1),
(2598, 168,
'MIR', 'Mindoro Oriental', 1),
(2599, 168, 'MSC', 'Misamis Occidental',
1),
(2600, 168, 'MOR', 'Misamis Oriental', 1),
(2601, 168, 'MOP',
'Mountain', 1),
(2602, 168, 'NOC', 'Negros Occidental', 1),
(2603, 168,
'NOR', 'Negros Oriental', 1),
(2604, 168, 'NCT', 'North Cotabato',
1),
(2605, 168, 'NSM', 'Northern Samar', 1),
(2606, 168, 'NEC', 'Nueva
Ecija', 1),
(2607, 168, 'NVZ', 'Nueva Vizcaya', 1),
(2608, 168, 'PLW',
'Palawan', 1),
(2609, 168, 'PMP', 'Pampanga', 1),
(2610, 168, 'PNG',
'Pangasinan', 1),
(2611, 168, 'QZN', 'Quezon', 1),
(2612, 168, 'QRN',
'Quirino', 1),
(2613, 168, 'RIZ', 'Rizal', 1),
(2614, 168, 'ROM',
'Romblon', 1),
(2615, 168, 'SMR', 'Samar', 1),
(2616, 168, 'SRG',
'Sarangani', 1),
(2617, 168, 'SQJ', 'Siquijor', 1),
(2618, 168, 'SRS',
'Sorsogon', 1),
(2619, 168, 'SCO', 'South Cotabato', 1),
(2620, 168, 'SLE',
'Southern Leyte', 1),
(2621, 168, 'SKU', 'Sultan Kudarat', 1),
(2622, 168,
'SLU', 'Sulu', 1),
(2623, 168, 'SNO', 'Surigao del Norte', 1),
(2624, 168,
'SSU', 'Surigao del Sur', 1),
(2625, 168, 'TAR', 'Tarlac', 1),
(2626, 168,
'TAW', 'Tawi-Tawi', 1),
(2627, 168, 'ZBL', 'Zambales', 1),
(2628, 168,
'ZNO', 'Zamboanga del Norte', 1),
(2629, 168, 'ZSU', 'Zamboanga del Sur',
1),
(2630, 168, 'ZSI', 'Zamboanga Sibugay', 1),
(2631, 170, 'DO',
'Dolnoslaskie', 1),
(2632, 170, 'KP', 'Kujawsko-Pomorskie', 1),
(2633, 170,
'LO', 'Lodzkie', 1),
(2634, 170, 'LL', 'Lubelskie', 1),
(2635, 170, 'LU',
'Lubuskie', 1),
(2636, 170, 'ML', 'Malopolskie', 1),
(2637, 170, 'MZ',
'Mazowieckie', 1),
(2638, 170, 'OP', 'Opolskie', 1),
(2639, 170, 'PP',
'Podkarpackie', 1),
(2640, 170, 'PL', 'Podlaskie', 1),
(2641, 170, 'PM',
'Pomorskie', 1),
(2642, 170, 'SL', 'Slaskie', 1),
(2643, 170, 'SW',
'Swietokrzyskie', 1),
(2644, 170, 'WM', 'Warminsko-Mazurskie', 1),
(2645,
170, 'WP', 'Wielkopolskie', 1),
(2646, 170, 'ZA', 'Zachodniopomorskie',
1),
(2647, 198, 'P', 'Saint Pierre', 1),
(2648, 198, 'M', 'Miquelon',
1),
(2649, 171, 'AC', 'Açores', 1),
(2650, 171, 'AV', 'Aveiro',
1),
(2651, 171, 'BE', 'Beja', 1),
(2652, 171, 'BR', 'Braga', 1),
(2653,
171, 'BA', 'Bragança', 1),
(2654, 171, 'CB', 'Castelo Branco',
1),
(2655, 171, 'CO', 'Coimbra', 1),
(2656, 171, 'EV', 'Évora',
1),
(2657, 171, 'FA', 'Faro', 1),
(2658, 171, 'GU', 'Guarda', 1),
(2659,
171, 'LE', 'Leiria', 1),
(2660, 171, 'LI', 'Lisboa', 1),
(2661, 171, 'ME',
'Madeira', 1),
(2662, 171, 'PO', 'Portalegre', 1),
(2663, 171, 'PR',
'Porto', 1),
(2664, 171, 'SA', 'Santarém', 1),
(2665, 171, 'SE',
'Setúbal', 1),
(2666, 171, 'VC', 'Viana do Castelo', 1),
(2667,
171, 'VR', 'Vila Real', 1),
(2668, 171, 'VI', 'Viseu', 1),
(2669, 173,
'DW', 'Ad Dawhah', 1),
(2670, 173, 'GW', 'Al Ghuwayriyah', 1),
(2671, 173,
'JM', 'Al Jumayliyah', 1),
(2672, 173, 'KR', 'Al Khawr', 1),
(2673, 173,
'WK', 'Al Wakrah', 1),
(2674, 173, 'RN', 'Ar Rayyan', 1),
(2675, 173, 'JB',
'Jarayan al Batinah', 1),
(2676, 173, 'MS', 'Madinat ash Shamal',
1),
(2677, 173, 'UD', 'Umm Sa''id', 1),
(2678, 173, 'UL', 'Umm Salal',
1),
(2679, 175, 'AB', 'Alba', 1),
(2680, 175, 'AR', 'Arad', 1),
(2681, 175,
'AG', 'Arges', 1),
(2682, 175, 'BC', 'Bacau', 1),
(2683, 175, 'BH',
'Bihor', 1),
(2684, 175, 'BN', 'Bistrita-Nasaud', 1),
(2685, 175, 'BT',
'Botosani', 1),
(2686, 175, 'BV', 'Brasov', 1),
(2687, 175, 'BR', 'Braila',
1),
(2688, 175, 'B', 'Bucuresti', 1),
(2689, 175, 'BZ', 'Buzau', 1),
(2690,
175, 'CS', 'Caras-Severin', 1),
(2691, 175, 'CL', 'Calarasi', 1),
(2692,
175, 'CJ', 'Cluj', 1),
(2693, 175, 'CT', 'Constanta', 1),
(2694, 175, 'CV',
'Covasna', 1),
(2695, 175, 'DB', 'Dimbovita', 1),
(2696, 175, 'DJ', 'Dolj',
1),
(2697, 175, 'GL', 'Galati', 1),
(2698, 175, 'GR', 'Giurgiu', 1),
(2699,
175, 'GJ', 'Gorj', 1),
(2700, 175, 'HR', 'Harghita', 1),
(2701, 175, 'HD',
'Hunedoara', 1),
(2702, 175, 'IL', 'Ialomita', 1),
(2703, 175, 'IS',
'Iasi', 1),
(2704, 175, 'IF', 'Ilfov', 1),
(2705, 175, 'MM', 'Maramures',
1),
(2706, 175, 'MH', 'Mehedinti', 1),
(2707, 175, 'MS', 'Mures',
1),
(2708, 175, 'NT', 'Neamt', 1),
(2709, 175, 'OT', 'Olt', 1),
(2710, 175,
'PH', 'Prahova', 1),
(2711, 175, 'SM', 'Satu-Mare', 1),
(2712, 175, 'SJ',
'Salaj', 1),
(2713, 175, 'SB', 'Sibiu', 1),
(2714, 175, 'SV', 'Suceava',
1),
(2715, 175, 'TR', 'Teleorman', 1),
(2716, 175, 'TM', 'Timis',
1),
(2717, 175, 'TL', 'Tulcea', 1),
(2718, 175, 'VS', 'Vaslui', 1),
(2719,
175, 'VL', 'Valcea', 1),
(2720, 175, 'VN', 'Vrancea', 1),
(2721, 176, 'KK',
'Республика Хакасия', 1),
(2722, 176, 'MOS',
'Московская область', 1),
(2723, 176, 'CHU',
'Чукотский АО', 1),
(2724, 176, 'ARK',
'Архангельская область', 1),
(2725, 176, 'AST',
'Астраханская область', 1),
(2726, 176, 'ALT',
'Алтайский край', 1),
(2727, 176, 'BEL',
'Белгородская область', 1),
(2728, 176, 'YEV',
'Еврейская АО', 1),
(2729, 176, 'AMU', 'Амурская
область', 1),
(2730, 176, 'BRY', 'Брянская область',
1),
(2731, 176, 'CU', 'Чувашская Республика', 1),
(2732,
176, 'CHE', 'Челябинская область', 1),
(2733, 176, 'KC',
'Карачаево-Черкеcсия', 1),
(2734, 176, 'ZAB',
'Забайкальский край', 1),
(2735, 176, 'LEN',
'Ленинградская область', 1),
(2736, 176, 'KL',
'Республика Калмыкия', 1),
(2737, 176, 'SAK',
'Сахалинская область', 1),
(2738, 176, 'AL',
'Республика Алтай', 1),
(2739, 176, 'CE',
'Чеченская Республика', 1),
(2740, 176, 'IRK',
'Иркутская область', 1),
(2741, 176, 'IVA',
'Ивановская область', 1),
(2742, 176, 'UD',
'Удмуртская Республика', 1),
(2743, 176, 'KGD',
'Калининградская область', 1),
(2744, 176, 'KLU',
'Калужская область', 1),
(2746, 176, 'TA',
'Республика Татарстан', 1),
(2747, 176, 'KEM',
'Кемеровская область', 1),
(2748, 176, 'KHA',
'Хабаровский край', 1),
(2749, 176, 'KHM',
'Ханты-Мансийский АО - Югра', 1),
(2750, 176, 'KOS',
'Костромская область', 1),
(2751, 176, 'KDA',
'Краснодарский край', 1),
(2752, 176, 'KYA',
'Красноярский край', 1),
(2754, 176, 'KGN',
'Курганская область', 1),
(2755, 176, 'KRS',
'Курская область', 1),
(2756, 176, 'TY',
'Республика Тыва', 1),
(2757, 176, 'LIP', 'Липецкая
область', 1),
(2758, 176, 'MAG', 'Магаданская
область', 1),
(2759, 176, 'DA', 'Республика
Дагестан', 1),
(2760, 176, 'AD', 'Республика
Адыгея', 1),
(2761, 176, 'MOW', 'Москва', 1),
(2762, 176,
'MUR', 'Мурманская область', 1),
(2763, 176, 'KB',
'Республика Кабардино-Балкария', 1),
(2764, 176,
'NEN', 'Ненецкий АО', 1),
(2765, 176, 'IN', 'Республика
Ингушетия', 1),
(2766, 176, 'NIZ', 'Нижегородская
область', 1),
(2767, 176, 'NGR', 'Новгородская
область', 1),
(2768, 176, 'NVS', 'Новосибирская
область', 1),
(2769, 176, 'OMS', 'Омская область',
1),
(2770, 176, 'ORL', 'Орловская область', 1),
(2771, 176,
'ORE', 'Оренбургская область', 1),
(2773, 176, 'PNZ',
'Пензенская область', 1),
(2774, 176, 'PER',
'Пермский край', 1),
(2775, 176, 'KAM', 'Камчатский
край', 1),
(2776, 176, 'KR', 'Республика Карелия',
1),
(2777, 176, 'PSK', 'Псковская область', 1),
(2778, 176,
'ROS', 'Ростовская область', 1),
(2779, 176, 'RYA',
'Рязанская область', 1),
(2780, 176, 'YAN',
'Ямало-Ненецкий АО', 1),
(2781, 176, 'SAM',
'Самарская область', 1),
(2782, 176, 'MO',
'Республика Мордовия', 1),
(2783, 176, 'SAR',
'Саратовская область', 1),
(2784, 176, 'SMO',
'Смоленская область', 1),
(2785, 176, 'SPE',
'Санкт-Петербург', 1),
(2786, 176, 'STA',
'Ставропольский край', 1),
(2787, 176, 'KO',
'Республика Коми', 1),
(2788, 176, 'TAM',
'Тамбовская область', 1),
(2789, 176, 'TOM',
'Томская область', 1),
(2790, 176, 'TUL', 'Тульская
область', 1),
(2792, 176, 'TVE', 'Тверская область',
1),
(2793, 176, 'TYU', 'Тюменская область', 1),
(2794, 176,
'BA', 'Республика Башкортостан', 1),
(2795, 176,
'ULY', 'Ульяновская область', 1),
(2796, 176, 'BU',
'Республика Бурятия', 1),
(2798, 176, 'SE',
'Республика Северная Осетия', 1),
(2799, 176,
'VLA', 'Владимирская область', 1),
(2800, 176, 'PRI',
'Приморский край', 1),
(2801, 176, 'VGG',
'Волгоградская область', 1),
(2802, 176, 'VLG',
'Вологодская область', 1),
(2803, 176, 'VOR',
'Воронежская область', 1),
(2804, 176, 'KIR',
'Кировская область', 1),
(2805, 176, 'SA',
'Республика Саха', 1),
(2806, 176, 'YAR',
'Ярославская область', 1),
(2807, 176, 'SVE',
'Свердловская область', 1),
(2808, 176, 'ME',
'Республика Марий Эл', 1),
(2809, 177, 'BU', 'Butare',
1),
(2810, 177, 'BY', 'Byumba', 1),
(2811, 177, 'CY', 'Cyangugu',
1),
(2812, 177, 'GK', 'Gikongoro', 1),
(2813, 177, 'GS', 'Gisenyi',
1),
(2814, 177, 'GT', 'Gitarama', 1),
(2815, 177, 'KG', 'Kibungo',
1),
(2816, 177, 'KY', 'Kibuye', 1),
(2817, 177, 'KR', 'Kigali Rurale',
1),
(2818, 177, 'KV', 'Kigali-ville', 1),
(2819, 177, 'RU', 'Ruhengeri',
1),
(2820, 177, 'UM', 'Umutara', 1),
(2821, 178, 'CCN', 'Christ Church
Nichola Town', 1),
(2822, 178, 'SAS', 'Saint Anne Sandy Point', 1),
(2823,
178, 'SGB', 'Saint George Basseterre', 1),
(2824, 178, 'SGG', 'Saint George
Gingerland', 1),
(2825, 178, 'SJW', 'Saint James Windward', 1),
(2826, 178,
'SJC', 'Saint John Capesterre', 1),
(2827, 178, 'SJF', 'Saint John
Figtree', 1),
(2828, 178, 'SMC', 'Saint Mary Cayon', 1),
(2829, 178, 'CAP',
'Saint Paul Capesterre', 1),
(2830, 178, 'CHA', 'Saint Paul Charlestown',
1),
(2831, 178, 'SPB', 'Saint Peter Basseterre', 1),
(2832, 178, 'STL',
'Saint Thomas Lowland', 1),
(2833, 178, 'STM', 'Saint Thomas Middle
Island', 1),
(2834, 178, 'TPP', 'Trinity Palmetto Point', 1),
(2835, 179,
'AR', 'Anse-la-Raye', 1),
(2836, 179, 'CA', 'Castries', 1),
(2837, 179,
'CH', 'Choiseul', 1),
(2838, 179, 'DA', 'Dauphin', 1),
(2839, 179, 'DE',
'Dennery', 1),
(2840, 179, 'GI', 'Gros-Islet', 1),
(2841, 179, 'LA',
'Laborie', 1),
(2842, 179, 'MI', 'Micoud', 1),
(2843, 179, 'PR', 'Praslin',
1),
(2844, 179, 'SO', 'Soufriere', 1),
(2845, 179, 'VF', 'Vieux-Fort',
1),
(2846, 180, 'C', 'Charlotte', 1),
(2847, 180, 'R', 'Grenadines',
1),
(2848, 180, 'A', 'Saint Andrew', 1),
(2849, 180, 'D', 'Saint David',
1),
(2850, 180, 'G', 'Saint George', 1),
(2851, 180, 'P', 'Saint Patrick',
1),
(2852, 181, 'AN', 'A''ana', 1),
(2853, 181, 'AI', 'Aiga-i-le-Tai',
1),
(2854, 181, 'AT', 'Atua', 1),
(2855, 181, 'FA', 'Fa''asaleleaga',
1),
(2856, 181, 'GE', 'Gaga''emauga', 1),
(2857, 181, 'GF', 'Gagaifomauga',
1),
(2858, 181, 'PA', 'Palauli', 1),
(2859, 181, 'SA', 'Satupa''itea',
1),
(2860, 181, 'TU', 'Tuamasaga', 1),
(2861, 181, 'VF', 'Va''a-o-Fonoti',
1),
(2862, 181, 'VS', 'Vaisigano', 1),
(2863, 182, 'AC', 'Acquaviva',
1),
(2864, 182, 'BM', 'Borgo Maggiore', 1),
(2865, 182, 'CH',
'Chiesanuova', 1),
(2866, 182, 'DO', 'Domagnano', 1),
(2867, 182, 'FA',
'Faetano', 1),
(2868, 182, 'FI', 'Fiorentino', 1),
(2869, 182, 'MO',
'Montegiardino', 1),
(2870, 182, 'SM', 'Citta di San Marino', 1),
(2871,
182, 'SE', 'Serravalle', 1),
(2872, 183, 'S', 'Sao Tome', 1),
(2873, 183,
'P', 'Principe', 1),
(2874, 184, 'BH', 'Al Bahah', 1),
(2875, 184, 'HS',
'Al Hudud ash Shamaliyah', 1),
(2876, 184, 'JF', 'Al Jawf', 1),
(2877, 184,
'MD', 'Al Madinah', 1),
(2878, 184, 'QS', 'Al Qasim', 1),
(2879, 184, 'RD',
'Ar Riyad', 1),
(2880, 184, 'AQ', 'Ash Sharqiyah (Eastern)', 1),
(2881,
184, 'AS', '''Asir', 1),
(2882, 184, 'HL', 'Ha''il', 1),
(2883, 184, 'JZ',
'Jizan', 1),
(2884, 184, 'ML', 'Makkah', 1),
(2885, 184, 'NR', 'Najran',
1),
(2886, 184, 'TB', 'Tabuk', 1),
(2887, 185, 'DA', 'Dakar', 1),
(2888,
185, 'DI', 'Diourbel', 1),
(2889, 185, 'FA', 'Fatick', 1),
(2890, 185,
'KA', 'Kaolack', 1),
(2891, 185, 'KO', 'Kolda', 1),
(2892, 185, 'LO',
'Louga', 1),
(2893, 185, 'MA', 'Matam', 1),
(2894, 185, 'SL',
'Saint-Louis', 1),
(2895, 185, 'TA', 'Tambacounda', 1),
(2896, 185, 'TH',
'Thies', 1),
(2897, 185, 'ZI', 'Ziguinchor', 1),
(2898, 186, 'AP', 'Anse
aux Pins', 1),
(2899, 186, 'AB', 'Anse Boileau', 1),
(2900, 186, 'AE',
'Anse Etoile', 1),
(2901, 186, 'AL', 'Anse Louis', 1),
(2902, 186, 'AR',
'Anse Royale', 1),
(2903, 186, 'BL', 'Baie Lazare', 1),
(2904, 186, 'BS',
'Baie Sainte Anne', 1),
(2905, 186, 'BV', 'Beau Vallon', 1),
(2906, 186,
'BA', 'Bel Air', 1),
(2907, 186, 'BO', 'Bel Ombre', 1),
(2908, 186, 'CA',
'Cascade', 1),
(2909, 186, 'GL', 'Glacis', 1),
(2910, 186, 'GM', 'Grand''
Anse (on Mahe)', 1),
(2911, 186, 'GP', 'Grand'' Anse (on Praslin)',
1),
(2912, 186, 'DG', 'La Digue', 1),
(2913, 186, 'RA', 'La Riviere
Anglaise', 1),
(2914, 186, 'MB', 'Mont Buxton', 1),
(2915, 186, 'MF', 'Mont
Fleuri', 1),
(2916, 186, 'PL', 'Plaisance', 1),
(2917, 186, 'PR', 'Pointe
La Rue', 1),
(2918, 186, 'PG', 'Port Glaud', 1),
(2919, 186, 'SL', 'Saint
Louis', 1),
(2920, 186, 'TA', 'Takamaka', 1),
(2921, 187, 'E', 'Eastern',
1),
(2922, 187, 'N', 'Northern', 1),
(2923, 187, 'S', 'Southern',
1),
(2924, 187, 'W', 'Western', 1),
(2925, 189, 'BA', 'Banskobystrický',
1),
(2926, 189, 'BR', 'Bratislavský', 1),
(2927, 189, 'KO', 'Košický',
1),
(2928, 189, 'NI', 'Nitriansky', 1),
(2929, 189, 'PR', 'Prešovský',
1),
(2930, 189, 'TC', 'Trenčiansky', 1),
(2931, 189, 'TV', 'Trnavský',
1),
(2932, 189, 'ZI', 'Žilinský', 1),
(2933, 191, 'CE', 'Central',
1),
(2934, 191, 'CH', 'Choiseul', 1),
(2935, 191, 'GC', 'Guadalcanal',
1),
(2936, 191, 'HO', 'Honiara', 1),
(2937, 191, 'IS', 'Isabel', 1),
(2938,
191, 'MK', 'Makira', 1),
(2939, 191, 'ML', 'Malaita', 1),
(2940, 191, 'RB',
'Rennell and Bellona', 1),
(2941, 191, 'TM', 'Temotu', 1),
(2942, 191,
'WE', 'Western', 1),
(2943, 192, 'AW', 'Awdal', 1),
(2944, 192, 'BK',
'Bakool', 1),
(2945, 192, 'BN', 'Banaadir', 1),
(2946, 192, 'BR', 'Bari',
1),
(2947, 192, 'BY', 'Bay', 1),
(2948, 192, 'GA', 'Galguduud', 1),
(2949,
192, 'GE', 'Gedo', 1),
(2950, 192, 'HI', 'Hiiraan', 1),
(2951, 192, 'JD',
'Jubbada Dhexe', 1),
(2952, 192, 'JH', 'Jubbada Hoose', 1),
(2953, 192,
'MU', 'Mudug', 1),
(2954, 192, 'NU', 'Nugaal', 1),
(2955, 192, 'SA',
'Sanaag', 1),
(2956, 192, 'SD', 'Shabeellaha Dhexe', 1),
(2957, 192, 'SH',
'Shabeellaha Hoose', 1),
(2958, 192, 'SL', 'Sool', 1),
(2959, 192, 'TO',
'Togdheer', 1),
(2960, 192, 'WG', 'Woqooyi Galbeed', 1),
(2961, 193, 'EC',
'Eastern Cape', 1),
(2962, 193, 'FS', 'Free State', 1),
(2963, 193, 'GT',
'Gauteng', 1),
(2964, 193, 'KN', 'KwaZulu-Natal', 1),
(2965, 193, 'LP',
'Limpopo', 1),
(2966, 193, 'MP', 'Mpumalanga', 1),
(2967, 193, 'NW', 'North
West', 1),
(2968, 193, 'NC', 'Northern Cape', 1),
(2969, 193, 'WC',
'Western Cape', 1),
(2970, 195, 'CA', 'La Coruña', 1),
(2971,
195, 'AL', 'Álava', 1),
(2972, 195, 'AB', 'Albacete', 1),
(2973,
195, 'AC', 'Alicante', 1),
(2974, 195, 'AM', 'Almeria', 1),
(2975, 195,
'AS', 'Asturias', 1),
(2976, 195, 'AV', 'Ávila', 1),
(2977, 195,
'BJ', 'Badajoz', 1),
(2978, 195, 'IB', 'Baleares', 1),
(2979, 195, 'BA',
'Barcelona', 1),
(2980, 195, 'BU', 'Burgos', 1),
(2981, 195, 'CC',
'Cáceres', 1),
(2982, 195, 'CZ', 'Cádiz', 1),
(2983,
195, 'CT', 'Cantabria', 1),
(2984, 195, 'CL', 'Castellón',
1),
(2985, 195, 'CE', 'Ceuta', 1),
(2986, 195, 'CR', 'Ciudad Real',
1),
(2987, 195, 'CD', 'Córdoba', 1),
(2988, 195, 'CU', 'Cuenca',
1),
(2989, 195, 'GI', 'Girona', 1),
(2990, 195, 'GD', 'Granada', 1),
(2991,
195, 'GJ', 'Guadalajara', 1),
(2992, 195, 'GP', 'Guipúzcoa',
1),
(2993, 195, 'HL', 'Huelva', 1),
(2994, 195, 'HS', 'Huesca', 1),
(2995,
195, 'JN', 'Jaén', 1),
(2996, 195, 'RJ', 'La Rioja', 1),
(2997,
195, 'PM', 'Las Palmas', 1),
(2998, 195, 'LE', 'Leon', 1),
(2999, 195,
'LL', 'Lleida', 1),
(3000, 195, 'LG', 'Lugo', 1),
(3001, 195, 'MD',
'Madrid', 1),
(3002, 195, 'MA', 'Malaga', 1),
(3003, 195, 'ML', 'Melilla',
1),
(3004, 195, 'MU', 'Murcia', 1),
(3005, 195, 'NV', 'Navarra', 1),
(3006,
195, 'OU', 'Ourense', 1),
(3007, 195, 'PL', 'Palencia', 1),
(3008, 195,
'PO', 'Pontevedra', 1),
(3009, 195, 'SL', 'Salamanca', 1),
(3010, 195,
'SC', 'Santa Cruz de Tenerife', 1),
(3011, 195, 'SG', 'Segovia', 1),
(3012,
195, 'SV', 'Sevilla', 1),
(3013, 195, 'SO', 'Soria', 1),
(3014, 195, 'TA',
'Tarragona', 1),
(3015, 195, 'TE', 'Teruel', 1),
(3016, 195, 'TO',
'Toledo', 1),
(3017, 195, 'VC', 'Valencia', 1),
(3018, 195, 'VD',
'Valladolid', 1),
(3019, 195, 'VZ', 'Vizcaya', 1),
(3020, 195, 'ZM',
'Zamora', 1),
(3021, 195, 'ZR', 'Zaragoza', 1),
(3022, 196, 'CE',
'Central', 1),
(3023, 196, 'EA', 'Eastern', 1),
(3024, 196, 'NC', 'North
Central', 1),
(3025, 196, 'NO', 'Northern', 1),
(3026, 196, 'NW', 'North
Western', 1),
(3027, 196, 'SA', 'Sabaragamuwa', 1),
(3028, 196, 'SO',
'Southern', 1),
(3029, 196, 'UV', 'Uva', 1),
(3030, 196, 'WE', 'Western',
1),
(3031, 197, 'A', 'Ascension', 1),
(3032, 197, 'S', 'Saint Helena',
1),
(3033, 197, 'T', 'Tristan da Cunha', 1),
(3034, 199, 'ANL', 'A''ali an
Nil', 1),
(3035, 199, 'BAM', 'Al Bahr al Ahmar', 1),
(3036, 199, 'BRT', 'Al
Buhayrat', 1),
(3037, 199, 'JZR', 'Al Jazirah', 1),
(3038, 199, 'KRT', 'Al
Khartum', 1);
INSERT INTO `oc_zone` (`zone_id`, `country_id`, `code`,
`name`, `status`) VALUES
(3039, 199, 'QDR', 'Al Qadarif', 1),
(3040, 199,
'WDH', 'Al Wahdah', 1),
(3041, 199, 'ANB', 'An Nil al Abyad', 1),
(3042,
199, 'ANZ', 'An Nil al Azraq', 1),
(3043, 199, 'ASH', 'Ash Shamaliyah',
1),
(3044, 199, 'BJA', 'Bahr al Jabal', 1),
(3045, 199, 'GIS', 'Gharb al
Istiwa''iyah', 1),
(3046, 199, 'GBG', 'Gharb Bahr al Ghazal', 1),
(3047,
199, 'GDA', 'Gharb Darfur', 1),
(3048, 199, 'GKU', 'Gharb Kurdufan',
1),
(3049, 199, 'JDA', 'Janub Darfur', 1),
(3050, 199, 'JKU', 'Janub
Kurdufan', 1),
(3051, 199, 'JQL', 'Junqali', 1),
(3052, 199, 'KSL',
'Kassala', 1),
(3053, 199, 'NNL', 'Nahr an Nil', 1),
(3054, 199, 'SBG',
'Shamal Bahr al Ghazal', 1),
(3055, 199, 'SDA', 'Shamal Darfur', 1),
(3056,
199, 'SKU', 'Shamal Kurdufan', 1),
(3057, 199, 'SIS', 'Sharq al
Istiwa''iyah', 1),
(3058, 199, 'SNR', 'Sinnar', 1),
(3059, 199, 'WRB',
'Warab', 1),
(3060, 200, 'BR', 'Brokopondo', 1),
(3061, 200, 'CM',
'Commewijne', 1),
(3062, 200, 'CR', 'Coronie', 1),
(3063, 200, 'MA',
'Marowijne', 1),
(3064, 200, 'NI', 'Nickerie', 1),
(3065, 200, 'PA',
'Para', 1),
(3066, 200, 'PM', 'Paramaribo', 1),
(3067, 200, 'SA',
'Saramacca', 1),
(3068, 200, 'SI', 'Sipaliwini', 1),
(3069, 200, 'WA',
'Wanica', 1),
(3070, 202, 'H', 'Hhohho', 1),
(3071, 202, 'L', 'Lubombo',
1),
(3072, 202, 'M', 'Manzini', 1),
(3073, 202, 'S', 'Shishelweni',
1),
(3074, 203, 'K', 'Blekinge', 1),
(3075, 203, 'W', 'Dalarna', 1),
(3076,
203, 'X', 'Gävleborg', 1),
(3077, 203, 'I', 'Gotland', 1),
(3078,
203, 'N', 'Halland', 1),
(3079, 203, 'Z', 'Jämtland', 1),
(3080,
203, 'F', 'Jönköping', 1),
(3081, 203, 'H', 'Kalmar',
1),
(3082, 203, 'G', 'Kronoberg', 1),
(3083, 203, 'BD', 'Norrbotten',
1),
(3084, 203, 'T', 'Örebro', 1),
(3085, 203, 'E',
'Östergötland', 1),
(3086, 203, 'M', 'Skåne',
1),
(3087, 203, 'D', 'Södermanland', 1),
(3088, 203, 'AB',
'Stockholm', 1),
(3089, 203, 'C', 'Uppsala', 1),
(3090, 203, 'S',
'Värmland', 1),
(3091, 203, 'AC', 'Västerbotten',
1),
(3092, 203, 'Y', 'Västernorrland', 1),
(3093, 203, 'U',
'Västmanland', 1),
(3094, 203, 'O', 'Västra
Götaland', 1),
(3095, 204, 'AG', 'Aargau', 1),
(3096, 204, 'AR',
'Appenzell Ausserrhoden', 1),
(3097, 204, 'AI', 'Appenzell Innerrhoden',
1),
(3098, 204, 'BS', 'Basel-Stadt', 1),
(3099, 204, 'BL',
'Basel-Landschaft', 1),
(3100, 204, 'BE', 'Bern', 1),
(3101, 204, 'FR',
'Fribourg', 1),
(3102, 204, 'GE', 'Genève', 1),
(3103, 204,
'GL', 'Glarus', 1),
(3104, 204, 'GR', 'Graubünden', 1),
(3105,
204, 'JU', 'Jura', 1),
(3106, 204, 'LU', 'Luzern', 1),
(3107, 204, 'NE',
'Neuchâtel', 1),
(3108, 204, 'NW', 'Nidwald', 1),
(3109, 204,
'OW', 'Obwald', 1),
(3110, 204, 'SG', 'St. Gallen', 1),
(3111, 204, 'SH',
'Schaffhausen', 1),
(3112, 204, 'SZ', 'Schwyz', 1),
(3113, 204, 'SO',
'Solothurn', 1),
(3114, 204, 'TG', 'Thurgau', 1),
(3115, 204, 'TI',
'Ticino', 1),
(3116, 204, 'UR', 'Uri', 1),
(3117, 204, 'VS', 'Valais',
1),
(3118, 204, 'VD', 'Vaud', 1),
(3119, 204, 'ZG', 'Zug', 1),
(3120, 204,
'ZH', 'Zürich', 1),
(3121, 205, 'HA', 'Al Hasakah', 1),
(3122,
205, 'LA', 'Al Ladhiqiyah', 1),
(3123, 205, 'QU', 'Al Qunaytirah',
1),
(3124, 205, 'RQ', 'Ar Raqqah', 1),
(3125, 205, 'SU', 'As Suwayda',
1),
(3126, 205, 'DA', 'Dara', 1),
(3127, 205, 'DZ', 'Dayr az Zawr',
1),
(3128, 205, 'DI', 'Dimashq', 1),
(3129, 205, 'HL', 'Halab', 1),
(3130,
205, 'HM', 'Hamah', 1),
(3131, 205, 'HI', 'Hims', 1),
(3132, 205, 'ID',
'Idlib', 1),
(3133, 205, 'RD', 'Rif Dimashq', 1),
(3134, 205, 'TA',
'Tartus', 1),
(3135, 206, 'CH', 'Chang-hua', 1),
(3136, 206, 'CI',
'Chia-i', 1),
(3137, 206, 'HS', 'Hsin-chu', 1),
(3138, 206, 'HL',
'Hua-lien', 1),
(3139, 206, 'IL', 'I-lan', 1),
(3140, 206, 'KH',
'Kao-hsiung county', 1),
(3141, 206, 'KM', 'Kin-men', 1),
(3142, 206, 'LC',
'Lien-chiang', 1),
(3143, 206, 'ML', 'Miao-li', 1),
(3144, 206, 'NT',
'Nan-t''ou', 1),
(3145, 206, 'PH', 'P''eng-hu', 1),
(3146, 206, 'PT',
'P''ing-tung', 1),
(3147, 206, 'TG', 'T''ai-chung', 1),
(3148, 206, 'TA',
'T''ai-nan', 1),
(3149, 206, 'TP', 'T''ai-pei county', 1),
(3150, 206,
'TT', 'T''ai-tung', 1),
(3151, 206, 'TY', 'T''ao-yuan', 1),
(3152, 206,
'YL', 'Yun-lin', 1),
(3153, 206, 'CC', 'Chia-i city', 1),
(3154, 206, 'CL',
'Chi-lung', 1),
(3155, 206, 'HC', 'Hsin-chu', 1),
(3156, 206, 'TH',
'T''ai-chung', 1),
(3157, 206, 'TN', 'T''ai-nan', 1),
(3158, 206, 'KC',
'Kao-hsiung city', 1),
(3159, 206, 'TC', 'T''ai-pei city', 1),
(3160, 207,
'GB', 'Gorno-Badakhstan', 1),
(3161, 207, 'KT', 'Khatlon', 1),
(3162, 207,
'SU', 'Sughd', 1),
(3163, 208, 'AR', 'Arusha', 1),
(3164, 208, 'DS', 'Dar
es Salaam', 1),
(3165, 208, 'DO', 'Dodoma', 1),
(3166, 208, 'IR', 'Iringa',
1),
(3167, 208, 'KA', 'Kagera', 1),
(3168, 208, 'KI', 'Kigoma', 1),
(3169,
208, 'KJ', 'Kilimanjaro', 1),
(3170, 208, 'LN', 'Lindi', 1),
(3171, 208,
'MY', 'Manyara', 1),
(3172, 208, 'MR', 'Mara', 1),
(3173, 208, 'MB',
'Mbeya', 1),
(3174, 208, 'MO', 'Morogoro', 1),
(3175, 208, 'MT', 'Mtwara',
1),
(3176, 208, 'MW', 'Mwanza', 1),
(3177, 208, 'PN', 'Pemba North',
1),
(3178, 208, 'PS', 'Pemba South', 1),
(3179, 208, 'PW', 'Pwani',
1),
(3180, 208, 'RK', 'Rukwa', 1),
(3181, 208, 'RV', 'Ruvuma', 1),
(3182,
208, 'SH', 'Shinyanga', 1),
(3183, 208, 'SI', 'Singida', 1),
(3184, 208,
'TB', 'Tabora', 1),
(3185, 208, 'TN', 'Tanga', 1),
(3186, 208, 'ZC',
'Zanzibar Central/South', 1),
(3187, 208, 'ZN', 'Zanzibar North',
1),
(3188, 208, 'ZU', 'Zanzibar Urban/West', 1),
(3189, 209, 'Amnat
Charoen', 'Amnat Charoen', 1),
(3190, 209, 'Ang Thong', 'Ang Thong',
1),
(3191, 209, 'Ayutthaya', 'Ayutthaya', 1),
(3192, 209, 'Bangkok',
'Bangkok', 1),
(3193, 209, 'Buriram', 'Buriram', 1),
(3194, 209,
'Chachoengsao', 'Chachoengsao', 1),
(3195, 209, 'Chai Nat', 'Chai Nat',
1),
(3196, 209, 'Chaiyaphum', 'Chaiyaphum', 1),
(3197, 209, 'Chanthaburi',
'Chanthaburi', 1),
(3198, 209, 'Chiang Mai', 'Chiang Mai', 1),
(3199, 209,
'Chiang Rai', 'Chiang Rai', 1),
(3200, 209, 'Chon Buri', 'Chon Buri',
1),
(3201, 209, 'Chumphon', 'Chumphon', 1),
(3202, 209, 'Kalasin',
'Kalasin', 1),
(3203, 209, 'Kamphaeng Phet', 'Kamphaeng Phet', 1),
(3204,
209, 'Kanchanaburi', 'Kanchanaburi', 1),
(3205, 209, 'Khon Kaen', 'Khon
Kaen', 1),
(3206, 209, 'Krabi', 'Krabi', 1),
(3207, 209, 'Lampang',
'Lampang', 1),
(3208, 209, 'Lamphun', 'Lamphun', 1),
(3209, 209, 'Loei',
'Loei', 1),
(3210, 209, 'Lop Buri', 'Lop Buri', 1),
(3211, 209, 'Mae Hong
Son', 'Mae Hong Son', 1),
(3212, 209, 'Maha Sarakham', 'Maha Sarakham',
1),
(3213, 209, 'Mukdahan', 'Mukdahan', 1),
(3214, 209, 'Nakhon Nayok',
'Nakhon Nayok', 1),
(3215, 209, 'Nakhon Pathom', 'Nakhon Pathom',
1),
(3216, 209, 'Nakhon Phanom', 'Nakhon Phanom', 1),
(3217, 209, 'Nakhon
Ratchasima', 'Nakhon Ratchasima', 1),
(3218, 209, 'Nakhon Sawan', 'Nakhon
Sawan', 1),
(3219, 209, 'Nakhon Si Thammarat', 'Nakhon Si Thammarat',
1),
(3220, 209, 'Nan', 'Nan', 1),
(3221, 209, 'Narathiwat', 'Narathiwat',
1),
(3222, 209, 'Nong Bua Lamphu', 'Nong Bua Lamphu', 1),
(3223, 209, 'Nong
Khai', 'Nong Khai', 1),
(3224, 209, 'Nonthaburi', 'Nonthaburi', 1),
(3225,
209, 'Pathum Thani', 'Pathum Thani', 1),
(3226, 209, 'Pattani', 'Pattani',
1),
(3227, 209, 'Phangnga', 'Phangnga', 1),
(3228, 209, 'Phatthalung',
'Phatthalung', 1),
(3229, 209, 'Phayao', 'Phayao', 1),
(3230, 209,
'Phetchabun', 'Phetchabun', 1),
(3231, 209, 'Phetchaburi', 'Phetchaburi',
1),
(3232, 209, 'Phichit', 'Phichit', 1),
(3233, 209, 'Phitsanulok',
'Phitsanulok', 1),
(3234, 209, 'Phrae', 'Phrae', 1),
(3235, 209, 'Phuket',
'Phuket', 1),
(3236, 209, 'Prachin Buri', 'Prachin Buri', 1),
(3237, 209,
'Prachuap Khiri Khan', 'Prachuap Khiri Khan', 1),
(3238, 209, 'Ranong',
'Ranong', 1),
(3239, 209, 'Ratchaburi', 'Ratchaburi', 1),
(3240, 209,
'Rayong', 'Rayong', 1),
(3241, 209, 'Roi Et', 'Roi Et', 1),
(3242, 209, 'Sa
Kaeo', 'Sa Kaeo', 1),
(3243, 209, 'Sakon Nakhon', 'Sakon Nakhon',
1),
(3244, 209, 'Samut Prakan', 'Samut Prakan', 1),
(3245, 209, 'Samut
Sakhon', 'Samut Sakhon', 1),
(3246, 209, 'Samut Songkhram', 'Samut
Songkhram', 1),
(3247, 209, 'Sara Buri', 'Sara Buri', 1),
(3248, 209,
'Satun', 'Satun', 1),
(3249, 209, 'Sing Buri', 'Sing Buri', 1),
(3250, 209,
'Sisaket', 'Sisaket', 1),
(3251, 209, 'Songkhla', 'Songkhla', 1),
(3252,
209, 'Sukhothai', 'Sukhothai', 1),
(3253, 209, 'Suphan Buri', 'Suphan
Buri', 1),
(3254, 209, 'Surat Thani', 'Surat Thani', 1),
(3255, 209,
'Surin', 'Surin', 1),
(3256, 209, 'Tak', 'Tak', 1),
(3257, 209, 'Trang',
'Trang', 1),
(3258, 209, 'Trat', 'Trat', 1),
(3259, 209, 'Ubon
Ratchathani', 'Ubon Ratchathani', 1),
(3260, 209, 'Udon Thani', 'Udon
Thani', 1),
(3261, 209, 'Uthai Thani', 'Uthai Thani', 1),
(3262, 209,
'Uttaradit', 'Uttaradit', 1),
(3263, 209, 'Yala', 'Yala', 1),
(3264, 209,
'Yasothon', 'Yasothon', 1),
(3265, 210, 'K', 'Kara', 1),
(3266, 210, 'P',
'Plateaux', 1),
(3267, 210, 'S', 'Savanes', 1),
(3268, 210, 'C',
'Centrale', 1),
(3269, 210, 'M', 'Maritime', 1),
(3270, 211, 'A', 'Atafu',
1),
(3271, 211, 'F', 'Fakaofo', 1),
(3272, 211, 'N', 'Nukunonu', 1),
(3273,
212, 'H', 'Ha''apai', 1),
(3274, 212, 'T', 'Tongatapu', 1),
(3275, 212,
'V', 'Vava''u', 1),
(3276, 213, 'CT', 'Couva/Tabaquite/Talparo', 1),
(3277,
213, 'DM', 'Diego Martin', 1),
(3278, 213, 'MR', 'Mayaro/Rio Claro',
1),
(3279, 213, 'PD', 'Penal/Debe', 1),
(3280, 213, 'PT', 'Princes Town',
1),
(3281, 213, 'SG', 'Sangre Grande', 1),
(3282, 213, 'SL', 'San
Juan/Laventille', 1),
(3283, 213, 'SI', 'Siparia', 1),
(3284, 213, 'TP',
'Tunapuna/Piarco', 1),
(3285, 213, 'PS', 'Port of Spain', 1),
(3286, 213,
'SF', 'San Fernando', 1),
(3287, 213, 'AR', 'Arima', 1),
(3288, 213, 'PF',
'Point Fortin', 1),
(3289, 213, 'CH', 'Chaguanas', 1),
(3290, 213, 'TO',
'Tobago', 1),
(3291, 214, 'AR', 'Ariana', 1),
(3292, 214, 'BJ', 'Beja',
1),
(3293, 214, 'BA', 'Ben Arous', 1),
(3294, 214, 'BI', 'Bizerte',
1),
(3295, 214, 'GB', 'Gabes', 1),
(3296, 214, 'GF', 'Gafsa', 1),
(3297,
214, 'JE', 'Jendouba', 1),
(3298, 214, 'KR', 'Kairouan', 1),
(3299, 214,
'KS', 'Kasserine', 1),
(3300, 214, 'KB', 'Kebili', 1),
(3301, 214, 'KF',
'Kef', 1),
(3302, 214, 'MH', 'Mahdia', 1),
(3303, 214, 'MN', 'Manouba',
1),
(3304, 214, 'ME', 'Medenine', 1),
(3305, 214, 'MO', 'Monastir',
1),
(3306, 214, 'NA', 'Nabeul', 1),
(3307, 214, 'SF', 'Sfax', 1),
(3308,
214, 'SD', 'Sidi', 1),
(3309, 214, 'SL', 'Siliana', 1),
(3310, 214, 'SO',
'Sousse', 1),
(3311, 214, 'TA', 'Tataouine', 1),
(3312, 214, 'TO',
'Tozeur', 1),
(3313, 214, 'TU', 'Tunis', 1),
(3314, 214, 'ZA', 'Zaghouan',
1),
(3315, 215, 'ADA', 'Adana', 1),
(3316, 215, 'ADI', 'Adıyaman',
1),
(3317, 215, 'AFY', 'Afyonkarahisar', 1),
(3318, 215, 'AGR', 'Ağrı',
1),
(3319, 215, 'AKS', 'Aksaray', 1),
(3320, 215, 'AMA', 'Amasya',
1),
(3321, 215, 'ANK', 'Ankara', 1),
(3322, 215, 'ANT', 'Antalya',
1),
(3323, 215, 'ARD', 'Ardahan', 1),
(3324, 215, 'ART', 'Artvin',
1),
(3325, 215, 'AYI', 'Aydın', 1),
(3326, 215, 'BAL', 'Balıkesir',
1),
(3327, 215, 'BAR', 'Bartın', 1),
(3328, 215, 'BAT', 'Batman',
1),
(3329, 215, 'BAY', 'Bayburt', 1),
(3330, 215, 'BIL', 'Bilecik',
1),
(3331, 215, 'BIN', 'Bingöl', 1),
(3332, 215, 'BIT', 'Bitlis',
1),
(3333, 215, 'BOL', 'Bolu', 1),
(3334, 215, 'BRD', 'Burdur', 1),
(3335,
215, 'BRS', 'Bursa', 1),
(3336, 215, 'CKL', 'Çanakkale', 1),
(3337, 215,
'CKR', 'Çankırı', 1),
(3338, 215, 'COR', 'Çorum', 1),
(3339, 215,
'DEN', 'Denizli', 1),
(3340, 215, 'DIY', 'Diyarbakir', 1),
(3341, 215,
'DUZ', 'Düzce', 1),
(3342, 215, 'EDI', 'Edirne', 1),
(3343, 215, 'ELA',
'Elazig', 1),
(3344, 215, 'EZC', 'Erzincan', 1),
(3345, 215, 'EZR',
'Erzurum', 1),
(3346, 215, 'ESK', 'Eskişehir', 1),
(3347, 215, 'GAZ',
'Gaziantep', 1),
(3348, 215, 'GIR', 'Giresun', 1),
(3349, 215, 'GMS',
'Gümüşhane', 1),
(3350, 215, 'HKR', 'Hakkari', 1),
(3351, 215, 'HTY',
'Hatay', 1),
(3352, 215, 'IGD', 'Iğdır', 1),
(3353, 215, 'ISP',
'Isparta', 1),
(3354, 215, 'IST', 'İstanbul', 1),
(3355, 215, 'IZM',
'İzmir', 1),
(3356, 215, 'KAH', 'Kahramanmaraş', 1),
(3357, 215, 'KRB',
'Karabük', 1),
(3358, 215, 'KRM', 'Karaman', 1),
(3359, 215, 'KRS',
'Kars', 1),
(3360, 215, 'KAS', 'Kastamonu', 1),
(3361, 215, 'KAY',
'Kayseri', 1),
(3362, 215, 'KLS', 'Kilis', 1),
(3363, 215, 'KRK',
'Kirikkale', 1),
(3364, 215, 'KLR', 'Kirklareli', 1),
(3365, 215, 'KRH',
'Kirsehir', 1),
(3366, 215, 'KOC', 'Kocaeli', 1),
(3367, 215, 'KON',
'Konya', 1),
(3368, 215, 'KUT', 'Kütahya', 1),
(3369, 215, 'MAL',
'Malatya', 1),
(3370, 215, 'MAN', 'Manisa', 1),
(3371, 215, 'MAR',
'Mardin', 1),
(3372, 215, 'MER', 'Mersin', 1),
(3373, 215, 'MUG', 'Muğla',
1),
(3374, 215, 'MUS', 'Muş', 1),
(3375, 215, 'NEV', 'Nevşehir',
1),
(3376, 215, 'NIG', 'Niğde', 1),
(3377, 215, 'ORD', 'Ordu', 1),
(3378,
215, 'OSM', 'Osmaniye', 1),
(3379, 215, 'RIZ', 'Rize', 1),
(3380, 215,
'SAK', 'Sakarya', 1),
(3381, 215, 'SAM', 'Samsun', 1),
(3382, 215, 'SAN',
'Şanlıurfa', 1),
(3383, 215, 'SII', 'Siirt', 1),
(3384, 215, 'SIN',
'Sinop', 1),
(3385, 215, 'SIR', 'Şırnak', 1),
(3386, 215, 'SIV', 'Sivas',
1),
(3387, 215, 'TEL', 'Tekirdağ', 1),
(3388, 215, 'TOK', 'Tokat',
1),
(3389, 215, 'TRA', 'Trabzon', 1),
(3390, 215, 'TUN', 'Tunceli',
1),
(3391, 215, 'USK', 'Uşak', 1),
(3392, 215, 'VAN', 'Van', 1),
(3393,
215, 'YAL', 'Yalova', 1),
(3394, 215, 'YOZ', 'Yozgat', 1),
(3395, 215,
'ZON', 'Zonguldak', 1),
(3396, 216, 'A', 'Ahal Welayaty', 1),
(3397, 216,
'B', 'Balkan Welayaty', 1),
(3398, 216, 'D', 'Dashhowuz Welayaty',
1),
(3399, 216, 'L', 'Lebap Welayaty', 1),
(3400, 216, 'M', 'Mary
Welayaty', 1),
(3401, 217, 'AC', 'Ambergris Cays', 1),
(3402, 217, 'DC',
'Dellis Cay', 1),
(3403, 217, 'FC', 'French Cay', 1),
(3404, 217, 'LW',
'Little Water Cay', 1),
(3405, 217, 'RC', 'Parrot Cay', 1),
(3406, 217,
'PN', 'Pine Cay', 1),
(3407, 217, 'SL', 'Salt Cay', 1),
(3408, 217, 'GT',
'Grand Turk', 1),
(3409, 217, 'SC', 'South Caicos', 1),
(3410, 217, 'EC',
'East Caicos', 1),
(3411, 217, 'MC', 'Middle Caicos', 1),
(3412, 217, 'NC',
'North Caicos', 1),
(3413, 217, 'PR', 'Providenciales', 1),
(3414, 217,
'WC', 'West Caicos', 1),
(3415, 218, 'NMG', 'Nanumanga', 1),
(3416, 218,
'NLK', 'Niulakita', 1),
(3417, 218, 'NTO', 'Niutao', 1),
(3418, 218, 'FUN',
'Funafuti', 1),
(3419, 218, 'NME', 'Nanumea', 1),
(3420, 218, 'NUI', 'Nui',
1),
(3421, 218, 'NFT', 'Nukufetau', 1),
(3422, 218, 'NLL', 'Nukulaelae',
1),
(3423, 218, 'VAI', 'Vaitupu', 1),
(3424, 219, 'KAL', 'Kalangala',
1),
(3425, 219, 'KMP', 'Kampala', 1),
(3426, 219, 'KAY', 'Kayunga',
1),
(3427, 219, 'KIB', 'Kiboga', 1),
(3428, 219, 'LUW', 'Luwero',
1),
(3429, 219, 'MAS', 'Masaka', 1),
(3430, 219, 'MPI', 'Mpigi', 1),
(3431,
219, 'MUB', 'Mubende', 1),
(3432, 219, 'MUK', 'Mukono', 1),
(3433, 219,
'NKS', 'Nakasongola', 1),
(3434, 219, 'RAK', 'Rakai', 1),
(3435, 219,
'SEM', 'Sembabule', 1),
(3436, 219, 'WAK', 'Wakiso', 1),
(3437, 219, 'BUG',
'Bugiri', 1),
(3438, 219, 'BUS', 'Busia', 1),
(3439, 219, 'IGA', 'Iganga',
1),
(3440, 219, 'JIN', 'Jinja', 1),
(3441, 219, 'KAB', 'Kaberamaido',
1),
(3442, 219, 'KML', 'Kamuli', 1),
(3443, 219, 'KPC', 'Kapchorwa',
1),
(3444, 219, 'KTK', 'Katakwi', 1),
(3445, 219, 'KUM', 'Kumi', 1),
(3446,
219, 'MAY', 'Mayuge', 1),
(3447, 219, 'MBA', 'Mbale', 1),
(3448, 219,
'PAL', 'Pallisa', 1),
(3449, 219, 'SIR', 'Sironko', 1),
(3450, 219, 'SOR',
'Soroti', 1),
(3451, 219, 'TOR', 'Tororo', 1),
(3452, 219, 'ADJ',
'Adjumani', 1),
(3453, 219, 'APC', 'Apac', 1),
(3454, 219, 'ARU', 'Arua',
1),
(3455, 219, 'GUL', 'Gulu', 1),
(3456, 219, 'KIT', 'Kitgum', 1),
(3457,
219, 'KOT', 'Kotido', 1),
(3458, 219, 'LIR', 'Lira', 1),
(3459, 219, 'MRT',
'Moroto', 1),
(3460, 219, 'MOY', 'Moyo', 1),
(3461, 219, 'NAK',
'Nakapiripirit', 1),
(3462, 219, 'NEB', 'Nebbi', 1),
(3463, 219, 'PAD',
'Pader', 1),
(3464, 219, 'YUM', 'Yumbe', 1),
(3465, 219, 'BUN',
'Bundibugyo', 1),
(3466, 219, 'BSH', 'Bushenyi', 1),
(3467, 219, 'HOI',
'Hoima', 1),
(3468, 219, 'KBL', 'Kabale', 1),
(3469, 219, 'KAR',
'Kabarole', 1),
(3470, 219, 'KAM', 'Kamwenge', 1),
(3471, 219, 'KAN',
'Kanungu', 1),
(3472, 219, 'KAS', 'Kasese', 1),
(3473, 219, 'KBA',
'Kibaale', 1),
(3474, 219, 'KIS', 'Kisoro', 1),
(3475, 219, 'KYE',
'Kyenjojo', 1),
(3476, 219, 'MSN', 'Masindi', 1),
(3477, 219, 'MBR',
'Mbarara', 1),
(3478, 219, 'NTU', 'Ntungamo', 1),
(3479, 219, 'RUK',
'Rukungiri', 1),
(3480, 220, 'CK', 'Черкассы', 1),
(3481, 220,
'CH', 'Чернигов', 1),
(3482, 220, 'CV', 'Черновцы',
1),
(3483, 220, 'CR', 'Крым', 1),
(3484, 220, 'DN',
'Днепропетровск', 1),
(3485, 220, 'DO', 'Донецк',
1),
(3486, 220, 'IV', 'Ивано-Франковск', 1),
(3487, 220,
'KH', 'Харьков', 1),
(3488, 220, 'KM', 'Хмельницкий',
1),
(3489, 220, 'KR', 'Кировоград', 1),
(3490, 220, 'KV',
'Киевская область', 1),
(3491, 220, 'KY', 'Киев',
1),
(3492, 220, 'LU', 'Луганск', 1),
(3493, 220, 'LV', 'Львов',
1),
(3494, 220, 'MY', 'Николаев', 1),
(3495, 220, 'OD',
'Одесса', 1),
(3496, 220, 'PO', 'Полтава', 1),
(3497, 220,
'RI', 'Ровно', 1),
(3498, 220, 'SE', 'Севастополь',
1),
(3499, 220, 'SU', 'Сумы', 1),
(3500, 220, 'TE',
'Тернополь', 1),
(3501, 220, 'VI', 'Винница', 1),
(3502,
220, 'VO', 'Луцк', 1),
(3503, 220, 'ZK', 'Ужгород', 1),
(3504,
220, 'ZA', 'Запорожье', 1),
(3505, 220, 'ZH', 'Житомир',
1),
(3506, 221, 'AZ', 'Abu Zaby', 1),
(3507, 221, 'AJ', '''Ajman',
1),
(3508, 221, 'FU', 'Al Fujayrah', 1),
(3509, 221, 'SH', 'Ash Shariqah',
1),
(3510, 221, 'DU', 'Dubayy', 1),
(3511, 221, 'RK', 'R''as al Khaymah',
1),
(3512, 221, 'UQ', 'Umm al Qaywayn', 1),
(3513, 222, 'ABN', 'Aberdeen',
1),
(3514, 222, 'ABNS', 'Aberdeenshire', 1),
(3515, 222, 'ANG', 'Anglesey',
1),
(3516, 222, 'AGS', 'Angus', 1),
(3517, 222, 'ARY', 'Argyll and Bute',
1),
(3518, 222, 'BEDS', 'Bedfordshire', 1),
(3519, 222, 'BERKS',
'Berkshire', 1),
(3520, 222, 'BLA', 'Blaenau Gwent', 1),
(3521, 222, 'BRI',
'Bridgend', 1),
(3522, 222, 'BSTL', 'Bristol', 1),
(3523, 222, 'BUCKS',
'Buckinghamshire', 1),
(3524, 222, 'CAE', 'Caerphilly', 1),
(3525, 222,
'CAMBS', 'Cambridgeshire', 1),
(3526, 222, 'CDF', 'Cardiff', 1),
(3527,
222, 'CARM', 'Carmarthenshire', 1),
(3528, 222, 'CDGN', 'Ceredigion',
1),
(3529, 222, 'CHES', 'Cheshire', 1),
(3530, 222, 'CLACK',
'Clackmannanshire', 1),
(3531, 222, 'CON', 'Conwy', 1),
(3532, 222, 'CORN',
'Cornwall', 1),
(3533, 222, 'DNBG', 'Denbighshire', 1),
(3534, 222,
'DERBY', 'Derbyshire', 1),
(3535, 222, 'DVN', 'Devon', 1),
(3536, 222,
'DOR', 'Dorset', 1),
(3537, 222, 'DGL', 'Dumfries and Galloway', 1),
(3538,
222, 'DUND', 'Dundee', 1),
(3539, 222, 'DHM', 'Durham', 1),
(3540, 222,
'ARYE', 'East Ayrshire', 1),
(3541, 222, 'DUNBE', 'East Dunbartonshire',
1),
(3542, 222, 'LOTE', 'East Lothian', 1),
(3543, 222, 'RENE', 'East
Renfrewshire', 1),
(3544, 222, 'ERYS', 'East Riding of Yorkshire',
1),
(3545, 222, 'SXE', 'East Sussex', 1),
(3546, 222, 'EDIN', 'Edinburgh',
1),
(3547, 222, 'ESX', 'Essex', 1),
(3548, 222, 'FALK', 'Falkirk',
1),
(3549, 222, 'FFE', 'Fife', 1),
(3550, 222, 'FLINT', 'Flintshire',
1),
(3551, 222, 'GLAS', 'Glasgow', 1),
(3552, 222, 'GLOS',
'Gloucestershire', 1),
(3553, 222, 'LDN', 'Greater London', 1),
(3554, 222,
'MCH', 'Greater Manchester', 1),
(3555, 222, 'GDD', 'Gwynedd', 1),
(3556,
222, 'HANTS', 'Hampshire', 1),
(3557, 222, 'HWR', 'Herefordshire',
1),
(3558, 222, 'HERTS', 'Hertfordshire', 1),
(3559, 222, 'HLD',
'Highlands', 1),
(3560, 222, 'IVER', 'Inverclyde', 1),
(3561, 222, 'IOW',
'Isle of Wight', 1),
(3562, 222, 'KNT', 'Kent', 1),
(3563, 222, 'LANCS',
'Lancashire', 1),
(3564, 222, 'LEICS', 'Leicestershire', 1),
(3565, 222,
'LINCS', 'Lincolnshire', 1),
(3566, 222, 'MSY', 'Merseyside', 1),
(3567,
222, 'MERT', 'Merthyr Tydfil', 1),
(3568, 222, 'MLOT', 'Midlothian',
1),
(3569, 222, 'MMOUTH', 'Monmouthshire', 1),
(3570, 222, 'MORAY',
'Moray', 1),
(3571, 222, 'NPRTAL', 'Neath Port Talbot', 1),
(3572, 222,
'NEWPT', 'Newport', 1),
(3573, 222, 'NOR', 'Norfolk', 1),
(3574, 222,
'ARYN', 'North Ayrshire', 1),
(3575, 222, 'LANN', 'North Lanarkshire',
1),
(3576, 222, 'YSN', 'North Yorkshire', 1),
(3577, 222, 'NHM',
'Northamptonshire', 1),
(3578, 222, 'NLD', 'Northumberland', 1),
(3579,
222, 'NOT', 'Nottinghamshire', 1),
(3580, 222, 'ORK', 'Orkney Islands',
1),
(3581, 222, 'OFE', 'Oxfordshire', 1),
(3582, 222, 'PEM',
'Pembrokeshire', 1),
(3583, 222, 'PERTH', 'Perth and Kinross', 1),
(3584,
222, 'PWS', 'Powys', 1),
(3585, 222, 'REN', 'Renfrewshire', 1),
(3586, 222,
'RHON', 'Rhondda Cynon Taff', 1),
(3587, 222, 'RUT', 'Rutland', 1),
(3588,
222, 'BOR', 'Scottish Borders', 1),
(3589, 222, 'SHET', 'Shetland Islands',
1),
(3590, 222, 'SPE', 'Shropshire', 1),
(3591, 222, 'SOM', 'Somerset',
1),
(3592, 222, 'ARYS', 'South Ayrshire', 1),
(3593, 222, 'LANS', 'South
Lanarkshire', 1),
(3594, 222, 'YSS', 'South Yorkshire', 1),
(3595, 222,
'SFD', 'Staffordshire', 1),
(3596, 222, 'STIR', 'Stirling', 1),
(3597, 222,
'SFK', 'Suffolk', 1),
(3598, 222, 'SRY', 'Surrey', 1),
(3599, 222, 'SWAN',
'Swansea', 1),
(3600, 222, 'TORF', 'Torfaen', 1),
(3601, 222, 'TWR', 'Tyne
and Wear', 1),
(3602, 222, 'VGLAM', 'Vale of Glamorgan', 1),
(3603, 222,
'WARKS', 'Warwickshire', 1),
(3604, 222, 'WDUN', 'West Dunbartonshire',
1),
(3605, 222, 'WLOT', 'West Lothian', 1),
(3606, 222, 'WMD', 'West
Midlands', 1),
(3607, 222, 'SXW', 'West Sussex', 1),
(3608, 222, 'YSW',
'West Yorkshire', 1),
(3609, 222, 'WIL', 'Western Isles', 1),
(3610, 222,
'WLT', 'Wiltshire', 1),
(3611, 222, 'WORCS', 'Worcestershire', 1),
(3612,
222, 'WRX', 'Wrexham', 1),
(3613, 223, 'AL', 'Alabama', 1),
(3614, 223,
'AK', 'Alaska', 1),
(3615, 223, 'AS', 'American Samoa', 1),
(3616, 223,
'AZ', 'Arizona', 1),
(3617, 223, 'AR', 'Arkansas', 1),
(3618, 223, 'AF',
'Armed Forces Africa', 1),
(3619, 223, 'AA', 'Armed Forces Americas',
1),
(3620, 223, 'AC', 'Armed Forces Canada', 1),
(3621, 223, 'AE', 'Armed
Forces Europe', 1),
(3622, 223, 'AM', 'Armed Forces Middle East',
1),
(3623, 223, 'AP', 'Armed Forces Pacific', 1),
(3624, 223, 'CA',
'California', 1),
(3625, 223, 'CO', 'Colorado', 1),
(3626, 223, 'CT',
'Connecticut', 1),
(3627, 223, 'DE', 'Delaware', 1),
(3628, 223, 'DC',
'District of Columbia', 1),
(3629, 223, 'FM', 'Federated States Of
Micronesia', 1),
(3630, 223, 'FL', 'Florida', 1),
(3631, 223, 'GA',
'Georgia', 1),
(3632, 223, 'GU', 'Guam', 1),
(3633, 223, 'HI', 'Hawaii',
1),
(3634, 223, 'ID', 'Idaho', 1),
(3635, 223, 'IL', 'Illinois', 1),
(3636,
223, 'IN', 'Indiana', 1),
(3637, 223, 'IA', 'Iowa', 1),
(3638, 223, 'KS',
'Kansas', 1),
(3639, 223, 'KY', 'Kentucky', 1),
(3640, 223, 'LA',
'Louisiana', 1),
(3641, 223, 'ME', 'Maine', 1),
(3642, 223, 'MH', 'Marshall
Islands', 1),
(3643, 223, 'MD', 'Maryland', 1),
(3644, 223, 'MA',
'Massachusetts', 1),
(3645, 223, 'MI', 'Michigan', 1),
(3646, 223, 'MN',
'Minnesota', 1),
(3647, 223, 'MS', 'Mississippi', 1),
(3648, 223, 'MO',
'Missouri', 1),
(3649, 223, 'MT', 'Montana', 1),
(3650, 223, 'NE',
'Nebraska', 1),
(3651, 223, 'NV', 'Nevada', 1),
(3652, 223, 'NH', 'New
Hampshire', 1),
(3653, 223, 'NJ', 'New Jersey', 1),
(3654, 223, 'NM', 'New
Mexico', 1),
(3655, 223, 'NY', 'New York', 1),
(3656, 223, 'NC', 'North
Carolina', 1),
(3657, 223, 'ND', 'North Dakota', 1),
(3658, 223, 'MP',
'Northern Mariana Islands', 1),
(3659, 223, 'OH', 'Ohio', 1),
(3660, 223,
'OK', 'Oklahoma', 1),
(3661, 223, 'OR', 'Oregon', 1),
(3662, 223, 'PW',
'Palau', 1),
(3663, 223, 'PA', 'Pennsylvania', 1),
(3664, 223, 'PR',
'Puerto Rico', 1),
(3665, 223, 'RI', 'Rhode Island', 1),
(3666, 223, 'SC',
'South Carolina', 1),
(3667, 223, 'SD', 'South Dakota', 1),
(3668, 223,
'TN', 'Tennessee', 1),
(3669, 223, 'TX', 'Texas', 1),
(3670, 223, 'UT',
'Utah', 1),
(3671, 223, 'VT', 'Vermont', 1),
(3672, 223, 'VI', 'Virgin
Islands', 1),
(3673, 223, 'VA', 'Virginia', 1),
(3674, 223, 'WA',
'Washington', 1),
(3675, 223, 'WV', 'West Virginia', 1),
(3676, 223, 'WI',
'Wisconsin', 1),
(3677, 223, 'WY', 'Wyoming', 1),
(3678, 224, 'BI', 'Baker
Island', 1),
(3679, 224, 'HI', 'Howland Island', 1),
(3680, 224, 'JI',
'Jarvis Island', 1),
(3681, 224, 'JA', 'Johnston Atoll', 1),
(3682, 224,
'KR', 'Kingman Reef', 1),
(3683, 224, 'MA', 'Midway Atoll', 1),
(3684, 224,
'NI', 'Navassa Island', 1),
(3685, 224, 'PA', 'Palmyra Atoll', 1),
(3686,
224, 'WI', 'Wake Island', 1),
(3687, 225, 'AR', 'Artigas', 1),
(3688, 225,
'CA', 'Canelones', 1),
(3689, 225, 'CL', 'Cerro Largo', 1),
(3690, 225,
'CO', 'Colonia', 1),
(3691, 225, 'DU', 'Durazno', 1),
(3692, 225, 'FS',
'Flores', 1),
(3693, 225, 'FA', 'Florida', 1),
(3694, 225, 'LA',
'Lavalleja', 1),
(3695, 225, 'MA', 'Maldonado', 1),
(3696, 225, 'MO',
'Montevideo', 1),
(3697, 225, 'PA', 'Paysandu', 1),
(3698, 225, 'RN', 'Rio
Negro', 1),
(3699, 225, 'RV', 'Rivera', 1),
(3700, 225, 'RO', 'Rocha',
1),
(3701, 225, 'SL', 'Salto', 1),
(3702, 225, 'SJ', 'San Jose', 1),
(3703,
225, 'SO', 'Soriano', 1),
(3704, 225, 'TA', 'Tacuarembo', 1),
(3705, 225,
'TT', 'Treinta y Tres', 1),
(3706, 226, 'AN', 'Andijon', 1),
(3707, 226,
'BU', 'Buxoro', 1),
(3708, 226, 'FA', 'Farg''ona', 1),
(3709, 226, 'JI',
'Jizzax', 1),
(3710, 226, 'NG', 'Namangan', 1),
(3711, 226, 'NW', 'Navoiy',
1),
(3712, 226, 'QA', 'Qashqadaryo', 1),
(3713, 226, 'QR',
'Qoraqalpog''iston Republikasi', 1),
(3714, 226, 'SA', 'Samarqand',
1),
(3715, 226, 'SI', 'Sirdaryo', 1),
(3716, 226, 'SU', 'Surxondaryo',
1),
(3717, 226, 'TK', 'Toshkent City', 1),
(3718, 226, 'TO', 'Toshkent
Region', 1),
(3719, 226, 'XO', 'Xorazm', 1),
(3720, 227, 'MA', 'Malampa',
1),
(3721, 227, 'PE', 'Penama', 1),
(3722, 227, 'SA', 'Sanma', 1),
(3723,
227, 'SH', 'Shefa', 1),
(3724, 227, 'TA', 'Tafea', 1),
(3725, 227, 'TO',
'Torba', 1),
(3726, 229, 'AM', 'Amazonas', 1),
(3727, 229, 'AN',
'Anzoategui', 1),
(3728, 229, 'AP', 'Apure', 1),
(3729, 229, 'AR',
'Aragua', 1),
(3730, 229, 'BA', 'Barinas', 1),
(3731, 229, 'BO', 'Bolivar',
1),
(3732, 229, 'CA', 'Carabobo', 1),
(3733, 229, 'CO', 'Cojedes',
1),
(3734, 229, 'DA', 'Delta Amacuro', 1),
(3735, 229, 'DF', 'Dependencias
Federales', 1),
(3736, 229, 'DI', 'Distrito Federal', 1),
(3737, 229, 'FA',
'Falcon', 1),
(3738, 229, 'GU', 'Guarico', 1),
(3739, 229, 'LA', 'Lara',
1),
(3740, 229, 'ME', 'Merida', 1),
(3741, 229, 'MI', 'Miranda', 1),
(3742,
229, 'MO', 'Monagas', 1),
(3743, 229, 'NE', 'Nueva Esparta', 1),
(3744,
229, 'PO', 'Portuguesa', 1),
(3745, 229, 'SU', 'Sucre', 1),
(3746, 229,
'TA', 'Tachira', 1),
(3747, 229, 'TR', 'Trujillo', 1),
(3748, 229, 'VA',
'Vargas', 1),
(3749, 229, 'YA', 'Yaracuy', 1),
(3750, 229, 'ZU', 'Zulia',
1),
(3751, 230, 'AG', 'An Giang', 1),
(3752, 230, 'BG', 'Bac Giang',
1),
(3753, 230, 'BK', 'Bac Kan', 1),
(3754, 230, 'BL', 'Bac Lieu',
1),
(3755, 230, 'BC', 'Bac Ninh', 1),
(3756, 230, 'BR', 'Ba Ria-Vung Tau',
1),
(3757, 230, 'BN', 'Ben Tre', 1),
(3758, 230, 'BH', 'Binh Dinh',
1),
(3759, 230, 'BU', 'Binh Duong', 1),
(3760, 230, 'BP', 'Binh Phuoc',
1),
(3761, 230, 'BT', 'Binh Thuan', 1),
(3762, 230, 'CM', 'Ca Mau',
1),
(3763, 230, 'CT', 'Can Tho', 1),
(3764, 230, 'CB', 'Cao Bang',
1),
(3765, 230, 'DL', 'Dak Lak', 1),
(3766, 230, 'DG', 'Dak Nong',
1),
(3767, 230, 'DN', 'Da Nang', 1),
(3768, 230, 'DB', 'Dien Bien',
1),
(3769, 230, 'DI', 'Dong Nai', 1),
(3770, 230, 'DT', 'Dong Thap',
1),
(3771, 230, 'GL', 'Gia Lai', 1),
(3772, 230, 'HG', 'Ha Giang',
1),
(3773, 230, 'HD', 'Hai Duong', 1),
(3774, 230, 'HP', 'Hai Phong',
1),
(3775, 230, 'HM', 'Ha Nam', 1),
(3776, 230, 'HI', 'Ha Noi', 1),
(3777,
230, 'HT', 'Ha Tay', 1),
(3778, 230, 'HH', 'Ha Tinh', 1),
(3779, 230, 'HB',
'Hoa Binh', 1),
(3780, 230, 'HC', 'Ho Chi Minh City', 1),
(3781, 230, 'HU',
'Hau Giang', 1),
(3782, 230, 'HY', 'Hung Yen', 1),
(3783, 232, 'C', 'Saint
Croix', 1),
(3784, 232, 'J', 'Saint John', 1),
(3785, 232, 'T', 'Saint
Thomas', 1),
(3786, 233, 'A', 'Alo', 1),
(3787, 233, 'S', 'Sigave',
1),
(3788, 233, 'W', 'Wallis', 1),
(3789, 235, 'AB', 'Abyan', 1),
(3790,
235, 'AD', 'Adan', 1),
(3791, 235, 'AM', 'Amran', 1),
(3792, 235, 'BA', 'Al
Bayda', 1),
(3793, 235, 'DA', 'Ad Dali', 1),
(3794, 235, 'DH', 'Dhamar',
1),
(3795, 235, 'HD', 'Hadramawt', 1),
(3796, 235, 'HJ', 'Hajjah',
1),
(3797, 235, 'HU', 'Al Hudaydah', 1),
(3798, 235, 'IB', 'Ibb',
1),
(3799, 235, 'JA', 'Al Jawf', 1),
(3800, 235, 'LA', 'Lahij', 1),
(3801,
235, 'MA', 'Ma''rib', 1),
(3802, 235, 'MR', 'Al Mahrah', 1),
(3803, 235,
'MW', 'Al Mahwit', 1),
(3804, 235, 'SD', 'Sa''dah', 1),
(3805, 235, 'SN',
'San''a', 1),
(3806, 235, 'SH', 'Shabwah', 1),
(3807, 235, 'TA', 'Ta''izz',
1),
(3808, 236, 'KOS', 'Kosovo', 1),
(3809, 236, 'MON', 'Montenegro',
1),
(3810, 236, 'SER', 'Serbia', 1),
(3811, 236, 'VOJ', 'Vojvodina',
1),
(3812, 237, 'BC', 'Bas-Congo', 1),
(3813, 237, 'BN', 'Bandundu',
1),
(3814, 237, 'EQ', 'Equateur', 1),
(3815, 237, 'KA', 'Katanga',
1),
(3816, 237, 'KE', 'Kasai-Oriental', 1),
(3817, 237, 'KN', 'Kinshasa',
1),
(3818, 237, 'KW', 'Kasai-Occidental', 1),
(3819, 237, 'MA', 'Maniema',
1),
(3820, 237, 'NK', 'Nord-Kivu', 1),
(3821, 237, 'OR', 'Orientale',
1),
(3822, 237, 'SK', 'Sud-Kivu', 1),
(3823, 238, 'CE', 'Central',
1),
(3824, 238, 'CB', 'Copperbelt', 1),
(3825, 238, 'EA', 'Eastern',
1),
(3826, 238, 'LP', 'Luapula', 1),
(3827, 238, 'LK', 'Lusaka', 1),
(3828,
238, 'NO', 'Northern', 1),
(3829, 238, 'NW', 'North-Western', 1),
(3830,
238, 'SO', 'Southern', 1),
(3831, 238, 'WE', 'Western', 1),
(3832, 239,
'BU', 'Bulawayo', 1),
(3833, 239, 'HA', 'Harare', 1),
(3834, 239, 'ML',
'Manicaland', 1),
(3835, 239, 'MC', 'Mashonaland Central', 1),
(3836, 239,
'ME', 'Mashonaland East', 1),
(3837, 239, 'MW', 'Mashonaland West',
1),
(3838, 239, 'MV', 'Masvingo', 1),
(3839, 239, 'MN', 'Matabeleland
North', 1),
(3840, 239, 'MS', 'Matabeleland South', 1),
(3841, 239, 'MD',
'Midlands', 1),
(3861, 105, 'CB', 'Campobasso', 1),
(3862, 105, 'CI',
'Carbonia-Iglesias', 1),
(3863, 105, 'CE', 'Caserta', 1),
(3864, 105, 'CT',
'Catania', 1),
(3865, 105, 'CZ', 'Catanzaro', 1),
(3866, 105, 'CH',
'Chieti', 1),
(3867, 105, 'CO', 'Como', 1),
(3868, 105, 'CS', 'Cosenza',
1),
(3869, 105, 'CR', 'Cremona', 1),
(3870, 105, 'KR', 'Crotone',
1),
(3871, 105, 'CN', 'Cuneo', 1),
(3872, 105, 'EN', 'Enna', 1),
(3873,
105, 'FE', 'Ferrara', 1),
(3874, 105, 'FI', 'Firenze', 1),
(3875, 105,
'FG', 'Foggia', 1),
(3876, 105, 'FC', 'Forli-Cesena', 1),
(3877, 105, 'FR',
'Frosinone', 1),
(3878, 105, 'GE', 'Genova', 1),
(3879, 105, 'GO',
'Gorizia', 1),
(3880, 105, 'GR', 'Grosseto', 1),
(3881, 105, 'IM',
'Imperia', 1),
(3882, 105, 'IS', 'Isernia', 1),
(3883, 105, 'AQ',
'L'Aquila', 1),
(3884, 105, 'SP', 'La Spezia', 1),
(3885, 105,
'LT', 'Latina', 1),
(3886, 105, 'LE', 'Lecce', 1),
(3887, 105, 'LC',
'Lecco', 1),
(3888, 105, 'LI', 'Livorno', 1),
(3889, 105, 'LO', 'Lodi',
1),
(3890, 105, 'LU', 'Lucca', 1),
(3891, 105, 'MC', 'Macerata', 1),
(3892,
105, 'MN', 'Mantova', 1),
(3893, 105, 'MS', 'Massa-Carrara', 1),
(3894,
105, 'MT', 'Matera', 1),
(3895, 105, 'VS', 'Medio Campidano', 1),
(3896,
105, 'ME', 'Messina', 1),
(3897, 105, 'MI', 'Milano', 1),
(3898, 105, 'MO',
'Modena', 1),
(3899, 105, 'NA', 'Napoli', 1),
(3900, 105, 'NO', 'Novara',
1),
(3901, 105, 'NU', 'Nuoro', 1),
(3902, 105, 'OG', 'Ogliastra',
1),
(3903, 105, 'OT', 'Olbia-Tempio', 1),
(3904, 105, 'OR', 'Oristano',
1),
(3905, 105, 'PD', 'Padova', 1),
(3906, 105, 'PA', 'Palermo', 1),
(3907,
105, 'PR', 'Parma', 1),
(3908, 105, 'PV', 'Pavia', 1),
(3909, 105, 'PG',
'Perugia', 1),
(3910, 105, 'PU', 'Pesaro e Urbino', 1),
(3911, 105, 'PE',
'Pescara', 1),
(3912, 105, 'PC', 'Piacenza', 1),
(3913, 105, 'PI', 'Pisa',
1),
(3914, 105, 'PT', 'Pistoia', 1),
(3915, 105, 'PN', 'Pordenone',
1),
(3916, 105, 'PZ', 'Potenza', 1),
(3917, 105, 'PO', 'Prato', 1),
(3918,
105, 'RG', 'Ragusa', 1),
(3919, 105, 'RA', 'Ravenna', 1),
(3920, 105, 'RC',
'Reggio Calabria', 1),
(3921, 105, 'RE', 'Reggio Emilia', 1),
(3922, 105,
'RI', 'Rieti', 1),
(3923, 105, 'RN', 'Rimini', 1),
(3924, 105, 'RM',
'Roma', 1),
(3925, 105, 'RO', 'Rovigo', 1),
(3926, 105, 'SA', 'Salerno',
1),
(3927, 105, 'SS', 'Sassari', 1),
(3928, 105, 'SV', 'Savona', 1),
(3929,
105, 'SI', 'Siena', 1),
(3930, 105, 'SR', 'Siracusa', 1),
(3931, 105, 'SO',
'Sondrio', 1),
(3932, 105, 'TA', 'Taranto', 1),
(3933, 105, 'TE', 'Teramo',
1),
(3934, 105, 'TR', 'Terni', 1),
(3935, 105, 'TO', 'Torino', 1),
(3936,
105, 'TP', 'Trapani', 1),
(3937, 105, 'TN', 'Trento', 1),
(3938, 105, 'TV',
'Treviso', 1),
(3939, 105, 'TS', 'Trieste', 1),
(3940, 105, 'UD', 'Udine',
1),
(3941, 105, 'VA', 'Varese', 1),
(3942, 105, 'VE', 'Venezia', 1),
(3943,
105, 'VB', 'Verbano-Cusio-Ossola', 1),
(3944, 105, 'VC', 'Vercelli',
1),
(3945, 105, 'VR', 'Verona', 1),
(3946, 105, 'VV', 'Vibo Valentia',
1),
(3947, 105, 'VI', 'Vicenza', 1),
(3948, 105, 'VT', 'Viterbo',
1),
(3949, 222, 'ANT', 'County Antrim', 1),
(3950, 222, 'ARM', 'County
Armagh', 1),
(3951, 222, 'DOW', 'County Down', 1),
(3952, 222, 'FER',
'County Fermanagh', 1),
(3953, 222, 'LDY', 'County Londonderry', 1),
(3954,
222, 'TYR', 'County Tyrone', 1),
(3955, 222, 'CMA', 'Cumbria', 1),
(3956,
190, '1', 'Pomurska', 1),
(3957, 190, '2', 'Podravska', 1),
(3958, 190,
'3', 'Koroška', 1),
(3959, 190, '4', 'Savinjska', 1),
(3960, 190, '5',
'Zasavska', 1),
(3961, 190, '6', 'Spodnjeposavska', 1),
(3962, 190, '7',
'Jugovzhodna Slovenija', 1),
(3963, 190, '8', 'Osrednjeslovenska',
1),
(3964, 190, '9', 'Gorenjska', 1),
(3965, 190, '10',
'Notranjsko-kraška', 1),
(3966, 190, '11', 'Goriška', 1),
(3967, 190,
'12', 'Obalno-kraška', 1),
(3968, 33, '', 'Ruse', 1),
(3969, 101, 'ALB',
'Alborz', 1),
(3970, 220, 'KE', 'Херсон', 1);
--
--------------------------------------------------------
--
-- Table
structure for table `oc_zone_to_geo_zone`
--
DROP TABLE IF EXISTS
`oc_zone_to_geo_zone`;
CREATE TABLE `oc_zone_to_geo_zone` (
`zone_to_geo_zone_id` int(11) NOT NULL AUTO_INCREMENT,
`country_id`
int(11) NOT NULL,
`zone_id` int(11) NOT NULL DEFAULT '0',
`geo_zone_id`
int(11) NOT NULL,
`date_added` datetime NOT NULL,
`date_modified`
datetime NOT NULL,
PRIMARY KEY (`zone_to_geo_zone_id`)
) ENGINE=MyISAM
DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_zone_to_geo_zone`
--
INSERT INTO `oc_zone_to_geo_zone`
(`zone_to_geo_zone_id`, `country_id`, `zone_id`, `geo_zone_id`,
`date_added`, `date_modified`) VALUES
(57, 176, 0, 3, '2015-11-11
15:56:24', '0000-00-00 00:00:00');