· 9 years ago · Dec 20, 2016, 08:46 AM
1-- phpMyAdmin SQL Dump
2-- version 4.0.10.7
3-- http://www.phpmyadmin.net
4--
5-- Host: localhost
6-- Generation Time: Oct 20, 2015 at 09:46 AM
7-- Server version: 5.5.42-cll-lve
8-- PHP Version: 5.4.31
9
10SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
11SET time_zone = "+00:00";
12
13
14/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
15/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
16/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
17/*!40101 SET NAMES utf8 */;
18
19--
20-- Database: `spaces`
21--
22
23-- --------------------------------------------------------
24
25--
26-- Table structure for table `address`
27--
28
29CREATE TABLE IF NOT EXISTS `address` (
30 `address_id` int(11) NOT NULL AUTO_INCREMENT,
31 `customer_id` int(11) NOT NULL,
32 `firstname` varchar(32) NOT NULL,
33 `lastname` varchar(32) NOT NULL,
34 `company` varchar(32) NOT NULL,
35 `company_id` varchar(32) NOT NULL,
36 `tax_id` varchar(32) NOT NULL,
37 `address_1` varchar(128) NOT NULL,
38 `address_2` varchar(128) NOT NULL,
39 `city` varchar(128) NOT NULL,
40 `postcode` varchar(10) NOT NULL,
41 `country_id` int(11) NOT NULL DEFAULT '0',
42 `zone_id` int(11) NOT NULL DEFAULT '0',
43 PRIMARY KEY (`address_id`),
44 KEY `customer_id` (`customer_id`)
45) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
46
47--
48-- Dumping data for table `address`
49--
50
51INSERT INTO `address` (`address_id`, `customer_id`, `firstname`, `lastname`, `company`, `company_id`, `tax_id`, `address_1`, `address_2`, `city`, `postcode`, `country_id`, `zone_id`) VALUES
52(1, 1, 'Akinyele', 'Israel', '', '', '', '23, Philips majekodunmi street, new oko oba, lagos', '', 'Lagos', '', 156, 2412);
53
54-- --------------------------------------------------------
55
56--
57-- Table structure for table `affiliate`
58--
59
60CREATE TABLE IF NOT EXISTS `affiliate` (
61 `affiliate_id` int(11) NOT NULL AUTO_INCREMENT,
62 `firstname` varchar(32) NOT NULL,
63 `lastname` varchar(32) NOT NULL,
64 `email` varchar(96) NOT NULL,
65 `telephone` varchar(32) NOT NULL,
66 `fax` varchar(32) NOT NULL,
67 `password` varchar(40) NOT NULL,
68 `salt` varchar(9) NOT NULL,
69 `company` varchar(32) NOT NULL,
70 `website` varchar(255) NOT NULL,
71 `address_1` varchar(128) NOT NULL,
72 `address_2` varchar(128) NOT NULL,
73 `city` varchar(128) NOT NULL,
74 `postcode` varchar(10) NOT NULL,
75 `country_id` int(11) NOT NULL,
76 `zone_id` int(11) NOT NULL,
77 `code` varchar(64) NOT NULL,
78 `commission` decimal(4,2) NOT NULL DEFAULT '0.00',
79 `tax` varchar(64) NOT NULL,
80 `payment` varchar(6) NOT NULL,
81 `cheque` varchar(100) NOT NULL,
82 `paypal` varchar(64) NOT NULL,
83 `bank_name` varchar(64) NOT NULL,
84 `bank_branch_number` varchar(64) NOT NULL,
85 `bank_swift_code` varchar(64) NOT NULL,
86 `bank_account_name` varchar(64) NOT NULL,
87 `bank_account_number` varchar(64) NOT NULL,
88 `ip` varchar(40) NOT NULL,
89 `status` tinyint(1) NOT NULL,
90 `approved` tinyint(1) NOT NULL,
91 `date_added` datetime NOT NULL,
92 PRIMARY KEY (`affiliate_id`)
93) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
94
95-- --------------------------------------------------------
96
97--
98-- Table structure for table `affiliate_transaction`
99--
100
101CREATE TABLE IF NOT EXISTS `affiliate_transaction` (
102 `affiliate_transaction_id` int(11) NOT NULL AUTO_INCREMENT,
103 `affiliate_id` int(11) NOT NULL,
104 `order_id` int(11) NOT NULL,
105 `description` text NOT NULL,
106 `amount` decimal(15,4) NOT NULL,
107 `date_added` datetime NOT NULL,
108 PRIMARY KEY (`affiliate_transaction_id`)
109) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
110
111-- --------------------------------------------------------
112
113--
114-- Table structure for table `attribute`
115--
116
117CREATE TABLE IF NOT EXISTS `attribute` (
118 `attribute_id` int(11) NOT NULL AUTO_INCREMENT,
119 `attribute_group_id` int(11) NOT NULL,
120 `sort_order` int(3) NOT NULL,
121 PRIMARY KEY (`attribute_id`)
122) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=17 ;
123
124--
125-- Dumping data for table `attribute`
126--
127
128INSERT INTO `attribute` (`attribute_id`, `attribute_group_id`, `sort_order`) VALUES
129(16, 9, 2),
130(15, 9, 1),
131(14, 8, 1),
132(13, 7, 2),
133(12, 7, 1);
134
135-- --------------------------------------------------------
136
137--
138-- Table structure for table `attribute_description`
139--
140
141CREATE TABLE IF NOT EXISTS `attribute_description` (
142 `attribute_id` int(11) NOT NULL,
143 `language_id` int(11) NOT NULL,
144 `name` varchar(64) NOT NULL,
145 PRIMARY KEY (`attribute_id`,`language_id`)
146) ENGINE=MyISAM DEFAULT CHARSET=utf8;
147
148--
149-- Dumping data for table `attribute_description`
150--
151
152INSERT INTO `attribute_description` (`attribute_id`, `language_id`, `name`) VALUES
153(16, 1, 'Height'),
154(15, 1, 'Width'),
155(14, 1, 'Orientation'),
156(13, 1, 'Fabric'),
157(12, 1, 'Wood');
158
159-- --------------------------------------------------------
160
161--
162-- Table structure for table `attribute_group`
163--
164
165CREATE TABLE IF NOT EXISTS `attribute_group` (
166 `attribute_group_id` int(11) NOT NULL AUTO_INCREMENT,
167 `sort_order` int(3) NOT NULL,
168 PRIMARY KEY (`attribute_group_id`)
169) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=10 ;
170
171--
172-- Dumping data for table `attribute_group`
173--
174
175INSERT INTO `attribute_group` (`attribute_group_id`, `sort_order`) VALUES
176(8, 2),
177(9, 3),
178(7, 1);
179
180-- --------------------------------------------------------
181
182--
183-- Table structure for table `attribute_group_description`
184--
185
186CREATE TABLE IF NOT EXISTS `attribute_group_description` (
187 `attribute_group_id` int(11) NOT NULL,
188 `language_id` int(11) NOT NULL,
189 `name` varchar(64) NOT NULL,
190 PRIMARY KEY (`attribute_group_id`,`language_id`)
191) ENGINE=MyISAM DEFAULT CHARSET=utf8;
192
193--
194-- Dumping data for table `attribute_group_description`
195--
196
197INSERT INTO `attribute_group_description` (`attribute_group_id`, `language_id`, `name`) VALUES
198(8, 1, 'Orientation '),
199(9, 1, 'Dimension'),
200(7, 1, 'Material');
201
202-- --------------------------------------------------------
203
204--
205-- Table structure for table `banner`
206--
207
208CREATE TABLE IF NOT EXISTS `banner` (
209 `banner_id` int(11) NOT NULL AUTO_INCREMENT,
210 `name` varchar(64) NOT NULL,
211 `status` tinyint(1) NOT NULL,
212 PRIMARY KEY (`banner_id`)
213) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=9 ;
214
215--
216-- Dumping data for table `banner`
217--
218
219INSERT INTO `banner` (`banner_id`, `name`, `status`) VALUES
220(6, 'HP Products', 1),
221(7, 'Homepage Slideshow', 1),
222(8, 'Manufacturers', 1);
223
224-- --------------------------------------------------------
225
226--
227-- Table structure for table `banner_image`
228--
229
230CREATE TABLE IF NOT EXISTS `banner_image` (
231 `banner_image_id` int(11) NOT NULL AUTO_INCREMENT,
232 `banner_id` int(11) NOT NULL,
233 `link` varchar(255) NOT NULL,
234 `image` varchar(255) NOT NULL,
235 PRIMARY KEY (`banner_image_id`)
236) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=85 ;
237
238--
239-- Dumping data for table `banner_image`
240--
241
242INSERT INTO `banner_image` (`banner_image_id`, `banner_id`, `link`, `image`) VALUES
243(84, 7, '', 'data/banner/slide1.jpg'),
244(77, 6, 'index.php?route=product/manufacturer/info&manufacturer_id=7', 'data/demo/hp_banner.jpg'),
245(75, 8, 'index.php?route=product/manufacturer/info&manufacturer_id=5', 'data/demo/htc_logo.jpg'),
246(73, 8, 'index.php?route=product/manufacturer/info&manufacturer_id=8', 'data/demo/apple_logo.jpg'),
247(74, 8, 'index.php?route=product/manufacturer/info&manufacturer_id=9', 'data/demo/canon_logo.jpg'),
248(71, 8, 'index.php?route=product/manufacturer/info&manufacturer_id=10', 'data/demo/sony_logo.jpg'),
249(72, 8, 'index.php?route=product/manufacturer/info&manufacturer_id=6', 'data/demo/palm_logo.jpg'),
250(76, 8, 'index.php?route=product/manufacturer/info&manufacturer_id=7', 'data/demo/hp_logo.jpg'),
251(83, 7, '', 'data/banner/slide1.jpg');
252
253-- --------------------------------------------------------
254
255--
256-- Table structure for table `banner_image_description`
257--
258
259CREATE TABLE IF NOT EXISTS `banner_image_description` (
260 `banner_image_id` int(11) NOT NULL,
261 `language_id` int(11) NOT NULL,
262 `banner_id` int(11) NOT NULL,
263 `title` varchar(64) NOT NULL,
264 PRIMARY KEY (`banner_image_id`,`language_id`)
265) ENGINE=MyISAM DEFAULT CHARSET=utf8;
266
267--
268-- Dumping data for table `banner_image_description`
269--
270
271INSERT INTO `banner_image_description` (`banner_image_id`, `language_id`, `banner_id`, `title`) VALUES
272(77, 1, 6, 'HP Banner'),
273(75, 1, 8, 'HTC'),
274(74, 1, 8, 'Canon'),
275(73, 1, 8, 'Apple'),
276(72, 1, 8, 'Palm'),
277(71, 1, 8, 'Sony'),
278(76, 1, 8, 'Hewlett-Packard'),
279(83, 1, 7, 'Another Image'),
280(84, 1, 7, 'Dummy');
281
282-- --------------------------------------------------------
283
284--
285-- Table structure for table `cache_supercategory`
286--
287
288CREATE TABLE IF NOT EXISTS `cache_supercategory` (
289 `cache_id` int(11) NOT NULL AUTO_INCREMENT,
290 `store_id` int(11) NOT NULL,
291 `man` varchar(10) COLLATE utf8_bin NOT NULL,
292 `cat` varchar(10) COLLATE utf8_bin NOT NULL,
293 `name` varchar(200) COLLATE utf8_bin DEFAULT NULL,
294 `data` longtext COLLATE utf8_bin NOT NULL,
295 `cached` int(11) NOT NULL DEFAULT '1',
296 `string` text COLLATE utf8_bin NOT NULL,
297 `date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
298 PRIMARY KEY (`cache_id`),
299 UNIQUE KEY `name` (`name`,`cat`)
300) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin AUTO_INCREMENT=1 ;
301
302-- --------------------------------------------------------
303
304--
305-- Table structure for table `cache_supercategory_menu`
306--
307
308CREATE TABLE IF NOT EXISTS `cache_supercategory_menu` (
309 `cache_id` int(11) NOT NULL AUTO_INCREMENT,
310 `store_id` int(11) NOT NULL,
311 `man` varchar(10) COLLATE utf8_bin NOT NULL,
312 `cat` varchar(10) COLLATE utf8_bin NOT NULL,
313 `name` varchar(200) COLLATE utf8_bin DEFAULT NULL,
314 `data` longtext COLLATE utf8_bin NOT NULL,
315 `cached` int(11) NOT NULL DEFAULT '1',
316 `string` text COLLATE utf8_bin NOT NULL,
317 `date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
318 PRIMARY KEY (`cache_id`),
319 UNIQUE KEY `name` (`name`,`cat`)
320) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin AUTO_INCREMENT=1 ;
321
322-- --------------------------------------------------------
323
324--
325-- Table structure for table `category`
326--
327
328CREATE TABLE IF NOT EXISTS `category` (
329 `category_id` int(11) NOT NULL AUTO_INCREMENT,
330 `image` varchar(255) DEFAULT NULL,
331 `parent_id` int(11) NOT NULL DEFAULT '0',
332 `top` tinyint(1) NOT NULL,
333 `column` int(3) NOT NULL,
334 `sort_order` int(3) NOT NULL DEFAULT '0',
335 `status` tinyint(1) NOT NULL,
336 `date_added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
337 `date_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
338 PRIMARY KEY (`category_id`)
339) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=120 ;
340
341--
342-- Dumping data for table `category`
343--
344
345INSERT INTO `category` (`category_id`, `image`, `parent_id`, `top`, `column`, `sort_order`, `status`, `date_added`, `date_modified`) VALUES
346(116, 'data/shop1.jpg', 115, 0, 1, 0, 1, '2015-07-08 06:37:12', '2015-07-09 06:36:54'),
347(20, 'data/banner/category-image.jpg', 76, 1, 1, 1, 1, '2009-01-05 21:49:43', '2015-07-30 01:02:04'),
348(18, 'data/demo/hp_2.jpg', 76, 1, 3, 3, 1, '2009-01-05 21:49:15', '2015-07-30 00:58:49'),
349(28, '', 76, 0, 0, 10, 1, '2009-02-02 13:11:12', '2015-07-30 00:57:57'),
350(115, 'data/shop-by-look.jpg', 0, 0, 2, 2, 1, '2015-07-08 06:36:13', '2015-08-06 06:01:49'),
351(29, '', 76, 0, 0, 9, 1, '2009-02-02 13:11:37', '2015-07-30 00:55:00'),
352(30, '', 76, 0, 0, 13, 1, '2009-02-02 13:11:59', '2015-07-30 00:55:58'),
353(33, '', 76, 1, 1, 3, 1, '2009-02-03 14:17:55', '2015-07-30 00:57:01'),
354(35, '', 76, 0, 0, 11, 1, '2010-09-17 10:06:48', '2015-07-30 00:59:28'),
355(45, 'data/banner/slider1.jpg', 20, 0, 0, 4, 1, '2010-09-24 18:29:16', '2015-06-11 02:07:36'),
356(57, '', 76, 1, 1, 6, 1, '2011-04-26 08:53:16', '2015-07-30 00:58:37'),
357(59, '', 20, 0, 1, 3, 1, '2015-06-11 01:43:01', '2015-06-11 01:44:58'),
358(60, '', 20, 0, 1, 4, 1, '2015-06-11 01:43:36', '2015-06-11 01:45:09'),
359(61, '', 20, 0, 5, 0, 1, '2015-06-11 01:46:27', '2015-06-11 01:46:27'),
360(62, '', 20, 0, 6, 0, 1, '2015-06-11 01:47:05', '2015-06-11 01:47:05'),
361(63, '', 20, 0, 7, 0, 1, '2015-06-11 01:47:57', '2015-06-11 01:47:57'),
362(64, '', 20, 0, 8, 0, 1, '2015-06-11 01:49:23', '2015-06-11 01:49:23'),
363(103, '', 28, 0, 1, 0, 1, '2015-06-11 02:59:14', '2015-06-11 02:59:14'),
364(74, '', 20, 0, 1, 9, 1, '2015-06-11 02:05:52', '2015-06-11 02:05:52'),
365(75, '', 20, 0, 1, 0, 1, '2015-06-11 02:06:50', '2015-06-11 02:06:50'),
366(76, '', 0, 0, 1, 8, 1, '2015-06-11 02:07:09', '2015-07-30 00:54:30'),
367(94, '', 29, 0, 1, 1, 1, '2015-06-11 02:33:19', '2015-06-11 02:33:19'),
368(95, '', 29, 0, 1, 2, 1, '2015-06-11 02:33:56', '2015-06-11 02:33:56'),
369(96, '', 29, 0, 1, 3, 1, '2015-06-11 02:34:33', '2015-06-11 02:34:33'),
370(97, '', 29, 0, 1, 4, 1, '2015-06-11 02:35:15', '2015-06-11 02:35:15'),
371(104, '', 28, 0, 1, 0, 1, '2015-06-11 03:00:02', '2015-06-11 03:00:02'),
372(105, '', 28, 0, 1, 0, 1, '2015-06-11 03:00:40', '2015-06-11 03:00:40'),
373(106, '', 76, 0, 1, 0, 1, '2015-06-11 03:01:40', '2015-06-11 03:01:40'),
374(107, '', 76, 0, 1, 0, 1, '2015-06-11 03:02:07', '2015-06-11 03:06:33'),
375(108, '', 76, 0, 1, 0, 1, '2015-06-11 03:02:47', '2015-06-11 03:02:47'),
376(109, '', 76, 0, 1, 0, 1, '2015-06-11 03:03:47', '2015-06-11 03:03:47'),
377(110, '', 76, 0, 1, 0, 1, '2015-06-11 03:04:25', '2015-06-11 03:04:25'),
378(111, '', 76, 0, 1, 0, 1, '2015-06-11 03:05:23', '2015-06-11 03:05:23'),
379(117, 'data/shop3.jpg', 115, 0, 1, 0, 1, '2015-07-08 06:39:37', '2015-07-09 06:59:10'),
380(118, 'data/shop4.jpg', 115, 0, 1, 0, 1, '2015-07-08 06:40:15', '2015-07-09 07:02:54');
381
382-- --------------------------------------------------------
383
384--
385-- Table structure for table `category_description`
386--
387
388CREATE TABLE IF NOT EXISTS `category_description` (
389 `category_id` int(11) NOT NULL,
390 `language_id` int(11) NOT NULL,
391 `name` varchar(255) NOT NULL,
392 `description` text NOT NULL,
393 `meta_description` varchar(255) NOT NULL,
394 `meta_keyword` varchar(255) NOT NULL,
395 PRIMARY KEY (`category_id`,`language_id`),
396 KEY `name` (`name`)
397) ENGINE=MyISAM DEFAULT CHARSET=utf8;
398
399--
400-- Dumping data for table `category_description`
401--
402
403INSERT INTO `category_description` (`category_id`, `language_id`, `name`, `description`, `meta_description`, `meta_keyword`) VALUES
404(28, 1, 'Outdoor', '', '', ''),
405(33, 1, 'Pillows & Throws', '', '', ''),
406(30, 1, 'On Trend', '', '', ''),
407(29, 1, 'Office', '', '', ''),
408(20, 1, 'New Arrival', '<p>Example of category description text</p>\r\n', 'Example of category description', ''),
409(116, 1, 'Dinning Room', '', '', ''),
410(35, 1, 'Storage', '<p>Storage</p>\r\n', '', ''),
411(18, 1, 'Room', '<p>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', '', ''),
412(45, 1, 'Lighting', '', '', ''),
413(57, 1, 'Rugs', '', '', ''),
414(59, 1, 'Accessories', '<p>Accessories</p>\r\n', '', ''),
415(60, 1, 'Rugs/Pillows', '<p>Rugs/Pillows</p>\r\n', '', ''),
416(61, 1, 'Dinning/Kitchen', '<p>Dinning/Kitchen</p>\r\n', '', ''),
417(62, 1, 'Office', '<p>Office</p>\r\n', '', ''),
418(63, 1, 'Storage', '<p>Storage</p>\r\n', '', ''),
419(64, 1, 'Bed/Bath', '<p>Bed/Bath</p>\r\n', '', ''),
420(74, 1, 'Outdoor', '<p>Outdoor</p>\r\n', '', ''),
421(75, 1, 'Furniture', '<p>Furniture</p>\r\n', '', ''),
422(76, 1, 'Shop By Category', '<p>lighting</p>\r\n', '', ''),
423(94, 1, 'Office Funiture', '<p>Office Funiture</p>\r\n', '', ''),
424(95, 1, 'Tasking Light', '<p>Tasking Light</p>\r\n', '', ''),
425(96, 1, 'Office Accessories', '<p>Office Accessories</p>\r\n', '', ''),
426(97, 1, 'Book & paper', '<p>Book &amp; paper</p>\r\n', '', ''),
427(103, 1, 'Outdoor Accessories', '<p>Outdoor Accessories</p>\r\n', '', ''),
428(104, 1, 'Outdoor Furniture', '<p>Outdoor Furniture</p>\r\n', '', ''),
429(105, 1, 'Outdoor Entertaning ', '<p>Outdoor Entertaning</p>\r\n', '', ''),
430(106, 1, 'Table Lamps', '<p>Table Lamps</p>\r\n', '', ''),
431(107, 1, 'Floor Lamp', '<p>Floor Lamp</p>\r\n', '', ''),
432(108, 1, 'Pendant Lamp', '<p>Pendant Lamp</p>\r\n', '', ''),
433(109, 1, 'Light Bulbs', '<p>Light Bulbs</p>\r\n', '', ''),
434(110, 1, 'Wall Scones', '<p>Wall Scones</p>\r\n', '', ''),
435(111, 1, ' Candle Holders & Candle', '<p>&nbsp;Candle Holders &amp; Candle</p>\r\n', '', ''),
436(115, 1, 'Shop By Room', '', '', ''),
437(117, 1, 'Kitchen ', '', '', ''),
438(118, 1, 'Sitting Room', '', '', '');
439
440-- --------------------------------------------------------
441
442--
443-- Table structure for table `category_filter`
444--
445
446CREATE TABLE IF NOT EXISTS `category_filter` (
447 `category_id` int(11) NOT NULL,
448 `filter_id` int(11) NOT NULL,
449 PRIMARY KEY (`category_id`,`filter_id`)
450) ENGINE=MyISAM DEFAULT CHARSET=utf8;
451
452-- --------------------------------------------------------
453
454--
455-- Table structure for table `category_path`
456--
457
458CREATE TABLE IF NOT EXISTS `category_path` (
459 `category_id` int(11) NOT NULL,
460 `path_id` int(11) NOT NULL,
461 `level` int(11) NOT NULL,
462 PRIMARY KEY (`category_id`,`path_id`)
463) ENGINE=MyISAM DEFAULT CHARSET=utf8;
464
465--
466-- Dumping data for table `category_path`
467--
468
469INSERT INTO `category_path` (`category_id`, `path_id`, `level`) VALUES
470(28, 28, 1),
471(35, 35, 1),
472(29, 29, 1),
473(30, 30, 1),
474(75, 76, 0),
475(20, 20, 1),
476(117, 115, 0),
477(116, 116, 1),
478(116, 115, 0),
479(115, 115, 0),
480(18, 18, 1),
481(45, 45, 2),
482(33, 33, 1),
483(57, 57, 1),
484(59, 20, 1),
485(59, 59, 2),
486(60, 20, 1),
487(60, 60, 2),
488(61, 20, 1),
489(61, 61, 2),
490(62, 20, 1),
491(62, 62, 2),
492(63, 20, 1),
493(63, 63, 2),
494(64, 20, 1),
495(64, 64, 2),
496(103, 103, 2),
497(74, 20, 1),
498(74, 74, 2),
499(75, 20, 1),
500(75, 75, 2),
501(76, 76, 0),
502(45, 20, 1),
503(45, 76, 0),
504(60, 76, 0),
505(61, 76, 0),
506(63, 76, 0),
507(64, 76, 0),
508(94, 29, 1),
509(94, 94, 2),
510(95, 29, 1),
511(95, 95, 2),
512(96, 29, 1),
513(96, 96, 2),
514(97, 29, 1),
515(97, 97, 2),
516(103, 28, 1),
517(104, 28, 1),
518(104, 104, 2),
519(105, 28, 1),
520(105, 105, 2),
521(106, 76, 0),
522(106, 106, 1),
523(107, 107, 1),
524(108, 76, 0),
525(108, 108, 1),
526(109, 76, 0),
527(109, 109, 1),
528(110, 76, 0),
529(110, 110, 1),
530(111, 76, 0),
531(111, 111, 1),
532(107, 76, 0),
533(117, 117, 1),
534(118, 115, 0),
535(118, 118, 1),
536(59, 76, 0),
537(62, 76, 0),
538(74, 76, 0),
539(20, 76, 0),
540(29, 76, 0),
541(94, 76, 0),
542(95, 76, 0),
543(96, 76, 0),
544(97, 76, 0),
545(30, 76, 0),
546(33, 76, 0),
547(28, 76, 0),
548(103, 76, 0),
549(104, 76, 0),
550(105, 76, 0),
551(57, 76, 0),
552(18, 76, 0),
553(35, 76, 0);
554
555-- --------------------------------------------------------
556
557--
558-- Table structure for table `category_to_layout`
559--
560
561CREATE TABLE IF NOT EXISTS `category_to_layout` (
562 `category_id` int(11) NOT NULL,
563 `store_id` int(11) NOT NULL,
564 `layout_id` int(11) NOT NULL,
565 PRIMARY KEY (`category_id`,`store_id`)
566) ENGINE=MyISAM DEFAULT CHARSET=utf8;
567
568-- --------------------------------------------------------
569
570--
571-- Table structure for table `category_to_store`
572--
573
574CREATE TABLE IF NOT EXISTS `category_to_store` (
575 `category_id` int(11) NOT NULL,
576 `store_id` int(11) NOT NULL,
577 PRIMARY KEY (`category_id`,`store_id`)
578) ENGINE=MyISAM DEFAULT CHARSET=utf8;
579
580--
581-- Dumping data for table `category_to_store`
582--
583
584INSERT INTO `category_to_store` (`category_id`, `store_id`) VALUES
585(18, 0),
586(20, 0),
587(28, 0),
588(29, 0),
589(30, 0),
590(33, 0),
591(35, 0),
592(45, 0),
593(57, 0),
594(59, 0),
595(60, 0),
596(61, 0),
597(62, 0),
598(63, 0),
599(64, 0),
600(74, 0),
601(75, 0),
602(76, 0),
603(94, 0),
604(95, 0),
605(96, 0),
606(97, 0),
607(103, 0),
608(104, 0),
609(105, 0),
610(106, 0),
611(107, 0),
612(108, 0),
613(109, 0),
614(110, 0),
615(111, 0),
616(115, 0),
617(116, 0),
618(117, 0),
619(118, 0);
620
621-- --------------------------------------------------------
622
623--
624-- Table structure for table `country`
625--
626
627CREATE TABLE IF NOT EXISTS `country` (
628 `country_id` int(11) NOT NULL AUTO_INCREMENT,
629 `name` varchar(128) NOT NULL,
630 `iso_code_2` varchar(2) NOT NULL,
631 `iso_code_3` varchar(3) NOT NULL,
632 `address_format` text NOT NULL,
633 `postcode_required` tinyint(1) NOT NULL,
634 `status` tinyint(1) NOT NULL DEFAULT '1',
635 PRIMARY KEY (`country_id`)
636) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=252 ;
637
638--
639-- Dumping data for table `country`
640--
641
642INSERT INTO `country` (`country_id`, `name`, `iso_code_2`, `iso_code_3`, `address_format`, `postcode_required`, `status`) VALUES
643(1, 'Afghanistan', 'AF', 'AFG', '', 0, 1),
644(2, 'Albania', 'AL', 'ALB', '', 0, 1),
645(3, 'Algeria', 'DZ', 'DZA', '', 0, 1),
646(4, 'American Samoa', 'AS', 'ASM', '', 0, 1),
647(5, 'Andorra', 'AD', 'AND', '', 0, 1),
648(6, 'Angola', 'AO', 'AGO', '', 0, 1),
649(7, 'Anguilla', 'AI', 'AIA', '', 0, 1),
650(8, 'Antarctica', 'AQ', 'ATA', '', 0, 1),
651(9, 'Antigua and Barbuda', 'AG', 'ATG', '', 0, 1),
652(10, 'Argentina', 'AR', 'ARG', '', 0, 1),
653(11, 'Armenia', 'AM', 'ARM', '', 0, 1),
654(12, 'Aruba', 'AW', 'ABW', '', 0, 1),
655(13, 'Australia', 'AU', 'AUS', '', 0, 1),
656(14, 'Austria', 'AT', 'AUT', '', 0, 1),
657(15, 'Azerbaijan', 'AZ', 'AZE', '', 0, 1),
658(16, 'Bahamas', 'BS', 'BHS', '', 0, 1),
659(17, 'Bahrain', 'BH', 'BHR', '', 0, 1),
660(18, 'Bangladesh', 'BD', 'BGD', '', 0, 1),
661(19, 'Barbados', 'BB', 'BRB', '', 0, 1),
662(20, 'Belarus', 'BY', 'BLR', '', 0, 1),
663(21, 'Belgium', 'BE', 'BEL', '{firstname} {lastname}\r\n{company}\r\n{address_1}\r\n{address_2}\r\n{postcode} {city}\r\n{country}', 0, 1),
664(22, 'Belize', 'BZ', 'BLZ', '', 0, 1),
665(23, 'Benin', 'BJ', 'BEN', '', 0, 1),
666(24, 'Bermuda', 'BM', 'BMU', '', 0, 1),
667(25, 'Bhutan', 'BT', 'BTN', '', 0, 1),
668(26, 'Bolivia', 'BO', 'BOL', '', 0, 1),
669(27, 'Bosnia and Herzegovina', 'BA', 'BIH', '', 0, 1),
670(28, 'Botswana', 'BW', 'BWA', '', 0, 1),
671(29, 'Bouvet Island', 'BV', 'BVT', '', 0, 1),
672(30, 'Brazil', 'BR', 'BRA', '', 0, 1),
673(31, 'British Indian Ocean Territory', 'IO', 'IOT', '', 0, 1),
674(32, 'Brunei Darussalam', 'BN', 'BRN', '', 0, 1),
675(33, 'Bulgaria', 'BG', 'BGR', '', 0, 1),
676(34, 'Burkina Faso', 'BF', 'BFA', '', 0, 1),
677(35, 'Burundi', 'BI', 'BDI', '', 0, 1),
678(36, 'Cambodia', 'KH', 'KHM', '', 0, 1),
679(37, 'Cameroon', 'CM', 'CMR', '', 0, 1),
680(38, 'Canada', 'CA', 'CAN', '', 0, 1),
681(39, 'Cape Verde', 'CV', 'CPV', '', 0, 1),
682(40, 'Cayman Islands', 'KY', 'CYM', '', 0, 1),
683(41, 'Central African Republic', 'CF', 'CAF', '', 0, 1),
684(42, 'Chad', 'TD', 'TCD', '', 0, 1),
685(43, 'Chile', 'CL', 'CHL', '', 0, 1),
686(44, 'China', 'CN', 'CHN', '', 0, 1),
687(45, 'Christmas Island', 'CX', 'CXR', '', 0, 1),
688(46, 'Cocos (Keeling) Islands', 'CC', 'CCK', '', 0, 1),
689(47, 'Colombia', 'CO', 'COL', '', 0, 1),
690(48, 'Comoros', 'KM', 'COM', '', 0, 1),
691(49, 'Congo', 'CG', 'COG', '', 0, 1),
692(50, 'Cook Islands', 'CK', 'COK', '', 0, 1),
693(51, 'Costa Rica', 'CR', 'CRI', '', 0, 1),
694(52, 'Cote D''Ivoire', 'CI', 'CIV', '', 0, 1),
695(53, 'Croatia', 'HR', 'HRV', '', 0, 1),
696(54, 'Cuba', 'CU', 'CUB', '', 0, 1),
697(55, 'Cyprus', 'CY', 'CYP', '', 0, 1),
698(56, 'Czech Republic', 'CZ', 'CZE', '', 0, 1),
699(57, 'Denmark', 'DK', 'DNK', '', 0, 1),
700(58, 'Djibouti', 'DJ', 'DJI', '', 0, 1),
701(59, 'Dominica', 'DM', 'DMA', '', 0, 1),
702(60, 'Dominican Republic', 'DO', 'DOM', '', 0, 1),
703(61, 'East Timor', 'TL', 'TLS', '', 0, 1),
704(62, 'Ecuador', 'EC', 'ECU', '', 0, 1),
705(63, 'Egypt', 'EG', 'EGY', '', 0, 1),
706(64, 'El Salvador', 'SV', 'SLV', '', 0, 1),
707(65, 'Equatorial Guinea', 'GQ', 'GNQ', '', 0, 1),
708(66, 'Eritrea', 'ER', 'ERI', '', 0, 1),
709(67, 'Estonia', 'EE', 'EST', '', 0, 1),
710(68, 'Ethiopia', 'ET', 'ETH', '', 0, 1),
711(69, 'Falkland Islands (Malvinas)', 'FK', 'FLK', '', 0, 1),
712(70, 'Faroe Islands', 'FO', 'FRO', '', 0, 1),
713(71, 'Fiji', 'FJ', 'FJI', '', 0, 1),
714(72, 'Finland', 'FI', 'FIN', '', 0, 1),
715(74, 'France, Metropolitan', 'FR', 'FRA', '{firstname} {lastname}\r\n{company}\r\n{address_1}\r\n{address_2}\r\n{postcode} {city}\r\n{country}', 1, 1),
716(75, 'French Guiana', 'GF', 'GUF', '', 0, 1),
717(76, 'French Polynesia', 'PF', 'PYF', '', 0, 1),
718(77, 'French Southern Territories', 'TF', 'ATF', '', 0, 1),
719(78, 'Gabon', 'GA', 'GAB', '', 0, 1),
720(79, 'Gambia', 'GM', 'GMB', '', 0, 1),
721(80, 'Georgia', 'GE', 'GEO', '', 0, 1),
722(81, 'Germany', 'DE', 'DEU', '{company}\r\n{firstname} {lastname}\r\n{address_1}\r\n{address_2}\r\n{postcode} {city}\r\n{country}', 1, 1),
723(82, 'Ghana', 'GH', 'GHA', '', 0, 1),
724(83, 'Gibraltar', 'GI', 'GIB', '', 0, 1),
725(84, 'Greece', 'GR', 'GRC', '', 0, 1),
726(85, 'Greenland', 'GL', 'GRL', '', 0, 1),
727(86, 'Grenada', 'GD', 'GRD', '', 0, 1),
728(87, 'Guadeloupe', 'GP', 'GLP', '', 0, 1),
729(88, 'Guam', 'GU', 'GUM', '', 0, 1),
730(89, 'Guatemala', 'GT', 'GTM', '', 0, 1),
731(90, 'Guinea', 'GN', 'GIN', '', 0, 1),
732(91, 'Guinea-Bissau', 'GW', 'GNB', '', 0, 1),
733(92, 'Guyana', 'GY', 'GUY', '', 0, 1),
734(93, 'Haiti', 'HT', 'HTI', '', 0, 1),
735(94, 'Heard and Mc Donald Islands', 'HM', 'HMD', '', 0, 1),
736(95, 'Honduras', 'HN', 'HND', '', 0, 1),
737(96, 'Hong Kong', 'HK', 'HKG', '', 0, 1),
738(97, 'Hungary', 'HU', 'HUN', '', 0, 1),
739(98, 'Iceland', 'IS', 'ISL', '', 0, 1),
740(99, 'India', 'IN', 'IND', '', 0, 1),
741(100, 'Indonesia', 'ID', 'IDN', '', 0, 1),
742(101, 'Iran (Islamic Republic of)', 'IR', 'IRN', '', 0, 1),
743(102, 'Iraq', 'IQ', 'IRQ', '', 0, 1),
744(103, 'Ireland', 'IE', 'IRL', '', 0, 1),
745(104, 'Israel', 'IL', 'ISR', '', 0, 1),
746(105, 'Italy', 'IT', 'ITA', '', 0, 1),
747(106, 'Jamaica', 'JM', 'JAM', '', 0, 1),
748(107, 'Japan', 'JP', 'JPN', '', 0, 1),
749(108, 'Jordan', 'JO', 'JOR', '', 0, 1),
750(109, 'Kazakhstan', 'KZ', 'KAZ', '', 0, 1),
751(110, 'Kenya', 'KE', 'KEN', '', 0, 1),
752(111, 'Kiribati', 'KI', 'KIR', '', 0, 1),
753(112, 'North Korea', 'KP', 'PRK', '', 0, 1),
754(113, 'Korea, Republic of', 'KR', 'KOR', '', 0, 1),
755(114, 'Kuwait', 'KW', 'KWT', '', 0, 1),
756(115, 'Kyrgyzstan', 'KG', 'KGZ', '', 0, 1),
757(116, 'Lao People''s Democratic Republic', 'LA', 'LAO', '', 0, 1),
758(117, 'Latvia', 'LV', 'LVA', '', 0, 1),
759(118, 'Lebanon', 'LB', 'LBN', '', 0, 1),
760(119, 'Lesotho', 'LS', 'LSO', '', 0, 1),
761(120, 'Liberia', 'LR', 'LBR', '', 0, 1),
762(121, 'Libyan Arab Jamahiriya', 'LY', 'LBY', '', 0, 1),
763(122, 'Liechtenstein', 'LI', 'LIE', '', 0, 1),
764(123, 'Lithuania', 'LT', 'LTU', '', 0, 1),
765(124, 'Luxembourg', 'LU', 'LUX', '', 0, 1),
766(125, 'Macau', 'MO', 'MAC', '', 0, 1),
767(126, 'FYROM', 'MK', 'MKD', '', 0, 1),
768(127, 'Madagascar', 'MG', 'MDG', '', 0, 1),
769(128, 'Malawi', 'MW', 'MWI', '', 0, 1),
770(129, 'Malaysia', 'MY', 'MYS', '', 0, 1),
771(130, 'Maldives', 'MV', 'MDV', '', 0, 1),
772(131, 'Mali', 'ML', 'MLI', '', 0, 1),
773(132, 'Malta', 'MT', 'MLT', '', 0, 1),
774(133, 'Marshall Islands', 'MH', 'MHL', '', 0, 1),
775(134, 'Martinique', 'MQ', 'MTQ', '', 0, 1),
776(135, 'Mauritania', 'MR', 'MRT', '', 0, 1),
777(136, 'Mauritius', 'MU', 'MUS', '', 0, 1),
778(137, 'Mayotte', 'YT', 'MYT', '', 0, 1),
779(138, 'Mexico', 'MX', 'MEX', '', 0, 1),
780(139, 'Micronesia, Federated States of', 'FM', 'FSM', '', 0, 1),
781(140, 'Moldova, Republic of', 'MD', 'MDA', '', 0, 1),
782(141, 'Monaco', 'MC', 'MCO', '', 0, 1),
783(142, 'Mongolia', 'MN', 'MNG', '', 0, 1),
784(143, 'Montserrat', 'MS', 'MSR', '', 0, 1),
785(144, 'Morocco', 'MA', 'MAR', '', 0, 1),
786(145, 'Mozambique', 'MZ', 'MOZ', '', 0, 1),
787(146, 'Myanmar', 'MM', 'MMR', '', 0, 1),
788(147, 'Namibia', 'NA', 'NAM', '', 0, 1),
789(148, 'Nauru', 'NR', 'NRU', '', 0, 1),
790(149, 'Nepal', 'NP', 'NPL', '', 0, 1),
791(150, 'Netherlands', 'NL', 'NLD', '', 0, 1),
792(151, 'Netherlands Antilles', 'AN', 'ANT', '', 0, 1),
793(152, 'New Caledonia', 'NC', 'NCL', '', 0, 1),
794(153, 'New Zealand', 'NZ', 'NZL', '', 0, 1),
795(154, 'Nicaragua', 'NI', 'NIC', '', 0, 1),
796(155, 'Niger', 'NE', 'NER', '', 0, 1),
797(156, 'Nigeria', 'NG', 'NGA', '', 0, 1),
798(157, 'Niue', 'NU', 'NIU', '', 0, 1),
799(158, 'Norfolk Island', 'NF', 'NFK', '', 0, 1),
800(159, 'Northern Mariana Islands', 'MP', 'MNP', '', 0, 1),
801(160, 'Norway', 'NO', 'NOR', '', 0, 1),
802(161, 'Oman', 'OM', 'OMN', '', 0, 1),
803(162, 'Pakistan', 'PK', 'PAK', '', 0, 1),
804(163, 'Palau', 'PW', 'PLW', '', 0, 1),
805(164, 'Panama', 'PA', 'PAN', '', 0, 1),
806(165, 'Papua New Guinea', 'PG', 'PNG', '', 0, 1),
807(166, 'Paraguay', 'PY', 'PRY', '', 0, 1),
808(167, 'Peru', 'PE', 'PER', '', 0, 1),
809(168, 'Philippines', 'PH', 'PHL', '', 0, 1),
810(169, 'Pitcairn', 'PN', 'PCN', '', 0, 1),
811(170, 'Poland', 'PL', 'POL', '', 0, 1),
812(171, 'Portugal', 'PT', 'PRT', '', 0, 1),
813(172, 'Puerto Rico', 'PR', 'PRI', '', 0, 1),
814(173, 'Qatar', 'QA', 'QAT', '', 0, 1),
815(174, 'Reunion', 'RE', 'REU', '', 0, 1),
816(175, 'Romania', 'RO', 'ROM', '', 0, 1),
817(176, 'Russian Federation', 'RU', 'RUS', '', 0, 1),
818(177, 'Rwanda', 'RW', 'RWA', '', 0, 1),
819(178, 'Saint Kitts and Nevis', 'KN', 'KNA', '', 0, 1),
820(179, 'Saint Lucia', 'LC', 'LCA', '', 0, 1),
821(180, 'Saint Vincent and the Grenadines', 'VC', 'VCT', '', 0, 1),
822(181, 'Samoa', 'WS', 'WSM', '', 0, 1),
823(182, 'San Marino', 'SM', 'SMR', '', 0, 1),
824(183, 'Sao Tome and Principe', 'ST', 'STP', '', 0, 1),
825(184, 'Saudi Arabia', 'SA', 'SAU', '', 0, 1),
826(185, 'Senegal', 'SN', 'SEN', '', 0, 1),
827(186, 'Seychelles', 'SC', 'SYC', '', 0, 1),
828(187, 'Sierra Leone', 'SL', 'SLE', '', 0, 1),
829(188, 'Singapore', 'SG', 'SGP', '', 0, 1),
830(189, 'Slovak Republic', 'SK', 'SVK', '{firstname} {lastname}\r\n{company}\r\n{address_1}\r\n{address_2}\r\n{city} {postcode}\r\n{zone}\r\n{country}', 0, 1),
831(190, 'Slovenia', 'SI', 'SVN', '', 0, 1),
832(191, 'Solomon Islands', 'SB', 'SLB', '', 0, 1),
833(192, 'Somalia', 'SO', 'SOM', '', 0, 1),
834(193, 'South Africa', 'ZA', 'ZAF', '', 0, 1),
835(194, 'South Georgia & South Sandwich Islands', 'GS', 'SGS', '', 0, 1),
836(195, 'Spain', 'ES', 'ESP', '', 0, 1),
837(196, 'Sri Lanka', 'LK', 'LKA', '', 0, 1),
838(197, 'St. Helena', 'SH', 'SHN', '', 0, 1),
839(198, 'St. Pierre and Miquelon', 'PM', 'SPM', '', 0, 1),
840(199, 'Sudan', 'SD', 'SDN', '', 0, 1),
841(200, 'Suriname', 'SR', 'SUR', '', 0, 1),
842(201, 'Svalbard and Jan Mayen Islands', 'SJ', 'SJM', '', 0, 1),
843(202, 'Swaziland', 'SZ', 'SWZ', '', 0, 1),
844(203, 'Sweden', 'SE', 'SWE', '{company}\r\n{firstname} {lastname}\r\n{address_1}\r\n{address_2}\r\n{postcode} {city}\r\n{country}', 1, 1),
845(204, 'Switzerland', 'CH', 'CHE', '', 0, 1),
846(205, 'Syrian Arab Republic', 'SY', 'SYR', '', 0, 1),
847(206, 'Taiwan', 'TW', 'TWN', '', 0, 1),
848(207, 'Tajikistan', 'TJ', 'TJK', '', 0, 1),
849(208, 'Tanzania, United Republic of', 'TZ', 'TZA', '', 0, 1),
850(209, 'Thailand', 'TH', 'THA', '', 0, 1),
851(210, 'Togo', 'TG', 'TGO', '', 0, 1),
852(211, 'Tokelau', 'TK', 'TKL', '', 0, 1),
853(212, 'Tonga', 'TO', 'TON', '', 0, 1),
854(213, 'Trinidad and Tobago', 'TT', 'TTO', '', 0, 1),
855(214, 'Tunisia', 'TN', 'TUN', '', 0, 1),
856(215, 'Turkey', 'TR', 'TUR', '', 0, 1),
857(216, 'Turkmenistan', 'TM', 'TKM', '', 0, 1),
858(217, 'Turks and Caicos Islands', 'TC', 'TCA', '', 0, 1),
859(218, 'Tuvalu', 'TV', 'TUV', '', 0, 1),
860(219, 'Uganda', 'UG', 'UGA', '', 0, 1),
861(220, 'Ukraine', 'UA', 'UKR', '', 0, 1),
862(221, 'United Arab Emirates', 'AE', 'ARE', '', 0, 1),
863(222, 'United Kingdom', 'GB', 'GBR', '', 1, 1),
864(223, 'United States', 'US', 'USA', '{firstname} {lastname}\r\n{company}\r\n{address_1}\r\n{address_2}\r\n{city}, {zone} {postcode}\r\n{country}', 0, 1),
865(224, 'United States Minor Outlying Islands', 'UM', 'UMI', '', 0, 1),
866(225, 'Uruguay', 'UY', 'URY', '', 0, 1),
867(226, 'Uzbekistan', 'UZ', 'UZB', '', 0, 1),
868(227, 'Vanuatu', 'VU', 'VUT', '', 0, 1),
869(228, 'Vatican City State (Holy See)', 'VA', 'VAT', '', 0, 1),
870(229, 'Venezuela', 'VE', 'VEN', '', 0, 1),
871(230, 'Viet Nam', 'VN', 'VNM', '', 0, 1),
872(231, 'Virgin Islands (British)', 'VG', 'VGB', '', 0, 1),
873(232, 'Virgin Islands (U.S.)', 'VI', 'VIR', '', 0, 1),
874(233, 'Wallis and Futuna Islands', 'WF', 'WLF', '', 0, 1),
875(234, 'Western Sahara', 'EH', 'ESH', '', 0, 1),
876(235, 'Yemen', 'YE', 'YEM', '', 0, 1),
877(237, 'Democratic Republic of Congo', 'CD', 'COD', '', 0, 1),
878(238, 'Zambia', 'ZM', 'ZMB', '', 0, 1),
879(239, 'Zimbabwe', 'ZW', 'ZWE', '', 0, 1),
880(240, 'Jersey', 'JE', 'JEY', '', 1, 1),
881(241, 'Guernsey', 'GG', 'GGY', '', 1, 1),
882(242, 'Montenegro', 'ME', 'MNE', '', 0, 1),
883(243, 'Serbia', 'RS', 'SRB', '', 0, 1),
884(244, 'Aaland Islands', 'AX', 'ALA', '', 0, 1),
885(245, 'Bonaire, Sint Eustatius and Saba', 'BQ', 'BES', '', 0, 1),
886(246, 'Curacao', 'CW', 'CUW', '', 0, 1),
887(247, 'Palestinian Territory, Occupied', 'PS', 'PSE', '', 0, 1),
888(248, 'South Sudan', 'SS', 'SSD', '', 0, 1),
889(249, 'St. Barthelemy', 'BL', 'BLM', '', 0, 1),
890(250, 'St. Martin (French part)', 'MF', 'MAF', '', 0, 1),
891(251, 'Canary Islands', 'IC', 'ICA', '', 0, 1);
892
893-- --------------------------------------------------------
894
895--
896-- Table structure for table `coupon`
897--
898
899CREATE TABLE IF NOT EXISTS `coupon` (
900 `coupon_id` int(11) NOT NULL AUTO_INCREMENT,
901 `name` varchar(128) NOT NULL,
902 `code` varchar(10) NOT NULL,
903 `type` char(1) NOT NULL,
904 `discount` decimal(15,4) NOT NULL,
905 `logged` tinyint(1) NOT NULL,
906 `shipping` tinyint(1) NOT NULL,
907 `total` decimal(15,4) NOT NULL,
908 `date_start` date NOT NULL DEFAULT '0000-00-00',
909 `date_end` date NOT NULL DEFAULT '0000-00-00',
910 `uses_total` int(11) NOT NULL,
911 `uses_customer` varchar(11) NOT NULL,
912 `status` tinyint(1) NOT NULL,
913 `date_added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
914 PRIMARY KEY (`coupon_id`)
915) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=7 ;
916
917--
918-- Dumping data for table `coupon`
919--
920
921INSERT INTO `coupon` (`coupon_id`, `name`, `code`, `type`, `discount`, `logged`, `shipping`, `total`, `date_start`, `date_end`, `uses_total`, `uses_customer`, `status`, `date_added`) VALUES
922(4, '-10% Discount', '2222', 'P', '10.0000', 0, 0, '0.0000', '2011-01-01', '2012-01-01', 10, '10', 1, '2009-01-27 13:55:03'),
923(5, 'Free Shipping', '3333', 'P', '0.0000', 0, 1, '100.0000', '2009-03-01', '2009-08-31', 10, '10', 1, '2009-03-14 21:13:53'),
924(6, '-10.00 Discount', '1111', 'F', '10.0000', 0, 0, '10.0000', '1970-11-01', '2020-11-01', 100000, '10000', 1, '2009-03-14 21:15:18');
925
926-- --------------------------------------------------------
927
928--
929-- Table structure for table `coupon_category`
930--
931
932CREATE TABLE IF NOT EXISTS `coupon_category` (
933 `coupon_id` int(11) NOT NULL,
934 `category_id` int(11) NOT NULL,
935 PRIMARY KEY (`coupon_id`,`category_id`)
936) ENGINE=MyISAM DEFAULT CHARSET=utf8;
937
938-- --------------------------------------------------------
939
940--
941-- Table structure for table `coupon_history`
942--
943
944CREATE TABLE IF NOT EXISTS `coupon_history` (
945 `coupon_history_id` int(11) NOT NULL AUTO_INCREMENT,
946 `coupon_id` int(11) NOT NULL,
947 `order_id` int(11) NOT NULL,
948 `customer_id` int(11) NOT NULL,
949 `amount` decimal(15,4) NOT NULL,
950 `date_added` datetime NOT NULL,
951 PRIMARY KEY (`coupon_history_id`)
952) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
953
954-- --------------------------------------------------------
955
956--
957-- Table structure for table `coupon_product`
958--
959
960CREATE TABLE IF NOT EXISTS `coupon_product` (
961 `coupon_product_id` int(11) NOT NULL AUTO_INCREMENT,
962 `coupon_id` int(11) NOT NULL,
963 `product_id` int(11) NOT NULL,
964 PRIMARY KEY (`coupon_product_id`)
965) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
966
967-- --------------------------------------------------------
968
969--
970-- Table structure for table `currency`
971--
972
973CREATE TABLE IF NOT EXISTS `currency` (
974 `currency_id` int(11) NOT NULL AUTO_INCREMENT,
975 `title` varchar(32) NOT NULL,
976 `code` varchar(3) NOT NULL,
977 `symbol_left` varchar(12) NOT NULL,
978 `symbol_right` varchar(12) NOT NULL,
979 `decimal_place` char(1) NOT NULL,
980 `value` float(15,8) NOT NULL,
981 `status` tinyint(1) NOT NULL,
982 `date_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
983 PRIMARY KEY (`currency_id`)
984) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=5 ;
985
986--
987-- Dumping data for table `currency`
988--
989
990INSERT INTO `currency` (`currency_id`, `title`, `code`, `symbol_left`, `symbol_right`, `decimal_place`, `value`, `status`, `date_modified`) VALUES
991(1, 'Pound Sterling', 'GBP', '£', '', '2', 0.00330000, 1, '2015-09-08 13:07:58'),
992(2, 'US Dollar', 'USD', '$', '', '2', 0.00500000, 1, '2015-09-08 13:07:58'),
993(3, 'Euro', 'EUR', '', '€', '2', 0.00450000, 1, '2015-09-08 13:07:58'),
994(4, 'Naira', 'NGN', 'N', '', '', 1.00000000, 1, '2015-09-08 13:07:58');
995
996-- --------------------------------------------------------
997
998--
999-- Table structure for table `customer`
1000--
1001
1002CREATE TABLE IF NOT EXISTS `customer` (
1003 `customer_id` int(11) NOT NULL AUTO_INCREMENT,
1004 `store_id` int(11) NOT NULL DEFAULT '0',
1005 `firstname` varchar(32) NOT NULL,
1006 `lastname` varchar(32) NOT NULL,
1007 `email` varchar(96) NOT NULL,
1008 `telephone` varchar(32) NOT NULL,
1009 `fax` varchar(32) NOT NULL,
1010 `password` varchar(40) NOT NULL,
1011 `salt` varchar(9) NOT NULL,
1012 `cart` text,
1013 `wishlist` text,
1014 `newsletter` tinyint(1) NOT NULL DEFAULT '0',
1015 `address_id` int(11) NOT NULL DEFAULT '0',
1016 `customer_group_id` int(11) NOT NULL,
1017 `ip` varchar(40) NOT NULL DEFAULT '0',
1018 `status` tinyint(1) NOT NULL,
1019 `approved` tinyint(1) NOT NULL,
1020 `token` varchar(255) NOT NULL,
1021 `date_added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
1022 PRIMARY KEY (`customer_id`)
1023) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
1024
1025--
1026-- Dumping data for table `customer`
1027--
1028
1029INSERT INTO `customer` (`customer_id`, `store_id`, `firstname`, `lastname`, `email`, `telephone`, `fax`, `password`, `salt`, `cart`, `wishlist`, `newsletter`, `address_id`, `customer_group_id`, `ip`, `status`, `approved`, `token`, `date_added`) VALUES
1030(1, 0, 'Akinyele', 'Israel', 'abiodun@ckdigital.net', '09093843572', '', 'db683f9d1b4db749bab8936e0bdd9fbd6568645e', 'c3d4a339d', 'a:1:{s:4:"95::";i:1;}', 'a:0:{}', 0, 1, 1, '41.58.223.180', 1, 1, '', '2015-08-06 05:01:06');
1031
1032-- --------------------------------------------------------
1033
1034--
1035-- Table structure for table `customer_ban_ip`
1036--
1037
1038CREATE TABLE IF NOT EXISTS `customer_ban_ip` (
1039 `customer_ban_ip_id` int(11) NOT NULL AUTO_INCREMENT,
1040 `ip` varchar(40) NOT NULL,
1041 PRIMARY KEY (`customer_ban_ip_id`),
1042 KEY `ip` (`ip`)
1043) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
1044
1045-- --------------------------------------------------------
1046
1047--
1048-- Table structure for table `customer_field`
1049--
1050
1051CREATE TABLE IF NOT EXISTS `customer_field` (
1052 `customer_id` int(11) NOT NULL,
1053 `custom_field_id` int(11) NOT NULL,
1054 `custom_field_value_id` int(11) NOT NULL,
1055 `name` int(128) NOT NULL,
1056 `value` text NOT NULL,
1057 `sort_order` int(3) NOT NULL,
1058 PRIMARY KEY (`customer_id`,`custom_field_id`,`custom_field_value_id`)
1059) ENGINE=MyISAM DEFAULT CHARSET=utf8;
1060
1061-- --------------------------------------------------------
1062
1063--
1064-- Table structure for table `customer_group`
1065--
1066
1067CREATE TABLE IF NOT EXISTS `customer_group` (
1068 `customer_group_id` int(11) NOT NULL AUTO_INCREMENT,
1069 `approval` int(1) NOT NULL,
1070 `company_id_display` int(1) NOT NULL,
1071 `company_id_required` int(1) NOT NULL,
1072 `tax_id_display` int(1) NOT NULL,
1073 `tax_id_required` int(1) NOT NULL,
1074 `sort_order` int(3) NOT NULL,
1075 PRIMARY KEY (`customer_group_id`)
1076) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
1077
1078--
1079-- Dumping data for table `customer_group`
1080--
1081
1082INSERT INTO `customer_group` (`customer_group_id`, `approval`, `company_id_display`, `company_id_required`, `tax_id_display`, `tax_id_required`, `sort_order`) VALUES
1083(1, 0, 1, 0, 0, 1, 1);
1084
1085-- --------------------------------------------------------
1086
1087--
1088-- Table structure for table `customer_group_description`
1089--
1090
1091CREATE TABLE IF NOT EXISTS `customer_group_description` (
1092 `customer_group_id` int(11) NOT NULL,
1093 `language_id` int(11) NOT NULL,
1094 `name` varchar(32) NOT NULL,
1095 `description` text NOT NULL,
1096 PRIMARY KEY (`customer_group_id`,`language_id`)
1097) ENGINE=MyISAM DEFAULT CHARSET=utf8;
1098
1099--
1100-- Dumping data for table `customer_group_description`
1101--
1102
1103INSERT INTO `customer_group_description` (`customer_group_id`, `language_id`, `name`, `description`) VALUES
1104(1, 1, 'Default', 'test');
1105
1106-- --------------------------------------------------------
1107
1108--
1109-- Table structure for table `customer_history`
1110--
1111
1112CREATE TABLE IF NOT EXISTS `customer_history` (
1113 `customer_history_id` int(11) NOT NULL AUTO_INCREMENT,
1114 `customer_id` int(11) NOT NULL,
1115 `comment` text NOT NULL,
1116 `date_added` datetime NOT NULL,
1117 PRIMARY KEY (`customer_history_id`)
1118) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
1119
1120-- --------------------------------------------------------
1121
1122--
1123-- Table structure for table `customer_ip`
1124--
1125
1126CREATE TABLE IF NOT EXISTS `customer_ip` (
1127 `customer_ip_id` int(11) NOT NULL AUTO_INCREMENT,
1128 `customer_id` int(11) NOT NULL,
1129 `ip` varchar(40) NOT NULL,
1130 `date_added` datetime NOT NULL,
1131 PRIMARY KEY (`customer_ip_id`),
1132 KEY `ip` (`ip`)
1133) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=4 ;
1134
1135--
1136-- Dumping data for table `customer_ip`
1137--
1138
1139INSERT INTO `customer_ip` (`customer_ip_id`, `customer_id`, `ip`, `date_added`) VALUES
1140(1, 1, '41.58.223.131', '2015-08-06 05:01:06'),
1141(2, 1, '169.159.68.42', '2015-08-07 07:18:51'),
1142(3, 1, '41.58.223.180', '2015-08-07 07:20:53');
1143
1144-- --------------------------------------------------------
1145
1146--
1147-- Table structure for table `customer_online`
1148--
1149
1150CREATE TABLE IF NOT EXISTS `customer_online` (
1151 `ip` varchar(40) NOT NULL,
1152 `customer_id` int(11) NOT NULL,
1153 `url` text NOT NULL,
1154 `referer` text NOT NULL,
1155 `date_added` datetime NOT NULL,
1156 PRIMARY KEY (`ip`)
1157) ENGINE=MyISAM DEFAULT CHARSET=utf8;
1158
1159-- --------------------------------------------------------
1160
1161--
1162-- Table structure for table `customer_reward`
1163--
1164
1165CREATE TABLE IF NOT EXISTS `customer_reward` (
1166 `customer_reward_id` int(11) NOT NULL AUTO_INCREMENT,
1167 `customer_id` int(11) NOT NULL DEFAULT '0',
1168 `order_id` int(11) NOT NULL DEFAULT '0',
1169 `description` text NOT NULL,
1170 `points` int(8) NOT NULL DEFAULT '0',
1171 `date_added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
1172 PRIMARY KEY (`customer_reward_id`)
1173) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
1174
1175-- --------------------------------------------------------
1176
1177--
1178-- Table structure for table `customer_transaction`
1179--
1180
1181CREATE TABLE IF NOT EXISTS `customer_transaction` (
1182 `customer_transaction_id` int(11) NOT NULL AUTO_INCREMENT,
1183 `customer_id` int(11) NOT NULL,
1184 `order_id` int(11) NOT NULL,
1185 `description` text NOT NULL,
1186 `amount` decimal(15,4) NOT NULL,
1187 `date_added` datetime NOT NULL,
1188 PRIMARY KEY (`customer_transaction_id`)
1189) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
1190
1191-- --------------------------------------------------------
1192
1193--
1194-- Table structure for table `custom_field`
1195--
1196
1197CREATE TABLE IF NOT EXISTS `custom_field` (
1198 `custom_field_id` int(11) NOT NULL AUTO_INCREMENT,
1199 `type` varchar(32) NOT NULL,
1200 `value` text NOT NULL,
1201 `required` tinyint(1) NOT NULL,
1202 `location` varchar(32) NOT NULL,
1203 `position` int(3) NOT NULL,
1204 `sort_order` int(3) NOT NULL,
1205 PRIMARY KEY (`custom_field_id`)
1206) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
1207
1208-- --------------------------------------------------------
1209
1210--
1211-- Table structure for table `custom_field_description`
1212--
1213
1214CREATE TABLE IF NOT EXISTS `custom_field_description` (
1215 `custom_field_id` int(11) NOT NULL,
1216 `language_id` int(11) NOT NULL,
1217 `name` varchar(128) NOT NULL,
1218 PRIMARY KEY (`custom_field_id`,`language_id`)
1219) ENGINE=MyISAM DEFAULT CHARSET=utf8;
1220
1221-- --------------------------------------------------------
1222
1223--
1224-- Table structure for table `custom_field_to_customer_group`
1225--
1226
1227CREATE TABLE IF NOT EXISTS `custom_field_to_customer_group` (
1228 `custom_field_id` int(11) NOT NULL,
1229 `customer_group_id` int(11) NOT NULL,
1230 PRIMARY KEY (`custom_field_id`,`customer_group_id`)
1231) ENGINE=MyISAM DEFAULT CHARSET=utf8;
1232
1233-- --------------------------------------------------------
1234
1235--
1236-- Table structure for table `custom_field_value`
1237--
1238
1239CREATE TABLE IF NOT EXISTS `custom_field_value` (
1240 `custom_field_value_id` int(11) NOT NULL AUTO_INCREMENT,
1241 `custom_field_id` int(11) NOT NULL,
1242 `sort_order` int(3) NOT NULL,
1243 PRIMARY KEY (`custom_field_value_id`)
1244) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
1245
1246-- --------------------------------------------------------
1247
1248--
1249-- Table structure for table `custom_field_value_description`
1250--
1251
1252CREATE TABLE IF NOT EXISTS `custom_field_value_description` (
1253 `custom_field_value_id` int(11) NOT NULL,
1254 `language_id` int(11) NOT NULL,
1255 `custom_field_id` int(11) NOT NULL,
1256 `name` varchar(128) NOT NULL,
1257 PRIMARY KEY (`custom_field_value_id`,`language_id`)
1258) ENGINE=MyISAM DEFAULT CHARSET=utf8;
1259
1260-- --------------------------------------------------------
1261
1262--
1263-- Table structure for table `download`
1264--
1265
1266CREATE TABLE IF NOT EXISTS `download` (
1267 `download_id` int(11) NOT NULL AUTO_INCREMENT,
1268 `filename` varchar(128) NOT NULL,
1269 `mask` varchar(128) NOT NULL,
1270 `remaining` int(11) NOT NULL DEFAULT '0',
1271 `date_added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
1272 PRIMARY KEY (`download_id`)
1273) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
1274
1275-- --------------------------------------------------------
1276
1277--
1278-- Table structure for table `download_description`
1279--
1280
1281CREATE TABLE IF NOT EXISTS `download_description` (
1282 `download_id` int(11) NOT NULL,
1283 `language_id` int(11) NOT NULL,
1284 `name` varchar(64) NOT NULL,
1285 PRIMARY KEY (`download_id`,`language_id`)
1286) ENGINE=MyISAM DEFAULT CHARSET=utf8;
1287
1288-- --------------------------------------------------------
1289
1290--
1291-- Table structure for table `extension`
1292--
1293
1294CREATE TABLE IF NOT EXISTS `extension` (
1295 `extension_id` int(11) NOT NULL AUTO_INCREMENT,
1296 `type` varchar(32) NOT NULL,
1297 `code` varchar(32) NOT NULL,
1298 PRIMARY KEY (`extension_id`)
1299) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=436 ;
1300
1301--
1302-- Dumping data for table `extension`
1303--
1304
1305INSERT INTO `extension` (`extension_id`, `type`, `code`) VALUES
1306(23, 'payment', 'cod'),
1307(22, 'total', 'shipping'),
1308(57, 'total', 'sub_total'),
1309(58, 'total', 'tax'),
1310(59, 'total', 'total'),
1311(410, 'module', 'banner'),
1312(432, 'module', 'lpbc'),
1313(390, 'total', 'credit'),
1314(387, 'shipping', 'flat'),
1315(349, 'total', 'handling'),
1316(350, 'total', 'low_order_fee'),
1317(389, 'total', 'coupon'),
1318(413, 'module', 'category'),
1319(411, 'module', 'affiliate'),
1320(408, 'module', 'account'),
1321(393, 'total', 'reward'),
1322(398, 'total', 'voucher'),
1323(407, 'payment', 'free_checkout'),
1324(427, 'module', 'featured'),
1325(419, 'module', 'slideshow'),
1326(428, 'module', 'productcarousel'),
1327(429, 'module', 'bestseller'),
1328(430, 'module', 'welcome'),
1329(431, 'module', 'custom_html'),
1330(433, 'module', 'latest'),
1331(434, 'module', 'supercategorymenuadvanced'),
1332(435, 'module', 'information');
1333
1334-- --------------------------------------------------------
1335
1336--
1337-- Table structure for table `filter`
1338--
1339
1340CREATE TABLE IF NOT EXISTS `filter` (
1341 `filter_id` int(11) NOT NULL AUTO_INCREMENT,
1342 `filter_group_id` int(11) NOT NULL,
1343 `sort_order` int(3) NOT NULL,
1344 PRIMARY KEY (`filter_id`)
1345) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
1346
1347-- --------------------------------------------------------
1348
1349--
1350-- Table structure for table `filter_description`
1351--
1352
1353CREATE TABLE IF NOT EXISTS `filter_description` (
1354 `filter_id` int(11) NOT NULL,
1355 `language_id` int(11) NOT NULL,
1356 `filter_group_id` int(11) NOT NULL,
1357 `name` varchar(64) NOT NULL,
1358 PRIMARY KEY (`filter_id`,`language_id`)
1359) ENGINE=MyISAM DEFAULT CHARSET=utf8;
1360
1361-- --------------------------------------------------------
1362
1363--
1364-- Table structure for table `filter_group`
1365--
1366
1367CREATE TABLE IF NOT EXISTS `filter_group` (
1368 `filter_group_id` int(11) NOT NULL AUTO_INCREMENT,
1369 `sort_order` int(3) NOT NULL,
1370 PRIMARY KEY (`filter_group_id`)
1371) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
1372
1373-- --------------------------------------------------------
1374
1375--
1376-- Table structure for table `filter_group_description`
1377--
1378
1379CREATE TABLE IF NOT EXISTS `filter_group_description` (
1380 `filter_group_id` int(11) NOT NULL,
1381 `language_id` int(11) NOT NULL,
1382 `name` varchar(64) NOT NULL,
1383 PRIMARY KEY (`filter_group_id`,`language_id`)
1384) ENGINE=MyISAM DEFAULT CHARSET=utf8;
1385
1386-- --------------------------------------------------------
1387
1388--
1389-- Table structure for table `geo_zone`
1390--
1391
1392CREATE TABLE IF NOT EXISTS `geo_zone` (
1393 `geo_zone_id` int(11) NOT NULL AUTO_INCREMENT,
1394 `name` varchar(32) NOT NULL,
1395 `description` varchar(255) NOT NULL,
1396 `date_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
1397 `date_added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
1398 PRIMARY KEY (`geo_zone_id`)
1399) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=5 ;
1400
1401--
1402-- Dumping data for table `geo_zone`
1403--
1404
1405INSERT INTO `geo_zone` (`geo_zone_id`, `name`, `description`, `date_modified`, `date_added`) VALUES
1406(3, 'UK VAT Zone', 'UK VAT', '2010-02-26 22:33:24', '2009-01-06 23:26:25'),
1407(4, 'UK Shipping', 'UK Shipping Zones', '2010-12-15 15:18:13', '2009-06-23 01:14:53');
1408
1409-- --------------------------------------------------------
1410
1411--
1412-- Table structure for table `information`
1413--
1414
1415CREATE TABLE IF NOT EXISTS `information` (
1416 `information_id` int(11) NOT NULL AUTO_INCREMENT,
1417 `bottom` int(1) NOT NULL DEFAULT '0',
1418 `sort_order` int(3) NOT NULL DEFAULT '0',
1419 `status` tinyint(1) NOT NULL DEFAULT '1',
1420 PRIMARY KEY (`information_id`)
1421) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=11 ;
1422
1423--
1424-- Dumping data for table `information`
1425--
1426
1427INSERT INTO `information` (`information_id`, `bottom`, `sort_order`, `status`) VALUES
1428(3, 1, 3, 1),
1429(4, 0, 1, 1),
1430(5, 1, 4, 1),
1431(6, 1, 2, 1),
1432(7, 0, 0, 1),
1433(8, 0, 0, 1),
1434(9, 0, 0, 1),
1435(10, 1, 0, 1);
1436
1437-- --------------------------------------------------------
1438
1439--
1440-- Table structure for table `information_description`
1441--
1442
1443CREATE TABLE IF NOT EXISTS `information_description` (
1444 `information_id` int(11) NOT NULL,
1445 `language_id` int(11) NOT NULL,
1446 `title` varchar(64) NOT NULL,
1447 `description` text NOT NULL,
1448 PRIMARY KEY (`information_id`,`language_id`)
1449) ENGINE=MyISAM DEFAULT CHARSET=utf8;
1450
1451--
1452-- Dumping data for table `information_description`
1453--
1454
1455INSERT INTO `information_description` (`information_id`, `language_id`, `title`, `description`) VALUES
1456(4, 1, 'About Us', '<p>About Us</p>\r\n'),
1457(5, 1, 'Terms & Conditions', '<p>\r\n Terms &amp; Conditions</p>\r\n'),
1458(3, 1, 'Privacy Policy', '<p>\r\n Privacy Policy</p>\r\n'),
1459(6, 1, 'Delivery Information', '<p>\r\n Delivery Information</p>\r\n'),
1460(7, 1, 'Video', '<p>Video</p>\r\n'),
1461(8, 1, 'Press', '<p>Press</p>\r\n'),
1462(9, 1, 'Terms of Use', '<p>Terms of Use</p>\r\n'),
1463(10, 1, 'FAQs', '<p><strong>PURCHASING</strong><br />\r\n<br />\r\n<strong><span>What is spaces.ng?</span></strong><br />\r\n* Spaces.ng&nbsp; is a Bespoke Interior Design and Accessories Online Store which offers clients the opportunity to choose from vast arrays of interior design images<br />\r\nand accessories for various spaces which conveys the clients style, personality and the intending purposes with bespoke designs for the various spaces at the<br />\r\ncomfort of their homes, offices and the global audience.</p>\r\n\r\n<p><strong>How can I place an order for an item ?</strong><br />\r\n* Spaces.ng&nbsp; is a Bespoke Interior Design and Accessories Online Store which offers clients the opportunity to choose from vast arrays of interior design images<br />\r\nand accessories for various spaces which conveys the clients style, personality and the intending purposes with bespoke designs for the various spaces at the<br />\r\ncomfort of their homes, offices and the global audience.</p>\r\n\r\n<p><strong>How can I purchase an item on the spaces.ng?</strong><br />\r\nIf you are a registered customer with spaces.ng, you can sign-in to your account using the email address when you first registered with us &amp; use your<br />\r\npassword. If you are a new customer, you can either register to have your own account or check out as a guest.</p>\r\n\r\n<p>To place an order for an item on the Zohi Interiors online store, simply add items to your shopping cart &amp; proceed to the checkout. The shipping will be automatically calculated once you have entered your postcode. In some cases shipping will not be able to be calculated if your delivery is in a regional location. In this case please contact us for a shipping quotation.</p>\r\n\r\n<p>Payment can be made online using your Visa, Mastercard or Paypal account. All prices displayed on our website are in Australian dollars and include gst. All payments are processed in Australian dollars.</p>\r\n\r\n<p><br />\r\n<strong>How do I know if my item is in stock?</strong><br />\r\nMake sure you are using the correct email address &amp; password you supplied when you first registered. If you have forgotten your password, you can request a new password, please re-type this carefully .You can change your password once you have logged in to your account, to something more memorable.</p>\r\n\r\n<p><strong>I’m having trouble signing into my account, what do I do?</strong><br />\r\nMake sure you are using the correct email address &amp; password you supplied when you first registered. If you have forgotten your password, you can request a new password, please re-type this carefully .You can change your password once you have logged in to your account, to something more memorable.</p>\r\n\r\n<p><strong>What happens if I have purchased an item showing “In Stock†but is “sold out†or not available in the time stated?</strong><br />\r\n- You may wish to wait for the product to come back in stock<br />\r\n- You may purchase another item<br />\r\n- You may receive a 100% refund including shipping charges</p>\r\n\r\n<p><strong>Can I pre-order items that are “sold out†which are coming back in stock soon?</strong><br />\r\nFor items that are currently “sold out†that are coming back in stock soon, we will clearly state an Expected date of Arrival (ETA) on that item if they are due back in stock. You can pay pre-order to secure this item by purchasing this item now. We will notify you when the item is back in stock and arrange a delivery time.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>PAYMENTS</strong></p>\r\n\r\n<p><strong>What payment methods do you accept?</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>SHIPPING</strong></p>\r\n\r\n<p><strong>Can I place an order if I live overseas?</strong></p>\r\n\r\n<p><strong>How much does it cost to delivery my item?</strong></p>\r\n\r\n<p><strong>Will I receive Free Shipping on my order?</strong></p>\r\n\r\n<p><strong>When will I receive my order?</strong></p>\r\n\r\n<p><strong>I require my order urgently, can I please have it sooner?</strong></p>\r\n\r\n<p><strong>Can I pick up my order from your warehouse?</strong></p>\r\n\r\n<p><strong>Do I need to be home to accept my order?</strong></p>\r\n\r\n<p><strong>Where is my order?</strong></p>\r\n\r\n<p><strong>How will my furniture items be delivered?</strong></p>\r\n\r\n<p><strong>If I live an apartment block or have limited access / stairs, is this a problem for delivery of my furniture?</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>RETURNS</strong></p>\r\n\r\n<p><strong>Can I return or exchange my item?</strong></p>\r\n\r\n<p><strong>What is your return or exchange policy?</strong></p>\r\n\r\n<p><strong>Do I receive a refund, exchange or credit on my return?</strong></p>\r\n\r\n<p><strong>How do I return an item?</strong></p>\r\n\r\n<p><strong>What if my item is damaged or faulty?</strong></p>\r\n\r\n<p><strong>What if my item was damaged on delivery?</strong></p>\r\n\r\n<p><strong>Is this item covered for insurance?</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>DESIGN SERVICES</strong></p>\r\n\r\n<p><strong>I can’t decide what pieces are I should purchase on the spaces.ng online store, can you help me?</strong></p>\r\n\r\n<p><strong>I don’t live in Lagos, can you help me design my home?</strong></p>\r\n\r\n<p><strong>Can you assist me with making furniture, decorative accessory selections?</strong></p>\r\n\r\n<p><strong>What Interior Design Service do you offer?</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n');
1464
1465-- --------------------------------------------------------
1466
1467--
1468-- Table structure for table `information_to_layout`
1469--
1470
1471CREATE TABLE IF NOT EXISTS `information_to_layout` (
1472 `information_id` int(11) NOT NULL,
1473 `store_id` int(11) NOT NULL,
1474 `layout_id` int(11) NOT NULL,
1475 PRIMARY KEY (`information_id`,`store_id`)
1476) ENGINE=MyISAM DEFAULT CHARSET=utf8;
1477
1478--
1479-- Dumping data for table `information_to_layout`
1480--
1481
1482INSERT INTO `information_to_layout` (`information_id`, `store_id`, `layout_id`) VALUES
1483(7, 0, 0),
1484(8, 0, 0),
1485(9, 0, 0);
1486
1487-- --------------------------------------------------------
1488
1489--
1490-- Table structure for table `information_to_store`
1491--
1492
1493CREATE TABLE IF NOT EXISTS `information_to_store` (
1494 `information_id` int(11) NOT NULL,
1495 `store_id` int(11) NOT NULL,
1496 PRIMARY KEY (`information_id`,`store_id`)
1497) ENGINE=MyISAM DEFAULT CHARSET=utf8;
1498
1499--
1500-- Dumping data for table `information_to_store`
1501--
1502
1503INSERT INTO `information_to_store` (`information_id`, `store_id`) VALUES
1504(3, 0),
1505(4, 0),
1506(5, 0),
1507(6, 0),
1508(7, 0),
1509(8, 0),
1510(9, 0),
1511(10, 0);
1512
1513-- --------------------------------------------------------
1514
1515--
1516-- Table structure for table `language`
1517--
1518
1519CREATE TABLE IF NOT EXISTS `language` (
1520 `language_id` int(11) NOT NULL AUTO_INCREMENT,
1521 `name` varchar(32) NOT NULL,
1522 `code` varchar(5) NOT NULL,
1523 `locale` varchar(255) NOT NULL,
1524 `image` varchar(64) NOT NULL,
1525 `directory` varchar(32) NOT NULL,
1526 `filename` varchar(64) NOT NULL,
1527 `sort_order` int(3) NOT NULL DEFAULT '0',
1528 `status` tinyint(1) NOT NULL,
1529 PRIMARY KEY (`language_id`),
1530 KEY `name` (`name`)
1531) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
1532
1533--
1534-- Dumping data for table `language`
1535--
1536
1537INSERT INTO `language` (`language_id`, `name`, `code`, `locale`, `image`, `directory`, `filename`, `sort_order`, `status`) VALUES
1538(1, 'English', 'en', 'en_US.UTF-8,en_US,en-gb,english', 'gb.png', 'english', 'english', 1, 1);
1539
1540-- --------------------------------------------------------
1541
1542--
1543-- Table structure for table `layout`
1544--
1545
1546CREATE TABLE IF NOT EXISTS `layout` (
1547 `layout_id` int(11) NOT NULL AUTO_INCREMENT,
1548 `name` varchar(64) NOT NULL,
1549 PRIMARY KEY (`layout_id`)
1550) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=13 ;
1551
1552--
1553-- Dumping data for table `layout`
1554--
1555
1556INSERT INTO `layout` (`layout_id`, `name`) VALUES
1557(1, 'Home'),
1558(2, 'Product'),
1559(3, 'Category'),
1560(4, 'Default'),
1561(5, 'Manufacturer'),
1562(6, 'Account'),
1563(7, 'Checkout'),
1564(8, 'Contact'),
1565(9, 'Sitemap'),
1566(10, 'Affiliate'),
1567(11, 'Information'),
1568(12, 'Search');
1569
1570-- --------------------------------------------------------
1571
1572--
1573-- Table structure for table `layout_route`
1574--
1575
1576CREATE TABLE IF NOT EXISTS `layout_route` (
1577 `layout_route_id` int(11) NOT NULL AUTO_INCREMENT,
1578 `layout_id` int(11) NOT NULL,
1579 `store_id` int(11) NOT NULL,
1580 `route` varchar(255) NOT NULL,
1581 PRIMARY KEY (`layout_route_id`)
1582) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=34 ;
1583
1584--
1585-- Dumping data for table `layout_route`
1586--
1587
1588INSERT INTO `layout_route` (`layout_route_id`, `layout_id`, `store_id`, `route`) VALUES
1589(30, 6, 0, 'account'),
1590(17, 10, 0, 'affiliate/'),
1591(29, 3, 0, 'product/category'),
1592(26, 1, 0, 'common/home'),
1593(20, 2, 0, 'product/product'),
1594(24, 11, 0, 'information/information'),
1595(22, 5, 0, 'product/manufacturer'),
1596(23, 7, 0, 'checkout/'),
1597(31, 8, 0, 'information/contact'),
1598(32, 9, 0, 'information/sitemap'),
1599(33, 12, 0, 'product/search');
1600
1601-- --------------------------------------------------------
1602
1603--
1604-- Table structure for table `length_class`
1605--
1606
1607CREATE TABLE IF NOT EXISTS `length_class` (
1608 `length_class_id` int(11) NOT NULL AUTO_INCREMENT,
1609 `value` decimal(15,8) NOT NULL,
1610 PRIMARY KEY (`length_class_id`)
1611) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=4 ;
1612
1613--
1614-- Dumping data for table `length_class`
1615--
1616
1617INSERT INTO `length_class` (`length_class_id`, `value`) VALUES
1618(1, '1.00000000'),
1619(2, '10.00000000'),
1620(3, '0.39370000');
1621
1622-- --------------------------------------------------------
1623
1624--
1625-- Table structure for table `length_class_description`
1626--
1627
1628CREATE TABLE IF NOT EXISTS `length_class_description` (
1629 `length_class_id` int(11) NOT NULL AUTO_INCREMENT,
1630 `language_id` int(11) NOT NULL,
1631 `title` varchar(32) NOT NULL,
1632 `unit` varchar(4) NOT NULL,
1633 PRIMARY KEY (`length_class_id`,`language_id`)
1634) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=4 ;
1635
1636--
1637-- Dumping data for table `length_class_description`
1638--
1639
1640INSERT INTO `length_class_description` (`length_class_id`, `language_id`, `title`, `unit`) VALUES
1641(1, 1, 'Centimeter', 'cm'),
1642(2, 1, 'Millimeter', 'mm'),
1643(3, 1, 'Inch', 'in');
1644
1645-- --------------------------------------------------------
1646
1647--
1648-- Table structure for table `manufacturer`
1649--
1650
1651CREATE TABLE IF NOT EXISTS `manufacturer` (
1652 `manufacturer_id` int(11) NOT NULL AUTO_INCREMENT,
1653 `name` varchar(64) NOT NULL,
1654 `image` varchar(255) DEFAULT NULL,
1655 `sort_order` int(3) NOT NULL,
1656 PRIMARY KEY (`manufacturer_id`)
1657) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=11 ;
1658
1659--
1660-- Dumping data for table `manufacturer`
1661--
1662
1663INSERT INTO `manufacturer` (`manufacturer_id`, `name`, `image`, `sort_order`) VALUES
1664(5, 'HTC', 'data/demo/htc_logo.jpg', 0),
1665(6, 'Palm', 'data/demo/palm_logo.jpg', 0),
1666(7, 'Hewlett-Packard', 'data/demo/hp_logo.jpg', 0),
1667(8, 'Apple', 'data/demo/apple_logo.jpg', 0),
1668(9, 'Canon', 'data/demo/canon_logo.jpg', 0),
1669(10, 'Sony', 'data/demo/sony_logo.jpg', 0);
1670
1671-- --------------------------------------------------------
1672
1673--
1674-- Table structure for table `manufacturer_to_store`
1675--
1676
1677CREATE TABLE IF NOT EXISTS `manufacturer_to_store` (
1678 `manufacturer_id` int(11) NOT NULL,
1679 `store_id` int(11) NOT NULL,
1680 PRIMARY KEY (`manufacturer_id`,`store_id`)
1681) ENGINE=MyISAM DEFAULT CHARSET=utf8;
1682
1683--
1684-- Dumping data for table `manufacturer_to_store`
1685--
1686
1687INSERT INTO `manufacturer_to_store` (`manufacturer_id`, `store_id`) VALUES
1688(5, 0),
1689(6, 0),
1690(7, 0),
1691(8, 0),
1692(9, 0),
1693(10, 0);
1694
1695-- --------------------------------------------------------
1696
1697--
1698-- Table structure for table `option`
1699--
1700
1701CREATE TABLE IF NOT EXISTS `option` (
1702 `option_id` int(11) NOT NULL AUTO_INCREMENT,
1703 `type` varchar(32) NOT NULL,
1704 `sort_order` int(3) NOT NULL,
1705 PRIMARY KEY (`option_id`)
1706) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=15 ;
1707
1708--
1709-- Dumping data for table `option`
1710--
1711
1712INSERT INTO `option` (`option_id`, `type`, `sort_order`) VALUES
1713(1, 'radio', 2),
1714(2, 'checkbox', 3),
1715(4, 'text', 4),
1716(5, 'select', 1),
1717(6, 'textarea', 5),
1718(7, 'file', 6),
1719(8, 'date', 7),
1720(9, 'time', 8),
1721(10, 'datetime', 9),
1722(11, 'select', 1),
1723(12, 'date', 1),
1724(13, 'image', 1),
1725(14, 'image', 2);
1726
1727-- --------------------------------------------------------
1728
1729--
1730-- Table structure for table `option_description`
1731--
1732
1733CREATE TABLE IF NOT EXISTS `option_description` (
1734 `option_id` int(11) NOT NULL,
1735 `language_id` int(11) NOT NULL,
1736 `name` varchar(128) NOT NULL,
1737 PRIMARY KEY (`option_id`,`language_id`)
1738) ENGINE=MyISAM DEFAULT CHARSET=utf8;
1739
1740--
1741-- Dumping data for table `option_description`
1742--
1743
1744INSERT INTO `option_description` (`option_id`, `language_id`, `name`) VALUES
1745(1, 1, 'Radio'),
1746(2, 1, 'Checkbox'),
1747(4, 1, 'Text'),
1748(6, 1, 'Textarea'),
1749(8, 1, 'Date'),
1750(7, 1, 'File'),
1751(5, 1, 'Select'),
1752(9, 1, 'Time'),
1753(10, 1, 'Date & Time'),
1754(12, 1, 'Delivery Date'),
1755(11, 1, 'Size'),
1756(13, 1, 'Fabrics'),
1757(14, 1, 'Color');
1758
1759-- --------------------------------------------------------
1760
1761--
1762-- Table structure for table `option_value`
1763--
1764
1765CREATE TABLE IF NOT EXISTS `option_value` (
1766 `option_value_id` int(11) NOT NULL AUTO_INCREMENT,
1767 `option_id` int(11) NOT NULL,
1768 `image` varchar(255) NOT NULL,
1769 `sort_order` int(3) NOT NULL,
1770 PRIMARY KEY (`option_value_id`)
1771) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=61 ;
1772
1773--
1774-- Dumping data for table `option_value`
1775--
1776
1777INSERT INTO `option_value` (`option_value_id`, `option_id`, `image`, `sort_order`) VALUES
1778(43, 1, '', 3),
1779(32, 1, '', 1),
1780(45, 2, '', 4),
1781(44, 2, '', 3),
1782(42, 5, '', 4),
1783(41, 5, '', 3),
1784(39, 5, '', 1),
1785(40, 5, '', 2),
1786(31, 1, '', 2),
1787(23, 2, '', 1),
1788(24, 2, '', 2),
1789(46, 11, '', 1),
1790(47, 11, '', 2),
1791(48, 11, '', 3),
1792(49, 13, 'data/option-image/choose-fabrics1.jpg', 1),
1793(50, 13, 'data/option-image/choose-fabrics2.jpg', 2),
1794(51, 13, 'data/option-image/choose-fabrics4.jpg', 3),
1795(52, 13, 'data/option-image/choose-fabrics5.jpg', 0),
1796(53, 13, 'data/option-image/choose-fabrics6.jpg', 0),
1797(54, 13, 'data/option-image/choose-fabrics7.jpg', 0),
1798(55, 14, 'data/option-image/choosecolor1.jpg', 1),
1799(56, 14, 'data/option-image/choosecolor2.jpg', 2),
1800(57, 14, 'data/option-image/choosecolor3.jpg', 3),
1801(58, 14, 'data/option-image/choosecolor4.jpg', 4),
1802(59, 14, 'data/option-image/choosecolor7.jpg', 0),
1803(60, 14, 'data/option-image/choosecolor6.jpg', 0);
1804
1805-- --------------------------------------------------------
1806
1807--
1808-- Table structure for table `option_value_description`
1809--
1810
1811CREATE TABLE IF NOT EXISTS `option_value_description` (
1812 `option_value_id` int(11) NOT NULL,
1813 `language_id` int(11) NOT NULL,
1814 `option_id` int(11) NOT NULL,
1815 `name` varchar(128) NOT NULL,
1816 PRIMARY KEY (`option_value_id`,`language_id`)
1817) ENGINE=MyISAM DEFAULT CHARSET=utf8;
1818
1819--
1820-- Dumping data for table `option_value_description`
1821--
1822
1823INSERT INTO `option_value_description` (`option_value_id`, `language_id`, `option_id`, `name`) VALUES
1824(43, 1, 1, 'Large'),
1825(32, 1, 1, 'Small'),
1826(45, 1, 2, 'Checkbox 4'),
1827(44, 1, 2, 'Checkbox 3'),
1828(31, 1, 1, 'Medium'),
1829(42, 1, 5, 'Yellow'),
1830(41, 1, 5, 'Green'),
1831(39, 1, 5, 'Red'),
1832(40, 1, 5, 'Blue'),
1833(23, 1, 2, 'Checkbox 1'),
1834(24, 1, 2, 'Checkbox 2'),
1835(48, 1, 11, 'Large'),
1836(47, 1, 11, 'Medium'),
1837(46, 1, 11, 'Small'),
1838(49, 1, 13, 'Wood'),
1839(50, 1, 13, 'Fur'),
1840(51, 1, 13, 'Linen'),
1841(52, 1, 13, 'Wool'),
1842(53, 1, 13, 'Jute'),
1843(54, 1, 13, 'Ramie'),
1844(55, 1, 14, 'Grey'),
1845(56, 1, 14, 'Blue'),
1846(57, 1, 14, 'Brown'),
1847(58, 1, 14, 'Silver Grey'),
1848(59, 1, 14, 'Silver'),
1849(60, 1, 14, 'Dark Grey');
1850
1851-- --------------------------------------------------------
1852
1853--
1854-- Table structure for table `order`
1855--
1856
1857CREATE TABLE IF NOT EXISTS `order` (
1858 `order_id` int(11) NOT NULL AUTO_INCREMENT,
1859 `invoice_no` int(11) NOT NULL DEFAULT '0',
1860 `invoice_prefix` varchar(26) NOT NULL,
1861 `store_id` int(11) NOT NULL DEFAULT '0',
1862 `store_name` varchar(64) NOT NULL,
1863 `store_url` varchar(255) NOT NULL,
1864 `customer_id` int(11) NOT NULL DEFAULT '0',
1865 `customer_group_id` int(11) NOT NULL DEFAULT '0',
1866 `firstname` varchar(32) NOT NULL,
1867 `lastname` varchar(32) NOT NULL,
1868 `email` varchar(96) NOT NULL,
1869 `telephone` varchar(32) NOT NULL,
1870 `fax` varchar(32) NOT NULL,
1871 `payment_firstname` varchar(32) NOT NULL,
1872 `payment_lastname` varchar(32) NOT NULL,
1873 `payment_company` varchar(32) NOT NULL,
1874 `payment_company_id` varchar(32) NOT NULL,
1875 `payment_tax_id` varchar(32) NOT NULL,
1876 `payment_address_1` varchar(128) NOT NULL,
1877 `payment_address_2` varchar(128) NOT NULL,
1878 `payment_city` varchar(128) NOT NULL,
1879 `payment_postcode` varchar(10) NOT NULL,
1880 `payment_country` varchar(128) NOT NULL,
1881 `payment_country_id` int(11) NOT NULL,
1882 `payment_zone` varchar(128) NOT NULL,
1883 `payment_zone_id` int(11) NOT NULL,
1884 `payment_address_format` text NOT NULL,
1885 `payment_method` varchar(128) NOT NULL,
1886 `payment_code` varchar(128) NOT NULL,
1887 `shipping_firstname` varchar(32) NOT NULL,
1888 `shipping_lastname` varchar(32) NOT NULL,
1889 `shipping_company` varchar(32) NOT NULL,
1890 `shipping_address_1` varchar(128) NOT NULL,
1891 `shipping_address_2` varchar(128) NOT NULL,
1892 `shipping_city` varchar(128) NOT NULL,
1893 `shipping_postcode` varchar(10) NOT NULL,
1894 `shipping_country` varchar(128) NOT NULL,
1895 `shipping_country_id` int(11) NOT NULL,
1896 `shipping_zone` varchar(128) NOT NULL,
1897 `shipping_zone_id` int(11) NOT NULL,
1898 `shipping_address_format` text NOT NULL,
1899 `shipping_method` varchar(128) NOT NULL,
1900 `shipping_code` varchar(128) NOT NULL,
1901 `comment` text NOT NULL,
1902 `total` decimal(15,4) NOT NULL DEFAULT '0.0000',
1903 `order_status_id` int(11) NOT NULL DEFAULT '0',
1904 `affiliate_id` int(11) NOT NULL,
1905 `commission` decimal(15,4) NOT NULL,
1906 `language_id` int(11) NOT NULL,
1907 `currency_id` int(11) NOT NULL,
1908 `currency_code` varchar(3) NOT NULL,
1909 `currency_value` decimal(15,8) NOT NULL DEFAULT '1.00000000',
1910 `ip` varchar(40) NOT NULL,
1911 `forwarded_ip` varchar(40) NOT NULL,
1912 `user_agent` varchar(255) NOT NULL,
1913 `accept_language` varchar(255) NOT NULL,
1914 `date_added` datetime NOT NULL,
1915 `date_modified` datetime NOT NULL,
1916 PRIMARY KEY (`order_id`)
1917) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=3 ;
1918
1919--
1920-- Dumping data for table `order`
1921--
1922
1923INSERT INTO `order` (`order_id`, `invoice_no`, `invoice_prefix`, `store_id`, `store_name`, `store_url`, `customer_id`, `customer_group_id`, `firstname`, `lastname`, `email`, `telephone`, `fax`, `payment_firstname`, `payment_lastname`, `payment_company`, `payment_company_id`, `payment_tax_id`, `payment_address_1`, `payment_address_2`, `payment_city`, `payment_postcode`, `payment_country`, `payment_country_id`, `payment_zone`, `payment_zone_id`, `payment_address_format`, `payment_method`, `payment_code`, `shipping_firstname`, `shipping_lastname`, `shipping_company`, `shipping_address_1`, `shipping_address_2`, `shipping_city`, `shipping_postcode`, `shipping_country`, `shipping_country_id`, `shipping_zone`, `shipping_zone_id`, `shipping_address_format`, `shipping_method`, `shipping_code`, `comment`, `total`, `order_status_id`, `affiliate_id`, `commission`, `language_id`, `currency_id`, `currency_code`, `currency_value`, `ip`, `forwarded_ip`, `user_agent`, `accept_language`, `date_added`, `date_modified`) VALUES
1924(1, 0, 'INV-2013-00', 0, 'Spaces.ng', 'http://www.ckdigital.net/spaces.ng/', 0, 1, 'TUYUYT', 'TUYUT', 'mbonuchiedu@gmail.com', '2348038694485', '', 'TUYUYT', 'TUYUT', '', '', '', 'TUYUTU', '', 'TETUTU', '', 'Nigeria', 156, 'Adamawa', 2390, '', 'Cash On Delivery', 'cod', 'TUYUYT', 'TUYUT', '', 'TUYUTU', '', 'TETUTU', '', 'Nigeria', 156, 'Adamawa', 2390, '', 'Flat Shipping Rate', 'flat.flat', '', '6005.0000', 1, 0, '0.0000', 1, 4, 'NGN', '1.00000000', '41.58.242.211', '', 'Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/43.0.2357.134 Safari/537.36', 'en-US,en;q=0.8', '2015-07-17 11:13:45', '2015-07-17 11:13:54'),
1925(2, 0, 'INV-2013-00', 0, 'Spaces.ng', 'http://www.ckdigital.net/spaces.ng/', 1, 1, 'Akinyele', 'Israel', 'abiodun@ckdigital.net', '09093843572', '', 'Akinyele', 'Israel', '', '', '', '23, Philips majekodunmi street, new oko oba, lagos', '', 'Lagos', '', 'Nigeria', 156, 'Lagos', 2412, '', 'Cash On Delivery', 'cod', 'Akinyele', 'Israel', '', '23, Philips majekodunmi street, new oko oba, lagos', '', 'Lagos', '', 'Nigeria', 156, 'Lagos', 2412, '', 'Flat Shipping Rate', 'flat.flat', '', '300005.0000', 1, 0, '0.0000', 1, 4, 'NGN', '1.00000000', '41.58.223.131', '', 'Mozilla/5.0 (Windows NT 6.3; WOW64; rv:39.0) Gecko/20100101 Firefox/39.0', 'en-US,en;q=0.5', '2015-08-06 05:10:04', '2015-08-06 05:10:06');
1926
1927-- --------------------------------------------------------
1928
1929--
1930-- Table structure for table `order_download`
1931--
1932
1933CREATE TABLE IF NOT EXISTS `order_download` (
1934 `order_download_id` int(11) NOT NULL AUTO_INCREMENT,
1935 `order_id` int(11) NOT NULL,
1936 `order_product_id` int(11) NOT NULL,
1937 `name` varchar(64) NOT NULL,
1938 `filename` varchar(128) NOT NULL,
1939 `mask` varchar(128) NOT NULL,
1940 `remaining` int(3) NOT NULL DEFAULT '0',
1941 PRIMARY KEY (`order_download_id`)
1942) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
1943
1944-- --------------------------------------------------------
1945
1946--
1947-- Table structure for table `order_field`
1948--
1949
1950CREATE TABLE IF NOT EXISTS `order_field` (
1951 `order_id` int(11) NOT NULL,
1952 `custom_field_id` int(11) NOT NULL,
1953 `custom_field_value_id` int(11) NOT NULL,
1954 `name` int(128) NOT NULL,
1955 `value` text NOT NULL,
1956 `sort_order` int(3) NOT NULL,
1957 PRIMARY KEY (`order_id`,`custom_field_id`,`custom_field_value_id`)
1958) ENGINE=MyISAM DEFAULT CHARSET=utf8;
1959
1960-- --------------------------------------------------------
1961
1962--
1963-- Table structure for table `order_fraud`
1964--
1965
1966CREATE TABLE IF NOT EXISTS `order_fraud` (
1967 `order_id` int(11) NOT NULL,
1968 `customer_id` int(11) NOT NULL,
1969 `country_match` varchar(3) NOT NULL,
1970 `country_code` varchar(2) NOT NULL,
1971 `high_risk_country` varchar(3) NOT NULL,
1972 `distance` int(11) NOT NULL,
1973 `ip_region` varchar(255) NOT NULL,
1974 `ip_city` varchar(255) NOT NULL,
1975 `ip_latitude` decimal(10,6) NOT NULL,
1976 `ip_longitude` decimal(10,6) NOT NULL,
1977 `ip_isp` varchar(255) NOT NULL,
1978 `ip_org` varchar(255) NOT NULL,
1979 `ip_asnum` int(11) NOT NULL,
1980 `ip_user_type` varchar(255) NOT NULL,
1981 `ip_country_confidence` varchar(3) NOT NULL,
1982 `ip_region_confidence` varchar(3) NOT NULL,
1983 `ip_city_confidence` varchar(3) NOT NULL,
1984 `ip_postal_confidence` varchar(3) NOT NULL,
1985 `ip_postal_code` varchar(10) NOT NULL,
1986 `ip_accuracy_radius` int(11) NOT NULL,
1987 `ip_net_speed_cell` varchar(255) NOT NULL,
1988 `ip_metro_code` int(3) NOT NULL,
1989 `ip_area_code` int(3) NOT NULL,
1990 `ip_time_zone` varchar(255) NOT NULL,
1991 `ip_region_name` varchar(255) NOT NULL,
1992 `ip_domain` varchar(255) NOT NULL,
1993 `ip_country_name` varchar(255) NOT NULL,
1994 `ip_continent_code` varchar(2) NOT NULL,
1995 `ip_corporate_proxy` varchar(3) NOT NULL,
1996 `anonymous_proxy` varchar(3) NOT NULL,
1997 `proxy_score` int(3) NOT NULL,
1998 `is_trans_proxy` varchar(3) NOT NULL,
1999 `free_mail` varchar(3) NOT NULL,
2000 `carder_email` varchar(3) NOT NULL,
2001 `high_risk_username` varchar(3) NOT NULL,
2002 `high_risk_password` varchar(3) NOT NULL,
2003 `bin_match` varchar(10) NOT NULL,
2004 `bin_country` varchar(2) NOT NULL,
2005 `bin_name_match` varchar(3) NOT NULL,
2006 `bin_name` varchar(255) NOT NULL,
2007 `bin_phone_match` varchar(3) NOT NULL,
2008 `bin_phone` varchar(32) NOT NULL,
2009 `customer_phone_in_billing_location` varchar(8) NOT NULL,
2010 `ship_forward` varchar(3) NOT NULL,
2011 `city_postal_match` varchar(3) NOT NULL,
2012 `ship_city_postal_match` varchar(3) NOT NULL,
2013 `score` decimal(10,5) NOT NULL,
2014 `explanation` text NOT NULL,
2015 `risk_score` decimal(10,5) NOT NULL,
2016 `queries_remaining` int(11) NOT NULL,
2017 `maxmind_id` varchar(8) NOT NULL,
2018 `error` text NOT NULL,
2019 `date_added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
2020 PRIMARY KEY (`order_id`)
2021) ENGINE=MyISAM DEFAULT CHARSET=utf8;
2022
2023-- --------------------------------------------------------
2024
2025--
2026-- Table structure for table `order_history`
2027--
2028
2029CREATE TABLE IF NOT EXISTS `order_history` (
2030 `order_history_id` int(11) NOT NULL AUTO_INCREMENT,
2031 `order_id` int(11) NOT NULL,
2032 `order_status_id` int(5) NOT NULL,
2033 `notify` tinyint(1) NOT NULL DEFAULT '0',
2034 `comment` text NOT NULL,
2035 `date_added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
2036 PRIMARY KEY (`order_history_id`)
2037) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=3 ;
2038
2039--
2040-- Dumping data for table `order_history`
2041--
2042
2043INSERT INTO `order_history` (`order_history_id`, `order_id`, `order_status_id`, `notify`, `comment`, `date_added`) VALUES
2044(1, 1, 1, 1, '', '2015-07-17 11:13:54'),
2045(2, 2, 1, 1, '', '2015-08-06 05:10:06');
2046
2047-- --------------------------------------------------------
2048
2049--
2050-- Table structure for table `order_option`
2051--
2052
2053CREATE TABLE IF NOT EXISTS `order_option` (
2054 `order_option_id` int(11) NOT NULL AUTO_INCREMENT,
2055 `order_id` int(11) NOT NULL,
2056 `order_product_id` int(11) NOT NULL,
2057 `product_option_id` int(11) NOT NULL,
2058 `product_option_value_id` int(11) NOT NULL DEFAULT '0',
2059 `name` varchar(255) NOT NULL,
2060 `value` text NOT NULL,
2061 `type` varchar(32) NOT NULL,
2062 PRIMARY KEY (`order_option_id`)
2063) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=3 ;
2064
2065--
2066-- Dumping data for table `order_option`
2067--
2068
2069INSERT INTO `order_option` (`order_option_id`, `order_id`, `order_product_id`, `product_option_id`, `product_option_value_id`, `name`, `value`, `type`) VALUES
2070(1, 2, 2, 230, 35, 'Fabrics', 'Linen', 'image'),
2071(2, 2, 2, 231, 44, 'Color', 'Silver Grey', 'image');
2072
2073-- --------------------------------------------------------
2074
2075--
2076-- Table structure for table `order_product`
2077--
2078
2079CREATE TABLE IF NOT EXISTS `order_product` (
2080 `order_product_id` int(11) NOT NULL AUTO_INCREMENT,
2081 `order_id` int(11) NOT NULL,
2082 `product_id` int(11) NOT NULL,
2083 `name` varchar(255) NOT NULL,
2084 `model` varchar(64) NOT NULL,
2085 `quantity` int(4) NOT NULL,
2086 `price` decimal(15,4) NOT NULL DEFAULT '0.0000',
2087 `total` decimal(15,4) NOT NULL DEFAULT '0.0000',
2088 `tax` decimal(15,4) NOT NULL DEFAULT '0.0000',
2089 `reward` int(8) NOT NULL,
2090 PRIMARY KEY (`order_product_id`)
2091) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=3 ;
2092
2093--
2094-- Dumping data for table `order_product`
2095--
2096
2097INSERT INTO `order_product` (`order_product_id`, `order_id`, `product_id`, `name`, `model`, `quantity`, `price`, `total`, `tax`, `reward`) VALUES
2098(1, 1, 86, 'product 23', 'SP024', 1, '6000.0000', '6000.0000', '0.0000', 0),
2099(2, 2, 62, 'Products 1', 'SP001', 1, '300000.0000', '300000.0000', '0.0000', 0);
2100
2101-- --------------------------------------------------------
2102
2103--
2104-- Table structure for table `order_recurring`
2105--
2106
2107CREATE TABLE IF NOT EXISTS `order_recurring` (
2108 `order_recurring_id` int(11) NOT NULL AUTO_INCREMENT,
2109 `order_id` int(11) NOT NULL,
2110 `created` datetime NOT NULL,
2111 `status` tinyint(4) NOT NULL,
2112 `product_id` int(11) NOT NULL,
2113 `product_name` varchar(255) NOT NULL,
2114 `product_quantity` int(11) NOT NULL,
2115 `profile_id` int(11) NOT NULL,
2116 `profile_name` varchar(255) NOT NULL,
2117 `profile_description` varchar(255) NOT NULL,
2118 `recurring_frequency` varchar(25) NOT NULL,
2119 `recurring_cycle` smallint(6) NOT NULL,
2120 `recurring_duration` smallint(6) NOT NULL,
2121 `recurring_price` decimal(10,4) NOT NULL,
2122 `trial` tinyint(1) NOT NULL,
2123 `trial_frequency` varchar(25) NOT NULL,
2124 `trial_cycle` smallint(6) NOT NULL,
2125 `trial_duration` smallint(6) NOT NULL,
2126 `trial_price` decimal(10,4) NOT NULL,
2127 `profile_reference` varchar(255) NOT NULL,
2128 PRIMARY KEY (`order_recurring_id`)
2129) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
2130
2131-- --------------------------------------------------------
2132
2133--
2134-- Table structure for table `order_recurring_transaction`
2135--
2136
2137CREATE TABLE IF NOT EXISTS `order_recurring_transaction` (
2138 `order_recurring_transaction_id` int(11) NOT NULL AUTO_INCREMENT,
2139 `order_recurring_id` int(11) NOT NULL,
2140 `created` datetime NOT NULL,
2141 `amount` decimal(10,4) NOT NULL,
2142 `type` varchar(255) NOT NULL,
2143 PRIMARY KEY (`order_recurring_transaction_id`)
2144) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
2145
2146-- --------------------------------------------------------
2147
2148--
2149-- Table structure for table `order_status`
2150--
2151
2152CREATE TABLE IF NOT EXISTS `order_status` (
2153 `order_status_id` int(11) NOT NULL AUTO_INCREMENT,
2154 `language_id` int(11) NOT NULL,
2155 `name` varchar(32) NOT NULL,
2156 PRIMARY KEY (`order_status_id`,`language_id`)
2157) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=17 ;
2158
2159--
2160-- Dumping data for table `order_status`
2161--
2162
2163INSERT INTO `order_status` (`order_status_id`, `language_id`, `name`) VALUES
2164(2, 1, 'Processing'),
2165(3, 1, 'Shipped'),
2166(7, 1, 'Canceled'),
2167(5, 1, 'Complete'),
2168(8, 1, 'Denied'),
2169(9, 1, 'Canceled Reversal'),
2170(10, 1, 'Failed'),
2171(11, 1, 'Refunded'),
2172(12, 1, 'Reversed'),
2173(13, 1, 'Chargeback'),
2174(1, 1, 'Pending'),
2175(16, 1, 'Voided'),
2176(15, 1, 'Processed'),
2177(14, 1, 'Expired');
2178
2179-- --------------------------------------------------------
2180
2181--
2182-- Table structure for table `order_total`
2183--
2184
2185CREATE TABLE IF NOT EXISTS `order_total` (
2186 `order_total_id` int(10) NOT NULL AUTO_INCREMENT,
2187 `order_id` int(11) NOT NULL,
2188 `code` varchar(32) NOT NULL,
2189 `title` varchar(255) NOT NULL,
2190 `text` varchar(255) NOT NULL,
2191 `value` decimal(15,4) NOT NULL DEFAULT '0.0000',
2192 `sort_order` int(3) NOT NULL,
2193 PRIMARY KEY (`order_total_id`),
2194 KEY `idx_orders_total_orders_id` (`order_id`)
2195) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=7 ;
2196
2197--
2198-- Dumping data for table `order_total`
2199--
2200
2201INSERT INTO `order_total` (`order_total_id`, `order_id`, `code`, `title`, `text`, `value`, `sort_order`) VALUES
2202(1, 1, 'sub_total', 'Sub-Total', 'N6,000', '6000.0000', 1),
2203(2, 1, 'shipping', 'Flat Shipping Rate', 'N5', '5.0000', 3),
2204(3, 1, 'total', 'Total', 'N6,005', '6005.0000', 9),
2205(4, 2, 'sub_total', 'Sub-Total', 'N300,000', '300000.0000', 1),
2206(5, 2, 'shipping', 'Flat Shipping Rate', 'N5', '5.0000', 3),
2207(6, 2, 'total', 'Total', 'N300,005', '300005.0000', 9);
2208
2209-- --------------------------------------------------------
2210
2211--
2212-- Table structure for table `order_voucher`
2213--
2214
2215CREATE TABLE IF NOT EXISTS `order_voucher` (
2216 `order_voucher_id` int(11) NOT NULL AUTO_INCREMENT,
2217 `order_id` int(11) NOT NULL,
2218 `voucher_id` int(11) NOT NULL,
2219 `description` varchar(255) NOT NULL,
2220 `code` varchar(10) NOT NULL,
2221 `from_name` varchar(64) NOT NULL,
2222 `from_email` varchar(96) NOT NULL,
2223 `to_name` varchar(64) NOT NULL,
2224 `to_email` varchar(96) NOT NULL,
2225 `voucher_theme_id` int(11) NOT NULL,
2226 `message` text NOT NULL,
2227 `amount` decimal(15,4) NOT NULL,
2228 PRIMARY KEY (`order_voucher_id`)
2229) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
2230
2231-- --------------------------------------------------------
2232
2233--
2234-- Table structure for table `product`
2235--
2236
2237CREATE TABLE IF NOT EXISTS `product` (
2238 `product_id` int(11) NOT NULL AUTO_INCREMENT,
2239 `model` varchar(64) NOT NULL,
2240 `sku` varchar(64) NOT NULL,
2241 `upc` varchar(12) NOT NULL,
2242 `ean` varchar(14) NOT NULL,
2243 `jan` varchar(13) NOT NULL,
2244 `isbn` varchar(13) NOT NULL,
2245 `mpn` varchar(64) NOT NULL,
2246 `location` varchar(128) NOT NULL,
2247 `quantity` int(4) NOT NULL DEFAULT '0',
2248 `stock_status_id` int(11) NOT NULL,
2249 `image` varchar(255) DEFAULT NULL,
2250 `manufacturer_id` int(11) NOT NULL,
2251 `shipping` tinyint(1) NOT NULL DEFAULT '1',
2252 `price` decimal(15,4) NOT NULL DEFAULT '0.0000',
2253 `points` int(8) NOT NULL DEFAULT '0',
2254 `tax_class_id` int(11) NOT NULL,
2255 `date_available` date NOT NULL,
2256 `weight` decimal(15,8) NOT NULL DEFAULT '0.00000000',
2257 `weight_class_id` int(11) NOT NULL DEFAULT '0',
2258 `length` decimal(15,8) NOT NULL DEFAULT '0.00000000',
2259 `width` decimal(15,8) NOT NULL DEFAULT '0.00000000',
2260 `height` decimal(15,8) NOT NULL DEFAULT '0.00000000',
2261 `length_class_id` int(11) NOT NULL DEFAULT '0',
2262 `subtract` tinyint(1) NOT NULL DEFAULT '1',
2263 `minimum` int(11) NOT NULL DEFAULT '1',
2264 `sort_order` int(11) NOT NULL DEFAULT '0',
2265 `status` tinyint(1) NOT NULL DEFAULT '0',
2266 `date_added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
2267 `date_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
2268 `viewed` int(5) NOT NULL DEFAULT '0',
2269 PRIMARY KEY (`product_id`)
2270) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=101 ;
2271
2272--
2273-- Dumping data for table `product`
2274--
2275
2276INSERT INTO `product` (`product_id`, `model`, `sku`, `upc`, `ean`, `jan`, `isbn`, `mpn`, `location`, `quantity`, `stock_status_id`, `image`, `manufacturer_id`, `shipping`, `price`, `points`, `tax_class_id`, `date_available`, `weight`, `weight_class_id`, `length`, `width`, `height`, `length_class_id`, `subtract`, `minimum`, `sort_order`, `status`, `date_added`, `date_modified`, `viewed`) VALUES
2277(95, 'SP33', '', '', '', '', '', '', '', 1, 5, 'data/chair2.jpg', 0, 1, '3000.3300', 0, 0, '2015-07-07', '0.00000000', 1, '0.00000000', '0.00000000', '0.00000000', 1, 1, 1, 1, 1, '2015-07-08 06:45:51', '2015-07-08 06:48:06', 1),
2278(90, 'SP028', '', '', '', '', '', '', '', 1, 5, 'data/p6.jpg', 0, 1, '9000.0000', 0, 0, '2015-06-14', '0.00000000', 1, '0.00000000', '0.00000000', '0.00000000', 1, 1, 1, 1, 1, '2015-06-15 08:35:41', '0000-00-00 00:00:00', 0),
2279(91, 'SP029', '', '', '', '', '', '', '', 1, 5, 'data/p7.jpg', 0, 1, '5000.0000', 0, 0, '2015-06-14', '0.00000000', 1, '0.00000000', '0.00000000', '0.00000000', 1, 1, 1, 1, 1, '2015-06-15 08:41:53', '0000-00-00 00:00:00', 0),
2280(92, 'SP030', '', '', '', '', '', '', '', 1, 5, '', 0, 1, '4000.0000', 0, 0, '2015-06-14', '0.00000000', 1, '0.00000000', '0.00000000', '0.00000000', 1, 1, 1, 1, 1, '2015-06-15 08:43:28', '0000-00-00 00:00:00', 0),
2281(93, 'sp31', '', '', '', '', '', '', '', 1, 5, 'data/p9.jpg', 0, 1, '4000.0000', 0, 0, '2015-06-14', '0.00000000', 1, '0.00000000', '0.00000000', '0.00000000', 1, 1, 1, 1, 1, '2015-06-15 08:46:44', '0000-00-00 00:00:00', 0),
2282(94, 'SP032', '', '', '', '', '', '', '', 1, 5, '', 0, 1, '200.0000', 0, 0, '2015-07-07', '0.00000000', 1, '0.00000000', '0.00000000', '0.00000000', 1, 1, 1, 1, 1, '2015-07-08 06:20:13', '0000-00-00 00:00:00', 0),
2283(83, 'SP021', '', '', '', '', '', '', '', 30, 5, 'data/frame.jpg', 0, 1, '7000.0000', 0, 0, '2015-06-14', '0.00000000', 1, '0.00000000', '0.00000000', '0.00000000', 1, 1, 1, 1, 1, '2015-06-15 07:30:45', '2015-06-15 07:43:01', 0),
2284(84, 'SP022', '', '', '', '', '', '', '', 1, 5, 'data/images_1.jpg', 0, 1, '9000.0000', 0, 0, '2015-06-14', '0.00000000', 1, '0.00000000', '0.00000000', '0.00000000', 1, 1, 1, 1, 1, '2015-06-15 07:31:26', '2015-06-15 07:41:30', 0),
2285(85, 'SP023', '', '', '', '', '', '', '', 40, 5, 'data/p1.jpg', 0, 1, '4000.0000', 0, 0, '2015-06-14', '0.00000000', 1, '0.00000000', '0.00000000', '0.00000000', 1, 1, 1, 1, 1, '2015-06-15 08:21:16', '2015-06-15 08:25:31', 0),
2286(86, 'SP024', '', '', '', '', '', '', '', 0, 5, 'data/p2.jpg', 0, 1, '6000.0000', 0, 0, '2015-06-14', '0.00000000', 1, '0.00000000', '0.00000000', '0.00000000', 1, 1, 1, 1, 1, '2015-06-15 08:22:06', '2015-06-15 08:26:57', 2),
2287(87, 'SP025', '', '', '', '', '', '', '', 1, 5, 'data/p3.jpg', 0, 1, '6500.0000', 0, 0, '2015-06-14', '0.00000000', 1, '0.00000000', '0.00000000', '0.00000000', 1, 1, 1, 1, 1, '2015-06-15 08:22:54', '2015-06-15 08:27:56', 1),
2288(88, 'SP026', '', '', '', '', '', '', '', 1, 5, 'data/p4.jpg', 0, 1, '5500.0000', 0, 0, '2015-06-14', '0.00000000', 1, '0.00000000', '0.00000000', '0.00000000', 1, 1, 1, 1, 1, '2015-06-15 08:31:35', '2015-06-15 08:32:28', 0),
2289(89, 'SP027', '', '', '', '', '', '', '', 1, 5, 'data/p5.jpg', 0, 1, '10000.0000', 0, 0, '2015-06-14', '0.00000000', 1, '0.00000000', '0.00000000', '0.00000000', 1, 1, 1, 1, 1, '2015-06-15 08:33:54', '0000-00-00 00:00:00', 1),
2290(82, 'SP020', '', '', '', '', '', '', '', 10, 5, 'data/selves.jpg', 0, 1, '2000.0000', 0, 0, '2015-06-14', '0.00000000', 1, '0.00000000', '0.00000000', '0.00000000', 1, 1, 1, 1, 1, '2015-06-15 07:30:03', '2015-06-15 07:40:23', 0),
2291(63, 'SP002', '', '', '', '', '', '', '', 10, 5, 'data/products/5.jpg', 0, 1, '300000.0000', 0, 0, '2015-06-11', '0.00000000', 1, '0.00000000', '0.00000000', '0.00000000', 1, 1, 1, 1, 1, '2015-06-12 10:08:14', '2015-06-12 10:09:52', 0),
2292(64, 'SP003', '', '', '', '', '', '', '', 10, 5, 'data/products/99.jpg', 0, 1, '300000.0000', 0, 0, '2015-06-11', '0.00000000', 1, '0.00000000', '0.00000000', '0.00000000', 1, 1, 1, 1, 1, '2015-06-12 10:09:34', '2015-06-12 10:10:44', 0),
2293(65, 'SP004', '', '', '', '', '', '', '', 10, 5, 'data/products/3.jpg', 0, 1, '300000.0000', 0, 0, '2015-06-11', '0.00000000', 1, '0.00000000', '0.00000000', '0.00000000', 1, 1, 1, 1, 1, '2015-06-12 10:09:34', '2015-06-12 10:19:20', 1),
2294(66, 'SP005', '', '', '', '', '', '', '', 10, 5, 'data/products/10.jpg', 0, 1, '500000.0000', 0, 0, '2015-06-11', '0.00000000', 1, '0.00000000', '0.00000000', '0.00000000', 1, 1, 1, 1, 1, '2015-06-12 10:22:38', '2015-07-10 03:09:46', 0),
2295(68, 'SP0010', '', '', '', '', '', '', '', 10, 5, 'data/products/15.jpg', 0, 1, '800000.0000', 0, 0, '2015-06-11', '0.00000000', 1, '0.00000000', '0.00000000', '0.00000000', 1, 1, 1, 1, 1, '2015-06-12 10:25:33', '2015-06-12 10:48:46', 1),
2296(69, 'SP009', '', '', '', '', '', '', '', 10, 5, 'data/products/14.jpg', 0, 1, '100000.0000', 0, 0, '2015-06-11', '0.00000000', 1, '0.00000000', '0.00000000', '0.00000000', 1, 1, 1, 1, 1, '2015-06-12 10:25:33', '2015-06-12 10:42:43', 1),
2297(70, 'SP008', '', '', '', '', '', '', '', 10, 5, 'data/products/13.jpg', 0, 1, '200000.0000', 0, 0, '2015-06-11', '0.00000000', 1, '0.00000000', '0.00000000', '0.00000000', 1, 1, 1, 1, 1, '2015-06-12 10:25:33', '2015-06-12 10:37:51', 0),
2298(71, 'SP007', '', '', '', '', '', '', '', 10, 5, 'data/products/12.jpg', 0, 1, '300000.0000', 0, 0, '2015-06-11', '0.00000000', 1, '0.00000000', '0.00000000', '0.00000000', 1, 1, 1, 1, 1, '2015-06-12 10:25:33', '2015-06-12 10:32:14', 1),
2299(62, 'SP001', '', '', '', '', '', '', '', 9, 5, 'data/products/1.jpg', 0, 1, '300000.0000', 0, 0, '2015-06-11', '0.00000000', 1, '0.00000000', '0.00000000', '0.00000000', 1, 1, 1, 1, 1, '2015-06-12 10:03:14', '2015-07-10 03:28:15', 12),
2300(72, 'SP006', '', '', '', '', '', '', '', 10, 5, 'data/products/11.jpg', 0, 1, '700000.0000', 0, 0, '2015-06-11', '0.00000000', 1, '0.00000000', '0.00000000', '0.00000000', 1, 1, 1, 1, 1, '2015-06-12 10:25:33', '2015-06-15 04:20:04', 0),
2301(73, 'AP011', '', '', '', '', '', '', '', 10, 5, 'data/japanese.jpg', 0, 1, '30000.0000', 0, 0, '2015-06-14', '0.00000000', 1, '0.00000000', '0.00000000', '0.00000000', 1, 1, 1, 1, 1, '2015-06-15 04:39:08', '2015-06-15 07:05:14', 0),
2302(74, 'SP012', '', '', '', '', '', '', '', 5, 5, 'data/dinners.jpg', 0, 1, '3000.0000', 0, 0, '2015-06-14', '0.00000000', 1, '0.00000000', '0.00000000', '0.00000000', 1, 1, 1, 1, 1, '2015-06-15 04:40:48', '2015-06-15 07:04:36', 0),
2303(75, 'SP013', '', '', '', '', '', '', '', 10, 5, 'data/japanese.jpg', 0, 1, '2000.0000', 0, 0, '2015-06-14', '0.00000000', 1, '0.00000000', '0.00000000', '0.00000000', 1, 1, 1, 1, 1, '2015-06-15 04:42:25', '2015-06-15 07:04:06', 0),
2304(76, 'SP014', '', '', '', '', '', '', '', 1, 5, 'data/images8.jpg', 0, 1, '6000.0000', 0, 0, '2015-06-14', '0.00000000', 1, '0.00000000', '0.00000000', '0.00000000', 1, 1, 1, 1, 1, '2015-06-15 06:59:42', '2015-06-15 07:11:20', 0),
2305(77, 'SP015', '', '', '', '', '', '', '', 1, 5, 'data/images.jpg', 0, 1, '10000.0000', 0, 0, '2015-06-14', '0.00000000', 1, '0.00000000', '0.00000000', '0.00000000', 1, 1, 1, 1, 1, '2015-06-15 07:00:28', '2015-06-15 07:15:08', 0),
2306(78, 'SP016', '', '', '', '', '', '', '', 1, 5, 'data/imagesr.jpg', 0, 1, '4000.0000', 0, 0, '2015-06-14', '0.00000000', 1, '0.00000000', '0.00000000', '0.00000000', 1, 1, 1, 1, 1, '2015-06-15 07:01:25', '2015-06-15 07:13:14', 2),
2307(79, 'SP017', '', '', '', '', '', '', '', 10, 5, 'data/index5.jpg', 0, 1, '4000.0000', 0, 0, '2015-06-14', '0.00000000', 1, '0.00000000', '0.00000000', '0.00000000', 1, 1, 1, 1, 1, '2015-06-15 07:17:49', '2015-06-15 07:27:04', 0),
2308(80, 'SP018', '', '', '', '', '', '', '', 1, 5, 'data/imagees.jpg', 0, 1, '33000.0000', 0, 0, '2015-06-14', '0.00000000', 1, '0.00000000', '0.00000000', '0.00000000', 1, 1, 1, 1, 1, '2015-06-15 07:18:36', '2015-06-15 07:27:57', 0),
2309(81, 'SP019', '', '', '', '', '', '', '', 10, 5, 'data/index6.jpg', 0, 1, '3000.0000', 0, 0, '2015-06-14', '0.00000000', 1, '0.00000000', '0.00000000', '0.00000000', 1, 1, 1, 1, 1, '2015-06-15 07:19:14', '2015-06-15 07:28:49', 0),
2310(96, 'SP34', '', '', '', '', '', '', '', 1, 5, 'data/chair.jpg', 0, 1, '1000.0000', 0, 0, '2015-07-07', '0.00000000', 1, '0.00000000', '0.00000000', '0.00000000', 1, 1, 1, 1, 1, '2015-07-08 06:50:50', '2015-07-08 06:51:38', 1),
2311(97, 'SP35', '', '', '', '', '', '', '', 1, 5, 'data/chair3.jpg', 0, 1, '2300.0000', 0, 0, '2015-07-07', '0.00000000', 1, '0.00000000', '0.00000000', '0.00000000', 1, 1, 1, 1, 1, '2015-07-08 06:54:48', '0000-00-00 00:00:00', 0),
2312(98, 'Sp033', '', '', '', '', '', '', '', 1, 5, 'data/formalrounddiningroomsets.jpg', 0, 1, '3000.0000', 0, 0, '2015-07-08', '0.00000000', 1, '0.00000000', '0.00000000', '0.00000000', 1, 1, 1, 1, 1, '2015-07-09 07:18:21', '0000-00-00 00:00:00', 2),
2313(99, 'SP034', '', '', '', '', '', '', '', 1, 5, 'data/diningroomjpegdiningroomsetsfrenchcountrydiningroomfurniture.jpg', 0, 1, '45000.0000', 0, 0, '2015-07-08', '0.00000000', 1, '0.00000000', '0.00000000', '0.00000000', 1, 1, 1, 1, 1, '2015-07-09 07:20:25', '0000-00-00 00:00:00', 3),
2314(100, 'SP39', '', '', '', '', '', '', '', 1, 5, 'data/nice-traditional-ideas-of-kitchen.jpg', 0, 1, '6700.0000', 0, 0, '2015-07-08', '0.00000000', 1, '0.00000000', '0.00000000', '0.00000000', 1, 1, 1, 1, 1, '2015-07-09 07:23:02', '2015-07-09 07:23:35', 1);
2315
2316-- --------------------------------------------------------
2317
2318--
2319-- Table structure for table `product_attribute`
2320--
2321
2322CREATE TABLE IF NOT EXISTS `product_attribute` (
2323 `product_id` int(11) NOT NULL,
2324 `attribute_id` int(11) NOT NULL,
2325 `language_id` int(11) NOT NULL,
2326 `text` text NOT NULL,
2327 PRIMARY KEY (`product_id`,`attribute_id`,`language_id`)
2328) ENGINE=MyISAM DEFAULT CHARSET=utf8;
2329
2330--
2331-- Dumping data for table `product_attribute`
2332--
2333
2334INSERT INTO `product_attribute` (`product_id`, `attribute_id`, `language_id`, `text`) VALUES
2335(65, 13, 1, 'Lion Skin'),
2336(65, 14, 1, ''),
2337(65, 15, 1, '30ffeet'),
2338(66, 13, 1, 'Leopard'),
2339(66, 14, 1, 'forward'),
2340(71, 13, 1, 'Argentan lace'),
2341(66, 12, 1, 'Mahogany '),
2342(72, 13, 1, 'Elephant Skin'),
2343(72, 14, 1, 'Backward'),
2344(72, 12, 1, 'Banglay'),
2345(71, 14, 1, 'Backward'),
2346(71, 15, 1, '5ffeet'),
2347(70, 13, 1, 'Armenian needlelace'),
2348(70, 16, 1, '50feet'),
2349(70, 14, 1, 'Leftward'),
2350(69, 13, 1, 'Flooded gum,'),
2351(69, 14, 1, 'Leftward'),
2352(69, 15, 1, '19feet'),
2353(68, 15, 1, '350[W] x 410[H] x 680[D]'),
2354(68, 14, 1, 'Backward'),
2355(72, 15, 1, '15feet'),
2356(66, 15, 1, '20ffeet');
2357
2358-- --------------------------------------------------------
2359
2360--
2361-- Table structure for table `product_description`
2362--
2363
2364CREATE TABLE IF NOT EXISTS `product_description` (
2365 `product_id` int(11) NOT NULL,
2366 `language_id` int(11) NOT NULL,
2367 `name` varchar(255) NOT NULL,
2368 `description` text NOT NULL,
2369 `meta_description` varchar(255) NOT NULL,
2370 `meta_keyword` varchar(255) NOT NULL,
2371 `tag` text NOT NULL,
2372 PRIMARY KEY (`product_id`,`language_id`),
2373 KEY `name` (`name`)
2374) ENGINE=MyISAM DEFAULT CHARSET=utf8;
2375
2376--
2377-- Dumping data for table `product_description`
2378--
2379
2380INSERT INTO `product_description` (`product_id`, `language_id`, `name`, `description`, `meta_description`, `meta_keyword`, `tag`) VALUES
2381(65, 1, 'Products 4', '<p>Phasellus condimentum tincidunt massa, in cursus libero tincidunt vel. Ut hendrerit faucibus nisl sit amet tincidunt. Nulla tristique feugiat ex, at viverra risus mollis sed. Maecenas vitae odio ipsum. Pellentesque consectetur mi tincidunt nulla maximus imperdiet. In neque tellus, tincidunt in congue nec, egestas quis nisl. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean non purus fermentum, eleifend metus rutrum, varius est. Aliquam quis interdum enim, quis lacinia diam.</p>\r\n', '', '', 'Cushion,Table,Chair,Dinning'),
2382(66, 1, 'Products 5', '<p>Phasellus condimentum tincidunt massa, in cursus libero tincidunt vel. Ut hendrerit faucibus nisl sit amet tincidunt. Nulla tristique feugiat ex, at viverra risus mollis sed. Maecenas vitae odio ipsum. Pellentesque consectetur mi tincidunt nulla maximus imperdiet. In neque tellus, tincidunt in congue nec, egestas quis nisl. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean non purus fermentum, eleifend metus rutrum, varius est. Aliquam quis interdum enim, quis lacinia diam.</p>\r\n', '', '', 'Cushion,Table,Chair,Dinning'),
2383(68, 1, 'Products 10', '<p>Phasellus condimentum tincidunt massa, in cursus libero tincidunt vel. Ut hendrerit faucibus nisl sit amet tincidunt. Nulla tristique feugiat ex, at viverra risus mollis sed. Maecenas vitae odio ipsum. Pellentesque consectetur mi tincidunt nulla maximus imperdiet. In neque tellus, tincidunt in congue nec, egestas quis nisl. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean non purus fermentum, eleifend metus rutrum, varius est. Aliquam quis interdum enim, quis lacinia diam.</p>\r\n', '', '', 'Cushion,Table,Chair,Dinning'),
2384(69, 1, 'Products 9', '<p>Phasellus condimentum tincidunt massa, in cursus libero tincidunt vel. Ut hendrerit faucibus nisl sit amet tincidunt. Nulla tristique feugiat ex, at viverra risus mollis sed. Maecenas vitae odio ipsum. Pellentesque consectetur mi tincidunt nulla maximus imperdiet. In neque tellus, tincidunt in congue nec, egestas quis nisl. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean non purus fermentum, eleifend metus rutrum, varius est. Aliquam quis interdum enim, quis lacinia diam.</p>\r\n', '', '', 'Cushion,Table,Chair,Dinning'),
2385(70, 1, 'Products 8', '<p>Phasellus condimentum tincidunt massa, in cursus libero tincidunt vel. Ut hendrerit faucibus nisl sit amet tincidunt. Nulla tristique feugiat ex, at viverra risus mollis sed. Maecenas vitae odio ipsum. Pellentesque consectetur mi tincidunt nulla maximus imperdiet. In neque tellus, tincidunt in congue nec, egestas quis nisl. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean non purus fermentum, eleifend metus rutrum, varius est. Aliquam</p>\r\n', '', '', 'Cushion,Table,Chair,Dinning'),
2386(71, 1, 'Products 7', '<p>Phasellus condimentum tincidunt massa, in cursus libero tincidunt vel. Ut hendrerit faucibus nisl sit amet tincidunt. Nulla tristique feugiat ex, at viverra risus mollis sed. Maecenas vitae odio ipsum. Pellentesque consectetur mi tincidunt nulla maximus imperdiet. In neque tellus, tincidunt in congue nec, egestas quis nisl. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean non purus fermentum, eleifend metus rutrum, varius est. Aliquam quis interdum enim, quis lacinia diam.</p>\r\n', '', '', 'Cushion,Table,Chair,Dinning'),
2387(72, 1, 'Products 6', '<p>Phasellus condimentum tincidunt massa, in cursus libero tincidunt vel. Ut hendrerit faucibus nisl sit amet tincidunt. Nulla tristique feugiat ex, at viverra risus mollis sed. Maecenas vitae odio ipsum. Pellentesque consectetur mi tincidunt nulla maximus imperdiet. In neque tellus, tincidunt in congue nec, egestas quis nisl. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean non purus fermentum, eleifend metus rutrum, varius est. Aliquam quis interdum enim, quis lacinia diam.</p>\r\n', '', '', 'Cushion,Table,Chair,Dinning'),
2388(73, 1, 'floor chair', '<p>floor chair</p>\r\n', 'floor chair', 'floor chair', 'floor chair'),
2389(74, 1, 'dinners', '<p>dinners</p>\r\n', 'dinners', 'dinners', ''),
2390(75, 1, 'chilling', '<p>chilling</p>\r\n', 'chilling', 'chilling', ''),
2391(76, 1, 'ssd', '<p>sd</p>\r\n', 'sd', '', ''),
2392(77, 1, 'sssd', '<p>sssd</p>\r\n', '', '', ''),
2393(78, 1, 'ssdd', '<p>ssdd</p>\r\n', '', '', ''),
2394(79, 1, 'product 15', '<p>product 15</p>\r\n', '', '', ''),
2395(80, 1, 'product 16', '<p>product 16</p>\r\n', '', '', ''),
2396(81, 1, 'product 18', '<p>product 18</p>\r\n', '', '', ''),
2397(82, 1, 'product 17', '<p>product 17</p>\r\n', '', '', ''),
2398(83, 1, 'product 20', '<p>product 20</p>\r\n', '', '', ''),
2399(84, 1, 'product 22', '<p>product 22</p>\r\n', '', '', ''),
2400(85, 1, 'product 21', '<p>product 21</p>\r\n', '', '', ''),
2401(86, 1, 'product 23', '<p>product 23</p>\r\n', '', '', ''),
2402(87, 1, 'product 24', '<p>product 24</p>\r\n', '', '', ''),
2403(88, 1, 'product 25', '<p>product 25</p>\r\n', '', '', ''),
2404(89, 1, 'product 26', '<p>product 26</p>\r\n', '', '', ''),
2405(90, 1, 'product 27', '<p>product 27</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n', '', '', ''),
2406(91, 1, 'product 28', '<p>product 28</p>\r\n', '', '', ''),
2407(92, 1, 'product 29', '<p>product 29</p>\r\n', '', '', ''),
2408(93, 1, 'product 30', '<p>product 30</p>\r\n', '', '', ''),
2409(94, 1, 'Sitting Room Chairs', '<p>Sitting Room Chairs</p>\r\n', '', '', ''),
2410(95, 1, 'product 33', '', '', '', ''),
2411(96, 1, 'product34', '', '', '', ''),
2412(97, 1, 'product35', '', '', '', ''),
2413(98, 1, 'product36', '', '', '', ''),
2414(99, 1, 'product 37', '', '', '', ''),
2415(100, 1, 'product 38', '', '', '', ''),
2416(62, 1, 'Products 1', '<p>Phasellus condimentum tincidunt massa, in cursus libero tincidunt vel. Ut hendrerit faucibus nisl sit amet tincidunt. Nulla tristique feugiat ex, at viverra risus mollis sed. Maecenas vitae odio ipsum. Pellentesque consectetur mi tincidunt nulla maximus imperdiet. In neque tellus, tincidunt in congue nec, egestas quis nisl. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean non purus fermentum, eleifend metus rutrum, varius est. Aliquam quis interdum enim, quis lacinia diam.</p>\r\n', '', '', 'Cushion,Table,Chair,Dinning'),
2417(63, 1, 'Products 2', '<p>Phasellus condimentum tincidunt massa, in cursus libero tincidunt vel. Ut hendrerit faucibus nisl sit amet tincidunt. Nulla tristique feugiat ex, at viverra risus mollis sed. Maecenas vitae odio ipsum. Pellentesque consectetur mi tincidunt nulla maximus imperdiet. In neque tellus, tincidunt in congue nec, egestas quis nisl. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean non purus fermentum, eleifend metus rutrum, varius est. Aliquam quis interdum enim, quis lacinia diam.</p>\r\n', '', '', 'Cushion,Table,Chair,Dinning'),
2418(64, 1, 'Products 3', '<p>Phasellus condimentum tincidunt massa, in cursus libero tincidunt vel. Ut hendrerit faucibus nisl sit amet tincidunt. Nulla tristique feugiat ex, at viverra risus mollis sed. Maecenas vitae odio ipsum. Pellentesque consectetur mi tincidunt nulla maximus imperdiet. In neque tellus, tincidunt in congue nec, egestas quis nisl. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean non purus fermentum, eleifend metus rutrum, varius est. Aliquam quis interdum enim, quis lacinia diam.</p>\r\n', '', '', 'Cushion,Table,Chair,Dinning');
2419
2420-- --------------------------------------------------------
2421
2422--
2423-- Table structure for table `product_discount`
2424--
2425
2426CREATE TABLE IF NOT EXISTS `product_discount` (
2427 `product_discount_id` int(11) NOT NULL AUTO_INCREMENT,
2428 `product_id` int(11) NOT NULL,
2429 `customer_group_id` int(11) NOT NULL,
2430 `quantity` int(4) NOT NULL DEFAULT '0',
2431 `priority` int(5) NOT NULL DEFAULT '1',
2432 `price` decimal(15,4) NOT NULL DEFAULT '0.0000',
2433 `date_start` date NOT NULL DEFAULT '0000-00-00',
2434 `date_end` date NOT NULL DEFAULT '0000-00-00',
2435 PRIMARY KEY (`product_discount_id`),
2436 KEY `product_id` (`product_id`)
2437) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=444 ;
2438
2439-- --------------------------------------------------------
2440
2441--
2442-- Table structure for table `product_filter`
2443--
2444
2445CREATE TABLE IF NOT EXISTS `product_filter` (
2446 `product_id` int(11) NOT NULL,
2447 `filter_id` int(11) NOT NULL,
2448 PRIMARY KEY (`product_id`,`filter_id`)
2449) ENGINE=MyISAM DEFAULT CHARSET=utf8;
2450
2451-- --------------------------------------------------------
2452
2453--
2454-- Table structure for table `product_image`
2455--
2456
2457CREATE TABLE IF NOT EXISTS `product_image` (
2458 `product_image_id` int(11) NOT NULL AUTO_INCREMENT,
2459 `product_id` int(11) NOT NULL,
2460 `image` varchar(255) DEFAULT NULL,
2461 `sort_order` int(3) NOT NULL DEFAULT '0',
2462 PRIMARY KEY (`product_image_id`)
2463) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=2426 ;
2464
2465--
2466-- Dumping data for table `product_image`
2467--
2468
2469INSERT INTO `product_image` (`product_image_id`, `product_id`, `image`, `sort_order`) VALUES
2470(2425, 62, 'data/products/3.jpg', 0),
2471(2423, 72, 'data/products/3.jpg', 0),
2472(2419, 68, 'data/products/9.jpg', 0),
2473(2405, 63, 'data/products/3.jpg', 0),
2474(2416, 71, 'data/products/3.jpg', 0),
2475(2407, 65, 'data/products/3.jpg', 0),
2476(2424, 66, 'data/products/3.jpg', 0),
2477(2418, 68, 'data/products/3.jpg', 0),
2478(2417, 69, 'data/products/3.jpg', 0);
2479
2480-- --------------------------------------------------------
2481
2482--
2483-- Table structure for table `product_option`
2484--
2485
2486CREATE TABLE IF NOT EXISTS `product_option` (
2487 `product_option_id` int(11) NOT NULL AUTO_INCREMENT,
2488 `product_id` int(11) NOT NULL,
2489 `option_id` int(11) NOT NULL,
2490 `option_value` text NOT NULL,
2491 `required` tinyint(1) NOT NULL,
2492 PRIMARY KEY (`product_option_id`)
2493) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=252 ;
2494
2495--
2496-- Dumping data for table `product_option`
2497--
2498
2499INSERT INTO `product_option` (`product_option_id`, `product_id`, `option_id`, `option_value`, `required`) VALUES
2500(230, 62, 13, '', 1),
2501(231, 62, 14, '', 1),
2502(234, 64, 13, '', 1),
2503(239, 66, 13, '', 1),
2504(232, 63, 13, '', 1),
2505(233, 63, 14, '', 1),
2506(237, 65, 14, '', 1),
2507(238, 66, 14, '', 1),
2508(236, 65, 13, '', 1),
2509(235, 64, 14, '', 1),
2510(242, 68, 13, '', 1),
2511(243, 68, 14, '', 1),
2512(245, 69, 14, '', 1),
2513(244, 69, 13, '', 1),
2514(247, 70, 14, '', 1),
2515(246, 70, 13, '', 1),
2516(249, 71, 13, '', 1),
2517(248, 71, 14, '', 1),
2518(250, 72, 14, '', 1),
2519(251, 72, 13, '', 1);
2520
2521-- --------------------------------------------------------
2522
2523--
2524-- Table structure for table `product_option_value`
2525--
2526
2527CREATE TABLE IF NOT EXISTS `product_option_value` (
2528 `product_option_value_id` int(11) NOT NULL AUTO_INCREMENT,
2529 `product_option_id` int(11) NOT NULL,
2530 `product_id` int(11) NOT NULL,
2531 `option_id` int(11) NOT NULL,
2532 `option_value_id` int(11) NOT NULL,
2533 `quantity` int(3) NOT NULL,
2534 `subtract` tinyint(1) NOT NULL,
2535 `price` decimal(15,4) NOT NULL,
2536 `price_prefix` varchar(1) NOT NULL,
2537 `points` int(8) NOT NULL,
2538 `points_prefix` varchar(1) NOT NULL,
2539 `weight` decimal(15,8) NOT NULL,
2540 `weight_prefix` varchar(1) NOT NULL,
2541 PRIMARY KEY (`product_option_value_id`)
2542) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=165 ;
2543
2544--
2545-- Dumping data for table `product_option_value`
2546--
2547
2548INSERT INTO `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
2549(60, 234, 64, 13, 53, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2550(59, 234, 64, 13, 50, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2551(58, 234, 64, 13, 51, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2552(57, 234, 64, 13, 54, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2553(56, 233, 63, 14, 57, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2554(55, 233, 63, 14, 56, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2555(54, 233, 63, 14, 60, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2556(53, 233, 63, 14, 55, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2557(52, 233, 63, 14, 59, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2558(51, 233, 63, 14, 58, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2559(50, 232, 63, 13, 49, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2560(36, 230, 62, 13, 54, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2561(35, 230, 62, 13, 51, 9, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2562(33, 230, 62, 13, 50, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2563(38, 230, 62, 13, 52, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2564(49, 232, 63, 13, 52, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2565(48, 232, 63, 13, 53, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2566(47, 232, 63, 13, 50, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2567(46, 232, 63, 13, 51, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2568(45, 232, 63, 13, 54, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2569(34, 230, 62, 13, 53, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2570(37, 230, 62, 13, 49, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2571(44, 231, 62, 14, 58, 9, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2572(43, 231, 62, 14, 59, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2573(42, 231, 62, 14, 55, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2574(41, 231, 62, 14, 60, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2575(39, 231, 62, 14, 56, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2576(40, 231, 62, 14, 57, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2577(61, 234, 64, 13, 52, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2578(62, 234, 64, 13, 49, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2579(63, 235, 64, 14, 58, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2580(64, 235, 64, 14, 59, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2581(65, 235, 64, 14, 55, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2582(66, 235, 64, 14, 60, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2583(67, 235, 64, 14, 56, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2584(68, 235, 64, 14, 57, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2585(75, 237, 65, 14, 58, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2586(76, 237, 65, 14, 59, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2587(77, 237, 65, 14, 55, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2588(78, 237, 65, 14, 60, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2589(79, 237, 65, 14, 56, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2590(80, 237, 65, 14, 57, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2591(69, 236, 65, 13, 54, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2592(70, 236, 65, 13, 51, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2593(71, 236, 65, 13, 50, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2594(72, 236, 65, 13, 53, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2595(73, 236, 65, 13, 52, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2596(74, 236, 65, 13, 49, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2597(87, 239, 66, 13, 54, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2598(88, 239, 66, 13, 51, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2599(89, 239, 66, 13, 50, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2600(90, 239, 66, 13, 53, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2601(91, 239, 66, 13, 52, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2602(92, 239, 66, 13, 49, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2603(81, 238, 66, 14, 58, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2604(82, 238, 66, 14, 59, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2605(83, 238, 66, 14, 55, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2606(84, 238, 66, 14, 60, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2607(85, 238, 66, 14, 56, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2608(86, 238, 66, 14, 57, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2609(105, 242, 68, 13, 54, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2610(106, 242, 68, 13, 51, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2611(107, 242, 68, 13, 50, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2612(108, 242, 68, 13, 53, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2613(109, 242, 68, 13, 52, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2614(110, 242, 68, 13, 49, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2615(111, 243, 68, 14, 58, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2616(112, 243, 68, 14, 59, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2617(113, 243, 68, 14, 55, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2618(114, 243, 68, 14, 60, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2619(115, 243, 68, 14, 56, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2620(116, 243, 68, 14, 57, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2621(128, 245, 69, 14, 58, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2622(127, 245, 69, 14, 59, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2623(126, 245, 69, 14, 55, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2624(125, 245, 69, 14, 60, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2625(124, 245, 69, 14, 56, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2626(123, 245, 69, 14, 57, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2627(122, 244, 69, 13, 54, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2628(121, 244, 69, 13, 51, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2629(120, 244, 69, 13, 50, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2630(119, 244, 69, 13, 53, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2631(118, 244, 69, 13, 52, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2632(117, 244, 69, 13, 49, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2633(140, 247, 70, 14, 57, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2634(139, 247, 70, 14, 56, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2635(138, 247, 70, 14, 60, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2636(137, 247, 70, 14, 55, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2637(136, 247, 70, 14, 59, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2638(135, 247, 70, 14, 58, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2639(134, 246, 70, 13, 49, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2640(133, 246, 70, 13, 52, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2641(132, 246, 70, 13, 54, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2642(131, 246, 70, 13, 51, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2643(130, 246, 70, 13, 50, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2644(129, 246, 70, 13, 53, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2645(152, 249, 71, 13, 49, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2646(151, 249, 71, 13, 52, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2647(150, 249, 71, 13, 53, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2648(149, 249, 71, 13, 50, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2649(148, 249, 71, 13, 51, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2650(147, 249, 71, 13, 54, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2651(146, 248, 71, 14, 57, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2652(145, 248, 71, 14, 56, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2653(144, 248, 71, 14, 60, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2654(143, 248, 71, 14, 55, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2655(142, 248, 71, 14, 59, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2656(141, 248, 71, 14, 58, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2657(153, 250, 72, 14, 57, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2658(154, 250, 72, 14, 56, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2659(155, 250, 72, 14, 60, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2660(156, 250, 72, 14, 55, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2661(157, 250, 72, 14, 59, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2662(158, 250, 72, 14, 58, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2663(159, 251, 72, 13, 49, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2664(160, 251, 72, 13, 52, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2665(161, 251, 72, 13, 53, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2666(162, 251, 72, 13, 50, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2667(163, 251, 72, 13, 51, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+'),
2668(164, 251, 72, 13, 54, 10, 1, '0.0000', '+', 0, '+', '0.00000000', '+');
2669
2670-- --------------------------------------------------------
2671
2672--
2673-- Table structure for table `product_profile`
2674--
2675
2676CREATE TABLE IF NOT EXISTS `product_profile` (
2677 `product_id` int(11) NOT NULL,
2678 `profile_id` int(11) NOT NULL,
2679 `customer_group_id` int(11) NOT NULL,
2680 PRIMARY KEY (`product_id`,`profile_id`,`customer_group_id`)
2681) ENGINE=MyISAM DEFAULT CHARSET=utf8;
2682
2683-- --------------------------------------------------------
2684
2685--
2686-- Table structure for table `product_recurring`
2687--
2688
2689CREATE TABLE IF NOT EXISTS `product_recurring` (
2690 `product_id` int(11) NOT NULL,
2691 `store_id` int(11) NOT NULL,
2692 PRIMARY KEY (`product_id`,`store_id`)
2693) ENGINE=MyISAM DEFAULT CHARSET=utf8;
2694
2695-- --------------------------------------------------------
2696
2697--
2698-- Table structure for table `product_related`
2699--
2700
2701CREATE TABLE IF NOT EXISTS `product_related` (
2702 `product_id` int(11) NOT NULL,
2703 `related_id` int(11) NOT NULL,
2704 PRIMARY KEY (`product_id`,`related_id`)
2705) ENGINE=MyISAM DEFAULT CHARSET=utf8;
2706
2707-- --------------------------------------------------------
2708
2709--
2710-- Table structure for table `product_reward`
2711--
2712
2713CREATE TABLE IF NOT EXISTS `product_reward` (
2714 `product_reward_id` int(11) NOT NULL AUTO_INCREMENT,
2715 `product_id` int(11) NOT NULL DEFAULT '0',
2716 `customer_group_id` int(11) NOT NULL DEFAULT '0',
2717 `points` int(8) NOT NULL DEFAULT '0',
2718 PRIMARY KEY (`product_reward_id`)
2719) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=710 ;
2720
2721--
2722-- Dumping data for table `product_reward`
2723--
2724
2725INSERT INTO `product_reward` (`product_reward_id`, `product_id`, `customer_group_id`, `points`) VALUES
2726(697, 93, 1, 0),
2727(694, 90, 1, 0),
2728(693, 89, 1, 0),
2729(682, 82, 1, 0),
2730(673, 79, 1, 0),
2731(689, 86, 1, 0),
2732(690, 87, 1, 0),
2733(696, 92, 1, 0),
2734(662, 74, 1, 0),
2735(675, 81, 1, 0),
2736(674, 80, 1, 0),
2737(665, 78, 1, 0),
2738(664, 76, 1, 0),
2739(661, 75, 1, 0),
2740(692, 88, 1, 0),
2741(688, 85, 1, 0),
2742(683, 84, 1, 0),
2743(684, 83, 1, 0),
2744(666, 77, 1, 0),
2745(695, 91, 1, 0),
2746(709, 62, 1, 0),
2747(614, 64, 1, 0),
2748(616, 65, 1, 0),
2749(633, 72, 1, 0),
2750(663, 73, 1, 0),
2751(628, 69, 1, 0),
2752(626, 71, 1, 0),
2753(629, 68, 1, 0),
2754(612, 63, 1, 0),
2755(708, 66, 1, 0),
2756(627, 70, 1, 0),
2757(698, 94, 1, 0),
2758(700, 95, 1, 0),
2759(702, 96, 1, 0),
2760(703, 97, 1, 0),
2761(704, 98, 1, 0),
2762(705, 99, 1, 0),
2763(707, 100, 1, 0);
2764
2765-- --------------------------------------------------------
2766
2767--
2768-- Table structure for table `product_special`
2769--
2770
2771CREATE TABLE IF NOT EXISTS `product_special` (
2772 `product_special_id` int(11) NOT NULL AUTO_INCREMENT,
2773 `product_id` int(11) NOT NULL,
2774 `customer_group_id` int(11) NOT NULL,
2775 `priority` int(5) NOT NULL DEFAULT '1',
2776 `price` decimal(15,4) NOT NULL DEFAULT '0.0000',
2777 `date_start` date NOT NULL DEFAULT '0000-00-00',
2778 `date_end` date NOT NULL DEFAULT '0000-00-00',
2779 PRIMARY KEY (`product_special_id`),
2780 KEY `product_id` (`product_id`)
2781) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=445 ;
2782
2783-- --------------------------------------------------------
2784
2785--
2786-- Table structure for table `product_to_category`
2787--
2788
2789CREATE TABLE IF NOT EXISTS `product_to_category` (
2790 `product_id` int(11) NOT NULL,
2791 `category_id` int(11) NOT NULL,
2792 PRIMARY KEY (`product_id`,`category_id`)
2793) ENGINE=MyISAM DEFAULT CHARSET=utf8;
2794
2795--
2796-- Dumping data for table `product_to_category`
2797--
2798
2799INSERT INTO `product_to_category` (`product_id`, `category_id`) VALUES
2800(62, 18),
2801(62, 20),
2802(62, 28),
2803(62, 29),
2804(62, 30),
2805(62, 33),
2806(62, 35),
2807(62, 45),
2808(62, 57),
2809(62, 59),
2810(62, 60),
2811(62, 61),
2812(62, 62),
2813(62, 63),
2814(62, 64),
2815(62, 74),
2816(62, 75),
2817(62, 76),
2818(62, 94),
2819(62, 95),
2820(62, 96),
2821(62, 97),
2822(62, 103),
2823(62, 104),
2824(62, 105),
2825(62, 106),
2826(62, 107),
2827(62, 108),
2828(62, 109),
2829(62, 110),
2830(62, 115),
2831(62, 118),
2832(63, 18),
2833(63, 20),
2834(63, 28),
2835(63, 29),
2836(63, 30),
2837(63, 33),
2838(63, 35),
2839(63, 45),
2840(63, 57),
2841(63, 59),
2842(63, 60),
2843(63, 61),
2844(63, 62),
2845(63, 63),
2846(63, 64),
2847(63, 74),
2848(63, 75),
2849(63, 76),
2850(63, 94),
2851(63, 95),
2852(63, 96),
2853(63, 97),
2854(63, 103),
2855(63, 104),
2856(63, 105),
2857(63, 106),
2858(63, 107),
2859(63, 108),
2860(63, 109),
2861(63, 110),
2862(64, 18),
2863(64, 20),
2864(64, 28),
2865(64, 29),
2866(64, 30),
2867(64, 33),
2868(64, 35),
2869(64, 45),
2870(64, 57),
2871(64, 59),
2872(64, 60),
2873(64, 61),
2874(64, 62),
2875(64, 63),
2876(64, 64),
2877(64, 74),
2878(64, 75),
2879(64, 76),
2880(64, 94),
2881(64, 95),
2882(64, 96),
2883(64, 97),
2884(64, 103),
2885(64, 104),
2886(64, 105),
2887(64, 106),
2888(64, 107),
2889(64, 108),
2890(64, 109),
2891(64, 110),
2892(65, 18),
2893(65, 20),
2894(65, 28),
2895(65, 29),
2896(65, 30),
2897(65, 33),
2898(65, 35),
2899(65, 45),
2900(65, 57),
2901(65, 59),
2902(65, 60),
2903(65, 61),
2904(65, 62),
2905(65, 63),
2906(65, 64),
2907(65, 74),
2908(65, 75),
2909(65, 76),
2910(65, 94),
2911(65, 95),
2912(65, 96),
2913(65, 97),
2914(65, 103),
2915(65, 104),
2916(65, 105),
2917(65, 106),
2918(65, 107),
2919(65, 108),
2920(65, 109),
2921(65, 110),
2922(66, 18),
2923(66, 20),
2924(66, 28),
2925(66, 29),
2926(66, 30),
2927(66, 33),
2928(66, 35),
2929(66, 45),
2930(66, 57),
2931(66, 59),
2932(66, 60),
2933(66, 61),
2934(66, 62),
2935(66, 63),
2936(66, 64),
2937(66, 74),
2938(66, 75),
2939(66, 76),
2940(66, 94),
2941(66, 95),
2942(66, 96),
2943(66, 97),
2944(66, 103),
2945(66, 104),
2946(66, 105),
2947(66, 106),
2948(66, 107),
2949(66, 108),
2950(66, 109),
2951(66, 110),
2952(66, 115),
2953(66, 118),
2954(68, 18),
2955(68, 20),
2956(68, 28),
2957(68, 29),
2958(68, 30),
2959(68, 33),
2960(68, 35),
2961(68, 45),
2962(68, 57),
2963(68, 59),
2964(68, 60),
2965(68, 61),
2966(68, 62),
2967(68, 63),
2968(68, 64),
2969(68, 74),
2970(68, 75),
2971(68, 76),
2972(68, 94),
2973(68, 95),
2974(68, 96),
2975(68, 97),
2976(68, 103),
2977(68, 104),
2978(68, 105),
2979(68, 106),
2980(68, 107),
2981(68, 108),
2982(68, 109),
2983(68, 110),
2984(69, 18),
2985(69, 20),
2986(69, 28),
2987(69, 29),
2988(69, 30),
2989(69, 33),
2990(69, 35),
2991(69, 45),
2992(69, 57),
2993(69, 59),
2994(69, 60),
2995(69, 61),
2996(69, 62),
2997(69, 63),
2998(69, 64),
2999(69, 74),
3000(69, 75),
3001(69, 76),
3002(69, 94),
3003(69, 95),
3004(69, 96),
3005(69, 97),
3006(69, 103),
3007(69, 104),
3008(69, 105),
3009(69, 106),
3010(69, 107),
3011(69, 108),
3012(69, 109),
3013(69, 110),
3014(70, 18),
3015(70, 20),
3016(70, 28),
3017(70, 29),
3018(70, 30),
3019(70, 33),
3020(70, 35),
3021(70, 45),
3022(70, 57),
3023(70, 59),
3024(70, 60),
3025(70, 61),
3026(70, 62),
3027(70, 63),
3028(70, 64),
3029(70, 74),
3030(70, 75),
3031(70, 76),
3032(70, 94),
3033(70, 95),
3034(70, 96),
3035(70, 97),
3036(70, 103),
3037(70, 104),
3038(70, 105),
3039(70, 106),
3040(70, 107),
3041(70, 108),
3042(70, 109),
3043(70, 110),
3044(71, 18),
3045(71, 20),
3046(71, 28),
3047(71, 29),
3048(71, 30),
3049(71, 33),
3050(71, 35),
3051(71, 45),
3052(71, 57),
3053(71, 59),
3054(71, 60),
3055(71, 61),
3056(71, 62),
3057(71, 63),
3058(71, 64),
3059(71, 74),
3060(71, 75),
3061(71, 76),
3062(71, 94),
3063(71, 95),
3064(71, 96),
3065(71, 97),
3066(71, 103),
3067(71, 104),
3068(71, 105),
3069(71, 106),
3070(71, 107),
3071(71, 108),
3072(71, 109),
3073(71, 110),
3074(72, 18),
3075(72, 20),
3076(72, 28),
3077(72, 29),
3078(72, 30),
3079(72, 33),
3080(72, 35),
3081(72, 45),
3082(72, 57),
3083(72, 59),
3084(72, 60),
3085(72, 61),
3086(72, 62),
3087(72, 63),
3088(72, 64),
3089(72, 74),
3090(72, 75),
3091(72, 76),
3092(72, 94),
3093(72, 95),
3094(72, 96),
3095(72, 97),
3096(72, 103),
3097(72, 104),
3098(72, 105),
3099(72, 106),
3100(72, 107),
3101(72, 108),
3102(72, 109),
3103(72, 110),
3104(73, 45),
3105(73, 59),
3106(73, 60),
3107(73, 61),
3108(73, 62),
3109(73, 63),
3110(73, 64),
3111(73, 74),
3112(73, 75),
3113(74, 45),
3114(74, 59),
3115(74, 60),
3116(74, 61),
3117(74, 62),
3118(74, 63),
3119(74, 64),
3120(74, 74),
3121(74, 75),
3122(75, 45),
3123(75, 60),
3124(75, 62),
3125(75, 63),
3126(75, 64),
3127(75, 74),
3128(75, 75),
3129(82, 106),
3130(82, 107),
3131(82, 108),
3132(82, 109),
3133(82, 110),
3134(83, 106),
3135(83, 107),
3136(83, 108),
3137(83, 109),
3138(83, 110),
3139(84, 106),
3140(84, 107),
3141(84, 108),
3142(84, 109),
3143(84, 110),
3144(85, 94),
3145(85, 95),
3146(85, 96),
3147(85, 97),
3148(86, 94),
3149(86, 95),
3150(86, 96),
3151(86, 97),
3152(87, 94),
3153(87, 95),
3154(87, 96),
3155(87, 97),
3156(88, 103),
3157(88, 104),
3158(88, 105),
3159(89, 103),
3160(89, 104),
3161(89, 105),
3162(90, 103),
3163(90, 104),
3164(90, 105),
3165(95, 117),
3166(96, 116),
3167(97, 118),
3168(98, 116),
3169(99, 118),
3170(100, 117);
3171
3172-- --------------------------------------------------------
3173
3174--
3175-- Table structure for table `product_to_download`
3176--
3177
3178CREATE TABLE IF NOT EXISTS `product_to_download` (
3179 `product_id` int(11) NOT NULL,
3180 `download_id` int(11) NOT NULL,
3181 PRIMARY KEY (`product_id`,`download_id`)
3182) ENGINE=MyISAM DEFAULT CHARSET=utf8;
3183
3184-- --------------------------------------------------------
3185
3186--
3187-- Table structure for table `product_to_layout`
3188--
3189
3190CREATE TABLE IF NOT EXISTS `product_to_layout` (
3191 `product_id` int(11) NOT NULL,
3192 `store_id` int(11) NOT NULL,
3193 `layout_id` int(11) NOT NULL,
3194 PRIMARY KEY (`product_id`,`store_id`)
3195) ENGINE=MyISAM DEFAULT CHARSET=utf8;
3196
3197-- --------------------------------------------------------
3198
3199--
3200-- Table structure for table `product_to_store`
3201--
3202
3203CREATE TABLE IF NOT EXISTS `product_to_store` (
3204 `product_id` int(11) NOT NULL,
3205 `store_id` int(11) NOT NULL DEFAULT '0',
3206 PRIMARY KEY (`product_id`,`store_id`)
3207) ENGINE=MyISAM DEFAULT CHARSET=utf8;
3208
3209--
3210-- Dumping data for table `product_to_store`
3211--
3212
3213INSERT INTO `product_to_store` (`product_id`, `store_id`) VALUES
3214(62, 0),
3215(63, 0),
3216(64, 0),
3217(65, 0),
3218(66, 0),
3219(68, 0),
3220(69, 0),
3221(70, 0),
3222(71, 0),
3223(72, 0),
3224(73, 0),
3225(74, 0),
3226(75, 0),
3227(76, 0),
3228(77, 0),
3229(78, 0),
3230(79, 0),
3231(80, 0),
3232(81, 0),
3233(82, 0),
3234(83, 0),
3235(84, 0),
3236(85, 0),
3237(86, 0),
3238(87, 0),
3239(88, 0),
3240(89, 0),
3241(90, 0),
3242(91, 0),
3243(92, 0),
3244(93, 0),
3245(94, 0),
3246(95, 0),
3247(96, 0),
3248(97, 0),
3249(98, 0),
3250(99, 0),
3251(100, 0);
3252
3253-- --------------------------------------------------------
3254
3255--
3256-- Table structure for table `profile`
3257--
3258
3259CREATE TABLE IF NOT EXISTS `profile` (
3260 `profile_id` int(11) NOT NULL AUTO_INCREMENT,
3261 `sort_order` int(11) NOT NULL,
3262 `status` tinyint(4) NOT NULL,
3263 `price` decimal(10,4) NOT NULL,
3264 `frequency` enum('day','week','semi_month','month','year') NOT NULL,
3265 `duration` int(10) unsigned NOT NULL,
3266 `cycle` int(10) unsigned NOT NULL,
3267 `trial_status` tinyint(4) NOT NULL,
3268 `trial_price` decimal(10,4) NOT NULL,
3269 `trial_frequency` enum('day','week','semi_month','month','year') NOT NULL,
3270 `trial_duration` int(10) unsigned NOT NULL,
3271 `trial_cycle` int(10) unsigned NOT NULL,
3272 PRIMARY KEY (`profile_id`)
3273) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
3274
3275-- --------------------------------------------------------
3276
3277--
3278-- Table structure for table `profile_description`
3279--
3280
3281CREATE TABLE IF NOT EXISTS `profile_description` (
3282 `profile_id` int(11) NOT NULL,
3283 `language_id` int(11) NOT NULL,
3284 `name` varchar(255) NOT NULL,
3285 PRIMARY KEY (`profile_id`,`language_id`)
3286) ENGINE=MyISAM DEFAULT CHARSET=utf8;
3287
3288-- --------------------------------------------------------
3289
3290--
3291-- Table structure for table `return`
3292--
3293
3294CREATE TABLE IF NOT EXISTS `return` (
3295 `return_id` int(11) NOT NULL AUTO_INCREMENT,
3296 `order_id` int(11) NOT NULL,
3297 `product_id` int(11) NOT NULL,
3298 `customer_id` int(11) NOT NULL,
3299 `firstname` varchar(32) NOT NULL,
3300 `lastname` varchar(32) NOT NULL,
3301 `email` varchar(96) NOT NULL,
3302 `telephone` varchar(32) NOT NULL,
3303 `product` varchar(255) NOT NULL,
3304 `model` varchar(64) NOT NULL,
3305 `quantity` int(4) NOT NULL,
3306 `opened` tinyint(1) NOT NULL,
3307 `return_reason_id` int(11) NOT NULL,
3308 `return_action_id` int(11) NOT NULL,
3309 `return_status_id` int(11) NOT NULL,
3310 `comment` text,
3311 `date_ordered` date NOT NULL,
3312 `date_added` datetime NOT NULL,
3313 `date_modified` datetime NOT NULL,
3314 PRIMARY KEY (`return_id`)
3315) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
3316
3317-- --------------------------------------------------------
3318
3319--
3320-- Table structure for table `return_action`
3321--
3322
3323CREATE TABLE IF NOT EXISTS `return_action` (
3324 `return_action_id` int(11) NOT NULL AUTO_INCREMENT,
3325 `language_id` int(11) NOT NULL DEFAULT '0',
3326 `name` varchar(64) NOT NULL,
3327 PRIMARY KEY (`return_action_id`,`language_id`)
3328) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=4 ;
3329
3330--
3331-- Dumping data for table `return_action`
3332--
3333
3334INSERT INTO `return_action` (`return_action_id`, `language_id`, `name`) VALUES
3335(1, 1, 'Refunded'),
3336(2, 1, 'Credit Issued'),
3337(3, 1, 'Replacement Sent');
3338
3339-- --------------------------------------------------------
3340
3341--
3342-- Table structure for table `return_history`
3343--
3344
3345CREATE TABLE IF NOT EXISTS `return_history` (
3346 `return_history_id` int(11) NOT NULL AUTO_INCREMENT,
3347 `return_id` int(11) NOT NULL,
3348 `return_status_id` int(11) NOT NULL,
3349 `notify` tinyint(1) NOT NULL,
3350 `comment` text NOT NULL,
3351 `date_added` datetime NOT NULL,
3352 PRIMARY KEY (`return_history_id`)
3353) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
3354
3355-- --------------------------------------------------------
3356
3357--
3358-- Table structure for table `return_reason`
3359--
3360
3361CREATE TABLE IF NOT EXISTS `return_reason` (
3362 `return_reason_id` int(11) NOT NULL AUTO_INCREMENT,
3363 `language_id` int(11) NOT NULL DEFAULT '0',
3364 `name` varchar(128) NOT NULL,
3365 PRIMARY KEY (`return_reason_id`,`language_id`)
3366) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=6 ;
3367
3368--
3369-- Dumping data for table `return_reason`
3370--
3371
3372INSERT INTO `return_reason` (`return_reason_id`, `language_id`, `name`) VALUES
3373(1, 1, 'Dead On Arrival'),
3374(2, 1, 'Received Wrong Item'),
3375(3, 1, 'Order Error'),
3376(4, 1, 'Faulty, please supply details'),
3377(5, 1, 'Other, please supply details');
3378
3379-- --------------------------------------------------------
3380
3381--
3382-- Table structure for table `return_status`
3383--
3384
3385CREATE TABLE IF NOT EXISTS `return_status` (
3386 `return_status_id` int(11) NOT NULL AUTO_INCREMENT,
3387 `language_id` int(11) NOT NULL DEFAULT '0',
3388 `name` varchar(32) NOT NULL,
3389 PRIMARY KEY (`return_status_id`,`language_id`)
3390) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=4 ;
3391
3392--
3393-- Dumping data for table `return_status`
3394--
3395
3396INSERT INTO `return_status` (`return_status_id`, `language_id`, `name`) VALUES
3397(1, 1, 'Pending'),
3398(3, 1, 'Complete'),
3399(2, 1, 'Awaiting Products');
3400
3401-- --------------------------------------------------------
3402
3403--
3404-- Table structure for table `review`
3405--
3406
3407CREATE TABLE IF NOT EXISTS `review` (
3408 `review_id` int(11) NOT NULL AUTO_INCREMENT,
3409 `product_id` int(11) NOT NULL,
3410 `customer_id` int(11) NOT NULL,
3411 `author` varchar(64) NOT NULL,
3412 `text` text NOT NULL,
3413 `rating` int(1) NOT NULL,
3414 `status` tinyint(1) NOT NULL DEFAULT '0',
3415 `date_added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
3416 `date_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
3417 PRIMARY KEY (`review_id`),
3418 KEY `product_id` (`product_id`)
3419) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
3420
3421--
3422-- Dumping data for table `review`
3423--
3424
3425INSERT INTO `review` (`review_id`, `product_id`, `customer_id`, `author`, `text`, `rating`, `status`, `date_added`, `date_modified`) VALUES
3426(1, 62, 1, 'Nigeria Zone', 'sssssssssssssssssssssssss', 5, 0, '2015-08-06 05:04:17', '0000-00-00 00:00:00');
3427
3428-- --------------------------------------------------------
3429
3430--
3431-- Table structure for table `setting`
3432--
3433
3434CREATE TABLE IF NOT EXISTS `setting` (
3435 `setting_id` int(11) NOT NULL AUTO_INCREMENT,
3436 `store_id` int(11) NOT NULL DEFAULT '0',
3437 `group` varchar(32) NOT NULL,
3438 `key` varchar(64) NOT NULL,
3439 `value` text NOT NULL,
3440 `serialized` tinyint(1) NOT NULL,
3441 PRIMARY KEY (`setting_id`)
3442) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1538 ;
3443
3444--
3445-- Dumping data for table `setting`
3446--
3447
3448INSERT INTO `setting` (`setting_id`, `store_id`, `group`, `key`, `value`, `serialized`) VALUES
3449(1, 0, 'shipping', 'shipping_sort_order', '3', 0),
3450(2, 0, 'sub_total', 'sub_total_sort_order', '1', 0),
3451(3, 0, 'sub_total', 'sub_total_status', '1', 0),
3452(4, 0, 'tax', 'tax_status', '1', 0),
3453(5, 0, 'total', 'total_sort_order', '9', 0),
3454(6, 0, 'total', 'total_status', '1', 0),
3455(7, 0, 'tax', 'tax_sort_order', '5', 0),
3456(8, 0, 'free_checkout', 'free_checkout_sort_order', '1', 0),
3457(9, 0, 'cod', 'cod_sort_order', '5', 0),
3458(10, 0, 'cod', 'cod_total', '0.01', 0),
3459(11, 0, 'cod', 'cod_order_status_id', '1', 0),
3460(12, 0, 'cod', 'cod_geo_zone_id', '0', 0),
3461(13, 0, 'cod', 'cod_status', '1', 0),
3462(14, 0, 'shipping', 'shipping_status', '1', 0),
3463(15, 0, 'shipping', 'shipping_estimator', '1', 0),
3464(27, 0, 'coupon', 'coupon_sort_order', '4', 0),
3465(28, 0, 'coupon', 'coupon_status', '1', 0),
3466(34, 0, 'flat', 'flat_sort_order', '1', 0),
3467(35, 0, 'flat', 'flat_status', '1', 0),
3468(36, 0, 'flat', 'flat_geo_zone_id', '0', 0),
3469(37, 0, 'flat', 'flat_tax_class_id', '9', 0),
3470(342, 0, 'featured', 'product', '', 0),
3471(343, 0, 'featured', 'featured_product', '43,40,42,49,46,47,28', 0),
3472(344, 0, 'featured', 'featured_module', 'a:1:{i:0;a:7:{s:5:"limit";s:1:"6";s:11:"image_width";s:2:"80";s:12:"image_height";s:2:"80";s:9:"layout_id";s:1:"1";s:8:"position";s:11:"content_top";s:6:"status";s:1:"0";s:10:"sort_order";s:1:"2";}}', 1),
3473(41, 0, 'flat', 'flat_cost', '5.00', 0),
3474(42, 0, 'credit', 'credit_sort_order', '7', 0),
3475(43, 0, 'credit', 'credit_status', '1', 0),
3476(53, 0, 'reward', 'reward_sort_order', '2', 0),
3477(54, 0, 'reward', 'reward_status', '1', 0),
3478(1536, 0, 'affiliate', 'affiliate_module', 'a:1:{i:0;a:4:{s:9:"layout_id";s:2:"10";s:8:"position";s:11:"column_left";s:6:"status";s:1:"1";s:10:"sort_order";s:1:"1";}}', 1),
3479(1537, 0, 'category', 'category_module', 'a:11:{i:0;a:4:{s:9:"layout_id";s:1:"3";s:8:"position";s:11:"column_left";s:6:"status";s:1:"1";s:10:"sort_order";s:1:"1";}i:1;a:4:{s:9:"layout_id";s:1:"2";s:8:"position";s:11:"content_top";s:6:"status";s:1:"1";s:10:"sort_order";s:1:"1";}i:2;a:4:{s:9:"layout_id";s:1:"1";s:8:"position";s:11:"column_left";s:6:"status";s:1:"1";s:10:"sort_order";s:1:"2";}i:3;a:4:{s:9:"layout_id";s:1:"6";s:8:"position";s:11:"content_top";s:6:"status";s:1:"1";s:10:"sort_order";s:1:"1";}i:4;a:4:{s:9:"layout_id";s:2:"11";s:8:"position";s:11:"content_top";s:6:"status";s:1:"1";s:10:"sort_order";s:1:"1";}i:5;a:4:{s:9:"layout_id";s:1:"8";s:8:"position";s:11:"content_top";s:6:"status";s:1:"1";s:10:"sort_order";s:1:"1";}i:6;a:4:{s:9:"layout_id";s:1:"7";s:8:"position";s:11:"content_top";s:6:"status";s:1:"1";s:10:"sort_order";s:1:"1";}i:7;a:4:{s:9:"layout_id";s:1:"9";s:8:"position";s:11:"content_top";s:6:"status";s:1:"1";s:10:"sort_order";s:0:"";}i:8;a:4:{s:9:"layout_id";s:1:"5";s:8:"position";s:11:"content_top";s:6:"status";s:1:"1";s:10:"sort_order";s:0:"";}i:9;a:4:{s:9:"layout_id";s:2:"12";s:8:"position";s:11:"content_top";s:6:"status";s:1:"1";s:10:"sort_order";s:1:"1";}i:10;a:4:{s:9:"layout_id";s:2:"10";s:8:"position";s:11:"content_top";s:6:"status";s:1:"1";s:10:"sort_order";s:0:"";}}', 1),
3480(1161, 0, 'account', 'account_module', 'a:1:{i:0;a:4:{s:9:"layout_id";s:1:"6";s:8:"position";s:11:"column_left";s:6:"status";s:1:"1";s:10:"sort_order";s:1:"1";}}', 1),
3481(94, 0, 'voucher', 'voucher_sort_order', '8', 0),
3482(95, 0, 'voucher', 'voucher_status', '1', 0),
3483(103, 0, 'free_checkout', 'free_checkout_status', '1', 0),
3484(104, 0, 'free_checkout', 'free_checkout_order_status_id', '1', 0),
3485(1535, 0, 'slideshow', 'slideshow_module', 'a:1:{i:0;a:7:{s:9:"banner_id";s:1:"7";s:5:"width";s:3:"729";s:6:"height";s:3:"596";s:9:"layout_id";s:1:"1";s:8:"position";s:11:"content_top";s:6:"status";s:1:"1";s:10:"sort_order";s:1:"1";}}', 1),
3486(1489, 0, 'config', 'config_image_related_width', '100', 0),
3487(1490, 0, 'config', 'config_image_related_height', '100', 0),
3488(1491, 0, 'config', 'config_image_compare_width', '90', 0),
3489(1492, 0, 'config', 'config_image_compare_height', '90', 0),
3490(1493, 0, 'config', 'config_image_wishlist_width', '47', 0),
3491(1494, 0, 'config', 'config_image_wishlist_height', '47', 0),
3492(1495, 0, 'config', 'config_image_cart_width', '47', 0),
3493(1496, 0, 'config', 'config_image_cart_height', '47', 0),
3494(1497, 0, 'config', 'config_ftp_host', 'localhost', 0),
3495(1498, 0, 'config', 'config_ftp_port', '21', 0),
3496(1499, 0, 'config', 'config_ftp_username', '', 0),
3497(1500, 0, 'config', 'config_ftp_password', '', 0),
3498(1501, 0, 'config', 'config_ftp_root', '', 0),
3499(1502, 0, 'config', 'config_ftp_status', '0', 0),
3500(1503, 0, 'config', 'config_mail_protocol', 'mail', 0),
3501(1504, 0, 'config', 'config_mail_parameter', '', 0),
3502(1505, 0, 'config', 'config_smtp_host', '', 0),
3503(1506, 0, 'config', 'config_smtp_username', '', 0),
3504(1507, 0, 'config', 'config_smtp_password', '', 0),
3505(1508, 0, 'config', 'config_smtp_port', '25', 0),
3506(1509, 0, 'config', 'config_smtp_timeout', '5', 0),
3507(1510, 0, 'config', 'config_alert_mail', '0', 0),
3508(1511, 0, 'config', 'config_account_mail', '0', 0),
3509(1512, 0, 'config', 'config_alert_emails', '', 0),
3510(1513, 0, 'config', 'config_fraud_detection', '0', 0),
3511(1514, 0, 'config', 'config_fraud_key', '', 0),
3512(1515, 0, 'config', 'config_fraud_score', '', 0),
3513(1516, 0, 'config', 'config_fraud_status_id', '7', 0),
3514(1517, 0, 'config', 'config_secure', '0', 0),
3515(1518, 0, 'config', 'config_shared', '0', 0),
3516(1519, 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),
3517(1269, 0, 'latest', 'latest_module', 'a:1:{i:0;a:7:{s:5:"limit";s:2:"10";s:11:"image_width";s:3:"220";s:12:"image_height";s:3:"238";s:9:"layout_id";s:1:"1";s:8:"position";s:14:"content_bottom";s:6:"status";s:1:"1";s:10:"sort_order";s:1:"9";}}', 1),
3518(1488, 0, 'config', 'config_image_additional_height', '84', 0),
3519(1487, 0, 'config', 'config_image_additional_width', '133', 0),
3520(1486, 0, 'config', 'config_image_product_height', '192', 0),
3521(1485, 0, 'config', 'config_image_product_width', '328', 0),
3522(1484, 0, 'config', 'config_image_popup_height', '500', 0),
3523(1483, 0, 'config', 'config_image_popup_width', '500', 0),
3524(1482, 0, 'config', 'config_image_thumb_height', '375', 0),
3525(1481, 0, 'config', 'config_image_thumb_width', '594', 0),
3526(1480, 0, 'config', 'config_image_category_height', '265', 0),
3527(1479, 0, 'config', 'config_image_category_width', '695', 0),
3528(1478, 0, 'config', 'config_icon', 'data/favicon.png', 0),
3529(1477, 0, 'config', 'config_logo', 'data/logo2.png', 0),
3530(1476, 0, 'config', 'config_return_status_id', '2', 0),
3531(1475, 0, 'config', 'config_return_id', '0', 0),
3532(1474, 0, 'config', 'config_commission', '5', 0),
3533(1473, 0, 'config', 'config_affiliate_id', '4', 0),
3534(1472, 0, 'config', 'config_stock_status_id', '5', 0),
3535(1471, 0, 'config', 'config_stock_checkout', '0', 0),
3536(1470, 0, 'config', 'config_stock_warning', '0', 0),
3537(1469, 0, 'config', 'config_stock_display', '0', 0),
3538(1468, 0, 'config', 'config_complete_status_id', '5', 0),
3539(1467, 0, 'config', 'config_order_status_id', '1', 0),
3540(1466, 0, 'config', 'config_invoice_prefix', 'INV-2013-00', 0),
3541(1465, 0, 'config', 'config_order_edit', '100', 0),
3542(1464, 0, 'config', 'config_checkout_id', '5', 0),
3543(1463, 0, 'config', 'config_guest_checkout', '1', 0),
3544(1462, 0, 'config', 'config_cart_weight', '0', 0),
3545(1461, 0, 'config', 'config_account_id', '3', 0),
3546(1460, 0, 'config', 'config_customer_price', '0', 0),
3547(1459, 0, 'config', 'config_customer_group_display', 'a:1:{i:0;s:1:"1";}', 1),
3548(1458, 0, 'config', 'config_customer_group_id', '1', 0),
3549(1457, 0, 'config', 'config_customer_online', '0', 0),
3550(1456, 0, 'config', 'config_tax_customer', 'shipping', 0),
3551(1455, 0, 'config', 'config_tax_default', 'shipping', 0),
3552(1454, 0, 'config', 'config_vat', '0', 0),
3553(1453, 0, 'config', 'config_tax', '0', 0),
3554(1452, 0, 'config', 'config_voucher_max', '1000', 0),
3555(1451, 0, 'config', 'config_voucher_min', '1', 0),
3556(1450, 0, 'config', 'config_download', '0', 0),
3557(1449, 0, 'config', 'config_review_status', '1', 0),
3558(1448, 0, 'config', 'config_product_count', '0', 0),
3559(1447, 0, 'config', 'config_admin_limit', '20', 0),
3560(1446, 0, 'config', 'config_catalog_limit', '15', 0),
3561(1445, 0, 'config', 'config_weight_class_id', '1', 0),
3562(1444, 0, 'config', 'config_length_class_id', '1', 0),
3563(1443, 0, 'config', 'config_currency_auto', '1', 0),
3564(1442, 0, 'config', 'config_currency', 'NGN', 0),
3565(1441, 0, 'config', 'config_admin_language', 'en', 0),
3566(1440, 0, 'config', 'config_language', 'en', 0),
3567(1439, 0, 'config', 'config_zone_id', '2412', 0),
3568(1438, 0, 'config', 'config_country_id', '156', 0),
3569(1437, 0, 'config', 'config_layout_id', '4', 0),
3570(1436, 0, 'config', 'config_template', 'spaces', 0),
3571(1435, 0, 'config', 'config_meta_description', 'My Store', 0),
3572(1434, 0, 'config', 'config_title', 'Spaces.ng | Online Store', 0),
3573(1433, 0, 'config', 'config_fax', '', 0),
3574(1432, 0, 'config', 'config_telephone', '123456789', 0),
3575(1431, 0, 'config', 'config_email', 'opeyemi@ckdigital.net', 0),
3576(1159, 0, 'productcarousel', 'productcarousel_module', 'a:1:{i:1;a:25:{s:8:"language";a:1:{i:1;a:1:{s:7:"caption";s:17:"You May Also Like";}}s:9:"source_id";s:1:"6";s:15:"source_products";s:0:"";s:11:"category_id";s:2:"-1";s:9:"show_name";s:1:"1";s:10:"show_price";s:1:"1";s:9:"show_cart";s:1:"0";s:13:"enabled_popup";s:1:"0";s:12:"popup_detail";s:1:"0";s:11:"zoom_factor";s:3:"0.0";s:6:"random";s:1:"1";s:13:"cache_enabled";s:1:"0";s:16:"display_view_all";s:1:"0";s:5:"limit";s:2:"10";s:12:"scroll_limit";s:1:"3";s:11:"image_width";s:3:"309";s:12:"image_height";s:3:"203";s:6:"scroll";s:1:"1";s:4:"axis";s:1:"0";s:9:"autostart";s:1:"1";s:9:"animation";s:4:"2000";s:9:"layout_id";s:1:"2";s:8:"position";s:14:"content_bottom";s:6:"status";s:1:"1";s:10:"sort_order";s:1:"1";}}', 1),
3577(1270, 0, 'welcome', 'welcome_module', 'a:1:{i:1;a:5:{s:11:"description";a:1:{i:1;s:945:"<p>Spaces.ng is a Bespoke Interior Design and Accessories Online Store which offers clients the opportunity to choose from vast arrays of interior design images and accessories for different spaces which conveys the clients style, personality at the comfort of their homes, offices and wherever they choose to be.</p>\r\n\r\n<p>Spaces.ng is driven by our love for convenience, quality, uniqueness and promptness. It was birth out to debunk the myth by most Nigerians that using an interior designer could be extremely expensive, the frustrations experience by our clients in having vast arrays of design options to choose from and the need to position ourselves in the ever growing business economy of our nation Nigeria. From research we discovered that clients find it difficult to locate an affordable and competent interior firms who can deliver their promises on time, quality at affordable and competitive prices.</p>\r\n";}s:9:"layout_id";s:1:"1";s:8:"position";s:14:"content_bottom";s:6:"status";s:1:"1";s:10:"sort_order";s:2:"10";}}', 1),
3578(1430, 0, 'config', 'config_address', 'Address 1', 0),
3579(1429, 0, 'config', 'config_owner', 'Spaces.ng', 0),
3580(733, 0, 'supercategorymenuadvanced', 'price', '30000;60000', 0),
3581(1289, 0, 'supercategorymenuadvanced', 'VALORES_20', 'a:2:{s:10:"attributes";a:5:{i:12;a:13:{s:12:"attribute_id";s:2:"12";s:4:"name";s:4:"Wood";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:13;a:13:{s:12:"attribute_id";s:2:"13";s:4:"name";s:6:"Fabric";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:12:"attribute_id";s:2:"14";s:4:"name";s:11:"Orientation";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:15;a:13:{s:12:"attribute_id";s:2:"15";s:4:"name";s:5:"Width";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:16;a:13:{s:12:"attribute_id";s:2:"16";s:4:"name";s:6:"Height";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}s:7:"options";a:2:{i:13;a:13:{s:9:"option_id";s:2:"13";s:4:"name";s:7:"Fabrics";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:9:"option_id";s:2:"14";s:4:"name";s:5:"Color";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}}', 1),
3582(680, 0, 'supercategorymenuadvanced', 'VALORES_26', 'a:1:{s:10:"attributes";a:3:{i:2;a:13:{s:12:"attribute_id";s:1:"2";s:4:"name";s:12:"No. of Cores";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:3;a:13:{s:12:"attribute_id";s:1:"3";s:4:"name";s:10:"Clockspeed";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:4;a:13:{s:12:"attribute_id";s:1:"4";s:4:"name";s:6:"test 1";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}}', 1),
3583(681, 0, 'supercategorymenuadvanced', 'VALORES_27', 'a:1:{s:10:"attributes";a:3:{i:2;a:13:{s:12:"attribute_id";s:1:"2";s:4:"name";s:12:"No. of Cores";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:3;a:13:{s:12:"attribute_id";s:1:"3";s:4:"name";s:10:"Clockspeed";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:4;a:13:{s:12:"attribute_id";s:1:"4";s:4:"name";s:6:"test 1";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}}', 1),
3584(741, 0, 'supercategorymenuadvanced', 'supercategorymenuadvanced_module', 'a:1:{i:0;a:4:{s:9:"layout_id";s:1:"3";s:8:"position";s:12:"column_right";s:6:"status";s:1:"1";s:10:"sort_order";s:1:"1";}}', 1),
3585(1163, 0, 'information', 'information_module', 'a:3:{i:0;a:4:{s:9:"layout_id";s:2:"11";s:8:"position";s:11:"column_left";s:6:"status";s:1:"1";s:10:"sort_order";s:1:"1";}i:1;a:4:{s:9:"layout_id";s:1:"8";s:8:"position";s:11:"column_left";s:6:"status";s:1:"1";s:10:"sort_order";s:1:"1";}i:2;a:4:{s:9:"layout_id";s:1:"9";s:8:"position";s:11:"column_left";s:6:"status";s:1:"1";s:10:"sort_order";s:1:"1";}}', 1),
3586(1428, 0, 'config', 'config_name', 'Spaces.ng', 0),
3587(693, 0, 'supercategorymenuadvanced', 'price', '30000;60000', 0),
3588(699, 0, 'supercategorymenuadvanced', 'price', '30000;60000', 0),
3589(712, 0, 'supercategorymenuadvanced', 'price', '30000;60000', 0),
3590(739, 0, 'supercategorymenuadvanced', 'supercategorymenuadvanced_code', 'u', 0),
3591(726, 0, 'supercategorymenuadvanced', 'price', '30000;60000', 0),
3592(705, 0, 'supercategorymenuadvanced', 'price', '30000;60000', 0),
3593(740, 0, 'supercategorymenuadvanced', 'price', '30000;60000', 0),
3594(738, 0, 'supercategorymenuadvanced', 'supercategorymenuadvanced_settings', 'a:20:{s:18:"image_option_width";s:2:"20";s:19:"image_option_height";s:2:"20";s:10:"option_tip";s:1:"0";s:15:"asearch_filters";s:1:"0";s:16:"see_more_trigger";s:1:"0";s:12:"menu_filters";s:1:"1";s:6:"countp";s:1:"0";s:8:"nofollow";s:1:"0";s:12:"track_google";s:1:"0";s:8:"ocscroll";s:1:"0";s:7:"reviews";a:4:{s:7:"reviews";s:1:"0";s:4:"tipo";s:3:"avg";s:7:"initval";s:6:"opened";s:11:"super_order";s:1:"6";}s:4:"ajax";a:5:{s:4:"ajax";s:1:"1";s:9:"speedmenu";s:4:"2000";s:12:"speedresults";s:4:"2000";s:6:"loader";s:1:"0";s:5:"image";s:7:"334.png";}s:5:"stock";a:10:{s:11:"super_order";s:1:"5";s:5:"stock";s:1:"0";s:9:"clearance";s:1:"0";s:15:"clearance_value";s:1:"6";s:7:"special";s:1:"0";s:8:"arrivals";s:1:"0";s:10:"number_day";s:1:"7";s:10:"auto_clean";s:1:"0";s:4:"view";s:4:"list";s:7:"initval";s:6:"opened";}s:6:"filter";a:1:{s:11:"super_order";s:1:"2";}s:8:"category";a:10:{s:11:"super_order";s:1:"3";s:8:"category";s:1:"0";s:7:"asearch";s:1:"0";s:5:"reset";s:1:"1";s:11:"list_number";s:2:"10";s:5:"order";s:6:"OTDESC";s:11:"searchinput";s:2:"no";s:4:"view";s:4:"list";s:5:"style";s:7:"imagen1";s:7:"initval";s:6:"opened";}s:12:"manufacturer";a:7:{s:11:"super_order";s:1:"4";s:12:"manufacturer";s:1:"0";s:11:"list_number";s:2:"10";s:5:"order";s:6:"OTDESC";s:4:"view";s:4:"list";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";}s:10:"pricerange";a:6:{s:11:"super_order";s:1:"1";s:10:"pricerange";s:1:"1";s:4:"view";s:6:"select";s:6:"setvat";s:1:"0";s:7:"initval";s:6:"opened";s:12:"tax_class_id";s:1:"9";}s:6:"styles";s:7:"default";s:11:"skin_slider";s:22:"jslider.yellow.rounded";s:13:"template_menu";s:19:"scma_standar_V3.tpl";}', 1),
3595(719, 0, 'supercategorymenuadvanced', 'price', '30000;60000', 0),
3596(737, 0, 'supercategorymenuadvanced', 'supercategorymenuadvanced_seo_keyword2', 'seo_key_word', 0),
3597(735, 0, 'supercategorymenuadvanced', 'supercategorymenuadvanced_mode', 'Developing', 0),
3598(736, 0, 'supercategorymenuadvanced', 'supercategorymenuadvanced_seo_keyword', 'seo_key_word', 0),
3599(1427, 0, 'lpbc', 'lpbc_module', 'a:7:{i:0;a:11:{s:11:"category_id";s:2:"20";s:2:"dm";s:8:"carousel";s:7:"subcats";s:5:"ctabs";s:4:"pmin";s:1:"1";s:5:"limit";s:2:"13";s:11:"image_width";s:3:"220";s:12:"image_height";s:3:"349";s:9:"layout_id";s:1:"1";s:8:"position";s:14:"content_bottom";s:6:"status";s:1:"1";s:10:"sort_order";s:1:"1";}i:1;a:11:{s:11:"category_id";s:2:"17";s:2:"dm";s:8:"carousel";s:7:"subcats";s:5:"ctabs";s:4:"pmin";s:1:"1";s:5:"limit";s:2:"13";s:11:"image_width";s:3:"220";s:12:"image_height";s:3:"349";s:9:"layout_id";s:1:"1";s:8:"position";s:14:"content_bottom";s:6:"status";s:1:"1";s:10:"sort_order";s:1:"3";}i:2;a:11:{s:11:"category_id";s:2:"46";s:2:"dm";s:8:"carousel";s:7:"subcats";s:5:"ctabs";s:4:"pmin";s:1:"1";s:5:"limit";s:2:"13";s:11:"image_width";s:3:"220";s:12:"image_height";s:3:"349";s:9:"layout_id";s:1:"1";s:8:"position";s:14:"content_bottom";s:6:"status";s:1:"1";s:10:"sort_order";s:1:"2";}i:3;a:11:{s:11:"category_id";s:2:"25";s:2:"dm";s:8:"carousel";s:7:"subcats";s:5:"ctabs";s:4:"pmin";s:1:"1";s:5:"limit";s:2:"13";s:11:"image_width";s:3:"220";s:12:"image_height";s:3:"349";s:9:"layout_id";s:1:"1";s:8:"position";s:14:"content_bottom";s:6:"status";s:1:"1";s:10:"sort_order";s:1:"4";}i:4;a:11:{s:11:"category_id";s:2:"29";s:2:"dm";s:8:"carousel";s:7:"subcats";s:5:"ctabs";s:4:"pmin";s:1:"1";s:5:"limit";s:2:"13";s:11:"image_width";s:3:"220";s:12:"image_height";s:3:"349";s:9:"layout_id";s:1:"1";s:8:"position";s:14:"content_bottom";s:6:"status";s:1:"1";s:10:"sort_order";s:1:"5";}i:5;a:11:{s:11:"category_id";s:2:"28";s:2:"dm";s:8:"carousel";s:7:"subcats";s:5:"ctabs";s:4:"pmin";s:1:"1";s:5:"limit";s:2:"13";s:11:"image_width";s:3:"220";s:12:"image_height";s:3:"349";s:9:"layout_id";s:1:"1";s:8:"position";s:14:"content_bottom";s:6:"status";s:1:"1";s:10:"sort_order";s:1:"7";}i:6;a:11:{s:11:"category_id";s:2:"76";s:2:"dm";s:8:"carousel";s:7:"subcats";s:5:"ctabs";s:4:"pmin";s:1:"1";s:5:"limit";s:2:"13";s:11:"image_width";s:3:"220";s:12:"image_height";s:3:"349";s:9:"layout_id";s:1:"1";s:8:"position";s:14:"content_bottom";s:6:"status";s:1:"1";s:10:"sort_order";s:1:"8";}}', 1),
3600(1291, 0, 'supercategorymenuadvanced', 'VALORES_64', 'a:2:{s:10:"attributes";a:5:{i:12;a:13:{s:12:"attribute_id";s:2:"12";s:4:"name";s:4:"Wood";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:13;a:13:{s:12:"attribute_id";s:2:"13";s:4:"name";s:6:"Fabric";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:12:"attribute_id";s:2:"14";s:4:"name";s:11:"Orientation";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:15;a:13:{s:12:"attribute_id";s:2:"15";s:4:"name";s:5:"Width";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:16;a:13:{s:12:"attribute_id";s:2:"16";s:4:"name";s:6:"Height";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}s:7:"options";a:2:{i:13;a:13:{s:9:"option_id";s:2:"13";s:4:"name";s:7:"Fabrics";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:9:"option_id";s:2:"14";s:4:"name";s:5:"Color";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}}', 1),
3601(1292, 0, 'supercategorymenuadvanced', 'VALORES_61', 'a:2:{s:10:"attributes";a:5:{i:12;a:13:{s:12:"attribute_id";s:2:"12";s:4:"name";s:4:"Wood";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:13;a:13:{s:12:"attribute_id";s:2:"13";s:4:"name";s:6:"Fabric";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:12:"attribute_id";s:2:"14";s:4:"name";s:11:"Orientation";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:15;a:13:{s:12:"attribute_id";s:2:"15";s:4:"name";s:5:"Width";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:16;a:13:{s:12:"attribute_id";s:2:"16";s:4:"name";s:6:"Height";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}s:7:"options";a:2:{i:13;a:13:{s:9:"option_id";s:2:"13";s:4:"name";s:7:"Fabrics";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:9:"option_id";s:2:"14";s:4:"name";s:5:"Color";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}}', 1),
3602(1293, 0, 'supercategorymenuadvanced', 'VALORES_75', 'a:2:{s:10:"attributes";a:5:{i:12;a:13:{s:12:"attribute_id";s:2:"12";s:4:"name";s:4:"Wood";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:13;a:13:{s:12:"attribute_id";s:2:"13";s:4:"name";s:6:"Fabric";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:12:"attribute_id";s:2:"14";s:4:"name";s:11:"Orientation";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:15;a:13:{s:12:"attribute_id";s:2:"15";s:4:"name";s:5:"Width";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:16;a:13:{s:12:"attribute_id";s:2:"16";s:4:"name";s:6:"Height";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}s:7:"options";a:2:{i:13;a:13:{s:9:"option_id";s:2:"13";s:4:"name";s:7:"Fabrics";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:9:"option_id";s:2:"14";s:4:"name";s:5:"Color";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}}', 1),
3603(1294, 0, 'supercategorymenuadvanced', 'VALORES_62', 'a:2:{s:10:"attributes";a:5:{i:12;a:13:{s:12:"attribute_id";s:2:"12";s:4:"name";s:4:"Wood";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:13;a:13:{s:12:"attribute_id";s:2:"13";s:4:"name";s:6:"Fabric";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:12:"attribute_id";s:2:"14";s:4:"name";s:11:"Orientation";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:15;a:13:{s:12:"attribute_id";s:2:"15";s:4:"name";s:5:"Width";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:16;a:13:{s:12:"attribute_id";s:2:"16";s:4:"name";s:6:"Height";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}s:7:"options";a:2:{i:13;a:13:{s:9:"option_id";s:2:"13";s:4:"name";s:7:"Fabrics";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:9:"option_id";s:2:"14";s:4:"name";s:5:"Color";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}}', 1),
3604(1295, 0, 'supercategorymenuadvanced', 'VALORES_63', 'a:2:{s:10:"attributes";a:5:{i:12;a:13:{s:12:"attribute_id";s:2:"12";s:4:"name";s:4:"Wood";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:13;a:13:{s:12:"attribute_id";s:2:"13";s:4:"name";s:6:"Fabric";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:12:"attribute_id";s:2:"14";s:4:"name";s:11:"Orientation";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:15;a:13:{s:12:"attribute_id";s:2:"15";s:4:"name";s:5:"Width";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:16;a:13:{s:12:"attribute_id";s:2:"16";s:4:"name";s:6:"Height";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}s:7:"options";a:2:{i:13;a:13:{s:9:"option_id";s:2:"13";s:4:"name";s:7:"Fabrics";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:9:"option_id";s:2:"14";s:4:"name";s:5:"Color";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}}', 1),
3605(1296, 0, 'supercategorymenuadvanced', 'VALORES_59', 'a:2:{s:10:"attributes";a:5:{i:12;a:13:{s:12:"attribute_id";s:2:"12";s:4:"name";s:4:"Wood";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:13;a:13:{s:12:"attribute_id";s:2:"13";s:4:"name";s:6:"Fabric";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:12:"attribute_id";s:2:"14";s:4:"name";s:11:"Orientation";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:15;a:13:{s:12:"attribute_id";s:2:"15";s:4:"name";s:5:"Width";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:16;a:13:{s:12:"attribute_id";s:2:"16";s:4:"name";s:6:"Height";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}s:7:"options";a:2:{i:13;a:13:{s:9:"option_id";s:2:"13";s:4:"name";s:7:"Fabrics";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:9:"option_id";s:2:"14";s:4:"name";s:5:"Color";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}}', 1),
3606(1297, 0, 'supercategorymenuadvanced', 'VALORES_45', 'a:2:{s:10:"attributes";a:5:{i:12;a:13:{s:12:"attribute_id";s:2:"12";s:4:"name";s:4:"Wood";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:13;a:13:{s:12:"attribute_id";s:2:"13";s:4:"name";s:6:"Fabric";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:12:"attribute_id";s:2:"14";s:4:"name";s:11:"Orientation";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:15;a:13:{s:12:"attribute_id";s:2:"15";s:4:"name";s:5:"Width";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:16;a:13:{s:12:"attribute_id";s:2:"16";s:4:"name";s:6:"Height";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}s:7:"options";a:2:{i:13;a:13:{s:9:"option_id";s:2:"13";s:4:"name";s:7:"Fabrics";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:9:"option_id";s:2:"14";s:4:"name";s:5:"Color";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}}', 1),
3607(1298, 0, 'supercategorymenuadvanced', 'VALORES_60', 'a:2:{s:10:"attributes";a:5:{i:12;a:13:{s:12:"attribute_id";s:2:"12";s:4:"name";s:4:"Wood";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:13;a:13:{s:12:"attribute_id";s:2:"13";s:4:"name";s:6:"Fabric";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:12:"attribute_id";s:2:"14";s:4:"name";s:11:"Orientation";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:15;a:13:{s:12:"attribute_id";s:2:"15";s:4:"name";s:5:"Width";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:16;a:13:{s:12:"attribute_id";s:2:"16";s:4:"name";s:6:"Height";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}s:7:"options";a:2:{i:13;a:13:{s:9:"option_id";s:2:"13";s:4:"name";s:7:"Fabrics";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:9:"option_id";s:2:"14";s:4:"name";s:5:"Color";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}}', 1),
3608(1299, 0, 'supercategorymenuadvanced', 'VALORES_74', 'a:2:{s:10:"attributes";a:5:{i:12;a:13:{s:12:"attribute_id";s:2:"12";s:4:"name";s:4:"Wood";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:13;a:13:{s:12:"attribute_id";s:2:"13";s:4:"name";s:6:"Fabric";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:12:"attribute_id";s:2:"14";s:4:"name";s:11:"Orientation";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:15;a:13:{s:12:"attribute_id";s:2:"15";s:4:"name";s:5:"Width";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:16;a:13:{s:12:"attribute_id";s:2:"16";s:4:"name";s:6:"Height";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}s:7:"options";a:2:{i:13;a:13:{s:9:"option_id";s:2:"13";s:4:"name";s:7:"Fabrics";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:9:"option_id";s:2:"14";s:4:"name";s:5:"Color";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}}', 1),
3609(1304, 0, 'supercategorymenuadvanced', 'VALORES_18', 'a:2:{s:10:"attributes";a:5:{i:12;a:13:{s:12:"attribute_id";s:2:"12";s:4:"name";s:4:"Wood";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:13;a:13:{s:12:"attribute_id";s:2:"13";s:4:"name";s:6:"Fabric";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:12:"attribute_id";s:2:"14";s:4:"name";s:11:"Orientation";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:15;a:13:{s:12:"attribute_id";s:2:"15";s:4:"name";s:5:"Width";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:16;a:13:{s:12:"attribute_id";s:2:"16";s:4:"name";s:6:"Height";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}s:7:"options";a:2:{i:13;a:13:{s:9:"option_id";s:2:"13";s:4:"name";s:7:"Fabrics";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:9:"option_id";s:2:"14";s:4:"name";s:5:"Color";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}}', 1);
3610INSERT INTO `setting` (`setting_id`, `store_id`, `group`, `key`, `value`, `serialized`) VALUES
3611(1310, 0, 'supercategorymenuadvanced', 'VALORES_46', 'a:2:{s:10:"attributes";a:5:{i:12;a:13:{s:12:"attribute_id";s:2:"12";s:4:"name";s:4:"Wood";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:13;a:13:{s:12:"attribute_id";s:2:"13";s:4:"name";s:6:"Fabric";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:12:"attribute_id";s:2:"14";s:4:"name";s:11:"Orientation";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:15;a:13:{s:12:"attribute_id";s:2:"15";s:4:"name";s:5:"Width";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:16;a:13:{s:12:"attribute_id";s:2:"16";s:4:"name";s:6:"Height";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}s:7:"options";a:2:{i:13;a:13:{s:9:"option_id";s:2:"13";s:4:"name";s:7:"Fabrics";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:9:"option_id";s:2:"14";s:4:"name";s:5:"Color";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}}', 1),
3612(1312, 0, 'supercategorymenuadvanced', 'VALORES_67', 'a:2:{s:10:"attributes";a:5:{i:12;a:13:{s:12:"attribute_id";s:2:"12";s:4:"name";s:4:"Wood";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:13;a:13:{s:12:"attribute_id";s:2:"13";s:4:"name";s:6:"Fabric";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:12:"attribute_id";s:2:"14";s:4:"name";s:11:"Orientation";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:15;a:13:{s:12:"attribute_id";s:2:"15";s:4:"name";s:5:"Width";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:16;a:13:{s:12:"attribute_id";s:2:"16";s:4:"name";s:6:"Height";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}s:7:"options";a:2:{i:13;a:13:{s:9:"option_id";s:2:"13";s:4:"name";s:7:"Fabrics";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:9:"option_id";s:2:"14";s:4:"name";s:5:"Color";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}}', 1),
3613(1313, 0, 'supercategorymenuadvanced', 'VALORES_66', 'a:2:{s:10:"attributes";a:5:{i:12;a:13:{s:12:"attribute_id";s:2:"12";s:4:"name";s:4:"Wood";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:13;a:13:{s:12:"attribute_id";s:2:"13";s:4:"name";s:6:"Fabric";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:12:"attribute_id";s:2:"14";s:4:"name";s:11:"Orientation";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:15;a:13:{s:12:"attribute_id";s:2:"15";s:4:"name";s:5:"Width";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:16;a:13:{s:12:"attribute_id";s:2:"16";s:4:"name";s:6:"Height";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}s:7:"options";a:2:{i:13;a:13:{s:9:"option_id";s:2:"13";s:4:"name";s:7:"Fabrics";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:9:"option_id";s:2:"14";s:4:"name";s:5:"Color";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}}', 1),
3614(1314, 0, 'supercategorymenuadvanced', 'VALORES_70', 'a:2:{s:10:"attributes";a:5:{i:12;a:13:{s:12:"attribute_id";s:2:"12";s:4:"name";s:4:"Wood";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:13;a:13:{s:12:"attribute_id";s:2:"13";s:4:"name";s:6:"Fabric";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:12:"attribute_id";s:2:"14";s:4:"name";s:11:"Orientation";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:15;a:13:{s:12:"attribute_id";s:2:"15";s:4:"name";s:5:"Width";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:16;a:13:{s:12:"attribute_id";s:2:"16";s:4:"name";s:6:"Height";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}s:7:"options";a:2:{i:13;a:13:{s:9:"option_id";s:2:"13";s:4:"name";s:7:"Fabrics";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:9:"option_id";s:2:"14";s:4:"name";s:5:"Color";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}}', 1),
3615(1315, 0, 'supercategorymenuadvanced', 'VALORES_69', 'a:2:{s:10:"attributes";a:5:{i:12;a:13:{s:12:"attribute_id";s:2:"12";s:4:"name";s:4:"Wood";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:13;a:13:{s:12:"attribute_id";s:2:"13";s:4:"name";s:6:"Fabric";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:12:"attribute_id";s:2:"14";s:4:"name";s:11:"Orientation";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:15;a:13:{s:12:"attribute_id";s:2:"15";s:4:"name";s:5:"Width";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:16;a:13:{s:12:"attribute_id";s:2:"16";s:4:"name";s:6:"Height";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}s:7:"options";a:2:{i:13;a:13:{s:9:"option_id";s:2:"13";s:4:"name";s:7:"Fabrics";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:9:"option_id";s:2:"14";s:4:"name";s:5:"Color";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}}', 1),
3616(1316, 0, 'supercategorymenuadvanced', 'VALORES_71', 'a:2:{s:10:"attributes";a:5:{i:12;a:13:{s:12:"attribute_id";s:2:"12";s:4:"name";s:4:"Wood";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:13;a:13:{s:12:"attribute_id";s:2:"13";s:4:"name";s:6:"Fabric";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:12:"attribute_id";s:2:"14";s:4:"name";s:11:"Orientation";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:15;a:13:{s:12:"attribute_id";s:2:"15";s:4:"name";s:5:"Width";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:16;a:13:{s:12:"attribute_id";s:2:"16";s:4:"name";s:6:"Height";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}s:7:"options";a:2:{i:13;a:13:{s:9:"option_id";s:2:"13";s:4:"name";s:7:"Fabrics";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:9:"option_id";s:2:"14";s:4:"name";s:5:"Color";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}}', 1),
3617(1317, 0, 'supercategorymenuadvanced', 'VALORES_72', 'a:2:{s:10:"attributes";a:5:{i:12;a:13:{s:12:"attribute_id";s:2:"12";s:4:"name";s:4:"Wood";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:13;a:13:{s:12:"attribute_id";s:2:"13";s:4:"name";s:6:"Fabric";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:12:"attribute_id";s:2:"14";s:4:"name";s:11:"Orientation";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:15;a:13:{s:12:"attribute_id";s:2:"15";s:4:"name";s:5:"Width";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:16;a:13:{s:12:"attribute_id";s:2:"16";s:4:"name";s:6:"Height";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}s:7:"options";a:2:{i:13;a:13:{s:9:"option_id";s:2:"13";s:4:"name";s:7:"Fabrics";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:9:"option_id";s:2:"14";s:4:"name";s:5:"Color";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}}', 1),
3618(1318, 0, 'supercategorymenuadvanced', 'VALORES_73', 'a:2:{s:10:"attributes";a:5:{i:12;a:13:{s:12:"attribute_id";s:2:"12";s:4:"name";s:4:"Wood";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:13;a:13:{s:12:"attribute_id";s:2:"13";s:4:"name";s:6:"Fabric";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:12:"attribute_id";s:2:"14";s:4:"name";s:11:"Orientation";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:15;a:13:{s:12:"attribute_id";s:2:"15";s:4:"name";s:5:"Width";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:16;a:13:{s:12:"attribute_id";s:2:"16";s:4:"name";s:6:"Height";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}s:7:"options";a:2:{i:13;a:13:{s:9:"option_id";s:2:"13";s:4:"name";s:7:"Fabrics";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:9:"option_id";s:2:"14";s:4:"name";s:5:"Color";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}}', 1),
3619(1323, 0, 'supercategorymenuadvanced', 'VALORES_17', 'a:2:{s:10:"attributes";a:5:{i:12;a:13:{s:12:"attribute_id";s:2:"12";s:4:"name";s:4:"Wood";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:13;a:13:{s:12:"attribute_id";s:2:"13";s:4:"name";s:6:"Fabric";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:12:"attribute_id";s:2:"14";s:4:"name";s:11:"Orientation";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:15;a:13:{s:12:"attribute_id";s:2:"15";s:4:"name";s:5:"Width";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:16;a:13:{s:12:"attribute_id";s:2:"16";s:4:"name";s:6:"Height";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}s:7:"options";a:2:{i:13;a:13:{s:9:"option_id";s:2:"13";s:4:"name";s:7:"Fabrics";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:9:"option_id";s:2:"14";s:4:"name";s:5:"Color";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}}', 1),
3620(1325, 0, 'supercategorymenuadvanced', 'VALORES_77', 'a:2:{s:10:"attributes";a:5:{i:12;a:13:{s:12:"attribute_id";s:2:"12";s:4:"name";s:4:"Wood";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:13;a:13:{s:12:"attribute_id";s:2:"13";s:4:"name";s:6:"Fabric";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:12:"attribute_id";s:2:"14";s:4:"name";s:11:"Orientation";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:15;a:13:{s:12:"attribute_id";s:2:"15";s:4:"name";s:5:"Width";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:16;a:13:{s:12:"attribute_id";s:2:"16";s:4:"name";s:6:"Height";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}s:7:"options";a:2:{i:13;a:13:{s:9:"option_id";s:2:"13";s:4:"name";s:7:"Fabrics";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:9:"option_id";s:2:"14";s:4:"name";s:5:"Color";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}}', 1),
3621(1326, 0, 'supercategorymenuadvanced', 'VALORES_78', 'a:2:{s:10:"attributes";a:5:{i:12;a:13:{s:12:"attribute_id";s:2:"12";s:4:"name";s:4:"Wood";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:13;a:13:{s:12:"attribute_id";s:2:"13";s:4:"name";s:6:"Fabric";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:12:"attribute_id";s:2:"14";s:4:"name";s:11:"Orientation";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:15;a:13:{s:12:"attribute_id";s:2:"15";s:4:"name";s:5:"Width";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:16;a:13:{s:12:"attribute_id";s:2:"16";s:4:"name";s:6:"Height";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}s:7:"options";a:2:{i:13;a:13:{s:9:"option_id";s:2:"13";s:4:"name";s:7:"Fabrics";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:9:"option_id";s:2:"14";s:4:"name";s:5:"Color";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}}', 1),
3622(1327, 0, 'supercategorymenuadvanced', 'VALORES_80', 'a:2:{s:10:"attributes";a:5:{i:12;a:13:{s:12:"attribute_id";s:2:"12";s:4:"name";s:4:"Wood";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:13;a:13:{s:12:"attribute_id";s:2:"13";s:4:"name";s:6:"Fabric";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:12:"attribute_id";s:2:"14";s:4:"name";s:11:"Orientation";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:15;a:13:{s:12:"attribute_id";s:2:"15";s:4:"name";s:5:"Width";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:16;a:13:{s:12:"attribute_id";s:2:"16";s:4:"name";s:6:"Height";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}s:7:"options";a:2:{i:13;a:13:{s:9:"option_id";s:2:"13";s:4:"name";s:7:"Fabrics";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:9:"option_id";s:2:"14";s:4:"name";s:5:"Color";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}}', 1),
3623(1328, 0, 'supercategorymenuadvanced', 'VALORES_79', 'a:2:{s:10:"attributes";a:5:{i:12;a:13:{s:12:"attribute_id";s:2:"12";s:4:"name";s:4:"Wood";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:13;a:13:{s:12:"attribute_id";s:2:"13";s:4:"name";s:6:"Fabric";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:12:"attribute_id";s:2:"14";s:4:"name";s:11:"Orientation";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:15;a:13:{s:12:"attribute_id";s:2:"15";s:4:"name";s:5:"Width";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:16;a:13:{s:12:"attribute_id";s:2:"16";s:4:"name";s:6:"Height";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}s:7:"options";a:2:{i:13;a:13:{s:9:"option_id";s:2:"13";s:4:"name";s:7:"Fabrics";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:9:"option_id";s:2:"14";s:4:"name";s:5:"Color";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}}', 1),
3624(1329, 0, 'supercategorymenuadvanced', 'VALORES_81', 'a:2:{s:10:"attributes";a:5:{i:12;a:13:{s:12:"attribute_id";s:2:"12";s:4:"name";s:4:"Wood";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:13;a:13:{s:12:"attribute_id";s:2:"13";s:4:"name";s:6:"Fabric";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:12:"attribute_id";s:2:"14";s:4:"name";s:11:"Orientation";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:15;a:13:{s:12:"attribute_id";s:2:"15";s:4:"name";s:5:"Width";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:16;a:13:{s:12:"attribute_id";s:2:"16";s:4:"name";s:6:"Height";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}s:7:"options";a:2:{i:13;a:13:{s:9:"option_id";s:2:"13";s:4:"name";s:7:"Fabrics";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:9:"option_id";s:2:"14";s:4:"name";s:5:"Color";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}}', 1),
3625(1330, 0, 'supercategorymenuadvanced', 'VALORES_82', 'a:2:{s:10:"attributes";a:5:{i:12;a:13:{s:12:"attribute_id";s:2:"12";s:4:"name";s:4:"Wood";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:13;a:13:{s:12:"attribute_id";s:2:"13";s:4:"name";s:6:"Fabric";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:12:"attribute_id";s:2:"14";s:4:"name";s:11:"Orientation";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:15;a:13:{s:12:"attribute_id";s:2:"15";s:4:"name";s:5:"Width";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:16;a:13:{s:12:"attribute_id";s:2:"16";s:4:"name";s:6:"Height";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}s:7:"options";a:2:{i:13;a:13:{s:9:"option_id";s:2:"13";s:4:"name";s:7:"Fabrics";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:9:"option_id";s:2:"14";s:4:"name";s:5:"Color";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}}', 1),
3626(1331, 0, 'supercategorymenuadvanced', 'VALORES_83', 'a:2:{s:10:"attributes";a:5:{i:12;a:13:{s:12:"attribute_id";s:2:"12";s:4:"name";s:4:"Wood";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:13;a:13:{s:12:"attribute_id";s:2:"13";s:4:"name";s:6:"Fabric";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:12:"attribute_id";s:2:"14";s:4:"name";s:11:"Orientation";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:15;a:13:{s:12:"attribute_id";s:2:"15";s:4:"name";s:5:"Width";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:16;a:13:{s:12:"attribute_id";s:2:"16";s:4:"name";s:6:"Height";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}s:7:"options";a:2:{i:13;a:13:{s:9:"option_id";s:2:"13";s:4:"name";s:7:"Fabrics";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:9:"option_id";s:2:"14";s:4:"name";s:5:"Color";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}}', 1),
3627(1332, 0, 'supercategorymenuadvanced', 'VALORES_84', 'a:2:{s:10:"attributes";a:5:{i:12;a:13:{s:12:"attribute_id";s:2:"12";s:4:"name";s:4:"Wood";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:13;a:13:{s:12:"attribute_id";s:2:"13";s:4:"name";s:6:"Fabric";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:12:"attribute_id";s:2:"14";s:4:"name";s:11:"Orientation";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:15;a:13:{s:12:"attribute_id";s:2:"15";s:4:"name";s:5:"Width";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:16;a:13:{s:12:"attribute_id";s:2:"16";s:4:"name";s:6:"Height";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}s:7:"options";a:2:{i:13;a:13:{s:9:"option_id";s:2:"13";s:4:"name";s:7:"Fabrics";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:9:"option_id";s:2:"14";s:4:"name";s:5:"Color";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}}', 1),
3628(1333, 0, 'supercategorymenuadvanced', 'VALORES_85', 'a:2:{s:10:"attributes";a:5:{i:12;a:13:{s:12:"attribute_id";s:2:"12";s:4:"name";s:4:"Wood";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:13;a:13:{s:12:"attribute_id";s:2:"13";s:4:"name";s:6:"Fabric";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:12:"attribute_id";s:2:"14";s:4:"name";s:11:"Orientation";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:15;a:13:{s:12:"attribute_id";s:2:"15";s:4:"name";s:5:"Width";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:16;a:13:{s:12:"attribute_id";s:2:"16";s:4:"name";s:6:"Height";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}s:7:"options";a:2:{i:13;a:13:{s:9:"option_id";s:2:"13";s:4:"name";s:7:"Fabrics";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:9:"option_id";s:2:"14";s:4:"name";s:5:"Color";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}}', 1),
3629(1338, 0, 'supercategorymenuadvanced', 'VALORES_57', 'a:2:{s:10:"attributes";a:5:{i:12;a:13:{s:12:"attribute_id";s:2:"12";s:4:"name";s:4:"Wood";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:13;a:13:{s:12:"attribute_id";s:2:"13";s:4:"name";s:6:"Fabric";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:12:"attribute_id";s:2:"14";s:4:"name";s:11:"Orientation";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:15;a:13:{s:12:"attribute_id";s:2:"15";s:4:"name";s:5:"Width";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:16;a:13:{s:12:"attribute_id";s:2:"16";s:4:"name";s:6:"Height";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}s:7:"options";a:2:{i:13;a:13:{s:9:"option_id";s:2:"13";s:4:"name";s:7:"Fabrics";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:9:"option_id";s:2:"14";s:4:"name";s:5:"Color";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}}', 1),
3630(1350, 0, 'supercategorymenuadvanced', 'VALORES_33', 'a:2:{s:10:"attributes";a:5:{i:12;a:13:{s:12:"attribute_id";s:2:"12";s:4:"name";s:4:"Wood";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:13;a:13:{s:12:"attribute_id";s:2:"13";s:4:"name";s:6:"Fabric";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:12:"attribute_id";s:2:"14";s:4:"name";s:11:"Orientation";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:15;a:13:{s:12:"attribute_id";s:2:"15";s:4:"name";s:5:"Width";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:16;a:13:{s:12:"attribute_id";s:2:"16";s:4:"name";s:6:"Height";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}s:7:"options";a:2:{i:13;a:13:{s:9:"option_id";s:2:"13";s:4:"name";s:7:"Fabrics";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:9:"option_id";s:2:"14";s:4:"name";s:5:"Color";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}}', 1);
3631INSERT INTO `setting` (`setting_id`, `store_id`, `group`, `key`, `value`, `serialized`) VALUES
3632(1356, 0, 'supercategorymenuadvanced', 'VALORES_25', 'a:2:{s:10:"attributes";a:5:{i:12;a:13:{s:12:"attribute_id";s:2:"12";s:4:"name";s:4:"Wood";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:13;a:13:{s:12:"attribute_id";s:2:"13";s:4:"name";s:6:"Fabric";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:12:"attribute_id";s:2:"14";s:4:"name";s:11:"Orientation";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:15;a:13:{s:12:"attribute_id";s:2:"15";s:4:"name";s:5:"Width";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:16;a:13:{s:12:"attribute_id";s:2:"16";s:4:"name";s:6:"Height";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}s:7:"options";a:2:{i:13;a:13:{s:9:"option_id";s:2:"13";s:4:"name";s:7:"Fabrics";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:9:"option_id";s:2:"14";s:4:"name";s:5:"Color";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}}', 1),
3633(1358, 0, 'supercategorymenuadvanced', 'VALORES_93', 'a:2:{s:10:"attributes";a:5:{i:12;a:13:{s:12:"attribute_id";s:2:"12";s:4:"name";s:4:"Wood";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:13;a:13:{s:12:"attribute_id";s:2:"13";s:4:"name";s:6:"Fabric";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:12:"attribute_id";s:2:"14";s:4:"name";s:11:"Orientation";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:15;a:13:{s:12:"attribute_id";s:2:"15";s:4:"name";s:5:"Width";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:16;a:13:{s:12:"attribute_id";s:2:"16";s:4:"name";s:6:"Height";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}s:7:"options";a:2:{i:13;a:13:{s:9:"option_id";s:2:"13";s:4:"name";s:7:"Fabrics";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:9:"option_id";s:2:"14";s:4:"name";s:5:"Color";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}}', 1),
3634(1359, 0, 'supercategorymenuadvanced', 'VALORES_86', 'a:2:{s:10:"attributes";a:5:{i:12;a:13:{s:12:"attribute_id";s:2:"12";s:4:"name";s:4:"Wood";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:13;a:13:{s:12:"attribute_id";s:2:"13";s:4:"name";s:6:"Fabric";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:12:"attribute_id";s:2:"14";s:4:"name";s:11:"Orientation";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:15;a:13:{s:12:"attribute_id";s:2:"15";s:4:"name";s:5:"Width";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:16;a:13:{s:12:"attribute_id";s:2:"16";s:4:"name";s:6:"Height";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}s:7:"options";a:2:{i:13;a:13:{s:9:"option_id";s:2:"13";s:4:"name";s:7:"Fabrics";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:9:"option_id";s:2:"14";s:4:"name";s:5:"Color";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}}', 1),
3635(1360, 0, 'supercategorymenuadvanced', 'VALORES_87', 'a:2:{s:10:"attributes";a:5:{i:12;a:13:{s:12:"attribute_id";s:2:"12";s:4:"name";s:4:"Wood";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:13;a:13:{s:12:"attribute_id";s:2:"13";s:4:"name";s:6:"Fabric";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:12:"attribute_id";s:2:"14";s:4:"name";s:11:"Orientation";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:15;a:13:{s:12:"attribute_id";s:2:"15";s:4:"name";s:5:"Width";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:16;a:13:{s:12:"attribute_id";s:2:"16";s:4:"name";s:6:"Height";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}s:7:"options";a:2:{i:13;a:13:{s:9:"option_id";s:2:"13";s:4:"name";s:7:"Fabrics";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:9:"option_id";s:2:"14";s:4:"name";s:5:"Color";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}}', 1),
3636(1361, 0, 'supercategorymenuadvanced', 'VALORES_88', 'a:2:{s:10:"attributes";a:5:{i:12;a:13:{s:12:"attribute_id";s:2:"12";s:4:"name";s:4:"Wood";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:13;a:13:{s:12:"attribute_id";s:2:"13";s:4:"name";s:6:"Fabric";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:12:"attribute_id";s:2:"14";s:4:"name";s:11:"Orientation";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:15;a:13:{s:12:"attribute_id";s:2:"15";s:4:"name";s:5:"Width";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:16;a:13:{s:12:"attribute_id";s:2:"16";s:4:"name";s:6:"Height";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}s:7:"options";a:2:{i:13;a:13:{s:9:"option_id";s:2:"13";s:4:"name";s:7:"Fabrics";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:9:"option_id";s:2:"14";s:4:"name";s:5:"Color";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}}', 1),
3637(1362, 0, 'supercategorymenuadvanced', 'VALORES_89', 'a:2:{s:10:"attributes";a:5:{i:12;a:13:{s:12:"attribute_id";s:2:"12";s:4:"name";s:4:"Wood";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:13;a:13:{s:12:"attribute_id";s:2:"13";s:4:"name";s:6:"Fabric";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:12:"attribute_id";s:2:"14";s:4:"name";s:11:"Orientation";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:15;a:13:{s:12:"attribute_id";s:2:"15";s:4:"name";s:5:"Width";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:16;a:13:{s:12:"attribute_id";s:2:"16";s:4:"name";s:6:"Height";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}s:7:"options";a:2:{i:13;a:13:{s:9:"option_id";s:2:"13";s:4:"name";s:7:"Fabrics";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:9:"option_id";s:2:"14";s:4:"name";s:5:"Color";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}}', 1),
3638(1363, 0, 'supercategorymenuadvanced', 'VALORES_91', 'a:2:{s:10:"attributes";a:5:{i:12;a:13:{s:12:"attribute_id";s:2:"12";s:4:"name";s:4:"Wood";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:13;a:13:{s:12:"attribute_id";s:2:"13";s:4:"name";s:6:"Fabric";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:12:"attribute_id";s:2:"14";s:4:"name";s:11:"Orientation";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:15;a:13:{s:12:"attribute_id";s:2:"15";s:4:"name";s:5:"Width";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:16;a:13:{s:12:"attribute_id";s:2:"16";s:4:"name";s:6:"Height";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}s:7:"options";a:2:{i:13;a:13:{s:9:"option_id";s:2:"13";s:4:"name";s:7:"Fabrics";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:9:"option_id";s:2:"14";s:4:"name";s:5:"Color";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}}', 1),
3639(1364, 0, 'supercategorymenuadvanced', 'VALORES_90', 'a:2:{s:10:"attributes";a:5:{i:12;a:13:{s:12:"attribute_id";s:2:"12";s:4:"name";s:4:"Wood";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:13;a:13:{s:12:"attribute_id";s:2:"13";s:4:"name";s:6:"Fabric";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:12:"attribute_id";s:2:"14";s:4:"name";s:11:"Orientation";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:15;a:13:{s:12:"attribute_id";s:2:"15";s:4:"name";s:5:"Width";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:16;a:13:{s:12:"attribute_id";s:2:"16";s:4:"name";s:6:"Height";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}s:7:"options";a:2:{i:13;a:13:{s:9:"option_id";s:2:"13";s:4:"name";s:7:"Fabrics";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:9:"option_id";s:2:"14";s:4:"name";s:5:"Color";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}}', 1),
3640(1365, 0, 'supercategorymenuadvanced', 'VALORES_92', 'a:2:{s:10:"attributes";a:5:{i:12;a:13:{s:12:"attribute_id";s:2:"12";s:4:"name";s:4:"Wood";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:13;a:13:{s:12:"attribute_id";s:2:"13";s:4:"name";s:6:"Fabric";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:12:"attribute_id";s:2:"14";s:4:"name";s:11:"Orientation";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:15;a:13:{s:12:"attribute_id";s:2:"15";s:4:"name";s:5:"Width";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:16;a:13:{s:12:"attribute_id";s:2:"16";s:4:"name";s:6:"Height";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}s:7:"options";a:2:{i:13;a:13:{s:9:"option_id";s:2:"13";s:4:"name";s:7:"Fabrics";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:9:"option_id";s:2:"14";s:4:"name";s:5:"Color";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}}', 1),
3641(1370, 0, 'supercategorymenuadvanced', 'VALORES_76', 'a:2:{s:10:"attributes";a:5:{i:12;a:13:{s:12:"attribute_id";s:2:"12";s:4:"name";s:4:"Wood";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:13;a:13:{s:12:"attribute_id";s:2:"13";s:4:"name";s:6:"Fabric";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:12:"attribute_id";s:2:"14";s:4:"name";s:11:"Orientation";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:15;a:13:{s:12:"attribute_id";s:2:"15";s:4:"name";s:5:"Width";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:16;a:13:{s:12:"attribute_id";s:2:"16";s:4:"name";s:6:"Height";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}s:7:"options";a:2:{i:13;a:13:{s:9:"option_id";s:2:"13";s:4:"name";s:7:"Fabrics";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:9:"option_id";s:2:"14";s:4:"name";s:5:"Color";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}}', 1),
3642(1372, 0, 'supercategorymenuadvanced', 'VALORES_111', 'a:2:{s:10:"attributes";a:5:{i:12;a:13:{s:12:"attribute_id";s:2:"12";s:4:"name";s:4:"Wood";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:13;a:13:{s:12:"attribute_id";s:2:"13";s:4:"name";s:6:"Fabric";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:12:"attribute_id";s:2:"14";s:4:"name";s:11:"Orientation";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:15;a:13:{s:12:"attribute_id";s:2:"15";s:4:"name";s:5:"Width";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:16;a:13:{s:12:"attribute_id";s:2:"16";s:4:"name";s:6:"Height";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}s:7:"options";a:2:{i:13;a:13:{s:9:"option_id";s:2:"13";s:4:"name";s:7:"Fabrics";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:9:"option_id";s:2:"14";s:4:"name";s:5:"Color";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}}', 1),
3643(1373, 0, 'supercategorymenuadvanced', 'VALORES_107', 'a:2:{s:10:"attributes";a:5:{i:12;a:13:{s:12:"attribute_id";s:2:"12";s:4:"name";s:4:"Wood";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:13;a:13:{s:12:"attribute_id";s:2:"13";s:4:"name";s:6:"Fabric";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:12:"attribute_id";s:2:"14";s:4:"name";s:11:"Orientation";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:15;a:13:{s:12:"attribute_id";s:2:"15";s:4:"name";s:5:"Width";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:16;a:13:{s:12:"attribute_id";s:2:"16";s:4:"name";s:6:"Height";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}s:7:"options";a:2:{i:13;a:13:{s:9:"option_id";s:2:"13";s:4:"name";s:7:"Fabrics";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:9:"option_id";s:2:"14";s:4:"name";s:5:"Color";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}}', 1),
3644(1374, 0, 'supercategorymenuadvanced', 'VALORES_109', 'a:2:{s:10:"attributes";a:5:{i:12;a:13:{s:12:"attribute_id";s:2:"12";s:4:"name";s:4:"Wood";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:13;a:13:{s:12:"attribute_id";s:2:"13";s:4:"name";s:6:"Fabric";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:12:"attribute_id";s:2:"14";s:4:"name";s:11:"Orientation";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:15;a:13:{s:12:"attribute_id";s:2:"15";s:4:"name";s:5:"Width";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:16;a:13:{s:12:"attribute_id";s:2:"16";s:4:"name";s:6:"Height";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}s:7:"options";a:2:{i:13;a:13:{s:9:"option_id";s:2:"13";s:4:"name";s:7:"Fabrics";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:9:"option_id";s:2:"14";s:4:"name";s:5:"Color";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}}', 1),
3645(1375, 0, 'supercategorymenuadvanced', 'VALORES_108', 'a:2:{s:10:"attributes";a:5:{i:12;a:13:{s:12:"attribute_id";s:2:"12";s:4:"name";s:4:"Wood";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:13;a:13:{s:12:"attribute_id";s:2:"13";s:4:"name";s:6:"Fabric";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:12:"attribute_id";s:2:"14";s:4:"name";s:11:"Orientation";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:15;a:13:{s:12:"attribute_id";s:2:"15";s:4:"name";s:5:"Width";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:16;a:13:{s:12:"attribute_id";s:2:"16";s:4:"name";s:6:"Height";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}s:7:"options";a:2:{i:13;a:13:{s:9:"option_id";s:2:"13";s:4:"name";s:7:"Fabrics";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:9:"option_id";s:2:"14";s:4:"name";s:5:"Color";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}}', 1),
3646(1376, 0, 'supercategorymenuadvanced', 'VALORES_106', 'a:2:{s:10:"attributes";a:5:{i:12;a:13:{s:12:"attribute_id";s:2:"12";s:4:"name";s:4:"Wood";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:13;a:13:{s:12:"attribute_id";s:2:"13";s:4:"name";s:6:"Fabric";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:12:"attribute_id";s:2:"14";s:4:"name";s:11:"Orientation";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:15;a:13:{s:12:"attribute_id";s:2:"15";s:4:"name";s:5:"Width";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:16;a:13:{s:12:"attribute_id";s:2:"16";s:4:"name";s:6:"Height";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}s:7:"options";a:2:{i:13;a:13:{s:9:"option_id";s:2:"13";s:4:"name";s:7:"Fabrics";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:9:"option_id";s:2:"14";s:4:"name";s:5:"Color";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}}', 1),
3647(1377, 0, 'supercategorymenuadvanced', 'VALORES_110', 'a:2:{s:10:"attributes";a:5:{i:12;a:13:{s:12:"attribute_id";s:2:"12";s:4:"name";s:4:"Wood";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:13;a:13:{s:12:"attribute_id";s:2:"13";s:4:"name";s:6:"Fabric";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:12:"attribute_id";s:2:"14";s:4:"name";s:11:"Orientation";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:15;a:13:{s:12:"attribute_id";s:2:"15";s:4:"name";s:5:"Width";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:16;a:13:{s:12:"attribute_id";s:2:"16";s:4:"name";s:6:"Height";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}s:7:"options";a:2:{i:13;a:13:{s:9:"option_id";s:2:"13";s:4:"name";s:7:"Fabrics";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:9:"option_id";s:2:"14";s:4:"name";s:5:"Color";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}}', 1),
3648(1382, 0, 'supercategorymenuadvanced', 'VALORES_29', 'a:2:{s:10:"attributes";a:5:{i:12;a:13:{s:12:"attribute_id";s:2:"12";s:4:"name";s:4:"Wood";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:13;a:13:{s:12:"attribute_id";s:2:"13";s:4:"name";s:6:"Fabric";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:12:"attribute_id";s:2:"14";s:4:"name";s:11:"Orientation";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:15;a:13:{s:12:"attribute_id";s:2:"15";s:4:"name";s:5:"Width";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:16;a:13:{s:12:"attribute_id";s:2:"16";s:4:"name";s:6:"Height";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}s:7:"options";a:2:{i:13;a:13:{s:9:"option_id";s:2:"13";s:4:"name";s:7:"Fabrics";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:9:"option_id";s:2:"14";s:4:"name";s:5:"Color";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}}', 1),
3649(1384, 0, 'supercategorymenuadvanced', 'VALORES_94', 'a:2:{s:10:"attributes";a:5:{i:12;a:13:{s:12:"attribute_id";s:2:"12";s:4:"name";s:4:"Wood";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:13;a:13:{s:12:"attribute_id";s:2:"13";s:4:"name";s:6:"Fabric";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:12:"attribute_id";s:2:"14";s:4:"name";s:11:"Orientation";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:15;a:13:{s:12:"attribute_id";s:2:"15";s:4:"name";s:5:"Width";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:16;a:13:{s:12:"attribute_id";s:2:"16";s:4:"name";s:6:"Height";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}s:7:"options";a:2:{i:13;a:13:{s:9:"option_id";s:2:"13";s:4:"name";s:7:"Fabrics";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:9:"option_id";s:2:"14";s:4:"name";s:5:"Color";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}}', 1),
3650(1385, 0, 'supercategorymenuadvanced', 'VALORES_95', 'a:2:{s:10:"attributes";a:5:{i:12;a:13:{s:12:"attribute_id";s:2:"12";s:4:"name";s:4:"Wood";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:13;a:13:{s:12:"attribute_id";s:2:"13";s:4:"name";s:6:"Fabric";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:12:"attribute_id";s:2:"14";s:4:"name";s:11:"Orientation";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:15;a:13:{s:12:"attribute_id";s:2:"15";s:4:"name";s:5:"Width";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:16;a:13:{s:12:"attribute_id";s:2:"16";s:4:"name";s:6:"Height";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}s:7:"options";a:2:{i:13;a:13:{s:9:"option_id";s:2:"13";s:4:"name";s:7:"Fabrics";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:9:"option_id";s:2:"14";s:4:"name";s:5:"Color";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}}', 1),
3651(1386, 0, 'supercategorymenuadvanced', 'VALORES_96', 'a:2:{s:10:"attributes";a:5:{i:12;a:13:{s:12:"attribute_id";s:2:"12";s:4:"name";s:4:"Wood";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:13;a:13:{s:12:"attribute_id";s:2:"13";s:4:"name";s:6:"Fabric";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:12:"attribute_id";s:2:"14";s:4:"name";s:11:"Orientation";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:15;a:13:{s:12:"attribute_id";s:2:"15";s:4:"name";s:5:"Width";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:16;a:13:{s:12:"attribute_id";s:2:"16";s:4:"name";s:6:"Height";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}s:7:"options";a:2:{i:13;a:13:{s:9:"option_id";s:2:"13";s:4:"name";s:7:"Fabrics";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:9:"option_id";s:2:"14";s:4:"name";s:5:"Color";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}}', 1);
3652INSERT INTO `setting` (`setting_id`, `store_id`, `group`, `key`, `value`, `serialized`) VALUES
3653(1387, 0, 'supercategorymenuadvanced', 'VALORES_97', 'a:2:{s:10:"attributes";a:5:{i:12;a:13:{s:12:"attribute_id";s:2:"12";s:4:"name";s:4:"Wood";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:13;a:13:{s:12:"attribute_id";s:2:"13";s:4:"name";s:6:"Fabric";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:12:"attribute_id";s:2:"14";s:4:"name";s:11:"Orientation";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:15;a:13:{s:12:"attribute_id";s:2:"15";s:4:"name";s:5:"Width";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:16;a:13:{s:12:"attribute_id";s:2:"16";s:4:"name";s:6:"Height";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}s:7:"options";a:2:{i:13;a:13:{s:9:"option_id";s:2:"13";s:4:"name";s:7:"Fabrics";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:9:"option_id";s:2:"14";s:4:"name";s:5:"Color";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}}', 1),
3654(1392, 0, 'supercategorymenuadvanced', 'VALORES_28', 'a:2:{s:10:"attributes";a:5:{i:12;a:13:{s:12:"attribute_id";s:2:"12";s:4:"name";s:4:"Wood";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:13;a:13:{s:12:"attribute_id";s:2:"13";s:4:"name";s:6:"Fabric";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:12:"attribute_id";s:2:"14";s:4:"name";s:11:"Orientation";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:15;a:13:{s:12:"attribute_id";s:2:"15";s:4:"name";s:5:"Width";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:16;a:13:{s:12:"attribute_id";s:2:"16";s:4:"name";s:6:"Height";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}s:7:"options";a:2:{i:13;a:13:{s:9:"option_id";s:2:"13";s:4:"name";s:7:"Fabrics";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:9:"option_id";s:2:"14";s:4:"name";s:5:"Color";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}}', 1),
3655(1394, 0, 'supercategorymenuadvanced', 'VALORES_103', 'a:2:{s:10:"attributes";a:5:{i:12;a:13:{s:12:"attribute_id";s:2:"12";s:4:"name";s:4:"Wood";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:13;a:13:{s:12:"attribute_id";s:2:"13";s:4:"name";s:6:"Fabric";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:12:"attribute_id";s:2:"14";s:4:"name";s:11:"Orientation";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:15;a:13:{s:12:"attribute_id";s:2:"15";s:4:"name";s:5:"Width";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:16;a:13:{s:12:"attribute_id";s:2:"16";s:4:"name";s:6:"Height";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}s:7:"options";a:2:{i:13;a:13:{s:9:"option_id";s:2:"13";s:4:"name";s:7:"Fabrics";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:9:"option_id";s:2:"14";s:4:"name";s:5:"Color";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}}', 1),
3656(1395, 0, 'supercategorymenuadvanced', 'VALORES_105', 'a:2:{s:10:"attributes";a:5:{i:12;a:13:{s:12:"attribute_id";s:2:"12";s:4:"name";s:4:"Wood";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:13;a:13:{s:12:"attribute_id";s:2:"13";s:4:"name";s:6:"Fabric";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:12:"attribute_id";s:2:"14";s:4:"name";s:11:"Orientation";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:15;a:13:{s:12:"attribute_id";s:2:"15";s:4:"name";s:5:"Width";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:16;a:13:{s:12:"attribute_id";s:2:"16";s:4:"name";s:6:"Height";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}s:7:"options";a:2:{i:13;a:13:{s:9:"option_id";s:2:"13";s:4:"name";s:7:"Fabrics";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:9:"option_id";s:2:"14";s:4:"name";s:5:"Color";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}}', 1),
3657(1396, 0, 'supercategorymenuadvanced', 'VALORES_104', 'a:2:{s:10:"attributes";a:5:{i:12;a:13:{s:12:"attribute_id";s:2:"12";s:4:"name";s:4:"Wood";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:13;a:13:{s:12:"attribute_id";s:2:"13";s:4:"name";s:6:"Fabric";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:12:"attribute_id";s:2:"14";s:4:"name";s:11:"Orientation";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:15;a:13:{s:12:"attribute_id";s:2:"15";s:4:"name";s:5:"Width";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:16;a:13:{s:12:"attribute_id";s:2:"16";s:4:"name";s:6:"Height";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}s:7:"options";a:2:{i:13;a:13:{s:9:"option_id";s:2:"13";s:4:"name";s:7:"Fabrics";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:9:"option_id";s:2:"14";s:4:"name";s:5:"Color";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}}', 1),
3658(1401, 0, 'supercategorymenuadvanced', 'VALORES_35', 'a:2:{s:10:"attributes";a:5:{i:12;a:13:{s:12:"attribute_id";s:2:"12";s:4:"name";s:4:"Wood";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:13;a:13:{s:12:"attribute_id";s:2:"13";s:4:"name";s:6:"Fabric";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:12:"attribute_id";s:2:"14";s:4:"name";s:11:"Orientation";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:15;a:13:{s:12:"attribute_id";s:2:"15";s:4:"name";s:5:"Width";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:16;a:13:{s:12:"attribute_id";s:2:"16";s:4:"name";s:6:"Height";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}s:7:"options";a:2:{i:13;a:13:{s:9:"option_id";s:2:"13";s:4:"name";s:7:"Fabrics";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:9:"option_id";s:2:"14";s:4:"name";s:5:"Color";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}}', 1),
3659(1407, 0, 'supercategorymenuadvanced', 'VALORES_36', 'a:2:{s:10:"attributes";a:5:{i:12;a:13:{s:12:"attribute_id";s:2:"12";s:4:"name";s:4:"Wood";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:13;a:13:{s:12:"attribute_id";s:2:"13";s:4:"name";s:6:"Fabric";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:12:"attribute_id";s:2:"14";s:4:"name";s:11:"Orientation";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:15;a:13:{s:12:"attribute_id";s:2:"15";s:4:"name";s:5:"Width";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:16;a:13:{s:12:"attribute_id";s:2:"16";s:4:"name";s:6:"Height";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}s:7:"options";a:2:{i:13;a:13:{s:9:"option_id";s:2:"13";s:4:"name";s:7:"Fabrics";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:9:"option_id";s:2:"14";s:4:"name";s:5:"Color";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}}', 1),
3660(1409, 0, 'supercategorymenuadvanced', 'VALORES_102', 'a:2:{s:10:"attributes";a:5:{i:12;a:13:{s:12:"attribute_id";s:2:"12";s:4:"name";s:4:"Wood";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:13;a:13:{s:12:"attribute_id";s:2:"13";s:4:"name";s:6:"Fabric";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:12:"attribute_id";s:2:"14";s:4:"name";s:11:"Orientation";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:15;a:13:{s:12:"attribute_id";s:2:"15";s:4:"name";s:5:"Width";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:16;a:13:{s:12:"attribute_id";s:2:"16";s:4:"name";s:6:"Height";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}s:7:"options";a:2:{i:13;a:13:{s:9:"option_id";s:2:"13";s:4:"name";s:7:"Fabrics";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:9:"option_id";s:2:"14";s:4:"name";s:5:"Color";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}}', 1),
3661(1410, 0, 'supercategorymenuadvanced', 'VALORES_100', 'a:2:{s:10:"attributes";a:5:{i:12;a:13:{s:12:"attribute_id";s:2:"12";s:4:"name";s:4:"Wood";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:13;a:13:{s:12:"attribute_id";s:2:"13";s:4:"name";s:6:"Fabric";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:12:"attribute_id";s:2:"14";s:4:"name";s:11:"Orientation";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:15;a:13:{s:12:"attribute_id";s:2:"15";s:4:"name";s:5:"Width";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:16;a:13:{s:12:"attribute_id";s:2:"16";s:4:"name";s:6:"Height";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}s:7:"options";a:2:{i:13;a:13:{s:9:"option_id";s:2:"13";s:4:"name";s:7:"Fabrics";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:9:"option_id";s:2:"14";s:4:"name";s:5:"Color";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}}', 1),
3662(1411, 0, 'supercategorymenuadvanced', 'VALORES_99', 'a:2:{s:10:"attributes";a:5:{i:12;a:13:{s:12:"attribute_id";s:2:"12";s:4:"name";s:4:"Wood";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:13;a:13:{s:12:"attribute_id";s:2:"13";s:4:"name";s:6:"Fabric";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:12:"attribute_id";s:2:"14";s:4:"name";s:11:"Orientation";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:15;a:13:{s:12:"attribute_id";s:2:"15";s:4:"name";s:5:"Width";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:16;a:13:{s:12:"attribute_id";s:2:"16";s:4:"name";s:6:"Height";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}s:7:"options";a:2:{i:13;a:13:{s:9:"option_id";s:2:"13";s:4:"name";s:7:"Fabrics";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:9:"option_id";s:2:"14";s:4:"name";s:5:"Color";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}}', 1),
3663(1412, 0, 'supercategorymenuadvanced', 'VALORES_101', 'a:2:{s:10:"attributes";a:5:{i:12;a:13:{s:12:"attribute_id";s:2:"12";s:4:"name";s:4:"Wood";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:13;a:13:{s:12:"attribute_id";s:2:"13";s:4:"name";s:6:"Fabric";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:12:"attribute_id";s:2:"14";s:4:"name";s:11:"Orientation";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:15;a:13:{s:12:"attribute_id";s:2:"15";s:4:"name";s:5:"Width";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:16;a:13:{s:12:"attribute_id";s:2:"16";s:4:"name";s:6:"Height";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}s:7:"options";a:2:{i:13;a:13:{s:9:"option_id";s:2:"13";s:4:"name";s:7:"Fabrics";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:9:"option_id";s:2:"14";s:4:"name";s:5:"Color";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}}', 1),
3664(1413, 0, 'supercategorymenuadvanced', 'VALORES_98', 'a:2:{s:10:"attributes";a:5:{i:12;a:13:{s:12:"attribute_id";s:2:"12";s:4:"name";s:4:"Wood";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:13;a:13:{s:12:"attribute_id";s:2:"13";s:4:"name";s:6:"Fabric";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:12:"attribute_id";s:2:"14";s:4:"name";s:11:"Orientation";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:15;a:13:{s:12:"attribute_id";s:2:"15";s:4:"name";s:5:"Width";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:16;a:13:{s:12:"attribute_id";s:2:"16";s:4:"name";s:6:"Height";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}s:7:"options";a:2:{i:13;a:13:{s:9:"option_id";s:2:"13";s:4:"name";s:7:"Fabrics";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:9:"option_id";s:2:"14";s:4:"name";s:5:"Color";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}}', 1),
3665(1418, 0, 'supercategorymenuadvanced', 'VALORES_30', 'a:2:{s:10:"attributes";a:5:{i:12;a:13:{s:12:"attribute_id";s:2:"12";s:4:"name";s:4:"Wood";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:13;a:13:{s:12:"attribute_id";s:2:"13";s:4:"name";s:6:"Fabric";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:12:"attribute_id";s:2:"14";s:4:"name";s:11:"Orientation";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:15;a:13:{s:12:"attribute_id";s:2:"15";s:4:"name";s:5:"Width";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:16;a:13:{s:12:"attribute_id";s:2:"16";s:4:"name";s:6:"Height";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}s:7:"options";a:2:{i:13;a:13:{s:9:"option_id";s:2:"13";s:4:"name";s:7:"Fabrics";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:9:"option_id";s:2:"14";s:4:"name";s:5:"Color";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}}', 1),
3666(1424, 0, 'supercategorymenuadvanced', 'VALORES_31', 'a:2:{s:10:"attributes";a:5:{i:12;a:13:{s:12:"attribute_id";s:2:"12";s:4:"name";s:4:"Wood";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:13;a:13:{s:12:"attribute_id";s:2:"13";s:4:"name";s:6:"Fabric";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:12:"attribute_id";s:2:"14";s:4:"name";s:11:"Orientation";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:15;a:13:{s:12:"attribute_id";s:2:"15";s:4:"name";s:5:"Width";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:16;a:13:{s:12:"attribute_id";s:2:"16";s:4:"name";s:6:"Height";s:10:"short_name";s:1:"a";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}s:7:"options";a:2:{i:13;a:13:{s:9:"option_id";s:2:"13";s:4:"name";s:7:"Fabrics";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}i:14;a:13:{s:9:"option_id";s:2:"14";s:4:"name";s:5:"Color";s:10:"short_name";s:1:"o";s:6:"number";s:1:"8";s:10:"sort_order";s:1:"0";s:4:"view";s:4:"sele";s:4:"unit";s:0:"";s:9:"separator";s:2:"no";s:4:"info";s:2:"no";s:11:"searchinput";s:2:"no";s:7:"initval";s:6:"opened";s:8:"orderval";s:5:"OHASC";s:9:"text_info";a:1:{i:1;s:0:"";}}}}', 1),
3667(1520, 0, 'config', 'config_seo_url', '0', 0),
3668(1521, 0, 'config', 'config_file_extension_allowed', 'txt\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\r\nrtf\r\nxls\r\nppt\r\nodt\r\nods', 0),
3669(1522, 0, 'config', 'config_file_mime_allowed', 'text/plain\r\nimage/png\r\nimage/jpeg\r\nimage/jpeg\r\nimage/jpeg\r\nimage/gif\r\nimage/bmp\r\nimage/vnd.microsoft.icon\r\nimage/tiff\r\nimage/tiff\r\nimage/svg+xml\r\nimage/svg+xml\r\napplication/zip\r\napplication/x-rar-compressed\r\napplication/x-msdownload\r\napplication/vnd.ms-cab-compressed\r\naudio/mpeg\r\nvideo/quicktime\r\nvideo/quicktime\r\napplication/pdf\r\nimage/vnd.adobe.photoshop\r\napplication/postscript\r\napplication/postscript\r\napplication/postscript\r\napplication/msword\r\napplication/rtf\r\napplication/vnd.ms-excel\r\napplication/vnd.ms-powerpoint\r\napplication/vnd.oasis.opendocument.text\r\napplication/vnd.oasis.opendocument.spreadsheet', 0),
3670(1523, 0, 'config', 'config_maintenance', '0', 0),
3671(1524, 0, 'config', 'config_password', '1', 0),
3672(1525, 0, 'config', 'config_encryption', '732e938699bcc4b99db5f9db5f3a66ed', 0),
3673(1526, 0, 'config', 'config_compression', '0', 0),
3674(1527, 0, 'config', 'config_error_display', '1', 0),
3675(1528, 0, 'config', 'config_error_log', '1', 0),
3676(1529, 0, 'config', 'config_error_filename', 'error.txt', 0),
3677(1530, 0, 'config', 'config_google_analytics', '', 0);
3678
3679-- --------------------------------------------------------
3680
3681--
3682-- Table structure for table `stock_status`
3683--
3684
3685CREATE TABLE IF NOT EXISTS `stock_status` (
3686 `stock_status_id` int(11) NOT NULL AUTO_INCREMENT,
3687 `language_id` int(11) NOT NULL,
3688 `name` varchar(32) NOT NULL,
3689 PRIMARY KEY (`stock_status_id`,`language_id`)
3690) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=9 ;
3691
3692--
3693-- Dumping data for table `stock_status`
3694--
3695
3696INSERT INTO `stock_status` (`stock_status_id`, `language_id`, `name`) VALUES
3697(7, 1, 'In Stock'),
3698(8, 1, 'Pre-Order'),
3699(5, 1, 'Out Of Stock'),
3700(6, 1, '2 - 3 Days');
3701
3702-- --------------------------------------------------------
3703
3704--
3705-- Table structure for table `store`
3706--
3707
3708CREATE TABLE IF NOT EXISTS `store` (
3709 `store_id` int(11) NOT NULL AUTO_INCREMENT,
3710 `name` varchar(64) NOT NULL,
3711 `url` varchar(255) NOT NULL,
3712 `ssl` varchar(255) NOT NULL,
3713 PRIMARY KEY (`store_id`)
3714) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
3715
3716-- --------------------------------------------------------
3717
3718--
3719-- Table structure for table `tax_class`
3720--
3721
3722CREATE TABLE IF NOT EXISTS `tax_class` (
3723 `tax_class_id` int(11) NOT NULL AUTO_INCREMENT,
3724 `title` varchar(32) NOT NULL,
3725 `description` varchar(255) NOT NULL,
3726 `date_added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
3727 `date_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
3728 PRIMARY KEY (`tax_class_id`)
3729) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=11 ;
3730
3731--
3732-- Dumping data for table `tax_class`
3733--
3734
3735INSERT INTO `tax_class` (`tax_class_id`, `title`, `description`, `date_added`, `date_modified`) VALUES
3736(9, 'Taxable Goods', 'Taxed Stuff', '2009-01-06 23:21:53', '2011-09-23 14:07:50'),
3737(10, 'Downloadable Products', 'Downloadable', '2011-09-21 22:19:39', '2011-09-22 10:27:36');
3738
3739-- --------------------------------------------------------
3740
3741--
3742-- Table structure for table `tax_rate`
3743--
3744
3745CREATE TABLE IF NOT EXISTS `tax_rate` (
3746 `tax_rate_id` int(11) NOT NULL AUTO_INCREMENT,
3747 `geo_zone_id` int(11) NOT NULL DEFAULT '0',
3748 `name` varchar(32) NOT NULL,
3749 `rate` decimal(15,4) NOT NULL DEFAULT '0.0000',
3750 `type` char(1) NOT NULL,
3751 `date_added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
3752 `date_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
3753 PRIMARY KEY (`tax_rate_id`)
3754) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=88 ;
3755
3756--
3757-- Dumping data for table `tax_rate`
3758--
3759
3760INSERT INTO `tax_rate` (`tax_rate_id`, `geo_zone_id`, `name`, `rate`, `type`, `date_added`, `date_modified`) VALUES
3761(86, 3, 'VAT (17.5%)', '17.5000', 'P', '2011-03-09 21:17:10', '2011-09-22 22:24:29'),
3762(87, 3, 'Eco Tax (-2.00)', '2.0000', 'F', '2011-09-21 21:49:23', '2011-09-23 00:40:19');
3763
3764-- --------------------------------------------------------
3765
3766--
3767-- Table structure for table `tax_rate_to_customer_group`
3768--
3769
3770CREATE TABLE IF NOT EXISTS `tax_rate_to_customer_group` (
3771 `tax_rate_id` int(11) NOT NULL,
3772 `customer_group_id` int(11) NOT NULL,
3773 PRIMARY KEY (`tax_rate_id`,`customer_group_id`)
3774) ENGINE=MyISAM DEFAULT CHARSET=utf8;
3775
3776--
3777-- Dumping data for table `tax_rate_to_customer_group`
3778--
3779
3780INSERT INTO `tax_rate_to_customer_group` (`tax_rate_id`, `customer_group_id`) VALUES
3781(86, 1),
3782(87, 1);
3783
3784-- --------------------------------------------------------
3785
3786--
3787-- Table structure for table `tax_rule`
3788--
3789
3790CREATE TABLE IF NOT EXISTS `tax_rule` (
3791 `tax_rule_id` int(11) NOT NULL AUTO_INCREMENT,
3792 `tax_class_id` int(11) NOT NULL,
3793 `tax_rate_id` int(11) NOT NULL,
3794 `based` varchar(10) NOT NULL,
3795 `priority` int(5) NOT NULL DEFAULT '1',
3796 PRIMARY KEY (`tax_rule_id`)
3797) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=129 ;
3798
3799--
3800-- Dumping data for table `tax_rule`
3801--
3802
3803INSERT INTO `tax_rule` (`tax_rule_id`, `tax_class_id`, `tax_rate_id`, `based`, `priority`) VALUES
3804(121, 10, 86, 'payment', 1),
3805(120, 10, 87, 'store', 0),
3806(128, 9, 86, 'shipping', 1),
3807(127, 9, 87, 'shipping', 2);
3808
3809-- --------------------------------------------------------
3810
3811--
3812-- Table structure for table `url_alias`
3813--
3814
3815CREATE TABLE IF NOT EXISTS `url_alias` (
3816 `url_alias_id` int(11) NOT NULL AUTO_INCREMENT,
3817 `query` varchar(255) NOT NULL,
3818 `keyword` varchar(255) NOT NULL,
3819 PRIMARY KEY (`url_alias_id`)
3820) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=827 ;
3821
3822--
3823-- Dumping data for table `url_alias`
3824--
3825
3826INSERT INTO `url_alias` (`url_alias_id`, `query`, `keyword`) VALUES
3827(730, 'manufacturer_id=8', 'apple'),
3828(812, 'information_id=4', 'about_us'),
3829(826, 'category_id=20', 'new-arrival'),
3830(824, 'category_id=18', 'room'),
3831(807, 'category_id=45', 'lighting'),
3832(823, 'category_id=57', 'rugs'),
3833(821, 'category_id=33', 'pillows-and-throws'),
3834(819, 'category_id=29', 'office'),
3835(822, 'category_id=28', 'outdoor'),
3836(825, 'category_id=35', 'storage'),
3837(820, 'category_id=30', 'on-trend'),
3838(801, 'category_id=0', 'seo_key_word'),
3839(802, 'manufacturer_id=0', 'seo_key_word');
3840
3841-- --------------------------------------------------------
3842
3843--
3844-- Table structure for table `user`
3845--
3846
3847CREATE TABLE IF NOT EXISTS `user` (
3848 `user_id` int(11) NOT NULL AUTO_INCREMENT,
3849 `user_group_id` int(11) NOT NULL,
3850 `username` varchar(20) NOT NULL,
3851 `password` varchar(40) NOT NULL,
3852 `salt` varchar(9) NOT NULL,
3853 `firstname` varchar(32) NOT NULL,
3854 `lastname` varchar(32) NOT NULL,
3855 `email` varchar(96) NOT NULL,
3856 `code` varchar(40) NOT NULL,
3857 `ip` varchar(40) NOT NULL,
3858 `status` tinyint(1) NOT NULL,
3859 `date_added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
3860 PRIMARY KEY (`user_id`)
3861) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
3862
3863--
3864-- Dumping data for table `user`
3865--
3866
3867INSERT INTO `user` (`user_id`, `user_group_id`, `username`, `password`, `salt`, `firstname`, `lastname`, `email`, `code`, `ip`, `status`, `date_added`) VALUES
3868(1, 1, 'sng#1', 'e6db5f22667a07a2604bb1e803a059e3f0ccbb0f', 'fcf2967c8', '', '', 'opeyemi@ckdigital.net', '', '41.58.92.134', 1, '2015-06-03 13:57:22');
3869
3870-- --------------------------------------------------------
3871
3872--
3873-- Table structure for table `user_group`
3874--
3875
3876CREATE TABLE IF NOT EXISTS `user_group` (
3877 `user_group_id` int(11) NOT NULL AUTO_INCREMENT,
3878 `name` varchar(64) NOT NULL,
3879 `permission` text NOT NULL,
3880 PRIMARY KEY (`user_group_id`)
3881) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=11 ;
3882
3883--
3884-- Dumping data for table `user_group`
3885--
3886
3887INSERT INTO `user_group` (`user_group_id`, `name`, `permission`) VALUES
3888(1, 'Top Administrator', 'a:2:{s:6:"access";a:154:{i:0;s:17:"catalog/attribute";i:1;s:23:"catalog/attribute_group";i:2;s:16:"catalog/category";i:3;s:16:"catalog/download";i:4;s:14:"catalog/filter";i:5;s:19:"catalog/information";i:6;s:20:"catalog/manufacturer";i:7;s:14:"catalog/option";i:8;s:15:"catalog/product";i:9;s:15:"catalog/profile";i:10;s:14:"catalog/review";i:11;s:18:"common/filemanager";i:12;s:13:"design/banner";i:13;s:19:"design/custom_field";i:14;s:13:"design/layout";i:15;s:14:"extension/feed";i:16;s:17:"extension/manager";i:17;s:16:"extension/module";i:18;s:17:"extension/openbay";i:19;s:17:"extension/payment";i:20;s:18:"extension/shipping";i:21;s:15:"extension/total";i:22;s:16:"feed/google_base";i:23;s:19:"feed/google_sitemap";i:24;s:20:"localisation/country";i:25;s:21:"localisation/currency";i:26;s:21:"localisation/geo_zone";i:27;s:21:"localisation/language";i:28;s:25:"localisation/length_class";i:29;s:25:"localisation/order_status";i:30;s:26:"localisation/return_action";i:31;s:26:"localisation/return_reason";i:32;s:26:"localisation/return_status";i:33;s:25:"localisation/stock_status";i:34;s:22:"localisation/tax_class";i:35;s:21:"localisation/tax_rate";i:36;s:25:"localisation/weight_class";i:37;s:17:"localisation/zone";i:38;s:14:"module/account";i:39;s:16:"module/affiliate";i:40;s:29:"module/amazon_checkout_layout";i:41;s:13:"module/banner";i:42;s:17:"module/bestseller";i:43;s:15:"module/carousel";i:44;s:15:"module/category";i:45;s:18:"module/ebaydisplay";i:46;s:15:"module/featured";i:47;s:13:"module/filter";i:48;s:18:"module/google_talk";i:49;s:18:"module/information";i:50;s:13:"module/latest";i:51;s:17:"module/openbaypro";i:52;s:16:"module/pp_layout";i:53;s:16:"module/slideshow";i:54;s:14:"module/special";i:55;s:12:"module/store";i:56;s:14:"module/welcome";i:57;s:14:"openbay/amazon";i:58;s:22:"openbay/amazon_listing";i:59;s:22:"openbay/amazon_product";i:60;s:16:"openbay/amazonus";i:61;s:24:"openbay/amazonus_listing";i:62;s:24:"openbay/amazonus_product";i:63;s:20:"openbay/ebay_profile";i:64;s:21:"openbay/ebay_template";i:65;s:15:"openbay/openbay";i:66;s:23:"payment/amazon_checkout";i:67;s:24:"payment/authorizenet_aim";i:68;s:21:"payment/bank_transfer";i:69;s:14:"payment/cheque";i:70;s:11:"payment/cod";i:71;s:21:"payment/free_checkout";i:72;s:22:"payment/klarna_account";i:73;s:22:"payment/klarna_invoice";i:74;s:14:"payment/liqpay";i:75;s:20:"payment/moneybookers";i:76;s:14:"payment/nochex";i:77;s:15:"payment/paymate";i:78;s:16:"payment/paypoint";i:79;s:13:"payment/payza";i:80;s:26:"payment/perpetual_payments";i:81;s:18:"payment/pp_express";i:82;s:25:"payment/pp_payflow_iframe";i:83;s:14:"payment/pp_pro";i:84;s:21:"payment/pp_pro_iframe";i:85;s:17:"payment/pp_pro_pf";i:86;s:17:"payment/pp_pro_uk";i:87;s:19:"payment/pp_standard";i:88;s:15:"payment/sagepay";i:89;s:22:"payment/sagepay_direct";i:90;s:18:"payment/sagepay_us";i:91;s:19:"payment/twocheckout";i:92;s:28:"payment/web_payment_software";i:93;s:16:"payment/worldpay";i:94;s:27:"report/affiliate_commission";i:95;s:22:"report/customer_credit";i:96;s:22:"report/customer_online";i:97;s:21:"report/customer_order";i:98;s:22:"report/customer_reward";i:99;s:24:"report/product_purchased";i:100;s:21:"report/product_viewed";i:101;s:18:"report/sale_coupon";i:102;s:17:"report/sale_order";i:103;s:18:"report/sale_return";i:104;s:20:"report/sale_shipping";i:105;s:15:"report/sale_tax";i:106;s:14:"sale/affiliate";i:107;s:12:"sale/contact";i:108;s:11:"sale/coupon";i:109;s:13:"sale/customer";i:110;s:20:"sale/customer_ban_ip";i:111;s:19:"sale/customer_group";i:112;s:10:"sale/order";i:113;s:14:"sale/recurring";i:114;s:11:"sale/return";i:115;s:12:"sale/voucher";i:116;s:18:"sale/voucher_theme";i:117;s:15:"setting/setting";i:118;s:13:"setting/store";i:119;s:16:"shipping/auspost";i:120;s:17:"shipping/citylink";i:121;s:14:"shipping/fedex";i:122;s:13:"shipping/flat";i:123;s:13:"shipping/free";i:124;s:13:"shipping/item";i:125;s:23:"shipping/parcelforce_48";i:126;s:15:"shipping/pickup";i:127;s:19:"shipping/royal_mail";i:128;s:12:"shipping/ups";i:129;s:13:"shipping/usps";i:130;s:15:"shipping/weight";i:131;s:11:"tool/backup";i:132;s:14:"tool/error_log";i:133;s:12:"total/coupon";i:134;s:12:"total/credit";i:135;s:14:"total/handling";i:136;s:16:"total/klarna_fee";i:137;s:19:"total/low_order_fee";i:138;s:12:"total/reward";i:139;s:14:"total/shipping";i:140;s:15:"total/sub_total";i:141;s:9:"total/tax";i:142;s:11:"total/total";i:143;s:13:"total/voucher";i:144;s:9:"user/user";i:145;s:20:"user/user_permission";i:146;s:22:"module/productcarousel";i:147;s:17:"module/bestseller";i:148;s:14:"module/welcome";i:149;s:18:"module/custom_html";i:150;s:11:"module/lpbc";i:151;s:13:"module/latest";i:152;s:32:"module/supercategorymenuadvanced";i:153;s:18:"module/information";}s:6:"modify";a:154:{i:0;s:17:"catalog/attribute";i:1;s:23:"catalog/attribute_group";i:2;s:16:"catalog/category";i:3;s:16:"catalog/download";i:4;s:14:"catalog/filter";i:5;s:19:"catalog/information";i:6;s:20:"catalog/manufacturer";i:7;s:14:"catalog/option";i:8;s:15:"catalog/product";i:9;s:15:"catalog/profile";i:10;s:14:"catalog/review";i:11;s:18:"common/filemanager";i:12;s:13:"design/banner";i:13;s:19:"design/custom_field";i:14;s:13:"design/layout";i:15;s:14:"extension/feed";i:16;s:17:"extension/manager";i:17;s:16:"extension/module";i:18;s:17:"extension/openbay";i:19;s:17:"extension/payment";i:20;s:18:"extension/shipping";i:21;s:15:"extension/total";i:22;s:16:"feed/google_base";i:23;s:19:"feed/google_sitemap";i:24;s:20:"localisation/country";i:25;s:21:"localisation/currency";i:26;s:21:"localisation/geo_zone";i:27;s:21:"localisation/language";i:28;s:25:"localisation/length_class";i:29;s:25:"localisation/order_status";i:30;s:26:"localisation/return_action";i:31;s:26:"localisation/return_reason";i:32;s:26:"localisation/return_status";i:33;s:25:"localisation/stock_status";i:34;s:22:"localisation/tax_class";i:35;s:21:"localisation/tax_rate";i:36;s:25:"localisation/weight_class";i:37;s:17:"localisation/zone";i:38;s:14:"module/account";i:39;s:16:"module/affiliate";i:40;s:29:"module/amazon_checkout_layout";i:41;s:13:"module/banner";i:42;s:17:"module/bestseller";i:43;s:15:"module/carousel";i:44;s:15:"module/category";i:45;s:18:"module/ebaydisplay";i:46;s:15:"module/featured";i:47;s:13:"module/filter";i:48;s:18:"module/google_talk";i:49;s:18:"module/information";i:50;s:13:"module/latest";i:51;s:17:"module/openbaypro";i:52;s:16:"module/pp_layout";i:53;s:16:"module/slideshow";i:54;s:14:"module/special";i:55;s:12:"module/store";i:56;s:14:"module/welcome";i:57;s:14:"openbay/amazon";i:58;s:22:"openbay/amazon_listing";i:59;s:22:"openbay/amazon_product";i:60;s:16:"openbay/amazonus";i:61;s:24:"openbay/amazonus_listing";i:62;s:24:"openbay/amazonus_product";i:63;s:20:"openbay/ebay_profile";i:64;s:21:"openbay/ebay_template";i:65;s:15:"openbay/openbay";i:66;s:23:"payment/amazon_checkout";i:67;s:24:"payment/authorizenet_aim";i:68;s:21:"payment/bank_transfer";i:69;s:14:"payment/cheque";i:70;s:11:"payment/cod";i:71;s:21:"payment/free_checkout";i:72;s:22:"payment/klarna_account";i:73;s:22:"payment/klarna_invoice";i:74;s:14:"payment/liqpay";i:75;s:20:"payment/moneybookers";i:76;s:14:"payment/nochex";i:77;s:15:"payment/paymate";i:78;s:16:"payment/paypoint";i:79;s:13:"payment/payza";i:80;s:26:"payment/perpetual_payments";i:81;s:18:"payment/pp_express";i:82;s:25:"payment/pp_payflow_iframe";i:83;s:14:"payment/pp_pro";i:84;s:21:"payment/pp_pro_iframe";i:85;s:17:"payment/pp_pro_pf";i:86;s:17:"payment/pp_pro_uk";i:87;s:19:"payment/pp_standard";i:88;s:15:"payment/sagepay";i:89;s:22:"payment/sagepay_direct";i:90;s:18:"payment/sagepay_us";i:91;s:19:"payment/twocheckout";i:92;s:28:"payment/web_payment_software";i:93;s:16:"payment/worldpay";i:94;s:27:"report/affiliate_commission";i:95;s:22:"report/customer_credit";i:96;s:22:"report/customer_online";i:97;s:21:"report/customer_order";i:98;s:22:"report/customer_reward";i:99;s:24:"report/product_purchased";i:100;s:21:"report/product_viewed";i:101;s:18:"report/sale_coupon";i:102;s:17:"report/sale_order";i:103;s:18:"report/sale_return";i:104;s:20:"report/sale_shipping";i:105;s:15:"report/sale_tax";i:106;s:14:"sale/affiliate";i:107;s:12:"sale/contact";i:108;s:11:"sale/coupon";i:109;s:13:"sale/customer";i:110;s:20:"sale/customer_ban_ip";i:111;s:19:"sale/customer_group";i:112;s:10:"sale/order";i:113;s:14:"sale/recurring";i:114;s:11:"sale/return";i:115;s:12:"sale/voucher";i:116;s:18:"sale/voucher_theme";i:117;s:15:"setting/setting";i:118;s:13:"setting/store";i:119;s:16:"shipping/auspost";i:120;s:17:"shipping/citylink";i:121;s:14:"shipping/fedex";i:122;s:13:"shipping/flat";i:123;s:13:"shipping/free";i:124;s:13:"shipping/item";i:125;s:23:"shipping/parcelforce_48";i:126;s:15:"shipping/pickup";i:127;s:19:"shipping/royal_mail";i:128;s:12:"shipping/ups";i:129;s:13:"shipping/usps";i:130;s:15:"shipping/weight";i:131;s:11:"tool/backup";i:132;s:14:"tool/error_log";i:133;s:12:"total/coupon";i:134;s:12:"total/credit";i:135;s:14:"total/handling";i:136;s:16:"total/klarna_fee";i:137;s:19:"total/low_order_fee";i:138;s:12:"total/reward";i:139;s:14:"total/shipping";i:140;s:15:"total/sub_total";i:141;s:9:"total/tax";i:142;s:11:"total/total";i:143;s:13:"total/voucher";i:144;s:9:"user/user";i:145;s:20:"user/user_permission";i:146;s:22:"module/productcarousel";i:147;s:17:"module/bestseller";i:148;s:14:"module/welcome";i:149;s:18:"module/custom_html";i:150;s:11:"module/lpbc";i:151;s:13:"module/latest";i:152;s:32:"module/supercategorymenuadvanced";i:153;s:18:"module/information";}}'),
3889(10, 'Demonstration', '');
3890
3891-- --------------------------------------------------------
3892
3893--
3894-- Table structure for table `voucher`
3895--
3896
3897CREATE TABLE IF NOT EXISTS `voucher` (
3898 `voucher_id` int(11) NOT NULL AUTO_INCREMENT,
3899 `order_id` int(11) NOT NULL,
3900 `code` varchar(10) NOT NULL,
3901 `from_name` varchar(64) NOT NULL,
3902 `from_email` varchar(96) NOT NULL,
3903 `to_name` varchar(64) NOT NULL,
3904 `to_email` varchar(96) NOT NULL,
3905 `voucher_theme_id` int(11) NOT NULL,
3906 `message` text NOT NULL,
3907 `amount` decimal(15,4) NOT NULL,
3908 `status` tinyint(1) NOT NULL,
3909 `date_added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
3910 PRIMARY KEY (`voucher_id`)
3911) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
3912
3913-- --------------------------------------------------------
3914
3915--
3916-- Table structure for table `voucher_history`
3917--
3918
3919CREATE TABLE IF NOT EXISTS `voucher_history` (
3920 `voucher_history_id` int(11) NOT NULL AUTO_INCREMENT,
3921 `voucher_id` int(11) NOT NULL,
3922 `order_id` int(11) NOT NULL,
3923 `amount` decimal(15,4) NOT NULL,
3924 `date_added` datetime NOT NULL,
3925 PRIMARY KEY (`voucher_history_id`)
3926) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
3927
3928-- --------------------------------------------------------
3929
3930--
3931-- Table structure for table `voucher_theme`
3932--
3933
3934CREATE TABLE IF NOT EXISTS `voucher_theme` (
3935 `voucher_theme_id` int(11) NOT NULL AUTO_INCREMENT,
3936 `image` varchar(255) NOT NULL,
3937 PRIMARY KEY (`voucher_theme_id`)
3938) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=9 ;
3939
3940--
3941-- Dumping data for table `voucher_theme`
3942--
3943
3944INSERT INTO `voucher_theme` (`voucher_theme_id`, `image`) VALUES
3945(8, 'data/demo/canon_eos_5d_2.jpg'),
3946(7, 'data/demo/gift-voucher-birthday.jpg'),
3947(6, 'data/demo/apple_logo.jpg');
3948
3949-- --------------------------------------------------------
3950
3951--
3952-- Table structure for table `voucher_theme_description`
3953--
3954
3955CREATE TABLE IF NOT EXISTS `voucher_theme_description` (
3956 `voucher_theme_id` int(11) NOT NULL,
3957 `language_id` int(11) NOT NULL,
3958 `name` varchar(32) NOT NULL,
3959 PRIMARY KEY (`voucher_theme_id`,`language_id`)
3960) ENGINE=MyISAM DEFAULT CHARSET=utf8;
3961
3962--
3963-- Dumping data for table `voucher_theme_description`
3964--
3965
3966INSERT INTO `voucher_theme_description` (`voucher_theme_id`, `language_id`, `name`) VALUES
3967(6, 1, 'Christmas'),
3968(7, 1, 'Birthday'),
3969(8, 1, 'General');
3970
3971-- --------------------------------------------------------
3972
3973--
3974-- Table structure for table `weight_class`
3975--
3976
3977CREATE TABLE IF NOT EXISTS `weight_class` (
3978 `weight_class_id` int(11) NOT NULL AUTO_INCREMENT,
3979 `value` decimal(15,8) NOT NULL DEFAULT '0.00000000',
3980 PRIMARY KEY (`weight_class_id`)
3981) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=7 ;
3982
3983--
3984-- Dumping data for table `weight_class`
3985--
3986
3987INSERT INTO `weight_class` (`weight_class_id`, `value`) VALUES
3988(1, '1.00000000'),
3989(2, '1000.00000000'),
3990(5, '2.20460000'),
3991(6, '35.27400000');
3992
3993-- --------------------------------------------------------
3994
3995--
3996-- Table structure for table `weight_class_description`
3997--
3998
3999CREATE TABLE IF NOT EXISTS `weight_class_description` (
4000 `weight_class_id` int(11) NOT NULL AUTO_INCREMENT,
4001 `language_id` int(11) NOT NULL,
4002 `title` varchar(32) NOT NULL,
4003 `unit` varchar(4) NOT NULL,
4004 PRIMARY KEY (`weight_class_id`,`language_id`)
4005) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=7 ;
4006
4007--
4008-- Dumping data for table `weight_class_description`
4009--
4010
4011INSERT INTO `weight_class_description` (`weight_class_id`, `language_id`, `title`, `unit`) VALUES
4012(1, 1, 'Kilogram', 'kg'),
4013(2, 1, 'Gram', 'g'),
4014(5, 1, 'Pound ', 'lb'),
4015(6, 1, 'Ounce', 'oz');
4016
4017-- --------------------------------------------------------
4018
4019--
4020-- Table structure for table `zone`
4021--
4022
4023CREATE TABLE IF NOT EXISTS `zone` (
4024 `zone_id` int(11) NOT NULL AUTO_INCREMENT,
4025 `country_id` int(11) NOT NULL,
4026 `name` varchar(128) NOT NULL,
4027 `code` varchar(32) NOT NULL,
4028 `status` tinyint(1) NOT NULL DEFAULT '1',
4029 PRIMARY KEY (`zone_id`)
4030) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=4033 ;
4031
4032--
4033-- Dumping data for table `zone`
4034--
4035
4036INSERT INTO `zone` (`zone_id`, `country_id`, `name`, `code`, `status`) VALUES
4037(1, 1, 'Badakhshan', 'BDS', 1),
4038(2, 1, 'Badghis', 'BDG', 1),
4039(3, 1, 'Baghlan', 'BGL', 1),
4040(4, 1, 'Balkh', 'BAL', 1),
4041(5, 1, 'Bamian', 'BAM', 1),
4042(6, 1, 'Farah', 'FRA', 1),
4043(7, 1, 'Faryab', 'FYB', 1),
4044(8, 1, 'Ghazni', 'GHA', 1),
4045(9, 1, 'Ghowr', 'GHO', 1),
4046(10, 1, 'Helmand', 'HEL', 1),
4047(11, 1, 'Herat', 'HER', 1),
4048(12, 1, 'Jowzjan', 'JOW', 1),
4049(13, 1, 'Kabul', 'KAB', 1),
4050(14, 1, 'Kandahar', 'KAN', 1),
4051(15, 1, 'Kapisa', 'KAP', 1),
4052(16, 1, 'Khost', 'KHO', 1),
4053(17, 1, 'Konar', 'KNR', 1),
4054(18, 1, 'Kondoz', 'KDZ', 1),
4055(19, 1, 'Laghman', 'LAG', 1),
4056(20, 1, 'Lowgar', 'LOW', 1),
4057(21, 1, 'Nangrahar', 'NAN', 1),
4058(22, 1, 'Nimruz', 'NIM', 1),
4059(23, 1, 'Nurestan', 'NUR', 1),
4060(24, 1, 'Oruzgan', 'ORU', 1),
4061(25, 1, 'Paktia', 'PIA', 1),
4062(26, 1, 'Paktika', 'PKA', 1),
4063(27, 1, 'Parwan', 'PAR', 1),
4064(28, 1, 'Samangan', 'SAM', 1),
4065(29, 1, 'Sar-e Pol', 'SAR', 1),
4066(30, 1, 'Takhar', 'TAK', 1),
4067(31, 1, 'Wardak', 'WAR', 1),
4068(32, 1, 'Zabol', 'ZAB', 1),
4069(33, 2, 'Berat', 'BR', 1),
4070(34, 2, 'Bulqize', 'BU', 1),
4071(35, 2, 'Delvine', 'DL', 1),
4072(36, 2, 'Devoll', 'DV', 1),
4073(37, 2, 'Diber', 'DI', 1),
4074(38, 2, 'Durres', 'DR', 1),
4075(39, 2, 'Elbasan', 'EL', 1),
4076(40, 2, 'Kolonje', 'ER', 1),
4077(41, 2, 'Fier', 'FR', 1),
4078(42, 2, 'Gjirokaster', 'GJ', 1),
4079(43, 2, 'Gramsh', 'GR', 1),
4080(44, 2, 'Has', 'HA', 1),
4081(45, 2, 'Kavaje', 'KA', 1),
4082(46, 2, 'Kurbin', 'KB', 1),
4083(47, 2, 'Kucove', 'KC', 1),
4084(48, 2, 'Korce', 'KO', 1),
4085(49, 2, 'Kruje', 'KR', 1),
4086(50, 2, 'Kukes', 'KU', 1),
4087(51, 2, 'Librazhd', 'LB', 1),
4088(52, 2, 'Lezhe', 'LE', 1),
4089(53, 2, 'Lushnje', 'LU', 1),
4090(54, 2, 'Malesi e Madhe', 'MM', 1),
4091(55, 2, 'Mallakaster', 'MK', 1),
4092(56, 2, 'Mat', 'MT', 1),
4093(57, 2, 'Mirdite', 'MR', 1),
4094(58, 2, 'Peqin', 'PQ', 1),
4095(59, 2, 'Permet', 'PR', 1),
4096(60, 2, 'Pogradec', 'PG', 1),
4097(61, 2, 'Puke', 'PU', 1),
4098(62, 2, 'Shkoder', 'SH', 1),
4099(63, 2, 'Skrapar', 'SK', 1),
4100(64, 2, 'Sarande', 'SR', 1),
4101(65, 2, 'Tepelene', 'TE', 1),
4102(66, 2, 'Tropoje', 'TP', 1),
4103(67, 2, 'Tirane', 'TR', 1),
4104(68, 2, 'Vlore', 'VL', 1),
4105(69, 3, 'Adrar', 'ADR', 1),
4106(70, 3, 'Ain Defla', 'ADE', 1),
4107(71, 3, 'Ain Temouchent', 'ATE', 1),
4108(72, 3, 'Alger', 'ALG', 1),
4109(73, 3, 'Annaba', 'ANN', 1),
4110(74, 3, 'Batna', 'BAT', 1),
4111(75, 3, 'Bechar', 'BEC', 1),
4112(76, 3, 'Bejaia', 'BEJ', 1),
4113(77, 3, 'Biskra', 'BIS', 1),
4114(78, 3, 'Blida', 'BLI', 1),
4115(79, 3, 'Bordj Bou Arreridj', 'BBA', 1),
4116(80, 3, 'Bouira', 'BOA', 1),
4117(81, 3, 'Boumerdes', 'BMD', 1),
4118(82, 3, 'Chlef', 'CHL', 1),
4119(83, 3, 'Constantine', 'CON', 1),
4120(84, 3, 'Djelfa', 'DJE', 1),
4121(85, 3, 'El Bayadh', 'EBA', 1),
4122(86, 3, 'El Oued', 'EOU', 1),
4123(87, 3, 'El Tarf', 'ETA', 1),
4124(88, 3, 'Ghardaia', 'GHA', 1),
4125(89, 3, 'Guelma', 'GUE', 1),
4126(90, 3, 'Illizi', 'ILL', 1),
4127(91, 3, 'Jijel', 'JIJ', 1),
4128(92, 3, 'Khenchela', 'KHE', 1),
4129(93, 3, 'Laghouat', 'LAG', 1),
4130(94, 3, 'Muaskar', 'MUA', 1),
4131(95, 3, 'Medea', 'MED', 1),
4132(96, 3, 'Mila', 'MIL', 1),
4133(97, 3, 'Mostaganem', 'MOS', 1),
4134(98, 3, 'M''Sila', 'MSI', 1),
4135(99, 3, 'Naama', 'NAA', 1),
4136(100, 3, 'Oran', 'ORA', 1),
4137(101, 3, 'Ouargla', 'OUA', 1),
4138(102, 3, 'Oum el-Bouaghi', 'OEB', 1),
4139(103, 3, 'Relizane', 'REL', 1),
4140(104, 3, 'Saida', 'SAI', 1),
4141(105, 3, 'Setif', 'SET', 1),
4142(106, 3, 'Sidi Bel Abbes', 'SBA', 1),
4143(107, 3, 'Skikda', 'SKI', 1),
4144(108, 3, 'Souk Ahras', 'SAH', 1),
4145(109, 3, 'Tamanghasset', 'TAM', 1),
4146(110, 3, 'Tebessa', 'TEB', 1),
4147(111, 3, 'Tiaret', 'TIA', 1),
4148(112, 3, 'Tindouf', 'TIN', 1),
4149(113, 3, 'Tipaza', 'TIP', 1),
4150(114, 3, 'Tissemsilt', 'TIS', 1),
4151(115, 3, 'Tizi Ouzou', 'TOU', 1),
4152(116, 3, 'Tlemcen', 'TLE', 1),
4153(117, 4, 'Eastern', 'E', 1),
4154(118, 4, 'Manu''a', 'M', 1),
4155(119, 4, 'Rose Island', 'R', 1),
4156(120, 4, 'Swains Island', 'S', 1),
4157(121, 4, 'Western', 'W', 1),
4158(122, 5, 'Andorra la Vella', 'ALV', 1),
4159(123, 5, 'Canillo', 'CAN', 1),
4160(124, 5, 'Encamp', 'ENC', 1),
4161(125, 5, 'Escaldes-Engordany', 'ESE', 1),
4162(126, 5, 'La Massana', 'LMA', 1),
4163(127, 5, 'Ordino', 'ORD', 1),
4164(128, 5, 'Sant Julia de Loria', 'SJL', 1),
4165(129, 6, 'Bengo', 'BGO', 1),
4166(130, 6, 'Benguela', 'BGU', 1),
4167(131, 6, 'Bie', 'BIE', 1),
4168(132, 6, 'Cabinda', 'CAB', 1),
4169(133, 6, 'Cuando-Cubango', 'CCU', 1),
4170(134, 6, 'Cuanza Norte', 'CNO', 1),
4171(135, 6, 'Cuanza Sul', 'CUS', 1),
4172(136, 6, 'Cunene', 'CNN', 1),
4173(137, 6, 'Huambo', 'HUA', 1),
4174(138, 6, 'Huila', 'HUI', 1),
4175(139, 6, 'Luanda', 'LUA', 1),
4176(140, 6, 'Lunda Norte', 'LNO', 1),
4177(141, 6, 'Lunda Sul', 'LSU', 1),
4178(142, 6, 'Malange', 'MAL', 1),
4179(143, 6, 'Moxico', 'MOX', 1),
4180(144, 6, 'Namibe', 'NAM', 1),
4181(145, 6, 'Uige', 'UIG', 1),
4182(146, 6, 'Zaire', 'ZAI', 1),
4183(147, 9, 'Saint George', 'ASG', 1),
4184(148, 9, 'Saint John', 'ASJ', 1),
4185(149, 9, 'Saint Mary', 'ASM', 1),
4186(150, 9, 'Saint Paul', 'ASL', 1),
4187(151, 9, 'Saint Peter', 'ASR', 1),
4188(152, 9, 'Saint Philip', 'ASH', 1),
4189(153, 9, 'Barbuda', 'BAR', 1),
4190(154, 9, 'Redonda', 'RED', 1),
4191(155, 10, 'Antartida e Islas del Atlantico', 'AN', 1),
4192(156, 10, 'Buenos Aires', 'BA', 1),
4193(157, 10, 'Catamarca', 'CA', 1),
4194(158, 10, 'Chaco', 'CH', 1),
4195(159, 10, 'Chubut', 'CU', 1),
4196(160, 10, 'Cordoba', 'CO', 1),
4197(161, 10, 'Corrientes', 'CR', 1),
4198(162, 10, 'Distrito Federal', 'DF', 1),
4199(163, 10, 'Entre Rios', 'ER', 1),
4200(164, 10, 'Formosa', 'FO', 1),
4201(165, 10, 'Jujuy', 'JU', 1),
4202(166, 10, 'La Pampa', 'LP', 1),
4203(167, 10, 'La Rioja', 'LR', 1),
4204(168, 10, 'Mendoza', 'ME', 1),
4205(169, 10, 'Misiones', 'MI', 1),
4206(170, 10, 'Neuquen', 'NE', 1),
4207(171, 10, 'Rio Negro', 'RN', 1),
4208(172, 10, 'Salta', 'SA', 1),
4209(173, 10, 'San Juan', 'SJ', 1),
4210(174, 10, 'San Luis', 'SL', 1),
4211(175, 10, 'Santa Cruz', 'SC', 1),
4212(176, 10, 'Santa Fe', 'SF', 1),
4213(177, 10, 'Santiago del Estero', 'SD', 1),
4214(178, 10, 'Tierra del Fuego', 'TF', 1),
4215(179, 10, 'Tucuman', 'TU', 1),
4216(180, 11, 'Aragatsotn', 'AGT', 1),
4217(181, 11, 'Ararat', 'ARR', 1),
4218(182, 11, 'Armavir', 'ARM', 1),
4219(183, 11, 'Geghark''unik''', 'GEG', 1),
4220(184, 11, 'Kotayk''', 'KOT', 1),
4221(185, 11, 'Lorri', 'LOR', 1),
4222(186, 11, 'Shirak', 'SHI', 1),
4223(187, 11, 'Syunik''', 'SYU', 1),
4224(188, 11, 'Tavush', 'TAV', 1),
4225(189, 11, 'Vayots'' Dzor', 'VAY', 1),
4226(190, 11, 'Yerevan', 'YER', 1),
4227(191, 13, 'Australian Capital Territory', 'ACT', 1),
4228(192, 13, 'New South Wales', 'NSW', 1),
4229(193, 13, 'Northern Territory', 'NT', 1),
4230(194, 13, 'Queensland', 'QLD', 1),
4231(195, 13, 'South Australia', 'SA', 1),
4232(196, 13, 'Tasmania', 'TAS', 1),
4233(197, 13, 'Victoria', 'VIC', 1),
4234(198, 13, 'Western Australia', 'WA', 1),
4235(199, 14, 'Burgenland', 'BUR', 1),
4236(200, 14, 'Kärnten', 'KAR', 1),
4237(201, 14, 'Niederösterreich', 'NOS', 1),
4238(202, 14, 'Oberösterreich', 'OOS', 1),
4239(203, 14, 'Salzburg', 'SAL', 1),
4240(204, 14, 'Steiermark', 'STE', 1),
4241(205, 14, 'Tirol', 'TIR', 1),
4242(206, 14, 'Vorarlberg', 'VOR', 1),
4243(207, 14, 'Wien', 'WIE', 1),
4244(208, 15, 'Ali Bayramli', 'AB', 1),
4245(209, 15, 'Abseron', 'ABS', 1),
4246(210, 15, 'AgcabAdi', 'AGC', 1),
4247(211, 15, 'Agdam', 'AGM', 1),
4248(212, 15, 'Agdas', 'AGS', 1),
4249(213, 15, 'Agstafa', 'AGA', 1),
4250(214, 15, 'Agsu', 'AGU', 1),
4251(215, 15, 'Astara', 'AST', 1),
4252(216, 15, 'Baki', 'BA', 1),
4253(217, 15, 'BabAk', 'BAB', 1),
4254(218, 15, 'BalakAn', 'BAL', 1),
4255(219, 15, 'BArdA', 'BAR', 1),
4256(220, 15, 'Beylaqan', 'BEY', 1),
4257(221, 15, 'Bilasuvar', 'BIL', 1),
4258(222, 15, 'Cabrayil', 'CAB', 1),
4259(223, 15, 'Calilabab', 'CAL', 1),
4260(224, 15, 'Culfa', 'CUL', 1),
4261(225, 15, 'Daskasan', 'DAS', 1),
4262(226, 15, 'Davaci', 'DAV', 1),
4263(227, 15, 'Fuzuli', 'FUZ', 1),
4264(228, 15, 'Ganca', 'GA', 1),
4265(229, 15, 'Gadabay', 'GAD', 1),
4266(230, 15, 'Goranboy', 'GOR', 1),
4267(231, 15, 'Goycay', 'GOY', 1),
4268(232, 15, 'Haciqabul', 'HAC', 1),
4269(233, 15, 'Imisli', 'IMI', 1),
4270(234, 15, 'Ismayilli', 'ISM', 1),
4271(235, 15, 'Kalbacar', 'KAL', 1),
4272(236, 15, 'Kurdamir', 'KUR', 1),
4273(237, 15, 'Lankaran', 'LA', 1),
4274(238, 15, 'Lacin', 'LAC', 1),
4275(239, 15, 'Lankaran', 'LAN', 1),
4276(240, 15, 'Lerik', 'LER', 1),
4277(241, 15, 'Masalli', 'MAS', 1),
4278(242, 15, 'Mingacevir', 'MI', 1),
4279(243, 15, 'Naftalan', 'NA', 1),
4280(244, 15, 'Neftcala', 'NEF', 1),
4281(245, 15, 'Oguz', 'OGU', 1),
4282(246, 15, 'Ordubad', 'ORD', 1),
4283(247, 15, 'Qabala', 'QAB', 1),
4284(248, 15, 'Qax', 'QAX', 1),
4285(249, 15, 'Qazax', 'QAZ', 1),
4286(250, 15, 'Qobustan', 'QOB', 1),
4287(251, 15, 'Quba', 'QBA', 1),
4288(252, 15, 'Qubadli', 'QBI', 1),
4289(253, 15, 'Qusar', 'QUS', 1),
4290(254, 15, 'Saki', 'SA', 1),
4291(255, 15, 'Saatli', 'SAT', 1),
4292(256, 15, 'Sabirabad', 'SAB', 1),
4293(257, 15, 'Sadarak', 'SAD', 1),
4294(258, 15, 'Sahbuz', 'SAH', 1),
4295(259, 15, 'Saki', 'SAK', 1),
4296(260, 15, 'Salyan', 'SAL', 1),
4297(261, 15, 'Sumqayit', 'SM', 1),
4298(262, 15, 'Samaxi', 'SMI', 1),
4299(263, 15, 'Samkir', 'SKR', 1),
4300(264, 15, 'Samux', 'SMX', 1),
4301(265, 15, 'Sarur', 'SAR', 1),
4302(266, 15, 'Siyazan', 'SIY', 1),
4303(267, 15, 'Susa', 'SS', 1),
4304(268, 15, 'Susa', 'SUS', 1),
4305(269, 15, 'Tartar', 'TAR', 1),
4306(270, 15, 'Tovuz', 'TOV', 1),
4307(271, 15, 'Ucar', 'UCA', 1),
4308(272, 15, 'Xankandi', 'XA', 1),
4309(273, 15, 'Xacmaz', 'XAC', 1),
4310(274, 15, 'Xanlar', 'XAN', 1),
4311(275, 15, 'Xizi', 'XIZ', 1),
4312(276, 15, 'Xocali', 'XCI', 1),
4313(277, 15, 'Xocavand', 'XVD', 1),
4314(278, 15, 'Yardimli', 'YAR', 1),
4315(279, 15, 'Yevlax', 'YEV', 1),
4316(280, 15, 'Zangilan', 'ZAN', 1),
4317(281, 15, 'Zaqatala', 'ZAQ', 1),
4318(282, 15, 'Zardab', 'ZAR', 1),
4319(283, 15, 'Naxcivan', 'NX', 1),
4320(284, 16, 'Acklins', 'ACK', 1),
4321(285, 16, 'Berry Islands', 'BER', 1),
4322(286, 16, 'Bimini', 'BIM', 1),
4323(287, 16, 'Black Point', 'BLK', 1),
4324(288, 16, 'Cat Island', 'CAT', 1),
4325(289, 16, 'Central Abaco', 'CAB', 1),
4326(290, 16, 'Central Andros', 'CAN', 1),
4327(291, 16, 'Central Eleuthera', 'CEL', 1),
4328(292, 16, 'City of Freeport', 'FRE', 1),
4329(293, 16, 'Crooked Island', 'CRO', 1),
4330(294, 16, 'East Grand Bahama', 'EGB', 1),
4331(295, 16, 'Exuma', 'EXU', 1),
4332(296, 16, 'Grand Cay', 'GRD', 1),
4333(297, 16, 'Harbour Island', 'HAR', 1),
4334(298, 16, 'Hope Town', 'HOP', 1),
4335(299, 16, 'Inagua', 'INA', 1),
4336(300, 16, 'Long Island', 'LNG', 1),
4337(301, 16, 'Mangrove Cay', 'MAN', 1),
4338(302, 16, 'Mayaguana', 'MAY', 1),
4339(303, 16, 'Moore''s Island', 'MOO', 1),
4340(304, 16, 'North Abaco', 'NAB', 1),
4341(305, 16, 'North Andros', 'NAN', 1),
4342(306, 16, 'North Eleuthera', 'NEL', 1),
4343(307, 16, 'Ragged Island', 'RAG', 1),
4344(308, 16, 'Rum Cay', 'RUM', 1),
4345(309, 16, 'San Salvador', 'SAL', 1),
4346(310, 16, 'South Abaco', 'SAB', 1),
4347(311, 16, 'South Andros', 'SAN', 1),
4348(312, 16, 'South Eleuthera', 'SEL', 1),
4349(313, 16, 'Spanish Wells', 'SWE', 1),
4350(314, 16, 'West Grand Bahama', 'WGB', 1),
4351(315, 17, 'Capital', 'CAP', 1),
4352(316, 17, 'Central', 'CEN', 1),
4353(317, 17, 'Muharraq', 'MUH', 1),
4354(318, 17, 'Northern', 'NOR', 1),
4355(319, 17, 'Southern', 'SOU', 1),
4356(320, 18, 'Barisal', 'BAR', 1),
4357(321, 18, 'Chittagong', 'CHI', 1),
4358(322, 18, 'Dhaka', 'DHA', 1),
4359(323, 18, 'Khulna', 'KHU', 1),
4360(324, 18, 'Rajshahi', 'RAJ', 1),
4361(325, 18, 'Sylhet', 'SYL', 1),
4362(326, 19, 'Christ Church', 'CC', 1),
4363(327, 19, 'Saint Andrew', 'AND', 1),
4364(328, 19, 'Saint George', 'GEO', 1),
4365(329, 19, 'Saint James', 'JAM', 1),
4366(330, 19, 'Saint John', 'JOH', 1),
4367(331, 19, 'Saint Joseph', 'JOS', 1),
4368(332, 19, 'Saint Lucy', 'LUC', 1),
4369(333, 19, 'Saint Michael', 'MIC', 1),
4370(334, 19, 'Saint Peter', 'PET', 1),
4371(335, 19, 'Saint Philip', 'PHI', 1),
4372(336, 19, 'Saint Thomas', 'THO', 1),
4373(337, 20, 'Brestskaya (Brest)', 'BR', 1),
4374(338, 20, 'Homyel''skaya (Homyel'')', 'HO', 1),
4375(339, 20, 'Horad Minsk', 'HM', 1),
4376(340, 20, 'Hrodzyenskaya (Hrodna)', 'HR', 1),
4377(341, 20, 'Mahilyowskaya (Mahilyow)', 'MA', 1),
4378(342, 20, 'Minskaya', 'MI', 1),
4379(343, 20, 'Vitsyebskaya (Vitsyebsk)', 'VI', 1),
4380(344, 21, 'Antwerpen', 'VAN', 1),
4381(345, 21, 'Brabant Wallon', 'WBR', 1),
4382(346, 21, 'Hainaut', 'WHT', 1),
4383(347, 21, 'Liège', 'WLG', 1),
4384(348, 21, 'Limburg', 'VLI', 1),
4385(349, 21, 'Luxembourg', 'WLX', 1),
4386(350, 21, 'Namur', 'WNA', 1),
4387(351, 21, 'Oost-Vlaanderen', 'VOV', 1),
4388(352, 21, 'Vlaams Brabant', 'VBR', 1),
4389(353, 21, 'West-Vlaanderen', 'VWV', 1),
4390(354, 22, 'Belize', 'BZ', 1),
4391(355, 22, 'Cayo', 'CY', 1),
4392(356, 22, 'Corozal', 'CR', 1),
4393(357, 22, 'Orange Walk', 'OW', 1),
4394(358, 22, 'Stann Creek', 'SC', 1),
4395(359, 22, 'Toledo', 'TO', 1),
4396(360, 23, 'Alibori', 'AL', 1),
4397(361, 23, 'Atakora', 'AK', 1),
4398(362, 23, 'Atlantique', 'AQ', 1),
4399(363, 23, 'Borgou', 'BO', 1),
4400(364, 23, 'Collines', 'CO', 1),
4401(365, 23, 'Donga', 'DO', 1),
4402(366, 23, 'Kouffo', 'KO', 1),
4403(367, 23, 'Littoral', 'LI', 1),
4404(368, 23, 'Mono', 'MO', 1),
4405(369, 23, 'Oueme', 'OU', 1),
4406(370, 23, 'Plateau', 'PL', 1),
4407(371, 23, 'Zou', 'ZO', 1),
4408(372, 24, 'Devonshire', 'DS', 1),
4409(373, 24, 'Hamilton City', 'HC', 1),
4410(374, 24, 'Hamilton', 'HA', 1),
4411(375, 24, 'Paget', 'PG', 1),
4412(376, 24, 'Pembroke', 'PB', 1),
4413(377, 24, 'Saint George City', 'GC', 1),
4414(378, 24, 'Saint George''s', 'SG', 1),
4415(379, 24, 'Sandys', 'SA', 1),
4416(380, 24, 'Smith''s', 'SM', 1),
4417(381, 24, 'Southampton', 'SH', 1),
4418(382, 24, 'Warwick', 'WA', 1),
4419(383, 25, 'Bumthang', 'BUM', 1),
4420(384, 25, 'Chukha', 'CHU', 1),
4421(385, 25, 'Dagana', 'DAG', 1),
4422(386, 25, 'Gasa', 'GAS', 1),
4423(387, 25, 'Haa', 'HAA', 1),
4424(388, 25, 'Lhuntse', 'LHU', 1),
4425(389, 25, 'Mongar', 'MON', 1),
4426(390, 25, 'Paro', 'PAR', 1),
4427(391, 25, 'Pemagatshel', 'PEM', 1),
4428(392, 25, 'Punakha', 'PUN', 1),
4429(393, 25, 'Samdrup Jongkhar', 'SJO', 1),
4430(394, 25, 'Samtse', 'SAT', 1),
4431(395, 25, 'Sarpang', 'SAR', 1),
4432(396, 25, 'Thimphu', 'THI', 1),
4433(397, 25, 'Trashigang', 'TRG', 1),
4434(398, 25, 'Trashiyangste', 'TRY', 1),
4435(399, 25, 'Trongsa', 'TRO', 1),
4436(400, 25, 'Tsirang', 'TSI', 1),
4437(401, 25, 'Wangdue Phodrang', 'WPH', 1),
4438(402, 25, 'Zhemgang', 'ZHE', 1),
4439(403, 26, 'Beni', 'BEN', 1),
4440(404, 26, 'Chuquisaca', 'CHU', 1),
4441(405, 26, 'Cochabamba', 'COC', 1),
4442(406, 26, 'La Paz', 'LPZ', 1),
4443(407, 26, 'Oruro', 'ORU', 1),
4444(408, 26, 'Pando', 'PAN', 1),
4445(409, 26, 'Potosi', 'POT', 1),
4446(410, 26, 'Santa Cruz', 'SCZ', 1),
4447(411, 26, 'Tarija', 'TAR', 1),
4448(412, 27, 'Brcko district', 'BRO', 1),
4449(413, 27, 'Unsko-Sanski Kanton', 'FUS', 1),
4450(414, 27, 'Posavski Kanton', 'FPO', 1),
4451(415, 27, 'Tuzlanski Kanton', 'FTU', 1),
4452(416, 27, 'Zenicko-Dobojski Kanton', 'FZE', 1),
4453(417, 27, 'Bosanskopodrinjski Kanton', 'FBP', 1),
4454(418, 27, 'Srednjebosanski Kanton', 'FSB', 1),
4455(419, 27, 'Hercegovacko-neretvanski Kanton', 'FHN', 1),
4456(420, 27, 'Zapadnohercegovacka Zupanija', 'FZH', 1),
4457(421, 27, 'Kanton Sarajevo', 'FSA', 1),
4458(422, 27, 'Zapadnobosanska', 'FZA', 1),
4459(423, 27, 'Banja Luka', 'SBL', 1),
4460(424, 27, 'Doboj', 'SDO', 1),
4461(425, 27, 'Bijeljina', 'SBI', 1),
4462(426, 27, 'Vlasenica', 'SVL', 1),
4463(427, 27, 'Sarajevo-Romanija or Sokolac', 'SSR', 1),
4464(428, 27, 'Foca', 'SFO', 1),
4465(429, 27, 'Trebinje', 'STR', 1),
4466(430, 28, 'Central', 'CE', 1),
4467(431, 28, 'Ghanzi', 'GH', 1),
4468(432, 28, 'Kgalagadi', 'KD', 1),
4469(433, 28, 'Kgatleng', 'KT', 1),
4470(434, 28, 'Kweneng', 'KW', 1),
4471(435, 28, 'Ngamiland', 'NG', 1),
4472(436, 28, 'North East', 'NE', 1),
4473(437, 28, 'North West', 'NW', 1),
4474(438, 28, 'South East', 'SE', 1),
4475(439, 28, 'Southern', 'SO', 1),
4476(440, 30, 'Acre', 'AC', 1),
4477(441, 30, 'Alagoas', 'AL', 1),
4478(442, 30, 'Amapá', 'AP', 1),
4479(443, 30, 'Amazonas', 'AM', 1),
4480(444, 30, 'Bahia', 'BA', 1),
4481(445, 30, 'Ceará', 'CE', 1),
4482(446, 30, 'Distrito Federal', 'DF', 1),
4483(447, 30, 'EspÃrito Santo', 'ES', 1),
4484(448, 30, 'Goiás', 'GO', 1),
4485(449, 30, 'Maranhão', 'MA', 1),
4486(450, 30, 'Mato Grosso', 'MT', 1),
4487(451, 30, 'Mato Grosso do Sul', 'MS', 1),
4488(452, 30, 'Minas Gerais', 'MG', 1),
4489(453, 30, 'Pará', 'PA', 1),
4490(454, 30, 'ParaÃba', 'PB', 1),
4491(455, 30, 'Paraná', 'PR', 1),
4492(456, 30, 'Pernambuco', 'PE', 1),
4493(457, 30, 'PiauÃ', 'PI', 1),
4494(458, 30, 'Rio de Janeiro', 'RJ', 1),
4495(459, 30, 'Rio Grande do Norte', 'RN', 1),
4496(460, 30, 'Rio Grande do Sul', 'RS', 1),
4497(461, 30, 'Rondônia', 'RO', 1),
4498(462, 30, 'Roraima', 'RR', 1),
4499(463, 30, 'Santa Catarina', 'SC', 1),
4500(464, 30, 'São Paulo', 'SP', 1),
4501(465, 30, 'Sergipe', 'SE', 1),
4502(466, 30, 'Tocantins', 'TO', 1),
4503(467, 31, 'Peros Banhos', 'PB', 1),
4504(468, 31, 'Salomon Islands', 'SI', 1),
4505(469, 31, 'Nelsons Island', 'NI', 1),
4506(470, 31, 'Three Brothers', 'TB', 1),
4507(471, 31, 'Eagle Islands', 'EA', 1),
4508(472, 31, 'Danger Island', 'DI', 1),
4509(473, 31, 'Egmont Islands', 'EG', 1),
4510(474, 31, 'Diego Garcia', 'DG', 1),
4511(475, 32, 'Belait', 'BEL', 1),
4512(476, 32, 'Brunei and Muara', 'BRM', 1),
4513(477, 32, 'Temburong', 'TEM', 1),
4514(478, 32, 'Tutong', 'TUT', 1),
4515(479, 33, 'Blagoevgrad', '', 1),
4516(480, 33, 'Burgas', '', 1),
4517(481, 33, 'Dobrich', '', 1),
4518(482, 33, 'Gabrovo', '', 1),
4519(483, 33, 'Haskovo', '', 1),
4520(484, 33, 'Kardjali', '', 1),
4521(485, 33, 'Kyustendil', '', 1),
4522(486, 33, 'Lovech', '', 1),
4523(487, 33, 'Montana', '', 1),
4524(488, 33, 'Pazardjik', '', 1),
4525(489, 33, 'Pernik', '', 1),
4526(490, 33, 'Pleven', '', 1),
4527(491, 33, 'Plovdiv', '', 1),
4528(492, 33, 'Razgrad', '', 1),
4529(493, 33, 'Shumen', '', 1),
4530(494, 33, 'Silistra', '', 1),
4531(495, 33, 'Sliven', '', 1),
4532(496, 33, 'Smolyan', '', 1),
4533(497, 33, 'Sofia', '', 1),
4534(498, 33, 'Sofia - town', '', 1),
4535(499, 33, 'Stara Zagora', '', 1),
4536(500, 33, 'Targovishte', '', 1),
4537(501, 33, 'Varna', '', 1),
4538(502, 33, 'Veliko Tarnovo', '', 1),
4539(503, 33, 'Vidin', '', 1),
4540(504, 33, 'Vratza', '', 1),
4541(505, 33, 'Yambol', '', 1),
4542(506, 34, 'Bale', 'BAL', 1),
4543(507, 34, 'Bam', 'BAM', 1),
4544(508, 34, 'Banwa', 'BAN', 1),
4545(509, 34, 'Bazega', 'BAZ', 1),
4546(510, 34, 'Bougouriba', 'BOR', 1),
4547(511, 34, 'Boulgou', 'BLG', 1),
4548(512, 34, 'Boulkiemde', 'BOK', 1),
4549(513, 34, 'Comoe', 'COM', 1),
4550(514, 34, 'Ganzourgou', 'GAN', 1),
4551(515, 34, 'Gnagna', 'GNA', 1),
4552(516, 34, 'Gourma', 'GOU', 1),
4553(517, 34, 'Houet', 'HOU', 1),
4554(518, 34, 'Ioba', 'IOA', 1),
4555(519, 34, 'Kadiogo', 'KAD', 1),
4556(520, 34, 'Kenedougou', 'KEN', 1),
4557(521, 34, 'Komondjari', 'KOD', 1),
4558(522, 34, 'Kompienga', 'KOP', 1),
4559(523, 34, 'Kossi', 'KOS', 1),
4560(524, 34, 'Koulpelogo', 'KOL', 1),
4561(525, 34, 'Kouritenga', 'KOT', 1),
4562(526, 34, 'Kourweogo', 'KOW', 1),
4563(527, 34, 'Leraba', 'LER', 1),
4564(528, 34, 'Loroum', 'LOR', 1),
4565(529, 34, 'Mouhoun', 'MOU', 1),
4566(530, 34, 'Nahouri', 'NAH', 1),
4567(531, 34, 'Namentenga', 'NAM', 1),
4568(532, 34, 'Nayala', 'NAY', 1),
4569(533, 34, 'Noumbiel', 'NOU', 1),
4570(534, 34, 'Oubritenga', 'OUB', 1),
4571(535, 34, 'Oudalan', 'OUD', 1),
4572(536, 34, 'Passore', 'PAS', 1),
4573(537, 34, 'Poni', 'PON', 1),
4574(538, 34, 'Sanguie', 'SAG', 1),
4575(539, 34, 'Sanmatenga', 'SAM', 1),
4576(540, 34, 'Seno', 'SEN', 1),
4577(541, 34, 'Sissili', 'SIS', 1),
4578(542, 34, 'Soum', 'SOM', 1),
4579(543, 34, 'Sourou', 'SOR', 1),
4580(544, 34, 'Tapoa', 'TAP', 1),
4581(545, 34, 'Tuy', 'TUY', 1),
4582(546, 34, 'Yagha', 'YAG', 1),
4583(547, 34, 'Yatenga', 'YAT', 1),
4584(548, 34, 'Ziro', 'ZIR', 1),
4585(549, 34, 'Zondoma', 'ZOD', 1),
4586(550, 34, 'Zoundweogo', 'ZOW', 1),
4587(551, 35, 'Bubanza', 'BB', 1),
4588(552, 35, 'Bujumbura', 'BJ', 1),
4589(553, 35, 'Bururi', 'BR', 1),
4590(554, 35, 'Cankuzo', 'CA', 1),
4591(555, 35, 'Cibitoke', 'CI', 1),
4592(556, 35, 'Gitega', 'GI', 1),
4593(557, 35, 'Karuzi', 'KR', 1),
4594(558, 35, 'Kayanza', 'KY', 1),
4595(559, 35, 'Kirundo', 'KI', 1),
4596(560, 35, 'Makamba', 'MA', 1),
4597(561, 35, 'Muramvya', 'MU', 1),
4598(562, 35, 'Muyinga', 'MY', 1),
4599(563, 35, 'Mwaro', 'MW', 1),
4600(564, 35, 'Ngozi', 'NG', 1),
4601(565, 35, 'Rutana', 'RT', 1),
4602(566, 35, 'Ruyigi', 'RY', 1),
4603(567, 36, 'Phnom Penh', 'PP', 1),
4604(568, 36, 'Preah Seihanu (Kompong Som or Sihanoukville)', 'PS', 1),
4605(569, 36, 'Pailin', 'PA', 1),
4606(570, 36, 'Keb', 'KB', 1),
4607(571, 36, 'Banteay Meanchey', 'BM', 1),
4608(572, 36, 'Battambang', 'BA', 1),
4609(573, 36, 'Kampong Cham', 'KM', 1),
4610(574, 36, 'Kampong Chhnang', 'KN', 1),
4611(575, 36, 'Kampong Speu', 'KU', 1),
4612(576, 36, 'Kampong Som', 'KO', 1),
4613(577, 36, 'Kampong Thom', 'KT', 1),
4614(578, 36, 'Kampot', 'KP', 1),
4615(579, 36, 'Kandal', 'KL', 1),
4616(580, 36, 'Kaoh Kong', 'KK', 1),
4617(581, 36, 'Kratie', 'KR', 1),
4618(582, 36, 'Mondul Kiri', 'MK', 1),
4619(583, 36, 'Oddar Meancheay', 'OM', 1),
4620(584, 36, 'Pursat', 'PU', 1),
4621(585, 36, 'Preah Vihear', 'PR', 1),
4622(586, 36, 'Prey Veng', 'PG', 1),
4623(587, 36, 'Ratanak Kiri', 'RK', 1),
4624(588, 36, 'Siemreap', 'SI', 1),
4625(589, 36, 'Stung Treng', 'ST', 1),
4626(590, 36, 'Svay Rieng', 'SR', 1),
4627(591, 36, 'Takeo', 'TK', 1),
4628(592, 37, 'Adamawa (Adamaoua)', 'ADA', 1),
4629(593, 37, 'Centre', 'CEN', 1),
4630(594, 37, 'East (Est)', 'EST', 1),
4631(595, 37, 'Extreme North (Extreme-Nord)', 'EXN', 1),
4632(596, 37, 'Littoral', 'LIT', 1),
4633(597, 37, 'North (Nord)', 'NOR', 1),
4634(598, 37, 'Northwest (Nord-Ouest)', 'NOT', 1),
4635(599, 37, 'West (Ouest)', 'OUE', 1),
4636(600, 37, 'South (Sud)', 'SUD', 1),
4637(601, 37, 'Southwest (Sud-Ouest).', 'SOU', 1),
4638(602, 38, 'Alberta', 'AB', 1),
4639(603, 38, 'British Columbia', 'BC', 1),
4640(604, 38, 'Manitoba', 'MB', 1),
4641(605, 38, 'New Brunswick', 'NB', 1),
4642(606, 38, 'Newfoundland and Labrador', 'NL', 1),
4643(607, 38, 'Northwest Territories', 'NT', 1),
4644(608, 38, 'Nova Scotia', 'NS', 1),
4645(609, 38, 'Nunavut', 'NU', 1),
4646(610, 38, 'Ontario', 'ON', 1),
4647(611, 38, 'Prince Edward Island', 'PE', 1),
4648(612, 38, 'Québec', 'QC', 1),
4649(613, 38, 'Saskatchewan', 'SK', 1),
4650(614, 38, 'Yukon Territory', 'YT', 1),
4651(615, 39, 'Boa Vista', 'BV', 1),
4652(616, 39, 'Brava', 'BR', 1),
4653(617, 39, 'Calheta de Sao Miguel', 'CS', 1),
4654(618, 39, 'Maio', 'MA', 1),
4655(619, 39, 'Mosteiros', 'MO', 1),
4656(620, 39, 'Paul', 'PA', 1),
4657(621, 39, 'Porto Novo', 'PN', 1),
4658(622, 39, 'Praia', 'PR', 1),
4659(623, 39, 'Ribeira Grande', 'RG', 1),
4660(624, 39, 'Sal', 'SL', 1),
4661(625, 39, 'Santa Catarina', 'CA', 1),
4662(626, 39, 'Santa Cruz', 'CR', 1),
4663(627, 39, 'Sao Domingos', 'SD', 1),
4664(628, 39, 'Sao Filipe', 'SF', 1),
4665(629, 39, 'Sao Nicolau', 'SN', 1),
4666(630, 39, 'Sao Vicente', 'SV', 1),
4667(631, 39, 'Tarrafal', 'TA', 1),
4668(632, 40, 'Creek', 'CR', 1),
4669(633, 40, 'Eastern', 'EA', 1),
4670(634, 40, 'Midland', 'ML', 1),
4671(635, 40, 'South Town', 'ST', 1),
4672(636, 40, 'Spot Bay', 'SP', 1),
4673(637, 40, 'Stake Bay', 'SK', 1),
4674(638, 40, 'West End', 'WD', 1),
4675(639, 40, 'Western', 'WN', 1),
4676(640, 41, 'Bamingui-Bangoran', 'BBA', 1),
4677(641, 41, 'Basse-Kotto', 'BKO', 1),
4678(642, 41, 'Haute-Kotto', 'HKO', 1),
4679(643, 41, 'Haut-Mbomou', 'HMB', 1),
4680(644, 41, 'Kemo', 'KEM', 1),
4681(645, 41, 'Lobaye', 'LOB', 1),
4682(646, 41, 'Mambere-KadeÔ', 'MKD', 1),
4683(647, 41, 'Mbomou', 'MBO', 1),
4684(648, 41, 'Nana-Mambere', 'NMM', 1),
4685(649, 41, 'Ombella-M''Poko', 'OMP', 1),
4686(650, 41, 'Ouaka', 'OUK', 1),
4687(651, 41, 'Ouham', 'OUH', 1),
4688(652, 41, 'Ouham-Pende', 'OPE', 1),
4689(653, 41, 'Vakaga', 'VAK', 1),
4690(654, 41, 'Nana-Grebizi', 'NGR', 1),
4691(655, 41, 'Sangha-Mbaere', 'SMB', 1),
4692(656, 41, 'Bangui', 'BAN', 1),
4693(657, 42, 'Batha', 'BA', 1),
4694(658, 42, 'Biltine', 'BI', 1),
4695(659, 42, 'Borkou-Ennedi-Tibesti', 'BE', 1),
4696(660, 42, 'Chari-Baguirmi', 'CB', 1),
4697(661, 42, 'Guera', 'GU', 1),
4698(662, 42, 'Kanem', 'KA', 1),
4699(663, 42, 'Lac', 'LA', 1),
4700(664, 42, 'Logone Occidental', 'LC', 1),
4701(665, 42, 'Logone Oriental', 'LR', 1),
4702(666, 42, 'Mayo-Kebbi', 'MK', 1),
4703(667, 42, 'Moyen-Chari', 'MC', 1),
4704(668, 42, 'Ouaddai', 'OU', 1),
4705(669, 42, 'Salamat', 'SA', 1),
4706(670, 42, 'Tandjile', 'TA', 1),
4707(671, 43, 'Aisen del General Carlos Ibanez', 'AI', 1),
4708(672, 43, 'Antofagasta', 'AN', 1),
4709(673, 43, 'Araucania', 'AR', 1),
4710(674, 43, 'Atacama', 'AT', 1),
4711(675, 43, 'Bio-Bio', 'BI', 1),
4712(676, 43, 'Coquimbo', 'CO', 1),
4713(677, 43, 'Libertador General Bernardo O''Hi', 'LI', 1),
4714(678, 43, 'Los Lagos', 'LL', 1),
4715(679, 43, 'Magallanes y de la Antartica Chi', 'MA', 1),
4716(680, 43, 'Maule', 'ML', 1),
4717(681, 43, 'Region Metropolitana', 'RM', 1),
4718(682, 43, 'Tarapaca', 'TA', 1),
4719(683, 43, 'Valparaiso', 'VS', 1),
4720(684, 44, 'Anhui', 'AN', 1),
4721(685, 44, 'Beijing', 'BE', 1),
4722(686, 44, 'Chongqing', 'CH', 1),
4723(687, 44, 'Fujian', 'FU', 1),
4724(688, 44, 'Gansu', 'GA', 1),
4725(689, 44, 'Guangdong', 'GU', 1),
4726(690, 44, 'Guangxi', 'GX', 1),
4727(691, 44, 'Guizhou', 'GZ', 1),
4728(692, 44, 'Hainan', 'HA', 1),
4729(693, 44, 'Hebei', 'HB', 1),
4730(694, 44, 'Heilongjiang', 'HL', 1),
4731(695, 44, 'Henan', 'HE', 1),
4732(696, 44, 'Hong Kong', 'HK', 1),
4733(697, 44, 'Hubei', 'HU', 1),
4734(698, 44, 'Hunan', 'HN', 1),
4735(699, 44, 'Inner Mongolia', 'IM', 1),
4736(700, 44, 'Jiangsu', 'JI', 1),
4737(701, 44, 'Jiangxi', 'JX', 1),
4738(702, 44, 'Jilin', 'JL', 1),
4739(703, 44, 'Liaoning', 'LI', 1),
4740(704, 44, 'Macau', 'MA', 1),
4741(705, 44, 'Ningxia', 'NI', 1),
4742(706, 44, 'Shaanxi', 'SH', 1),
4743(707, 44, 'Shandong', 'SA', 1),
4744(708, 44, 'Shanghai', 'SG', 1),
4745(709, 44, 'Shanxi', 'SX', 1),
4746(710, 44, 'Sichuan', 'SI', 1),
4747(711, 44, 'Tianjin', 'TI', 1),
4748(712, 44, 'Xinjiang', 'XI', 1),
4749(713, 44, 'Yunnan', 'YU', 1),
4750(714, 44, 'Zhejiang', 'ZH', 1),
4751(715, 46, 'Direction Island', 'D', 1),
4752(716, 46, 'Home Island', 'H', 1),
4753(717, 46, 'Horsburgh Island', 'O', 1),
4754(718, 46, 'South Island', 'S', 1),
4755(719, 46, 'West Island', 'W', 1),
4756(720, 47, 'Amazonas', 'AMZ', 1),
4757(721, 47, 'Antioquia', 'ANT', 1),
4758(722, 47, 'Arauca', 'ARA', 1),
4759(723, 47, 'Atlantico', 'ATL', 1),
4760(724, 47, 'Bogota D.C.', 'BDC', 1),
4761(725, 47, 'Bolivar', 'BOL', 1),
4762(726, 47, 'Boyaca', 'BOY', 1),
4763(727, 47, 'Caldas', 'CAL', 1),
4764(728, 47, 'Caqueta', 'CAQ', 1),
4765(729, 47, 'Casanare', 'CAS', 1),
4766(730, 47, 'Cauca', 'CAU', 1),
4767(731, 47, 'Cesar', 'CES', 1),
4768(732, 47, 'Choco', 'CHO', 1),
4769(733, 47, 'Cordoba', 'COR', 1),
4770(734, 47, 'Cundinamarca', 'CAM', 1),
4771(735, 47, 'Guainia', 'GNA', 1),
4772(736, 47, 'Guajira', 'GJR', 1),
4773(737, 47, 'Guaviare', 'GVR', 1),
4774(738, 47, 'Huila', 'HUI', 1),
4775(739, 47, 'Magdalena', 'MAG', 1),
4776(740, 47, 'Meta', 'MET', 1),
4777(741, 47, 'Narino', 'NAR', 1),
4778(742, 47, 'Norte de Santander', 'NDS', 1),
4779(743, 47, 'Putumayo', 'PUT', 1),
4780(744, 47, 'Quindio', 'QUI', 1),
4781(745, 47, 'Risaralda', 'RIS', 1),
4782(746, 47, 'San Andres y Providencia', 'SAP', 1),
4783(747, 47, 'Santander', 'SAN', 1),
4784(748, 47, 'Sucre', 'SUC', 1),
4785(749, 47, 'Tolima', 'TOL', 1),
4786(750, 47, 'Valle del Cauca', 'VDC', 1),
4787(751, 47, 'Vaupes', 'VAU', 1),
4788(752, 47, 'Vichada', 'VIC', 1),
4789(753, 48, 'Grande Comore', 'G', 1),
4790(754, 48, 'Anjouan', 'A', 1),
4791(755, 48, 'Moheli', 'M', 1),
4792(756, 49, 'Bouenza', 'BO', 1),
4793(757, 49, 'Brazzaville', 'BR', 1),
4794(758, 49, 'Cuvette', 'CU', 1),
4795(759, 49, 'Cuvette-Ouest', 'CO', 1),
4796(760, 49, 'Kouilou', 'KO', 1),
4797(761, 49, 'Lekoumou', 'LE', 1),
4798(762, 49, 'Likouala', 'LI', 1),
4799(763, 49, 'Niari', 'NI', 1),
4800(764, 49, 'Plateaux', 'PL', 1),
4801(765, 49, 'Pool', 'PO', 1),
4802(766, 49, 'Sangha', 'SA', 1),
4803(767, 50, 'Pukapuka', 'PU', 1),
4804(768, 50, 'Rakahanga', 'RK', 1),
4805(769, 50, 'Manihiki', 'MK', 1),
4806(770, 50, 'Penrhyn', 'PE', 1),
4807(771, 50, 'Nassau Island', 'NI', 1),
4808(772, 50, 'Surwarrow', 'SU', 1),
4809(773, 50, 'Palmerston', 'PA', 1),
4810(774, 50, 'Aitutaki', 'AI', 1),
4811(775, 50, 'Manuae', 'MA', 1),
4812(776, 50, 'Takutea', 'TA', 1),
4813(777, 50, 'Mitiaro', 'MT', 1),
4814(778, 50, 'Atiu', 'AT', 1),
4815(779, 50, 'Mauke', 'MU', 1),
4816(780, 50, 'Rarotonga', 'RR', 1),
4817(781, 50, 'Mangaia', 'MG', 1),
4818(782, 51, 'Alajuela', 'AL', 1),
4819(783, 51, 'Cartago', 'CA', 1),
4820(784, 51, 'Guanacaste', 'GU', 1),
4821(785, 51, 'Heredia', 'HE', 1),
4822(786, 51, 'Limon', 'LI', 1),
4823(787, 51, 'Puntarenas', 'PU', 1),
4824(788, 51, 'San Jose', 'SJ', 1),
4825(789, 52, 'Abengourou', 'ABE', 1),
4826(790, 52, 'Abidjan', 'ABI', 1),
4827(791, 52, 'Aboisso', 'ABO', 1),
4828(792, 52, 'Adiake', 'ADI', 1),
4829(793, 52, 'Adzope', 'ADZ', 1),
4830(794, 52, 'Agboville', 'AGB', 1),
4831(795, 52, 'Agnibilekrou', 'AGN', 1),
4832(796, 52, 'Alepe', 'ALE', 1),
4833(797, 52, 'Bocanda', 'BOC', 1),
4834(798, 52, 'Bangolo', 'BAN', 1),
4835(799, 52, 'Beoumi', 'BEO', 1),
4836(800, 52, 'Biankouma', 'BIA', 1),
4837(801, 52, 'Bondoukou', 'BDK', 1),
4838(802, 52, 'Bongouanou', 'BGN', 1),
4839(803, 52, 'Bouafle', 'BFL', 1),
4840(804, 52, 'Bouake', 'BKE', 1),
4841(805, 52, 'Bouna', 'BNA', 1),
4842(806, 52, 'Boundiali', 'BDL', 1),
4843(807, 52, 'Dabakala', 'DKL', 1),
4844(808, 52, 'Dabou', 'DBU', 1),
4845(809, 52, 'Daloa', 'DAL', 1),
4846(810, 52, 'Danane', 'DAN', 1),
4847(811, 52, 'Daoukro', 'DAO', 1),
4848(812, 52, 'Dimbokro', 'DIM', 1),
4849(813, 52, 'Divo', 'DIV', 1),
4850(814, 52, 'Duekoue', 'DUE', 1),
4851(815, 52, 'Ferkessedougou', 'FER', 1),
4852(816, 52, 'Gagnoa', 'GAG', 1),
4853(817, 52, 'Grand-Bassam', 'GBA', 1),
4854(818, 52, 'Grand-Lahou', 'GLA', 1),
4855(819, 52, 'Guiglo', 'GUI', 1),
4856(820, 52, 'Issia', 'ISS', 1),
4857(821, 52, 'Jacqueville', 'JAC', 1),
4858(822, 52, 'Katiola', 'KAT', 1),
4859(823, 52, 'Korhogo', 'KOR', 1),
4860(824, 52, 'Lakota', 'LAK', 1),
4861(825, 52, 'Man', 'MAN', 1),
4862(826, 52, 'Mankono', 'MKN', 1),
4863(827, 52, 'Mbahiakro', 'MBA', 1),
4864(828, 52, 'Odienne', 'ODI', 1),
4865(829, 52, 'Oume', 'OUM', 1),
4866(830, 52, 'Sakassou', 'SAK', 1),
4867(831, 52, 'San-Pedro', 'SPE', 1),
4868(832, 52, 'Sassandra', 'SAS', 1),
4869(833, 52, 'Seguela', 'SEG', 1),
4870(834, 52, 'Sinfra', 'SIN', 1),
4871(835, 52, 'Soubre', 'SOU', 1),
4872(836, 52, 'Tabou', 'TAB', 1),
4873(837, 52, 'Tanda', 'TAN', 1),
4874(838, 52, 'Tiebissou', 'TIE', 1),
4875(839, 52, 'Tingrela', 'TIN', 1),
4876(840, 52, 'Tiassale', 'TIA', 1),
4877(841, 52, 'Touba', 'TBA', 1),
4878(842, 52, 'Toulepleu', 'TLP', 1),
4879(843, 52, 'Toumodi', 'TMD', 1),
4880(844, 52, 'Vavoua', 'VAV', 1),
4881(845, 52, 'Yamoussoukro', 'YAM', 1),
4882(846, 52, 'Zuenoula', 'ZUE', 1),
4883(847, 53, 'Bjelovar-Bilogora', 'BB', 1),
4884(848, 53, 'City of Zagreb', 'CZ', 1),
4885(849, 53, 'Dubrovnik-Neretva', 'DN', 1),
4886(850, 53, 'Istra', 'IS', 1),
4887(851, 53, 'Karlovac', 'KA', 1),
4888(852, 53, 'Koprivnica-Krizevci', 'KK', 1),
4889(853, 53, 'Krapina-Zagorje', 'KZ', 1),
4890(854, 53, 'Lika-Senj', 'LS', 1),
4891(855, 53, 'Medimurje', 'ME', 1),
4892(856, 53, 'Osijek-Baranja', 'OB', 1),
4893(857, 53, 'Pozega-Slavonia', 'PS', 1),
4894(858, 53, 'Primorje-Gorski Kotar', 'PG', 1),
4895(859, 53, 'Sibenik', 'SI', 1),
4896(860, 53, 'Sisak-Moslavina', 'SM', 1),
4897(861, 53, 'Slavonski Brod-Posavina', 'SB', 1),
4898(862, 53, 'Split-Dalmatia', 'SD', 1),
4899(863, 53, 'Varazdin', 'VA', 1),
4900(864, 53, 'Virovitica-Podravina', 'VP', 1),
4901(865, 53, 'Vukovar-Srijem', 'VS', 1),
4902(866, 53, 'Zadar-Knin', 'ZK', 1),
4903(867, 53, 'Zagreb', 'ZA', 1),
4904(868, 54, 'Camaguey', 'CA', 1),
4905(869, 54, 'Ciego de Avila', 'CD', 1),
4906(870, 54, 'Cienfuegos', 'CI', 1),
4907(871, 54, 'Ciudad de La Habana', 'CH', 1),
4908(872, 54, 'Granma', 'GR', 1),
4909(873, 54, 'Guantanamo', 'GU', 1),
4910(874, 54, 'Holguin', 'HO', 1),
4911(875, 54, 'Isla de la Juventud', 'IJ', 1),
4912(876, 54, 'La Habana', 'LH', 1),
4913(877, 54, 'Las Tunas', 'LT', 1),
4914(878, 54, 'Matanzas', 'MA', 1),
4915(879, 54, 'Pinar del Rio', 'PR', 1),
4916(880, 54, 'Sancti Spiritus', 'SS', 1),
4917(881, 54, 'Santiago de Cuba', 'SC', 1),
4918(882, 54, 'Villa Clara', 'VC', 1),
4919(883, 55, 'Famagusta', 'F', 1),
4920(884, 55, 'Kyrenia', 'K', 1),
4921(885, 55, 'Larnaca', 'A', 1),
4922(886, 55, 'Limassol', 'I', 1),
4923(887, 55, 'Nicosia', 'N', 1),
4924(888, 55, 'Paphos', 'P', 1),
4925(889, 56, 'Ústecký', 'U', 1),
4926(890, 56, 'JihoÄeský', 'C', 1),
4927(891, 56, 'Jihomoravský', 'B', 1),
4928(892, 56, 'Karlovarský', 'K', 1),
4929(893, 56, 'Královehradecký', 'H', 1),
4930(894, 56, 'Liberecký', 'L', 1),
4931(895, 56, 'Moravskoslezský', 'T', 1),
4932(896, 56, 'Olomoucký', 'M', 1),
4933(897, 56, 'Pardubický', 'E', 1),
4934(898, 56, 'Plzeňský', 'P', 1),
4935(899, 56, 'Praha', 'A', 1),
4936(900, 56, 'StÅ™edoÄeský', 'S', 1),
4937(901, 56, 'VysoÄina', 'J', 1),
4938(902, 56, 'ZlÃnský', 'Z', 1),
4939(903, 57, 'Arhus', 'AR', 1),
4940(904, 57, 'Bornholm', 'BH', 1),
4941(905, 57, 'Copenhagen', 'CO', 1),
4942(906, 57, 'Faroe Islands', 'FO', 1),
4943(907, 57, 'Frederiksborg', 'FR', 1),
4944(908, 57, 'Fyn', 'FY', 1),
4945(909, 57, 'Kobenhavn', 'KO', 1),
4946(910, 57, 'Nordjylland', 'NO', 1),
4947(911, 57, 'Ribe', 'RI', 1),
4948(912, 57, 'Ringkobing', 'RK', 1),
4949(913, 57, 'Roskilde', 'RO', 1),
4950(914, 57, 'Sonderjylland', 'SO', 1),
4951(915, 57, 'Storstrom', 'ST', 1),
4952(916, 57, 'Vejle', 'VK', 1),
4953(917, 57, 'Vestjælland', 'VJ', 1),
4954(918, 57, 'Viborg', 'VB', 1),
4955(919, 58, '''Ali Sabih', 'S', 1),
4956(920, 58, 'Dikhil', 'K', 1),
4957(921, 58, 'Djibouti', 'J', 1),
4958(922, 58, 'Obock', 'O', 1),
4959(923, 58, 'Tadjoura', 'T', 1),
4960(924, 59, 'Saint Andrew Parish', 'AND', 1),
4961(925, 59, 'Saint David Parish', 'DAV', 1),
4962(926, 59, 'Saint George Parish', 'GEO', 1),
4963(927, 59, 'Saint John Parish', 'JOH', 1),
4964(928, 59, 'Saint Joseph Parish', 'JOS', 1),
4965(929, 59, 'Saint Luke Parish', 'LUK', 1),
4966(930, 59, 'Saint Mark Parish', 'MAR', 1),
4967(931, 59, 'Saint Patrick Parish', 'PAT', 1),
4968(932, 59, 'Saint Paul Parish', 'PAU', 1),
4969(933, 59, 'Saint Peter Parish', 'PET', 1),
4970(934, 60, 'Distrito Nacional', 'DN', 1),
4971(935, 60, 'Azua', 'AZ', 1),
4972(936, 60, 'Baoruco', 'BC', 1),
4973(937, 60, 'Barahona', 'BH', 1),
4974(938, 60, 'Dajabon', 'DJ', 1),
4975(939, 60, 'Duarte', 'DU', 1),
4976(940, 60, 'Elias Pina', 'EL', 1),
4977(941, 60, 'El Seybo', 'SY', 1),
4978(942, 60, 'Espaillat', 'ET', 1),
4979(943, 60, 'Hato Mayor', 'HM', 1),
4980(944, 60, 'Independencia', 'IN', 1),
4981(945, 60, 'La Altagracia', 'AL', 1),
4982(946, 60, 'La Romana', 'RO', 1),
4983(947, 60, 'La Vega', 'VE', 1),
4984(948, 60, 'Maria Trinidad Sanchez', 'MT', 1),
4985(949, 60, 'Monsenor Nouel', 'MN', 1),
4986(950, 60, 'Monte Cristi', 'MC', 1),
4987(951, 60, 'Monte Plata', 'MP', 1),
4988(952, 60, 'Pedernales', 'PD', 1),
4989(953, 60, 'Peravia (Bani)', 'PR', 1),
4990(954, 60, 'Puerto Plata', 'PP', 1),
4991(955, 60, 'Salcedo', 'SL', 1),
4992(956, 60, 'Samana', 'SM', 1),
4993(957, 60, 'Sanchez Ramirez', 'SH', 1),
4994(958, 60, 'San Cristobal', 'SC', 1),
4995(959, 60, 'San Jose de Ocoa', 'JO', 1),
4996(960, 60, 'San Juan', 'SJ', 1),
4997(961, 60, 'San Pedro de Macoris', 'PM', 1),
4998(962, 60, 'Santiago', 'SA', 1),
4999(963, 60, 'Santiago Rodriguez', 'ST', 1),
5000(964, 60, 'Santo Domingo', 'SD', 1),
5001(965, 60, 'Valverde', 'VA', 1),
5002(966, 61, 'Aileu', 'AL', 1),
5003(967, 61, 'Ainaro', 'AN', 1),
5004(968, 61, 'Baucau', 'BA', 1),
5005(969, 61, 'Bobonaro', 'BO', 1),
5006(970, 61, 'Cova Lima', 'CO', 1),
5007(971, 61, 'Dili', 'DI', 1),
5008(972, 61, 'Ermera', 'ER', 1),
5009(973, 61, 'Lautem', 'LA', 1),
5010(974, 61, 'Liquica', 'LI', 1),
5011(975, 61, 'Manatuto', 'MT', 1),
5012(976, 61, 'Manufahi', 'MF', 1),
5013(977, 61, 'Oecussi', 'OE', 1),
5014(978, 61, 'Viqueque', 'VI', 1),
5015(979, 62, 'Azuay', 'AZU', 1),
5016(980, 62, 'Bolivar', 'BOL', 1),
5017(981, 62, 'Cañar', 'CAN', 1),
5018(982, 62, 'Carchi', 'CAR', 1),
5019(983, 62, 'Chimborazo', 'CHI', 1),
5020(984, 62, 'Cotopaxi', 'COT', 1),
5021(985, 62, 'El Oro', 'EOR', 1),
5022(986, 62, 'Esmeraldas', 'ESM', 1),
5023(987, 62, 'Galápagos', 'GPS', 1),
5024(988, 62, 'Guayas', 'GUA', 1),
5025(989, 62, 'Imbabura', 'IMB', 1),
5026(990, 62, 'Loja', 'LOJ', 1),
5027(991, 62, 'Los Rios', 'LRO', 1),
5028(992, 62, 'Manabí', 'MAN', 1),
5029(993, 62, 'Morona Santiago', 'MSA', 1),
5030(994, 62, 'Napo', 'NAP', 1),
5031(995, 62, 'Orellana', 'ORE', 1),
5032(996, 62, 'Pastaza', 'PAS', 1),
5033(997, 62, 'Pichincha', 'PIC', 1),
5034(998, 62, 'Sucumbíos', 'SUC', 1),
5035(999, 62, 'Tungurahua', 'TUN', 1),
5036(1000, 62, 'Zamora Chinchipe', 'ZCH', 1),
5037(1001, 63, 'Ad Daqahliyah', 'DHY', 1),
5038(1002, 63, 'Al Bahr al Ahmar', 'BAM', 1),
5039(1003, 63, 'Al Buhayrah', 'BHY', 1),
5040(1004, 63, 'Al Fayyum', 'FYM', 1),
5041(1005, 63, 'Al Gharbiyah', 'GBY', 1),
5042(1006, 63, 'Al Iskandariyah', 'IDR', 1),
5043(1007, 63, 'Al Isma''iliyah', 'IML', 1),
5044(1008, 63, 'Al Jizah', 'JZH', 1),
5045(1009, 63, 'Al Minufiyah', 'MFY', 1),
5046(1010, 63, 'Al Minya', 'MNY', 1),
5047(1011, 63, 'Al Qahirah', 'QHR', 1),
5048(1012, 63, 'Al Qalyubiyah', 'QLY', 1),
5049(1013, 63, 'Al Wadi al Jadid', 'WJD', 1),
5050(1014, 63, 'Ash Sharqiyah', 'SHQ', 1),
5051(1015, 63, 'As Suways', 'SWY', 1),
5052(1016, 63, 'Aswan', 'ASW', 1),
5053(1017, 63, 'Asyut', 'ASY', 1),
5054(1018, 63, 'Bani Suwayf', 'BSW', 1),
5055(1019, 63, 'Bur Sa''id', 'BSD', 1),
5056(1020, 63, 'Dumyat', 'DMY', 1),
5057(1021, 63, 'Janub Sina''', 'JNS', 1),
5058(1022, 63, 'Kafr ash Shaykh', 'KSH', 1),
5059(1023, 63, 'Matruh', 'MAT', 1),
5060(1024, 63, 'Qina', 'QIN', 1),
5061(1025, 63, 'Shamal Sina''', 'SHS', 1),
5062(1026, 63, 'Suhaj', 'SUH', 1),
5063(1027, 64, 'Ahuachapan', 'AH', 1),
5064(1028, 64, 'Cabanas', 'CA', 1),
5065(1029, 64, 'Chalatenango', 'CH', 1),
5066(1030, 64, 'Cuscatlan', 'CU', 1),
5067(1031, 64, 'La Libertad', 'LB', 1),
5068(1032, 64, 'La Paz', 'PZ', 1),
5069(1033, 64, 'La Union', 'UN', 1),
5070(1034, 64, 'Morazan', 'MO', 1),
5071(1035, 64, 'San Miguel', 'SM', 1),
5072(1036, 64, 'San Salvador', 'SS', 1),
5073(1037, 64, 'San Vicente', 'SV', 1),
5074(1038, 64, 'Santa Ana', 'SA', 1),
5075(1039, 64, 'Sonsonate', 'SO', 1),
5076(1040, 64, 'Usulutan', 'US', 1),
5077(1041, 65, 'Provincia Annobon', 'AN', 1),
5078(1042, 65, 'Provincia Bioko Norte', 'BN', 1),
5079(1043, 65, 'Provincia Bioko Sur', 'BS', 1),
5080(1044, 65, 'Provincia Centro Sur', 'CS', 1),
5081(1045, 65, 'Provincia Kie-Ntem', 'KN', 1),
5082(1046, 65, 'Provincia Litoral', 'LI', 1),
5083(1047, 65, 'Provincia Wele-Nzas', 'WN', 1),
5084(1048, 66, 'Central (Maekel)', 'MA', 1),
5085(1049, 66, 'Anseba (Keren)', 'KE', 1),
5086(1050, 66, 'Southern Red Sea (Debub-Keih-Bahri)', 'DK', 1),
5087(1051, 66, 'Northern Red Sea (Semien-Keih-Bahri)', 'SK', 1),
5088(1052, 66, 'Southern (Debub)', 'DE', 1),
5089(1053, 66, 'Gash-Barka (Barentu)', 'BR', 1),
5090(1054, 67, 'Harjumaa (Tallinn)', 'HA', 1),
5091(1055, 67, 'Hiiumaa (Kardla)', 'HI', 1),
5092(1056, 67, 'Ida-Virumaa (Johvi)', 'IV', 1),
5093(1057, 67, 'Jarvamaa (Paide)', 'JA', 1),
5094(1058, 67, 'Jogevamaa (Jogeva)', 'JO', 1),
5095(1059, 67, 'Laane-Virumaa (Rakvere)', 'LV', 1),
5096(1060, 67, 'Laanemaa (Haapsalu)', 'LA', 1),
5097(1061, 67, 'Parnumaa (Parnu)', 'PA', 1),
5098(1062, 67, 'Polvamaa (Polva)', 'PO', 1),
5099(1063, 67, 'Raplamaa (Rapla)', 'RA', 1),
5100(1064, 67, 'Saaremaa (Kuessaare)', 'SA', 1),
5101(1065, 67, 'Tartumaa (Tartu)', 'TA', 1),
5102(1066, 67, 'Valgamaa (Valga)', 'VA', 1),
5103(1067, 67, 'Viljandimaa (Viljandi)', 'VI', 1),
5104(1068, 67, 'Vorumaa (Voru)', 'VO', 1),
5105(1069, 68, 'Afar', 'AF', 1),
5106(1070, 68, 'Amhara', 'AH', 1),
5107(1071, 68, 'Benishangul-Gumaz', 'BG', 1),
5108(1072, 68, 'Gambela', 'GB', 1),
5109(1073, 68, 'Hariai', 'HR', 1),
5110(1074, 68, 'Oromia', 'OR', 1),
5111(1075, 68, 'Somali', 'SM', 1),
5112(1076, 68, 'Southern Nations - Nationalities and Peoples Region', 'SN', 1),
5113(1077, 68, 'Tigray', 'TG', 1),
5114(1078, 68, 'Addis Ababa', 'AA', 1),
5115(1079, 68, 'Dire Dawa', 'DD', 1),
5116(1080, 71, 'Central Division', 'C', 1),
5117(1081, 71, 'Northern Division', 'N', 1),
5118(1082, 71, 'Eastern Division', 'E', 1),
5119(1083, 71, 'Western Division', 'W', 1),
5120(1084, 71, 'Rotuma', 'R', 1),
5121(1085, 72, 'Ahvenanmaan Laani', 'AL', 1),
5122(1086, 72, 'Etela-Suomen Laani', 'ES', 1),
5123(1087, 72, 'Ita-Suomen Laani', 'IS', 1),
5124(1088, 72, 'Lansi-Suomen Laani', 'LS', 1),
5125(1089, 72, 'Lapin Lanani', 'LA', 1),
5126(1090, 72, 'Oulun Laani', 'OU', 1),
5127(1114, 74, 'Ain', '01', 1),
5128(1115, 74, 'Aisne', '02', 1),
5129(1116, 74, 'Allier', '03', 1),
5130(1117, 74, 'Alpes de Haute Provence', '04', 1),
5131(1118, 74, 'Hautes-Alpes', '05', 1),
5132(1119, 74, 'Alpes Maritimes', '06', 1),
5133(1120, 74, 'Ardèche', '07', 1),
5134(1121, 74, 'Ardennes', '08', 1),
5135(1122, 74, 'Ariège', '09', 1),
5136(1123, 74, 'Aube', '10', 1),
5137(1124, 74, 'Aude', '11', 1),
5138(1125, 74, 'Aveyron', '12', 1),
5139(1126, 74, 'Bouches du Rhône', '13', 1),
5140(1127, 74, 'Calvados', '14', 1),
5141(1128, 74, 'Cantal', '15', 1),
5142(1129, 74, 'Charente', '16', 1),
5143(1130, 74, 'Charente Maritime', '17', 1),
5144(1131, 74, 'Cher', '18', 1),
5145(1132, 74, 'Corrèze', '19', 1),
5146(1133, 74, 'Corse du Sud', '2A', 1),
5147(1134, 74, 'Haute Corse', '2B', 1),
5148(1135, 74, 'Côte d'or', '21', 1),
5149(1136, 74, 'Côtes d'Armor', '22', 1),
5150(1137, 74, 'Creuse', '23', 1),
5151(1138, 74, 'Dordogne', '24', 1),
5152(1139, 74, 'Doubs', '25', 1),
5153(1140, 74, 'Drôme', '26', 1),
5154(1141, 74, 'Eure', '27', 1),
5155(1142, 74, 'Eure et Loir', '28', 1),
5156(1143, 74, 'Finistère', '29', 1),
5157(1144, 74, 'Gard', '30', 1),
5158(1145, 74, 'Haute Garonne', '31', 1),
5159(1146, 74, 'Gers', '32', 1),
5160(1147, 74, 'Gironde', '33', 1),
5161(1148, 74, 'Hérault', '34', 1),
5162(1149, 74, 'Ille et Vilaine', '35', 1),
5163(1150, 74, 'Indre', '36', 1),
5164(1151, 74, 'Indre et Loire', '37', 1),
5165(1152, 74, 'Isére', '38', 1),
5166(1153, 74, 'Jura', '39', 1),
5167(1154, 74, 'Landes', '40', 1),
5168(1155, 74, 'Loir et Cher', '41', 1),
5169(1156, 74, 'Loire', '42', 1),
5170(1157, 74, 'Haute Loire', '43', 1),
5171(1158, 74, 'Loire Atlantique', '44', 1),
5172(1159, 74, 'Loiret', '45', 1),
5173(1160, 74, 'Lot', '46', 1),
5174(1161, 74, 'Lot et Garonne', '47', 1),
5175(1162, 74, 'Lozère', '48', 1),
5176(1163, 74, 'Maine et Loire', '49', 1),
5177(1164, 74, 'Manche', '50', 1),
5178(1165, 74, 'Marne', '51', 1),
5179(1166, 74, 'Haute Marne', '52', 1),
5180(1167, 74, 'Mayenne', '53', 1),
5181(1168, 74, 'Meurthe et Moselle', '54', 1),
5182(1169, 74, 'Meuse', '55', 1),
5183(1170, 74, 'Morbihan', '56', 1),
5184(1171, 74, 'Moselle', '57', 1),
5185(1172, 74, 'Nièvre', '58', 1),
5186(1173, 74, 'Nord', '59', 1),
5187(1174, 74, 'Oise', '60', 1),
5188(1175, 74, 'Orne', '61', 1),
5189(1176, 74, 'Pas de Calais', '62', 1),
5190(1177, 74, 'Puy de Dôme', '63', 1),
5191(1178, 74, 'Pyrénées Atlantiques', '64', 1),
5192(1179, 74, 'Hautes Pyrénées', '65', 1),
5193(1180, 74, 'Pyrénées Orientales', '66', 1),
5194(1181, 74, 'Bas Rhin', '67', 1),
5195(1182, 74, 'Haut Rhin', '68', 1),
5196(1183, 74, 'Rhône', '69', 1),
5197(1184, 74, 'Haute Saône', '70', 1),
5198(1185, 74, 'Saône et Loire', '71', 1),
5199(1186, 74, 'Sarthe', '72', 1),
5200(1187, 74, 'Savoie', '73', 1),
5201(1188, 74, 'Haute Savoie', '74', 1),
5202(1189, 74, 'Paris', '75', 1),
5203(1190, 74, 'Seine Maritime', '76', 1),
5204(1191, 74, 'Seine et Marne', '77', 1),
5205(1192, 74, 'Yvelines', '78', 1),
5206(1193, 74, 'Deux Sèvres', '79', 1),
5207(1194, 74, 'Somme', '80', 1),
5208(1195, 74, 'Tarn', '81', 1),
5209(1196, 74, 'Tarn et Garonne', '82', 1),
5210(1197, 74, 'Var', '83', 1),
5211(1198, 74, 'Vaucluse', '84', 1),
5212(1199, 74, 'Vendée', '85', 1),
5213(1200, 74, 'Vienne', '86', 1),
5214(1201, 74, 'Haute Vienne', '87', 1),
5215(1202, 74, 'Vosges', '88', 1),
5216(1203, 74, 'Yonne', '89', 1),
5217(1204, 74, 'Territoire de Belfort', '90', 1),
5218(1205, 74, 'Essonne', '91', 1),
5219(1206, 74, 'Hauts de Seine', '92', 1),
5220(1207, 74, 'Seine St-Denis', '93', 1),
5221(1208, 74, 'Val de Marne', '94', 1),
5222(1209, 74, 'Val d''Oise', '95', 1),
5223(1210, 76, 'Archipel des Marquises', 'M', 1),
5224(1211, 76, 'Archipel des Tuamotu', 'T', 1),
5225(1212, 76, 'Archipel des Tubuai', 'I', 1),
5226(1213, 76, 'Iles du Vent', 'V', 1),
5227(1214, 76, 'Iles Sous-le-Vent', 'S', 1),
5228(1215, 77, 'Iles Crozet', 'C', 1),
5229(1216, 77, 'Iles Kerguelen', 'K', 1),
5230(1217, 77, 'Ile Amsterdam', 'A', 1),
5231(1218, 77, 'Ile Saint-Paul', 'P', 1),
5232(1219, 77, 'Adelie Land', 'D', 1),
5233(1220, 78, 'Estuaire', 'ES', 1),
5234(1221, 78, 'Haut-Ogooue', 'HO', 1),
5235(1222, 78, 'Moyen-Ogooue', 'MO', 1),
5236(1223, 78, 'Ngounie', 'NG', 1),
5237(1224, 78, 'Nyanga', 'NY', 1),
5238(1225, 78, 'Ogooue-Ivindo', 'OI', 1),
5239(1226, 78, 'Ogooue-Lolo', 'OL', 1),
5240(1227, 78, 'Ogooue-Maritime', 'OM', 1),
5241(1228, 78, 'Woleu-Ntem', 'WN', 1),
5242(1229, 79, 'Banjul', 'BJ', 1),
5243(1230, 79, 'Basse', 'BS', 1),
5244(1231, 79, 'Brikama', 'BR', 1),
5245(1232, 79, 'Janjangbure', 'JA', 1),
5246(1233, 79, 'Kanifeng', 'KA', 1),
5247(1234, 79, 'Kerewan', 'KE', 1),
5248(1235, 79, 'Kuntaur', 'KU', 1),
5249(1236, 79, 'Mansakonko', 'MA', 1),
5250(1237, 79, 'Lower River', 'LR', 1),
5251(1238, 79, 'Central River', 'CR', 1),
5252(1239, 79, 'North Bank', 'NB', 1),
5253(1240, 79, 'Upper River', 'UR', 1),
5254(1241, 79, 'Western', 'WE', 1),
5255(1242, 80, 'Abkhazia', 'AB', 1),
5256(1243, 80, 'Ajaria', 'AJ', 1),
5257(1244, 80, 'Tbilisi', 'TB', 1),
5258(1245, 80, 'Guria', 'GU', 1),
5259(1246, 80, 'Imereti', 'IM', 1),
5260(1247, 80, 'Kakheti', 'KA', 1),
5261(1248, 80, 'Kvemo Kartli', 'KK', 1),
5262(1249, 80, 'Mtskheta-Mtianeti', 'MM', 1),
5263(1250, 80, 'Racha Lechkhumi and Kvemo Svanet', 'RL', 1),
5264(1251, 80, 'Samegrelo-Zemo Svaneti', 'SZ', 1),
5265(1252, 80, 'Samtskhe-Javakheti', 'SJ', 1),
5266(1253, 80, 'Shida Kartli', 'SK', 1),
5267(1254, 81, 'Baden-Württemberg', 'BAW', 1),
5268(1255, 81, 'Bayern', 'BAY', 1),
5269(1256, 81, 'Berlin', 'BER', 1),
5270(1257, 81, 'Brandenburg', 'BRG', 1),
5271(1258, 81, 'Bremen', 'BRE', 1),
5272(1259, 81, 'Hamburg', 'HAM', 1),
5273(1260, 81, 'Hessen', 'HES', 1),
5274(1261, 81, 'Mecklenburg-Vorpommern', 'MEC', 1),
5275(1262, 81, 'Niedersachsen', 'NDS', 1),
5276(1263, 81, 'Nordrhein-Westfalen', 'NRW', 1),
5277(1264, 81, 'Rheinland-Pfalz', 'RHE', 1),
5278(1265, 81, 'Saarland', 'SAR', 1),
5279(1266, 81, 'Sachsen', 'SAS', 1),
5280(1267, 81, 'Sachsen-Anhalt', 'SAC', 1),
5281(1268, 81, 'Schleswig-Holstein', 'SCN', 1),
5282(1269, 81, 'Thüringen', 'THE', 1),
5283(1270, 82, 'Ashanti Region', 'AS', 1),
5284(1271, 82, 'Brong-Ahafo Region', 'BA', 1),
5285(1272, 82, 'Central Region', 'CE', 1),
5286(1273, 82, 'Eastern Region', 'EA', 1),
5287(1274, 82, 'Greater Accra Region', 'GA', 1),
5288(1275, 82, 'Northern Region', 'NO', 1),
5289(1276, 82, 'Upper East Region', 'UE', 1),
5290(1277, 82, 'Upper West Region', 'UW', 1),
5291(1278, 82, 'Volta Region', 'VO', 1),
5292(1279, 82, 'Western Region', 'WE', 1),
5293(1280, 84, 'Attica', 'AT', 1),
5294(1281, 84, 'Central Greece', 'CN', 1),
5295(1282, 84, 'Central Macedonia', 'CM', 1),
5296(1283, 84, 'Crete', 'CR', 1),
5297(1284, 84, 'East Macedonia and Thrace', 'EM', 1),
5298(1285, 84, 'Epirus', 'EP', 1),
5299(1286, 84, 'Ionian Islands', 'II', 1),
5300(1287, 84, 'North Aegean', 'NA', 1),
5301(1288, 84, 'Peloponnesos', 'PP', 1),
5302(1289, 84, 'South Aegean', 'SA', 1),
5303(1290, 84, 'Thessaly', 'TH', 1),
5304(1291, 84, 'West Greece', 'WG', 1),
5305(1292, 84, 'West Macedonia', 'WM', 1),
5306(1293, 85, 'Avannaa', 'A', 1),
5307(1294, 85, 'Tunu', 'T', 1),
5308(1295, 85, 'Kitaa', 'K', 1),
5309(1296, 86, 'Saint Andrew', 'A', 1),
5310(1297, 86, 'Saint David', 'D', 1),
5311(1298, 86, 'Saint George', 'G', 1),
5312(1299, 86, 'Saint John', 'J', 1),
5313(1300, 86, 'Saint Mark', 'M', 1),
5314(1301, 86, 'Saint Patrick', 'P', 1),
5315(1302, 86, 'Carriacou', 'C', 1),
5316(1303, 86, 'Petit Martinique', 'Q', 1),
5317(1304, 89, 'Alta Verapaz', 'AV', 1),
5318(1305, 89, 'Baja Verapaz', 'BV', 1),
5319(1306, 89, 'Chimaltenango', 'CM', 1),
5320(1307, 89, 'Chiquimula', 'CQ', 1),
5321(1308, 89, 'El Peten', 'PE', 1),
5322(1309, 89, 'El Progreso', 'PR', 1),
5323(1310, 89, 'El Quiche', 'QC', 1),
5324(1311, 89, 'Escuintla', 'ES', 1),
5325(1312, 89, 'Guatemala', 'GU', 1),
5326(1313, 89, 'Huehuetenango', 'HU', 1),
5327(1314, 89, 'Izabal', 'IZ', 1),
5328(1315, 89, 'Jalapa', 'JA', 1),
5329(1316, 89, 'Jutiapa', 'JU', 1),
5330(1317, 89, 'Quetzaltenango', 'QZ', 1),
5331(1318, 89, 'Retalhuleu', 'RE', 1),
5332(1319, 89, 'Sacatepequez', 'ST', 1),
5333(1320, 89, 'San Marcos', 'SM', 1),
5334(1321, 89, 'Santa Rosa', 'SR', 1),
5335(1322, 89, 'Solola', 'SO', 1),
5336(1323, 89, 'Suchitepequez', 'SU', 1),
5337(1324, 89, 'Totonicapan', 'TO', 1),
5338(1325, 89, 'Zacapa', 'ZA', 1),
5339(1326, 90, 'Conakry', 'CNK', 1),
5340(1327, 90, 'Beyla', 'BYL', 1),
5341(1328, 90, 'Boffa', 'BFA', 1),
5342(1329, 90, 'Boke', 'BOK', 1),
5343(1330, 90, 'Coyah', 'COY', 1),
5344(1331, 90, 'Dabola', 'DBL', 1),
5345(1332, 90, 'Dalaba', 'DLB', 1),
5346(1333, 90, 'Dinguiraye', 'DGR', 1),
5347(1334, 90, 'Dubreka', 'DBR', 1),
5348(1335, 90, 'Faranah', 'FRN', 1),
5349(1336, 90, 'Forecariah', 'FRC', 1),
5350(1337, 90, 'Fria', 'FRI', 1),
5351(1338, 90, 'Gaoual', 'GAO', 1),
5352(1339, 90, 'Gueckedou', 'GCD', 1),
5353(1340, 90, 'Kankan', 'KNK', 1),
5354(1341, 90, 'Kerouane', 'KRN', 1),
5355(1342, 90, 'Kindia', 'KND', 1),
5356(1343, 90, 'Kissidougou', 'KSD', 1),
5357(1344, 90, 'Koubia', 'KBA', 1),
5358(1345, 90, 'Koundara', 'KDA', 1),
5359(1346, 90, 'Kouroussa', 'KRA', 1),
5360(1347, 90, 'Labe', 'LAB', 1),
5361(1348, 90, 'Lelouma', 'LLM', 1),
5362(1349, 90, 'Lola', 'LOL', 1),
5363(1350, 90, 'Macenta', 'MCT', 1),
5364(1351, 90, 'Mali', 'MAL', 1),
5365(1352, 90, 'Mamou', 'MAM', 1),
5366(1353, 90, 'Mandiana', 'MAN', 1),
5367(1354, 90, 'Nzerekore', 'NZR', 1),
5368(1355, 90, 'Pita', 'PIT', 1),
5369(1356, 90, 'Siguiri', 'SIG', 1),
5370(1357, 90, 'Telimele', 'TLM', 1),
5371(1358, 90, 'Tougue', 'TOG', 1),
5372(1359, 90, 'Yomou', 'YOM', 1),
5373(1360, 91, 'Bafata Region', 'BF', 1),
5374(1361, 91, 'Biombo Region', 'BB', 1),
5375(1362, 91, 'Bissau Region', 'BS', 1),
5376(1363, 91, 'Bolama Region', 'BL', 1),
5377(1364, 91, 'Cacheu Region', 'CA', 1),
5378(1365, 91, 'Gabu Region', 'GA', 1),
5379(1366, 91, 'Oio Region', 'OI', 1),
5380(1367, 91, 'Quinara Region', 'QU', 1),
5381(1368, 91, 'Tombali Region', 'TO', 1),
5382(1369, 92, 'Barima-Waini', 'BW', 1),
5383(1370, 92, 'Cuyuni-Mazaruni', 'CM', 1),
5384(1371, 92, 'Demerara-Mahaica', 'DM', 1),
5385(1372, 92, 'East Berbice-Corentyne', 'EC', 1),
5386(1373, 92, 'Essequibo Islands-West Demerara', 'EW', 1),
5387(1374, 92, 'Mahaica-Berbice', 'MB', 1),
5388(1375, 92, 'Pomeroon-Supenaam', 'PM', 1),
5389(1376, 92, 'Potaro-Siparuni', 'PI', 1),
5390(1377, 92, 'Upper Demerara-Berbice', 'UD', 1),
5391(1378, 92, 'Upper Takutu-Upper Essequibo', 'UT', 1),
5392(1379, 93, 'Artibonite', 'AR', 1),
5393(1380, 93, 'Centre', 'CE', 1),
5394(1381, 93, 'Grand''Anse', 'GA', 1),
5395(1382, 93, 'Nord', 'ND', 1),
5396(1383, 93, 'Nord-Est', 'NE', 1),
5397(1384, 93, 'Nord-Ouest', 'NO', 1),
5398(1385, 93, 'Ouest', 'OU', 1),
5399(1386, 93, 'Sud', 'SD', 1),
5400(1387, 93, 'Sud-Est', 'SE', 1),
5401(1388, 94, 'Flat Island', 'F', 1),
5402(1389, 94, 'McDonald Island', 'M', 1),
5403(1390, 94, 'Shag Island', 'S', 1),
5404(1391, 94, 'Heard Island', 'H', 1),
5405(1392, 95, 'Atlantida', 'AT', 1),
5406(1393, 95, 'Choluteca', 'CH', 1),
5407(1394, 95, 'Colon', 'CL', 1),
5408(1395, 95, 'Comayagua', 'CM', 1),
5409(1396, 95, 'Copan', 'CP', 1),
5410(1397, 95, 'Cortes', 'CR', 1),
5411(1398, 95, 'El Paraiso', 'PA', 1),
5412(1399, 95, 'Francisco Morazan', 'FM', 1),
5413(1400, 95, 'Gracias a Dios', 'GD', 1),
5414(1401, 95, 'Intibuca', 'IN', 1),
5415(1402, 95, 'Islas de la Bahia (Bay Islands)', 'IB', 1),
5416(1403, 95, 'La Paz', 'PZ', 1),
5417(1404, 95, 'Lempira', 'LE', 1),
5418(1405, 95, 'Ocotepeque', 'OC', 1),
5419(1406, 95, 'Olancho', 'OL', 1),
5420(1407, 95, 'Santa Barbara', 'SB', 1),
5421(1408, 95, 'Valle', 'VA', 1),
5422(1409, 95, 'Yoro', 'YO', 1),
5423(1410, 96, 'Central and Western Hong Kong Island', 'HCW', 1),
5424(1411, 96, 'Eastern Hong Kong Island', 'HEA', 1),
5425(1412, 96, 'Southern Hong Kong Island', 'HSO', 1),
5426(1413, 96, 'Wan Chai Hong Kong Island', 'HWC', 1),
5427(1414, 96, 'Kowloon City Kowloon', 'KKC', 1),
5428(1415, 96, 'Kwun Tong Kowloon', 'KKT', 1),
5429(1416, 96, 'Sham Shui Po Kowloon', 'KSS', 1),
5430(1417, 96, 'Wong Tai Sin Kowloon', 'KWT', 1),
5431(1418, 96, 'Yau Tsim Mong Kowloon', 'KYT', 1),
5432(1419, 96, 'Islands New Territories', 'NIS', 1),
5433(1420, 96, 'Kwai Tsing New Territories', 'NKT', 1),
5434(1421, 96, 'North New Territories', 'NNO', 1),
5435(1422, 96, 'Sai Kung New Territories', 'NSK', 1),
5436(1423, 96, 'Sha Tin New Territories', 'NST', 1),
5437(1424, 96, 'Tai Po New Territories', 'NTP', 1),
5438(1425, 96, 'Tsuen Wan New Territories', 'NTW', 1),
5439(1426, 96, 'Tuen Mun New Territories', 'NTM', 1),
5440(1427, 96, 'Yuen Long New Territories', 'NYL', 1),
5441(1428, 97, 'Bacs-Kiskun', 'BK', 1),
5442(1429, 97, 'Baranya', 'BA', 1),
5443(1430, 97, 'Bekes', 'BE', 1),
5444(1431, 97, 'Bekescsaba', 'BS', 1),
5445(1432, 97, 'Borsod-Abauj-Zemplen', 'BZ', 1),
5446(1433, 97, 'Budapest', 'BU', 1),
5447(1434, 97, 'Csongrad', 'CS', 1),
5448(1435, 97, 'Debrecen', 'DE', 1),
5449(1436, 97, 'Dunaujvaros', 'DU', 1),
5450(1437, 97, 'Eger', 'EG', 1),
5451(1438, 97, 'Fejer', 'FE', 1),
5452(1439, 97, 'Gyor', 'GY', 1),
5453(1440, 97, 'Gyor-Moson-Sopron', 'GM', 1),
5454(1441, 97, 'Hajdu-Bihar', 'HB', 1),
5455(1442, 97, 'Heves', 'HE', 1),
5456(1443, 97, 'Hodmezovasarhely', 'HO', 1),
5457(1444, 97, 'Jasz-Nagykun-Szolnok', 'JN', 1),
5458(1445, 97, 'Kaposvar', 'KA', 1),
5459(1446, 97, 'Kecskemet', 'KE', 1),
5460(1447, 97, 'Komarom-Esztergom', 'KO', 1),
5461(1448, 97, 'Miskolc', 'MI', 1),
5462(1449, 97, 'Nagykanizsa', 'NA', 1),
5463(1450, 97, 'Nograd', 'NO', 1),
5464(1451, 97, 'Nyiregyhaza', 'NY', 1),
5465(1452, 97, 'Pecs', 'PE', 1),
5466(1453, 97, 'Pest', 'PS', 1),
5467(1454, 97, 'Somogy', 'SO', 1),
5468(1455, 97, 'Sopron', 'SP', 1),
5469(1456, 97, 'Szabolcs-Szatmar-Bereg', 'SS', 1),
5470(1457, 97, 'Szeged', 'SZ', 1),
5471(1458, 97, 'Szekesfehervar', 'SE', 1),
5472(1459, 97, 'Szolnok', 'SL', 1),
5473(1460, 97, 'Szombathely', 'SM', 1),
5474(1461, 97, 'Tatabanya', 'TA', 1),
5475(1462, 97, 'Tolna', 'TO', 1),
5476(1463, 97, 'Vas', 'VA', 1),
5477(1464, 97, 'Veszprem', 'VE', 1),
5478(1465, 97, 'Zala', 'ZA', 1),
5479(1466, 97, 'Zalaegerszeg', 'ZZ', 1),
5480(1467, 98, 'Austurland', 'AL', 1),
5481(1468, 98, 'Hofuoborgarsvaeoi', 'HF', 1),
5482(1469, 98, 'Norourland eystra', 'NE', 1),
5483(1470, 98, 'Norourland vestra', 'NV', 1),
5484(1471, 98, 'Suourland', 'SL', 1),
5485(1472, 98, 'Suournes', 'SN', 1),
5486(1473, 98, 'Vestfiroir', 'VF', 1),
5487(1474, 98, 'Vesturland', 'VL', 1),
5488(1475, 99, 'Andaman and Nicobar Islands', 'AN', 1),
5489(1476, 99, 'Andhra Pradesh', 'AP', 1),
5490(1477, 99, 'Arunachal Pradesh', 'AR', 1),
5491(1478, 99, 'Assam', 'AS', 1),
5492(1479, 99, 'Bihar', 'BI', 1),
5493(1480, 99, 'Chandigarh', 'CH', 1),
5494(1481, 99, 'Dadra and Nagar Haveli', 'DA', 1),
5495(1482, 99, 'Daman and Diu', 'DM', 1),
5496(1483, 99, 'Delhi', 'DE', 1),
5497(1484, 99, 'Goa', 'GO', 1),
5498(1485, 99, 'Gujarat', 'GU', 1),
5499(1486, 99, 'Haryana', 'HA', 1),
5500(1487, 99, 'Himachal Pradesh', 'HP', 1),
5501(1488, 99, 'Jammu and Kashmir', 'JA', 1),
5502(1489, 99, 'Karnataka', 'KA', 1),
5503(1490, 99, 'Kerala', 'KE', 1),
5504(1491, 99, 'Lakshadweep Islands', 'LI', 1),
5505(1492, 99, 'Madhya Pradesh', 'MP', 1),
5506(1493, 99, 'Maharashtra', 'MA', 1),
5507(1494, 99, 'Manipur', 'MN', 1),
5508(1495, 99, 'Meghalaya', 'ME', 1),
5509(1496, 99, 'Mizoram', 'MI', 1),
5510(1497, 99, 'Nagaland', 'NA', 1),
5511(1498, 99, 'Orissa', 'OR', 1),
5512(1499, 99, 'Pondicherry', 'PO', 1),
5513(1500, 99, 'Punjab', 'PU', 1),
5514(1501, 99, 'Rajasthan', 'RA', 1),
5515(1502, 99, 'Sikkim', 'SI', 1),
5516(1503, 99, 'Tamil Nadu', 'TN', 1),
5517(1504, 99, 'Tripura', 'TR', 1),
5518(1505, 99, 'Uttar Pradesh', 'UP', 1),
5519(1506, 99, 'West Bengal', 'WB', 1),
5520(1507, 100, 'Aceh', 'AC', 1),
5521(1508, 100, 'Bali', 'BA', 1),
5522(1509, 100, 'Banten', 'BT', 1),
5523(1510, 100, 'Bengkulu', 'BE', 1),
5524(1511, 100, 'BoDeTaBek', 'BD', 1),
5525(1512, 100, 'Gorontalo', 'GO', 1),
5526(1513, 100, 'Jakarta Raya', 'JK', 1),
5527(1514, 100, 'Jambi', 'JA', 1),
5528(1515, 100, 'Jawa Barat', 'JB', 1),
5529(1516, 100, 'Jawa Tengah', 'JT', 1),
5530(1517, 100, 'Jawa Timur', 'JI', 1),
5531(1518, 100, 'Kalimantan Barat', 'KB', 1),
5532(1519, 100, 'Kalimantan Selatan', 'KS', 1),
5533(1520, 100, 'Kalimantan Tengah', 'KT', 1),
5534(1521, 100, 'Kalimantan Timur', 'KI', 1),
5535(1522, 100, 'Kepulauan Bangka Belitung', 'BB', 1),
5536(1523, 100, 'Lampung', 'LA', 1),
5537(1524, 100, 'Maluku', 'MA', 1),
5538(1525, 100, 'Maluku Utara', 'MU', 1),
5539(1526, 100, 'Nusa Tenggara Barat', 'NB', 1),
5540(1527, 100, 'Nusa Tenggara Timur', 'NT', 1),
5541(1528, 100, 'Papua', 'PA', 1),
5542(1529, 100, 'Riau', 'RI', 1),
5543(1530, 100, 'Sulawesi Selatan', 'SN', 1),
5544(1531, 100, 'Sulawesi Tengah', 'ST', 1),
5545(1532, 100, 'Sulawesi Tenggara', 'SG', 1),
5546(1533, 100, 'Sulawesi Utara', 'SA', 1),
5547(1534, 100, 'Sumatera Barat', 'SB', 1),
5548(1535, 100, 'Sumatera Selatan', 'SS', 1),
5549(1536, 100, 'Sumatera Utara', 'SU', 1),
5550(1537, 100, 'Yogyakarta', 'YO', 1),
5551(1538, 101, 'Tehran', 'TEH', 1),
5552(1539, 101, 'Qom', 'QOM', 1),
5553(1540, 101, 'Markazi', 'MKZ', 1),
5554(1541, 101, 'Qazvin', 'QAZ', 1),
5555(1542, 101, 'Gilan', 'GIL', 1),
5556(1543, 101, 'Ardabil', 'ARD', 1),
5557(1544, 101, 'Zanjan', 'ZAN', 1),
5558(1545, 101, 'East Azarbaijan', 'EAZ', 1),
5559(1546, 101, 'West Azarbaijan', 'WEZ', 1),
5560(1547, 101, 'Kurdistan', 'KRD', 1),
5561(1548, 101, 'Hamadan', 'HMD', 1),
5562(1549, 101, 'Kermanshah', 'KRM', 1),
5563(1550, 101, 'Ilam', 'ILM', 1),
5564(1551, 101, 'Lorestan', 'LRS', 1),
5565(1552, 101, 'Khuzestan', 'KZT', 1),
5566(1553, 101, 'Chahar Mahaal and Bakhtiari', 'CMB', 1),
5567(1554, 101, 'Kohkiluyeh and Buyer Ahmad', 'KBA', 1),
5568(1555, 101, 'Bushehr', 'BSH', 1),
5569(1556, 101, 'Fars', 'FAR', 1),
5570(1557, 101, 'Hormozgan', 'HRM', 1),
5571(1558, 101, 'Sistan and Baluchistan', 'SBL', 1);
5572INSERT INTO `zone` (`zone_id`, `country_id`, `name`, `code`, `status`) VALUES
5573(1559, 101, 'Kerman', 'KRB', 1),
5574(1560, 101, 'Yazd', 'YZD', 1),
5575(1561, 101, 'Esfahan', 'EFH', 1),
5576(1562, 101, 'Semnan', 'SMN', 1),
5577(1563, 101, 'Mazandaran', 'MZD', 1),
5578(1564, 101, 'Golestan', 'GLS', 1),
5579(1565, 101, 'North Khorasan', 'NKH', 1),
5580(1566, 101, 'Razavi Khorasan', 'RKH', 1),
5581(1567, 101, 'South Khorasan', 'SKH', 1),
5582(1568, 102, 'Baghdad', 'BD', 1),
5583(1569, 102, 'Salah ad Din', 'SD', 1),
5584(1570, 102, 'Diyala', 'DY', 1),
5585(1571, 102, 'Wasit', 'WS', 1),
5586(1572, 102, 'Maysan', 'MY', 1),
5587(1573, 102, 'Al Basrah', 'BA', 1),
5588(1574, 102, 'Dhi Qar', 'DQ', 1),
5589(1575, 102, 'Al Muthanna', 'MU', 1),
5590(1576, 102, 'Al Qadisyah', 'QA', 1),
5591(1577, 102, 'Babil', 'BB', 1),
5592(1578, 102, 'Al Karbala', 'KB', 1),
5593(1579, 102, 'An Najaf', 'NJ', 1),
5594(1580, 102, 'Al Anbar', 'AB', 1),
5595(1581, 102, 'Ninawa', 'NN', 1),
5596(1582, 102, 'Dahuk', 'DH', 1),
5597(1583, 102, 'Arbil', 'AL', 1),
5598(1584, 102, 'At Ta''mim', 'TM', 1),
5599(1585, 102, 'As Sulaymaniyah', 'SL', 1),
5600(1586, 103, 'Carlow', 'CA', 1),
5601(1587, 103, 'Cavan', 'CV', 1),
5602(1588, 103, 'Clare', 'CL', 1),
5603(1589, 103, 'Cork', 'CO', 1),
5604(1590, 103, 'Donegal', 'DO', 1),
5605(1591, 103, 'Dublin', 'DU', 1),
5606(1592, 103, 'Galway', 'GA', 1),
5607(1593, 103, 'Kerry', 'KE', 1),
5608(1594, 103, 'Kildare', 'KI', 1),
5609(1595, 103, 'Kilkenny', 'KL', 1),
5610(1596, 103, 'Laois', 'LA', 1),
5611(1597, 103, 'Leitrim', 'LE', 1),
5612(1598, 103, 'Limerick', 'LI', 1),
5613(1599, 103, 'Longford', 'LO', 1),
5614(1600, 103, 'Louth', 'LU', 1),
5615(1601, 103, 'Mayo', 'MA', 1),
5616(1602, 103, 'Meath', 'ME', 1),
5617(1603, 103, 'Monaghan', 'MO', 1),
5618(1604, 103, 'Offaly', 'OF', 1),
5619(1605, 103, 'Roscommon', 'RO', 1),
5620(1606, 103, 'Sligo', 'SL', 1),
5621(1607, 103, 'Tipperary', 'TI', 1),
5622(1608, 103, 'Waterford', 'WA', 1),
5623(1609, 103, 'Westmeath', 'WE', 1),
5624(1610, 103, 'Wexford', 'WX', 1),
5625(1611, 103, 'Wicklow', 'WI', 1),
5626(1612, 104, 'Be''er Sheva', 'BS', 1),
5627(1613, 104, 'Bika''at Hayarden', 'BH', 1),
5628(1614, 104, 'Eilat and Arava', 'EA', 1),
5629(1615, 104, 'Galil', 'GA', 1),
5630(1616, 104, 'Haifa', 'HA', 1),
5631(1617, 104, 'Jehuda Mountains', 'JM', 1),
5632(1618, 104, 'Jerusalem', 'JE', 1),
5633(1619, 104, 'Negev', 'NE', 1),
5634(1620, 104, 'Semaria', 'SE', 1),
5635(1621, 104, 'Sharon', 'SH', 1),
5636(1622, 104, 'Tel Aviv (Gosh Dan)', 'TA', 1),
5637(3860, 105, 'Caltanissetta', 'CL', 1),
5638(3842, 105, 'Agrigento', 'AG', 1),
5639(3843, 105, 'Alessandria', 'AL', 1),
5640(3844, 105, 'Ancona', 'AN', 1),
5641(3845, 105, 'Aosta', 'AO', 1),
5642(3846, 105, 'Arezzo', 'AR', 1),
5643(3847, 105, 'Ascoli Piceno', 'AP', 1),
5644(3848, 105, 'Asti', 'AT', 1),
5645(3849, 105, 'Avellino', 'AV', 1),
5646(3850, 105, 'Bari', 'BA', 1),
5647(3851, 105, 'Belluno', 'BL', 1),
5648(3852, 105, 'Benevento', 'BN', 1),
5649(3853, 105, 'Bergamo', 'BG', 1),
5650(3854, 105, 'Biella', 'BI', 1),
5651(3855, 105, 'Bologna', 'BO', 1),
5652(3856, 105, 'Bolzano', 'BZ', 1),
5653(3857, 105, 'Brescia', 'BS', 1),
5654(3858, 105, 'Brindisi', 'BR', 1),
5655(3859, 105, 'Cagliari', 'CA', 1),
5656(1643, 106, 'Clarendon Parish', 'CLA', 1),
5657(1644, 106, 'Hanover Parish', 'HAN', 1),
5658(1645, 106, 'Kingston Parish', 'KIN', 1),
5659(1646, 106, 'Manchester Parish', 'MAN', 1),
5660(1647, 106, 'Portland Parish', 'POR', 1),
5661(1648, 106, 'Saint Andrew Parish', 'AND', 1),
5662(1649, 106, 'Saint Ann Parish', 'ANN', 1),
5663(1650, 106, 'Saint Catherine Parish', 'CAT', 1),
5664(1651, 106, 'Saint Elizabeth Parish', 'ELI', 1),
5665(1652, 106, 'Saint James Parish', 'JAM', 1),
5666(1653, 106, 'Saint Mary Parish', 'MAR', 1),
5667(1654, 106, 'Saint Thomas Parish', 'THO', 1),
5668(1655, 106, 'Trelawny Parish', 'TRL', 1),
5669(1656, 106, 'Westmoreland Parish', 'WML', 1),
5670(1657, 107, 'Aichi', 'AI', 1),
5671(1658, 107, 'Akita', 'AK', 1),
5672(1659, 107, 'Aomori', 'AO', 1),
5673(1660, 107, 'Chiba', 'CH', 1),
5674(1661, 107, 'Ehime', 'EH', 1),
5675(1662, 107, 'Fukui', 'FK', 1),
5676(1663, 107, 'Fukuoka', 'FU', 1),
5677(1664, 107, 'Fukushima', 'FS', 1),
5678(1665, 107, 'Gifu', 'GI', 1),
5679(1666, 107, 'Gumma', 'GU', 1),
5680(1667, 107, 'Hiroshima', 'HI', 1),
5681(1668, 107, 'Hokkaido', 'HO', 1),
5682(1669, 107, 'Hyogo', 'HY', 1),
5683(1670, 107, 'Ibaraki', 'IB', 1),
5684(1671, 107, 'Ishikawa', 'IS', 1),
5685(1672, 107, 'Iwate', 'IW', 1),
5686(1673, 107, 'Kagawa', 'KA', 1),
5687(1674, 107, 'Kagoshima', 'KG', 1),
5688(1675, 107, 'Kanagawa', 'KN', 1),
5689(1676, 107, 'Kochi', 'KO', 1),
5690(1677, 107, 'Kumamoto', 'KU', 1),
5691(1678, 107, 'Kyoto', 'KY', 1),
5692(1679, 107, 'Mie', 'MI', 1),
5693(1680, 107, 'Miyagi', 'MY', 1),
5694(1681, 107, 'Miyazaki', 'MZ', 1),
5695(1682, 107, 'Nagano', 'NA', 1),
5696(1683, 107, 'Nagasaki', 'NG', 1),
5697(1684, 107, 'Nara', 'NR', 1),
5698(1685, 107, 'Niigata', 'NI', 1),
5699(1686, 107, 'Oita', 'OI', 1),
5700(1687, 107, 'Okayama', 'OK', 1),
5701(1688, 107, 'Okinawa', 'ON', 1),
5702(1689, 107, 'Osaka', 'OS', 1),
5703(1690, 107, 'Saga', 'SA', 1),
5704(1691, 107, 'Saitama', 'SI', 1),
5705(1692, 107, 'Shiga', 'SH', 1),
5706(1693, 107, 'Shimane', 'SM', 1),
5707(1694, 107, 'Shizuoka', 'SZ', 1),
5708(1695, 107, 'Tochigi', 'TO', 1),
5709(1696, 107, 'Tokushima', 'TS', 1),
5710(1697, 107, 'Tokyo', 'TK', 1),
5711(1698, 107, 'Tottori', 'TT', 1),
5712(1699, 107, 'Toyama', 'TY', 1),
5713(1700, 107, 'Wakayama', 'WA', 1),
5714(1701, 107, 'Yamagata', 'YA', 1),
5715(1702, 107, 'Yamaguchi', 'YM', 1),
5716(1703, 107, 'Yamanashi', 'YN', 1),
5717(1704, 108, '''Amman', 'AM', 1),
5718(1705, 108, 'Ajlun', 'AJ', 1),
5719(1706, 108, 'Al ''Aqabah', 'AA', 1),
5720(1707, 108, 'Al Balqa''', 'AB', 1),
5721(1708, 108, 'Al Karak', 'AK', 1),
5722(1709, 108, 'Al Mafraq', 'AL', 1),
5723(1710, 108, 'At Tafilah', 'AT', 1),
5724(1711, 108, 'Az Zarqa''', 'AZ', 1),
5725(1712, 108, 'Irbid', 'IR', 1),
5726(1713, 108, 'Jarash', 'JA', 1),
5727(1714, 108, 'Ma''an', 'MA', 1),
5728(1715, 108, 'Madaba', 'MD', 1),
5729(1716, 109, 'Almaty', 'AL', 1),
5730(1717, 109, 'Almaty City', 'AC', 1),
5731(1718, 109, 'Aqmola', 'AM', 1),
5732(1719, 109, 'Aqtobe', 'AQ', 1),
5733(1720, 109, 'Astana City', 'AS', 1),
5734(1721, 109, 'Atyrau', 'AT', 1),
5735(1722, 109, 'Batys Qazaqstan', 'BA', 1),
5736(1723, 109, 'Bayqongyr City', 'BY', 1),
5737(1724, 109, 'Mangghystau', 'MA', 1),
5738(1725, 109, 'Ongtustik Qazaqstan', 'ON', 1),
5739(1726, 109, 'Pavlodar', 'PA', 1),
5740(1727, 109, 'Qaraghandy', 'QA', 1),
5741(1728, 109, 'Qostanay', 'QO', 1),
5742(1729, 109, 'Qyzylorda', 'QY', 1),
5743(1730, 109, 'Shyghys Qazaqstan', 'SH', 1),
5744(1731, 109, 'Soltustik Qazaqstan', 'SO', 1),
5745(1732, 109, 'Zhambyl', 'ZH', 1),
5746(1733, 110, 'Central', 'CE', 1),
5747(1734, 110, 'Coast', 'CO', 1),
5748(1735, 110, 'Eastern', 'EA', 1),
5749(1736, 110, 'Nairobi Area', 'NA', 1),
5750(1737, 110, 'North Eastern', 'NE', 1),
5751(1738, 110, 'Nyanza', 'NY', 1),
5752(1739, 110, 'Rift Valley', 'RV', 1),
5753(1740, 110, 'Western', 'WE', 1),
5754(1741, 111, 'Abaiang', 'AG', 1),
5755(1742, 111, 'Abemama', 'AM', 1),
5756(1743, 111, 'Aranuka', 'AK', 1),
5757(1744, 111, 'Arorae', 'AO', 1),
5758(1745, 111, 'Banaba', 'BA', 1),
5759(1746, 111, 'Beru', 'BE', 1),
5760(1747, 111, 'Butaritari', 'bT', 1),
5761(1748, 111, 'Kanton', 'KA', 1),
5762(1749, 111, 'Kiritimati', 'KR', 1),
5763(1750, 111, 'Kuria', 'KU', 1),
5764(1751, 111, 'Maiana', 'MI', 1),
5765(1752, 111, 'Makin', 'MN', 1),
5766(1753, 111, 'Marakei', 'ME', 1),
5767(1754, 111, 'Nikunau', 'NI', 1),
5768(1755, 111, 'Nonouti', 'NO', 1),
5769(1756, 111, 'Onotoa', 'ON', 1),
5770(1757, 111, 'Tabiteuea', 'TT', 1),
5771(1758, 111, 'Tabuaeran', 'TR', 1),
5772(1759, 111, 'Tamana', 'TM', 1),
5773(1760, 111, 'Tarawa', 'TW', 1),
5774(1761, 111, 'Teraina', 'TE', 1),
5775(1762, 112, 'Chagang-do', 'CHA', 1),
5776(1763, 112, 'Hamgyong-bukto', 'HAB', 1),
5777(1764, 112, 'Hamgyong-namdo', 'HAN', 1),
5778(1765, 112, 'Hwanghae-bukto', 'HWB', 1),
5779(1766, 112, 'Hwanghae-namdo', 'HWN', 1),
5780(1767, 112, 'Kangwon-do', 'KAN', 1),
5781(1768, 112, 'P''yongan-bukto', 'PYB', 1),
5782(1769, 112, 'P''yongan-namdo', 'PYN', 1),
5783(1770, 112, 'Ryanggang-do (Yanggang-do)', 'YAN', 1),
5784(1771, 112, 'Rason Directly Governed City', 'NAJ', 1),
5785(1772, 112, 'P''yongyang Special City', 'PYO', 1),
5786(1773, 113, 'Ch''ungch''ong-bukto', 'CO', 1),
5787(1774, 113, 'Ch''ungch''ong-namdo', 'CH', 1),
5788(1775, 113, 'Cheju-do', 'CD', 1),
5789(1776, 113, 'Cholla-bukto', 'CB', 1),
5790(1777, 113, 'Cholla-namdo', 'CN', 1),
5791(1778, 113, 'Inch''on-gwangyoksi', 'IG', 1),
5792(1779, 113, 'Kangwon-do', 'KA', 1),
5793(1780, 113, 'Kwangju-gwangyoksi', 'KG', 1),
5794(1781, 113, 'Kyonggi-do', 'KD', 1),
5795(1782, 113, 'Kyongsang-bukto', 'KB', 1),
5796(1783, 113, 'Kyongsang-namdo', 'KN', 1),
5797(1784, 113, 'Pusan-gwangyoksi', 'PG', 1),
5798(1785, 113, 'Soul-t''ukpyolsi', 'SO', 1),
5799(1786, 113, 'Taegu-gwangyoksi', 'TA', 1),
5800(1787, 113, 'Taejon-gwangyoksi', 'TG', 1),
5801(1788, 114, 'Al ''Asimah', 'AL', 1),
5802(1789, 114, 'Al Ahmadi', 'AA', 1),
5803(1790, 114, 'Al Farwaniyah', 'AF', 1),
5804(1791, 114, 'Al Jahra''', 'AJ', 1),
5805(1792, 114, 'Hawalli', 'HA', 1),
5806(1793, 115, 'Bishkek', 'GB', 1),
5807(1794, 115, 'Batken', 'B', 1),
5808(1795, 115, 'Chu', 'C', 1),
5809(1796, 115, 'Jalal-Abad', 'J', 1),
5810(1797, 115, 'Naryn', 'N', 1),
5811(1798, 115, 'Osh', 'O', 1),
5812(1799, 115, 'Talas', 'T', 1),
5813(1800, 115, 'Ysyk-Kol', 'Y', 1),
5814(1801, 116, 'Vientiane', 'VT', 1),
5815(1802, 116, 'Attapu', 'AT', 1),
5816(1803, 116, 'Bokeo', 'BK', 1),
5817(1804, 116, 'Bolikhamxai', 'BL', 1),
5818(1805, 116, 'Champasak', 'CH', 1),
5819(1806, 116, 'Houaphan', 'HO', 1),
5820(1807, 116, 'Khammouan', 'KH', 1),
5821(1808, 116, 'Louang Namtha', 'LM', 1),
5822(1809, 116, 'Louangphabang', 'LP', 1),
5823(1810, 116, 'Oudomxai', 'OU', 1),
5824(1811, 116, 'Phongsali', 'PH', 1),
5825(1812, 116, 'Salavan', 'SL', 1),
5826(1813, 116, 'Savannakhet', 'SV', 1),
5827(1814, 116, 'Vientiane', 'VI', 1),
5828(1815, 116, 'Xaignabouli', 'XA', 1),
5829(1816, 116, 'Xekong', 'XE', 1),
5830(1817, 116, 'Xiangkhoang', 'XI', 1),
5831(1818, 116, 'Xaisomboun', 'XN', 1),
5832(1819, 117, 'Aizkraukles Rajons', 'AIZ', 1),
5833(1820, 117, 'Aluksnes Rajons', 'ALU', 1),
5834(1821, 117, 'Balvu Rajons', 'BAL', 1),
5835(1822, 117, 'Bauskas Rajons', 'BAU', 1),
5836(1823, 117, 'Cesu Rajons', 'CES', 1),
5837(1824, 117, 'Daugavpils Rajons', 'DGR', 1),
5838(1825, 117, 'Dobeles Rajons', 'DOB', 1),
5839(1826, 117, 'Gulbenes Rajons', 'GUL', 1),
5840(1827, 117, 'Jekabpils Rajons', 'JEK', 1),
5841(1828, 117, 'Jelgavas Rajons', 'JGR', 1),
5842(1829, 117, 'Kraslavas Rajons', 'KRA', 1),
5843(1830, 117, 'Kuldigas Rajons', 'KUL', 1),
5844(1831, 117, 'Liepajas Rajons', 'LPR', 1),
5845(1832, 117, 'Limbazu Rajons', 'LIM', 1),
5846(1833, 117, 'Ludzas Rajons', 'LUD', 1),
5847(1834, 117, 'Madonas Rajons', 'MAD', 1),
5848(1835, 117, 'Ogres Rajons', 'OGR', 1),
5849(1836, 117, 'Preilu Rajons', 'PRE', 1),
5850(1837, 117, 'Rezeknes Rajons', 'RZR', 1),
5851(1838, 117, 'Rigas Rajons', 'RGR', 1),
5852(1839, 117, 'Saldus Rajons', 'SAL', 1),
5853(1840, 117, 'Talsu Rajons', 'TAL', 1),
5854(1841, 117, 'Tukuma Rajons', 'TUK', 1),
5855(1842, 117, 'Valkas Rajons', 'VLK', 1),
5856(1843, 117, 'Valmieras Rajons', 'VLM', 1),
5857(1844, 117, 'Ventspils Rajons', 'VSR', 1),
5858(1845, 117, 'Daugavpils', 'DGV', 1),
5859(1846, 117, 'Jelgava', 'JGV', 1),
5860(1847, 117, 'Jurmala', 'JUR', 1),
5861(1848, 117, 'Liepaja', 'LPK', 1),
5862(1849, 117, 'Rezekne', 'RZK', 1),
5863(1850, 117, 'Riga', 'RGA', 1),
5864(1851, 117, 'Ventspils', 'VSL', 1),
5865(1852, 119, 'Berea', 'BE', 1),
5866(1853, 119, 'Butha-Buthe', 'BB', 1),
5867(1854, 119, 'Leribe', 'LE', 1),
5868(1855, 119, 'Mafeteng', 'MF', 1),
5869(1856, 119, 'Maseru', 'MS', 1),
5870(1857, 119, 'Mohale''s Hoek', 'MH', 1),
5871(1858, 119, 'Mokhotlong', 'MK', 1),
5872(1859, 119, 'Qacha''s Nek', 'QN', 1),
5873(1860, 119, 'Quthing', 'QT', 1),
5874(1861, 119, 'Thaba-Tseka', 'TT', 1),
5875(1862, 120, 'Bomi', 'BI', 1),
5876(1863, 120, 'Bong', 'BG', 1),
5877(1864, 120, 'Grand Bassa', 'GB', 1),
5878(1865, 120, 'Grand Cape Mount', 'CM', 1),
5879(1866, 120, 'Grand Gedeh', 'GG', 1),
5880(1867, 120, 'Grand Kru', 'GK', 1),
5881(1868, 120, 'Lofa', 'LO', 1),
5882(1869, 120, 'Margibi', 'MG', 1),
5883(1870, 120, 'Maryland', 'ML', 1),
5884(1871, 120, 'Montserrado', 'MS', 1),
5885(1872, 120, 'Nimba', 'NB', 1),
5886(1873, 120, 'River Cess', 'RC', 1),
5887(1874, 120, 'Sinoe', 'SN', 1),
5888(1875, 121, 'Ajdabiya', 'AJ', 1),
5889(1876, 121, 'Al ''Aziziyah', 'AZ', 1),
5890(1877, 121, 'Al Fatih', 'FA', 1),
5891(1878, 121, 'Al Jabal al Akhdar', 'JA', 1),
5892(1879, 121, 'Al Jufrah', 'JU', 1),
5893(1880, 121, 'Al Khums', 'KH', 1),
5894(1881, 121, 'Al Kufrah', 'KU', 1),
5895(1882, 121, 'An Nuqat al Khams', 'NK', 1),
5896(1883, 121, 'Ash Shati''', 'AS', 1),
5897(1884, 121, 'Awbari', 'AW', 1),
5898(1885, 121, 'Az Zawiyah', 'ZA', 1),
5899(1886, 121, 'Banghazi', 'BA', 1),
5900(1887, 121, 'Darnah', 'DA', 1),
5901(1888, 121, 'Ghadamis', 'GD', 1),
5902(1889, 121, 'Gharyan', 'GY', 1),
5903(1890, 121, 'Misratah', 'MI', 1),
5904(1891, 121, 'Murzuq', 'MZ', 1),
5905(1892, 121, 'Sabha', 'SB', 1),
5906(1893, 121, 'Sawfajjin', 'SW', 1),
5907(1894, 121, 'Surt', 'SU', 1),
5908(1895, 121, 'Tarabulus (Tripoli)', 'TL', 1),
5909(1896, 121, 'Tarhunah', 'TH', 1),
5910(1897, 121, 'Tubruq', 'TU', 1),
5911(1898, 121, 'Yafran', 'YA', 1),
5912(1899, 121, 'Zlitan', 'ZL', 1),
5913(1900, 122, 'Vaduz', 'V', 1),
5914(1901, 122, 'Schaan', 'A', 1),
5915(1902, 122, 'Balzers', 'B', 1),
5916(1903, 122, 'Triesen', 'N', 1),
5917(1904, 122, 'Eschen', 'E', 1),
5918(1905, 122, 'Mauren', 'M', 1),
5919(1906, 122, 'Triesenberg', 'T', 1),
5920(1907, 122, 'Ruggell', 'R', 1),
5921(1908, 122, 'Gamprin', 'G', 1),
5922(1909, 122, 'Schellenberg', 'L', 1),
5923(1910, 122, 'Planken', 'P', 1),
5924(1911, 123, 'Alytus', 'AL', 1),
5925(1912, 123, 'Kaunas', 'KA', 1),
5926(1913, 123, 'Klaipeda', 'KL', 1),
5927(1914, 123, 'Marijampole', 'MA', 1),
5928(1915, 123, 'Panevezys', 'PA', 1),
5929(1916, 123, 'Siauliai', 'SI', 1),
5930(1917, 123, 'Taurage', 'TA', 1),
5931(1918, 123, 'Telsiai', 'TE', 1),
5932(1919, 123, 'Utena', 'UT', 1),
5933(1920, 123, 'Vilnius', 'VI', 1),
5934(1921, 124, 'Diekirch', 'DD', 1),
5935(1922, 124, 'Clervaux', 'DC', 1),
5936(1923, 124, 'Redange', 'DR', 1),
5937(1924, 124, 'Vianden', 'DV', 1),
5938(1925, 124, 'Wiltz', 'DW', 1),
5939(1926, 124, 'Grevenmacher', 'GG', 1),
5940(1927, 124, 'Echternach', 'GE', 1),
5941(1928, 124, 'Remich', 'GR', 1),
5942(1929, 124, 'Luxembourg', 'LL', 1),
5943(1930, 124, 'Capellen', 'LC', 1),
5944(1931, 124, 'Esch-sur-Alzette', 'LE', 1),
5945(1932, 124, 'Mersch', 'LM', 1),
5946(1933, 125, 'Our Lady Fatima Parish', 'OLF', 1),
5947(1934, 125, 'St. Anthony Parish', 'ANT', 1),
5948(1935, 125, 'St. Lazarus Parish', 'LAZ', 1),
5949(1936, 125, 'Cathedral Parish', 'CAT', 1),
5950(1937, 125, 'St. Lawrence Parish', 'LAW', 1),
5951(1938, 127, 'Antananarivo', 'AN', 1),
5952(1939, 127, 'Antsiranana', 'AS', 1),
5953(1940, 127, 'Fianarantsoa', 'FN', 1),
5954(1941, 127, 'Mahajanga', 'MJ', 1),
5955(1942, 127, 'Toamasina', 'TM', 1),
5956(1943, 127, 'Toliara', 'TL', 1),
5957(1944, 128, 'Balaka', 'BLK', 1),
5958(1945, 128, 'Blantyre', 'BLT', 1),
5959(1946, 128, 'Chikwawa', 'CKW', 1),
5960(1947, 128, 'Chiradzulu', 'CRD', 1),
5961(1948, 128, 'Chitipa', 'CTP', 1),
5962(1949, 128, 'Dedza', 'DDZ', 1),
5963(1950, 128, 'Dowa', 'DWA', 1),
5964(1951, 128, 'Karonga', 'KRG', 1),
5965(1952, 128, 'Kasungu', 'KSG', 1),
5966(1953, 128, 'Likoma', 'LKM', 1),
5967(1954, 128, 'Lilongwe', 'LLG', 1),
5968(1955, 128, 'Machinga', 'MCG', 1),
5969(1956, 128, 'Mangochi', 'MGC', 1),
5970(1957, 128, 'Mchinji', 'MCH', 1),
5971(1958, 128, 'Mulanje', 'MLJ', 1),
5972(1959, 128, 'Mwanza', 'MWZ', 1),
5973(1960, 128, 'Mzimba', 'MZM', 1),
5974(1961, 128, 'Ntcheu', 'NTU', 1),
5975(1962, 128, 'Nkhata Bay', 'NKB', 1),
5976(1963, 128, 'Nkhotakota', 'NKH', 1),
5977(1964, 128, 'Nsanje', 'NSJ', 1),
5978(1965, 128, 'Ntchisi', 'NTI', 1),
5979(1966, 128, 'Phalombe', 'PHL', 1),
5980(1967, 128, 'Rumphi', 'RMP', 1),
5981(1968, 128, 'Salima', 'SLM', 1),
5982(1969, 128, 'Thyolo', 'THY', 1),
5983(1970, 128, 'Zomba', 'ZBA', 1),
5984(1971, 129, 'Johor', 'JO', 1),
5985(1972, 129, 'Kedah', 'KE', 1),
5986(1973, 129, 'Kelantan', 'KL', 1),
5987(1974, 129, 'Labuan', 'LA', 1),
5988(1975, 129, 'Melaka', 'ME', 1),
5989(1976, 129, 'Negeri Sembilan', 'NS', 1),
5990(1977, 129, 'Pahang', 'PA', 1),
5991(1978, 129, 'Perak', 'PE', 1),
5992(1979, 129, 'Perlis', 'PR', 1),
5993(1980, 129, 'Pulau Pinang', 'PP', 1),
5994(1981, 129, 'Sabah', 'SA', 1),
5995(1982, 129, 'Sarawak', 'SR', 1),
5996(1983, 129, 'Selangor', 'SE', 1),
5997(1984, 129, 'Terengganu', 'TE', 1),
5998(1985, 129, 'Wilayah Persekutuan', 'WP', 1),
5999(1986, 130, 'Thiladhunmathi Uthuru', 'THU', 1),
6000(1987, 130, 'Thiladhunmathi Dhekunu', 'THD', 1),
6001(1988, 130, 'Miladhunmadulu Uthuru', 'MLU', 1),
6002(1989, 130, 'Miladhunmadulu Dhekunu', 'MLD', 1),
6003(1990, 130, 'Maalhosmadulu Uthuru', 'MAU', 1),
6004(1991, 130, 'Maalhosmadulu Dhekunu', 'MAD', 1),
6005(1992, 130, 'Faadhippolhu', 'FAA', 1),
6006(1993, 130, 'Male Atoll', 'MAA', 1),
6007(1994, 130, 'Ari Atoll Uthuru', 'AAU', 1),
6008(1995, 130, 'Ari Atoll Dheknu', 'AAD', 1),
6009(1996, 130, 'Felidhe Atoll', 'FEA', 1),
6010(1997, 130, 'Mulaku Atoll', 'MUA', 1),
6011(1998, 130, 'Nilandhe Atoll Uthuru', 'NAU', 1),
6012(1999, 130, 'Nilandhe Atoll Dhekunu', 'NAD', 1),
6013(2000, 130, 'Kolhumadulu', 'KLH', 1),
6014(2001, 130, 'Hadhdhunmathi', 'HDH', 1),
6015(2002, 130, 'Huvadhu Atoll Uthuru', 'HAU', 1),
6016(2003, 130, 'Huvadhu Atoll Dhekunu', 'HAD', 1),
6017(2004, 130, 'Fua Mulaku', 'FMU', 1),
6018(2005, 130, 'Addu', 'ADD', 1),
6019(2006, 131, 'Gao', 'GA', 1),
6020(2007, 131, 'Kayes', 'KY', 1),
6021(2008, 131, 'Kidal', 'KD', 1),
6022(2009, 131, 'Koulikoro', 'KL', 1),
6023(2010, 131, 'Mopti', 'MP', 1),
6024(2011, 131, 'Segou', 'SG', 1),
6025(2012, 131, 'Sikasso', 'SK', 1),
6026(2013, 131, 'Tombouctou', 'TB', 1),
6027(2014, 131, 'Bamako Capital District', 'CD', 1),
6028(2015, 132, 'Attard', 'ATT', 1),
6029(2016, 132, 'Balzan', 'BAL', 1),
6030(2017, 132, 'Birgu', 'BGU', 1),
6031(2018, 132, 'Birkirkara', 'BKK', 1),
6032(2019, 132, 'Birzebbuga', 'BRZ', 1),
6033(2020, 132, 'Bormla', 'BOR', 1),
6034(2021, 132, 'Dingli', 'DIN', 1),
6035(2022, 132, 'Fgura', 'FGU', 1),
6036(2023, 132, 'Floriana', 'FLO', 1),
6037(2024, 132, 'Gudja', 'GDJ', 1),
6038(2025, 132, 'Gzira', 'GZR', 1),
6039(2026, 132, 'Gargur', 'GRG', 1),
6040(2027, 132, 'Gaxaq', 'GXQ', 1),
6041(2028, 132, 'Hamrun', 'HMR', 1),
6042(2029, 132, 'Iklin', 'IKL', 1),
6043(2030, 132, 'Isla', 'ISL', 1),
6044(2031, 132, 'Kalkara', 'KLK', 1),
6045(2032, 132, 'Kirkop', 'KRK', 1),
6046(2033, 132, 'Lija', 'LIJ', 1),
6047(2034, 132, 'Luqa', 'LUQ', 1),
6048(2035, 132, 'Marsa', 'MRS', 1),
6049(2036, 132, 'Marsaskala', 'MKL', 1),
6050(2037, 132, 'Marsaxlokk', 'MXL', 1),
6051(2038, 132, 'Mdina', 'MDN', 1),
6052(2039, 132, 'Melliea', 'MEL', 1),
6053(2040, 132, 'Mgarr', 'MGR', 1),
6054(2041, 132, 'Mosta', 'MST', 1),
6055(2042, 132, 'Mqabba', 'MQA', 1),
6056(2043, 132, 'Msida', 'MSI', 1),
6057(2044, 132, 'Mtarfa', 'MTF', 1),
6058(2045, 132, 'Naxxar', 'NAX', 1),
6059(2046, 132, 'Paola', 'PAO', 1),
6060(2047, 132, 'Pembroke', 'PEM', 1),
6061(2048, 132, 'Pieta', 'PIE', 1),
6062(2049, 132, 'Qormi', 'QOR', 1),
6063(2050, 132, 'Qrendi', 'QRE', 1),
6064(2051, 132, 'Rabat', 'RAB', 1),
6065(2052, 132, 'Safi', 'SAF', 1),
6066(2053, 132, 'San Giljan', 'SGI', 1),
6067(2054, 132, 'Santa Lucija', 'SLU', 1),
6068(2055, 132, 'San Pawl il-Bahar', 'SPB', 1),
6069(2056, 132, 'San Gwann', 'SGW', 1),
6070(2057, 132, 'Santa Venera', 'SVE', 1),
6071(2058, 132, 'Siggiewi', 'SIG', 1),
6072(2059, 132, 'Sliema', 'SLM', 1),
6073(2060, 132, 'Swieqi', 'SWQ', 1),
6074(2061, 132, 'Ta Xbiex', 'TXB', 1),
6075(2062, 132, 'Tarxien', 'TRX', 1),
6076(2063, 132, 'Valletta', 'VLT', 1),
6077(2064, 132, 'Xgajra', 'XGJ', 1),
6078(2065, 132, 'Zabbar', 'ZBR', 1),
6079(2066, 132, 'Zebbug', 'ZBG', 1),
6080(2067, 132, 'Zejtun', 'ZJT', 1),
6081(2068, 132, 'Zurrieq', 'ZRQ', 1),
6082(2069, 132, 'Fontana', 'FNT', 1),
6083(2070, 132, 'Ghajnsielem', 'GHJ', 1),
6084(2071, 132, 'Gharb', 'GHR', 1),
6085(2072, 132, 'Ghasri', 'GHS', 1),
6086(2073, 132, 'Kercem', 'KRC', 1),
6087(2074, 132, 'Munxar', 'MUN', 1),
6088(2075, 132, 'Nadur', 'NAD', 1),
6089(2076, 132, 'Qala', 'QAL', 1),
6090(2077, 132, 'Victoria', 'VIC', 1),
6091(2078, 132, 'San Lawrenz', 'SLA', 1),
6092(2079, 132, 'Sannat', 'SNT', 1),
6093(2080, 132, 'Xagra', 'ZAG', 1),
6094(2081, 132, 'Xewkija', 'XEW', 1),
6095(2082, 132, 'Zebbug', 'ZEB', 1),
6096(2083, 133, 'Ailinginae', 'ALG', 1),
6097(2084, 133, 'Ailinglaplap', 'ALL', 1),
6098(2085, 133, 'Ailuk', 'ALK', 1),
6099(2086, 133, 'Arno', 'ARN', 1),
6100(2087, 133, 'Aur', 'AUR', 1),
6101(2088, 133, 'Bikar', 'BKR', 1),
6102(2089, 133, 'Bikini', 'BKN', 1),
6103(2090, 133, 'Bokak', 'BKK', 1),
6104(2091, 133, 'Ebon', 'EBN', 1),
6105(2092, 133, 'Enewetak', 'ENT', 1),
6106(2093, 133, 'Erikub', 'EKB', 1),
6107(2094, 133, 'Jabat', 'JBT', 1),
6108(2095, 133, 'Jaluit', 'JLT', 1),
6109(2096, 133, 'Jemo', 'JEM', 1),
6110(2097, 133, 'Kili', 'KIL', 1),
6111(2098, 133, 'Kwajalein', 'KWJ', 1),
6112(2099, 133, 'Lae', 'LAE', 1),
6113(2100, 133, 'Lib', 'LIB', 1),
6114(2101, 133, 'Likiep', 'LKP', 1),
6115(2102, 133, 'Majuro', 'MJR', 1),
6116(2103, 133, 'Maloelap', 'MLP', 1),
6117(2104, 133, 'Mejit', 'MJT', 1),
6118(2105, 133, 'Mili', 'MIL', 1),
6119(2106, 133, 'Namorik', 'NMK', 1),
6120(2107, 133, 'Namu', 'NAM', 1),
6121(2108, 133, 'Rongelap', 'RGL', 1),
6122(2109, 133, 'Rongrik', 'RGK', 1),
6123(2110, 133, 'Toke', 'TOK', 1),
6124(2111, 133, 'Ujae', 'UJA', 1),
6125(2112, 133, 'Ujelang', 'UJL', 1),
6126(2113, 133, 'Utirik', 'UTK', 1),
6127(2114, 133, 'Wotho', 'WTH', 1),
6128(2115, 133, 'Wotje', 'WTJ', 1),
6129(2116, 135, 'Adrar', 'AD', 1),
6130(2117, 135, 'Assaba', 'AS', 1),
6131(2118, 135, 'Brakna', 'BR', 1),
6132(2119, 135, 'Dakhlet Nouadhibou', 'DN', 1),
6133(2120, 135, 'Gorgol', 'GO', 1),
6134(2121, 135, 'Guidimaka', 'GM', 1),
6135(2122, 135, 'Hodh Ech Chargui', 'HC', 1),
6136(2123, 135, 'Hodh El Gharbi', 'HG', 1),
6137(2124, 135, 'Inchiri', 'IN', 1),
6138(2125, 135, 'Tagant', 'TA', 1),
6139(2126, 135, 'Tiris Zemmour', 'TZ', 1),
6140(2127, 135, 'Trarza', 'TR', 1),
6141(2128, 135, 'Nouakchott', 'NO', 1),
6142(2129, 136, 'Beau Bassin-Rose Hill', 'BR', 1),
6143(2130, 136, 'Curepipe', 'CU', 1),
6144(2131, 136, 'Port Louis', 'PU', 1),
6145(2132, 136, 'Quatre Bornes', 'QB', 1),
6146(2133, 136, 'Vacoas-Phoenix', 'VP', 1),
6147(2134, 136, 'Agalega Islands', 'AG', 1),
6148(2135, 136, 'Cargados Carajos Shoals (Saint Brandon Islands)', 'CC', 1),
6149(2136, 136, 'Rodrigues', 'RO', 1),
6150(2137, 136, 'Black River', 'BL', 1),
6151(2138, 136, 'Flacq', 'FL', 1),
6152(2139, 136, 'Grand Port', 'GP', 1),
6153(2140, 136, 'Moka', 'MO', 1),
6154(2141, 136, 'Pamplemousses', 'PA', 1),
6155(2142, 136, 'Plaines Wilhems', 'PW', 1),
6156(2143, 136, 'Port Louis', 'PL', 1),
6157(2144, 136, 'Riviere du Rempart', 'RR', 1),
6158(2145, 136, 'Savanne', 'SA', 1),
6159(2146, 138, 'Baja California Norte', 'BN', 1),
6160(2147, 138, 'Baja California Sur', 'BS', 1),
6161(2148, 138, 'Campeche', 'CA', 1),
6162(2149, 138, 'Chiapas', 'CI', 1),
6163(2150, 138, 'Chihuahua', 'CH', 1),
6164(2151, 138, 'Coahuila de Zaragoza', 'CZ', 1),
6165(2152, 138, 'Colima', 'CL', 1),
6166(2153, 138, 'Distrito Federal', 'DF', 1),
6167(2154, 138, 'Durango', 'DU', 1),
6168(2155, 138, 'Guanajuato', 'GA', 1),
6169(2156, 138, 'Guerrero', 'GE', 1),
6170(2157, 138, 'Hidalgo', 'HI', 1),
6171(2158, 138, 'Jalisco', 'JA', 1),
6172(2159, 138, 'Mexico', 'ME', 1),
6173(2160, 138, 'Michoacan de Ocampo', 'MI', 1),
6174(2161, 138, 'Morelos', 'MO', 1),
6175(2162, 138, 'Nayarit', 'NA', 1),
6176(2163, 138, 'Nuevo Leon', 'NL', 1),
6177(2164, 138, 'Oaxaca', 'OA', 1),
6178(2165, 138, 'Puebla', 'PU', 1),
6179(2166, 138, 'Queretaro de Arteaga', 'QA', 1),
6180(2167, 138, 'Quintana Roo', 'QR', 1),
6181(2168, 138, 'San Luis Potosi', 'SA', 1),
6182(2169, 138, 'Sinaloa', 'SI', 1),
6183(2170, 138, 'Sonora', 'SO', 1),
6184(2171, 138, 'Tabasco', 'TB', 1),
6185(2172, 138, 'Tamaulipas', 'TM', 1),
6186(2173, 138, 'Tlaxcala', 'TL', 1),
6187(2174, 138, 'Veracruz-Llave', 'VE', 1),
6188(2175, 138, 'Yucatan', 'YU', 1),
6189(2176, 138, 'Zacatecas', 'ZA', 1),
6190(2177, 139, 'Chuuk', 'C', 1),
6191(2178, 139, 'Kosrae', 'K', 1),
6192(2179, 139, 'Pohnpei', 'P', 1),
6193(2180, 139, 'Yap', 'Y', 1),
6194(2181, 140, 'Gagauzia', 'GA', 1),
6195(2182, 140, 'Chisinau', 'CU', 1),
6196(2183, 140, 'Balti', 'BA', 1),
6197(2184, 140, 'Cahul', 'CA', 1),
6198(2185, 140, 'Edinet', 'ED', 1),
6199(2186, 140, 'Lapusna', 'LA', 1),
6200(2187, 140, 'Orhei', 'OR', 1),
6201(2188, 140, 'Soroca', 'SO', 1),
6202(2189, 140, 'Tighina', 'TI', 1),
6203(2190, 140, 'Ungheni', 'UN', 1),
6204(2191, 140, 'St‚nga Nistrului', 'SN', 1),
6205(2192, 141, 'Fontvieille', 'FV', 1),
6206(2193, 141, 'La Condamine', 'LC', 1),
6207(2194, 141, 'Monaco-Ville', 'MV', 1),
6208(2195, 141, 'Monte-Carlo', 'MC', 1),
6209(2196, 142, 'Ulanbaatar', '1', 1),
6210(2197, 142, 'Orhon', '035', 1),
6211(2198, 142, 'Darhan uul', '037', 1),
6212(2199, 142, 'Hentiy', '039', 1),
6213(2200, 142, 'Hovsgol', '041', 1),
6214(2201, 142, 'Hovd', '043', 1),
6215(2202, 142, 'Uvs', '046', 1),
6216(2203, 142, 'Tov', '047', 1),
6217(2204, 142, 'Selenge', '049', 1),
6218(2205, 142, 'Suhbaatar', '051', 1),
6219(2206, 142, 'Omnogovi', '053', 1),
6220(2207, 142, 'Ovorhangay', '055', 1),
6221(2208, 142, 'Dzavhan', '057', 1),
6222(2209, 142, 'DundgovL', '059', 1),
6223(2210, 142, 'Dornod', '061', 1),
6224(2211, 142, 'Dornogov', '063', 1),
6225(2212, 142, 'Govi-Sumber', '064', 1),
6226(2213, 142, 'Govi-Altay', '065', 1),
6227(2214, 142, 'Bulgan', '067', 1),
6228(2215, 142, 'Bayanhongor', '069', 1),
6229(2216, 142, 'Bayan-Olgiy', '071', 1),
6230(2217, 142, 'Arhangay', '073', 1),
6231(2218, 143, 'Saint Anthony', 'A', 1),
6232(2219, 143, 'Saint Georges', 'G', 1),
6233(2220, 143, 'Saint Peter', 'P', 1),
6234(2221, 144, 'Agadir', 'AGD', 1),
6235(2222, 144, 'Al Hoceima', 'HOC', 1),
6236(2223, 144, 'Azilal', 'AZI', 1),
6237(2224, 144, 'Beni Mellal', 'BME', 1),
6238(2225, 144, 'Ben Slimane', 'BSL', 1),
6239(2226, 144, 'Boulemane', 'BLM', 1),
6240(2227, 144, 'Casablanca', 'CBL', 1),
6241(2228, 144, 'Chaouen', 'CHA', 1),
6242(2229, 144, 'El Jadida', 'EJA', 1),
6243(2230, 144, 'El Kelaa des Sraghna', 'EKS', 1),
6244(2231, 144, 'Er Rachidia', 'ERA', 1),
6245(2232, 144, 'Essaouira', 'ESS', 1),
6246(2233, 144, 'Fes', 'FES', 1),
6247(2234, 144, 'Figuig', 'FIG', 1),
6248(2235, 144, 'Guelmim', 'GLM', 1),
6249(2236, 144, 'Ifrane', 'IFR', 1),
6250(2237, 144, 'Kenitra', 'KEN', 1),
6251(2238, 144, 'Khemisset', 'KHM', 1),
6252(2239, 144, 'Khenifra', 'KHN', 1),
6253(2240, 144, 'Khouribga', 'KHO', 1),
6254(2241, 144, 'Laayoune', 'LYN', 1),
6255(2242, 144, 'Larache', 'LAR', 1),
6256(2243, 144, 'Marrakech', 'MRK', 1),
6257(2244, 144, 'Meknes', 'MKN', 1),
6258(2245, 144, 'Nador', 'NAD', 1),
6259(2246, 144, 'Ouarzazate', 'ORZ', 1),
6260(2247, 144, 'Oujda', 'OUJ', 1),
6261(2248, 144, 'Rabat-Sale', 'RSA', 1),
6262(2249, 144, 'Safi', 'SAF', 1),
6263(2250, 144, 'Settat', 'SET', 1),
6264(2251, 144, 'Sidi Kacem', 'SKA', 1),
6265(2252, 144, 'Tangier', 'TGR', 1),
6266(2253, 144, 'Tan-Tan', 'TAN', 1),
6267(2254, 144, 'Taounate', 'TAO', 1),
6268(2255, 144, 'Taroudannt', 'TRD', 1),
6269(2256, 144, 'Tata', 'TAT', 1),
6270(2257, 144, 'Taza', 'TAZ', 1),
6271(2258, 144, 'Tetouan', 'TET', 1),
6272(2259, 144, 'Tiznit', 'TIZ', 1),
6273(2260, 144, 'Ad Dakhla', 'ADK', 1),
6274(2261, 144, 'Boujdour', 'BJD', 1),
6275(2262, 144, 'Es Smara', 'ESM', 1),
6276(2263, 145, 'Cabo Delgado', 'CD', 1),
6277(2264, 145, 'Gaza', 'GZ', 1),
6278(2265, 145, 'Inhambane', 'IN', 1),
6279(2266, 145, 'Manica', 'MN', 1),
6280(2267, 145, 'Maputo (city)', 'MC', 1),
6281(2268, 145, 'Maputo', 'MP', 1),
6282(2269, 145, 'Nampula', 'NA', 1),
6283(2270, 145, 'Niassa', 'NI', 1),
6284(2271, 145, 'Sofala', 'SO', 1),
6285(2272, 145, 'Tete', 'TE', 1),
6286(2273, 145, 'Zambezia', 'ZA', 1),
6287(2274, 146, 'Ayeyarwady', 'AY', 1),
6288(2275, 146, 'Bago', 'BG', 1),
6289(2276, 146, 'Magway', 'MG', 1),
6290(2277, 146, 'Mandalay', 'MD', 1),
6291(2278, 146, 'Sagaing', 'SG', 1),
6292(2279, 146, 'Tanintharyi', 'TN', 1),
6293(2280, 146, 'Yangon', 'YG', 1),
6294(2281, 146, 'Chin State', 'CH', 1),
6295(2282, 146, 'Kachin State', 'KC', 1),
6296(2283, 146, 'Kayah State', 'KH', 1),
6297(2284, 146, 'Kayin State', 'KN', 1),
6298(2285, 146, 'Mon State', 'MN', 1),
6299(2286, 146, 'Rakhine State', 'RK', 1),
6300(2287, 146, 'Shan State', 'SH', 1),
6301(2288, 147, 'Caprivi', 'CA', 1),
6302(2289, 147, 'Erongo', 'ER', 1),
6303(2290, 147, 'Hardap', 'HA', 1),
6304(2291, 147, 'Karas', 'KR', 1),
6305(2292, 147, 'Kavango', 'KV', 1),
6306(2293, 147, 'Khomas', 'KH', 1),
6307(2294, 147, 'Kunene', 'KU', 1),
6308(2295, 147, 'Ohangwena', 'OW', 1),
6309(2296, 147, 'Omaheke', 'OK', 1),
6310(2297, 147, 'Omusati', 'OT', 1),
6311(2298, 147, 'Oshana', 'ON', 1),
6312(2299, 147, 'Oshikoto', 'OO', 1),
6313(2300, 147, 'Otjozondjupa', 'OJ', 1),
6314(2301, 148, 'Aiwo', 'AO', 1),
6315(2302, 148, 'Anabar', 'AA', 1),
6316(2303, 148, 'Anetan', 'AT', 1),
6317(2304, 148, 'Anibare', 'AI', 1),
6318(2305, 148, 'Baiti', 'BA', 1),
6319(2306, 148, 'Boe', 'BO', 1),
6320(2307, 148, 'Buada', 'BU', 1),
6321(2308, 148, 'Denigomodu', 'DE', 1),
6322(2309, 148, 'Ewa', 'EW', 1),
6323(2310, 148, 'Ijuw', 'IJ', 1),
6324(2311, 148, 'Meneng', 'ME', 1),
6325(2312, 148, 'Nibok', 'NI', 1),
6326(2313, 148, 'Uaboe', 'UA', 1),
6327(2314, 148, 'Yaren', 'YA', 1),
6328(2315, 149, 'Bagmati', 'BA', 1),
6329(2316, 149, 'Bheri', 'BH', 1),
6330(2317, 149, 'Dhawalagiri', 'DH', 1),
6331(2318, 149, 'Gandaki', 'GA', 1),
6332(2319, 149, 'Janakpur', 'JA', 1),
6333(2320, 149, 'Karnali', 'KA', 1),
6334(2321, 149, 'Kosi', 'KO', 1),
6335(2322, 149, 'Lumbini', 'LU', 1),
6336(2323, 149, 'Mahakali', 'MA', 1),
6337(2324, 149, 'Mechi', 'ME', 1),
6338(2325, 149, 'Narayani', 'NA', 1),
6339(2326, 149, 'Rapti', 'RA', 1),
6340(2327, 149, 'Sagarmatha', 'SA', 1),
6341(2328, 149, 'Seti', 'SE', 1),
6342(2329, 150, 'Drenthe', 'DR', 1),
6343(2330, 150, 'Flevoland', 'FL', 1),
6344(2331, 150, 'Friesland', 'FR', 1),
6345(2332, 150, 'Gelderland', 'GE', 1),
6346(2333, 150, 'Groningen', 'GR', 1),
6347(2334, 150, 'Limburg', 'LI', 1),
6348(2335, 150, 'Noord Brabant', 'NB', 1),
6349(2336, 150, 'Noord Holland', 'NH', 1),
6350(2337, 150, 'Overijssel', 'OV', 1),
6351(2338, 150, 'Utrecht', 'UT', 1),
6352(2339, 150, 'Zeeland', 'ZE', 1),
6353(2340, 150, 'Zuid Holland', 'ZH', 1),
6354(2341, 152, 'Iles Loyaute', 'L', 1),
6355(2342, 152, 'Nord', 'N', 1),
6356(2343, 152, 'Sud', 'S', 1),
6357(2344, 153, 'Auckland', 'AUK', 1),
6358(2345, 153, 'Bay of Plenty', 'BOP', 1),
6359(2346, 153, 'Canterbury', 'CAN', 1),
6360(2347, 153, 'Coromandel', 'COR', 1),
6361(2348, 153, 'Gisborne', 'GIS', 1),
6362(2349, 153, 'Fiordland', 'FIO', 1),
6363(2350, 153, 'Hawke''s Bay', 'HKB', 1),
6364(2351, 153, 'Marlborough', 'MBH', 1),
6365(2352, 153, 'Manawatu-Wanganui', 'MWT', 1),
6366(2353, 153, 'Mt Cook-Mackenzie', 'MCM', 1),
6367(2354, 153, 'Nelson', 'NSN', 1),
6368(2355, 153, 'Northland', 'NTL', 1),
6369(2356, 153, 'Otago', 'OTA', 1),
6370(2357, 153, 'Southland', 'STL', 1),
6371(2358, 153, 'Taranaki', 'TKI', 1),
6372(2359, 153, 'Wellington', 'WGN', 1),
6373(2360, 153, 'Waikato', 'WKO', 1),
6374(2361, 153, 'Wairarapa', 'WAI', 1),
6375(2362, 153, 'West Coast', 'WTC', 1),
6376(2363, 154, 'Atlantico Norte', 'AN', 1),
6377(2364, 154, 'Atlantico Sur', 'AS', 1),
6378(2365, 154, 'Boaco', 'BO', 1),
6379(2366, 154, 'Carazo', 'CA', 1),
6380(2367, 154, 'Chinandega', 'CI', 1),
6381(2368, 154, 'Chontales', 'CO', 1),
6382(2369, 154, 'Esteli', 'ES', 1),
6383(2370, 154, 'Granada', 'GR', 1),
6384(2371, 154, 'Jinotega', 'JI', 1),
6385(2372, 154, 'Leon', 'LE', 1),
6386(2373, 154, 'Madriz', 'MD', 1),
6387(2374, 154, 'Managua', 'MN', 1),
6388(2375, 154, 'Masaya', 'MS', 1),
6389(2376, 154, 'Matagalpa', 'MT', 1),
6390(2377, 154, 'Nuevo Segovia', 'NS', 1),
6391(2378, 154, 'Rio San Juan', 'RS', 1),
6392(2379, 154, 'Rivas', 'RI', 1),
6393(2380, 155, 'Agadez', 'AG', 1),
6394(2381, 155, 'Diffa', 'DF', 1),
6395(2382, 155, 'Dosso', 'DS', 1),
6396(2383, 155, 'Maradi', 'MA', 1),
6397(2384, 155, 'Niamey', 'NM', 1),
6398(2385, 155, 'Tahoua', 'TH', 1),
6399(2386, 155, 'Tillaberi', 'TL', 1),
6400(2387, 155, 'Zinder', 'ZD', 1),
6401(2388, 156, 'Abia', 'AB', 1),
6402(2389, 156, 'Abuja Federal Capital Territory', 'CT', 1),
6403(2390, 156, 'Adamawa', 'AD', 1),
6404(2391, 156, 'Akwa Ibom', 'AK', 1),
6405(2392, 156, 'Anambra', 'AN', 1),
6406(2393, 156, 'Bauchi', 'BC', 1),
6407(2394, 156, 'Bayelsa', 'BY', 1),
6408(2395, 156, 'Benue', 'BN', 1),
6409(2396, 156, 'Borno', 'BO', 1),
6410(2397, 156, 'Cross River', 'CR', 1),
6411(2398, 156, 'Delta', 'DE', 1),
6412(2399, 156, 'Ebonyi', 'EB', 1),
6413(2400, 156, 'Edo', 'ED', 1),
6414(2401, 156, 'Ekiti', 'EK', 1),
6415(2402, 156, 'Enugu', 'EN', 1),
6416(2403, 156, 'Gombe', 'GO', 1),
6417(2404, 156, 'Imo', 'IM', 1),
6418(2405, 156, 'Jigawa', 'JI', 1),
6419(2406, 156, 'Kaduna', 'KD', 1),
6420(2407, 156, 'Kano', 'KN', 1),
6421(2408, 156, 'Katsina', 'KT', 1),
6422(2409, 156, 'Kebbi', 'KE', 1),
6423(2410, 156, 'Kogi', 'KO', 1),
6424(2411, 156, 'Kwara', 'KW', 1),
6425(2412, 156, 'Lagos', 'LA', 1),
6426(2413, 156, 'Nassarawa', 'NA', 1),
6427(2414, 156, 'Niger', 'NI', 1),
6428(2415, 156, 'Ogun', 'OG', 1),
6429(2416, 156, 'Ondo', 'ONG', 1),
6430(2417, 156, 'Osun', 'OS', 1),
6431(2418, 156, 'Oyo', 'OY', 1),
6432(2419, 156, 'Plateau', 'PL', 1),
6433(2420, 156, 'Rivers', 'RI', 1),
6434(2421, 156, 'Sokoto', 'SO', 1),
6435(2422, 156, 'Taraba', 'TA', 1),
6436(2423, 156, 'Yobe', 'YO', 1),
6437(2424, 156, 'Zamfara', 'ZA', 1),
6438(2425, 159, 'Northern Islands', 'N', 1),
6439(2426, 159, 'Rota', 'R', 1),
6440(2427, 159, 'Saipan', 'S', 1),
6441(2428, 159, 'Tinian', 'T', 1),
6442(2429, 160, 'Akershus', 'AK', 1),
6443(2430, 160, 'Aust-Agder', 'AA', 1),
6444(2431, 160, 'Buskerud', 'BU', 1),
6445(2432, 160, 'Finnmark', 'FM', 1),
6446(2433, 160, 'Hedmark', 'HM', 1),
6447(2434, 160, 'Hordaland', 'HL', 1),
6448(2435, 160, 'More og Romdal', 'MR', 1),
6449(2436, 160, 'Nord-Trondelag', 'NT', 1),
6450(2437, 160, 'Nordland', 'NL', 1),
6451(2438, 160, 'Ostfold', 'OF', 1),
6452(2439, 160, 'Oppland', 'OP', 1),
6453(2440, 160, 'Oslo', 'OL', 1),
6454(2441, 160, 'Rogaland', 'RL', 1),
6455(2442, 160, 'Sor-Trondelag', 'ST', 1),
6456(2443, 160, 'Sogn og Fjordane', 'SJ', 1),
6457(2444, 160, 'Svalbard', 'SV', 1),
6458(2445, 160, 'Telemark', 'TM', 1),
6459(2446, 160, 'Troms', 'TR', 1),
6460(2447, 160, 'Vest-Agder', 'VA', 1),
6461(2448, 160, 'Vestfold', 'VF', 1),
6462(2449, 161, 'Ad Dakhiliyah', 'DA', 1),
6463(2450, 161, 'Al Batinah', 'BA', 1),
6464(2451, 161, 'Al Wusta', 'WU', 1),
6465(2452, 161, 'Ash Sharqiyah', 'SH', 1),
6466(2453, 161, 'Az Zahirah', 'ZA', 1),
6467(2454, 161, 'Masqat', 'MA', 1),
6468(2455, 161, 'Musandam', 'MU', 1),
6469(2456, 161, 'Zufar', 'ZU', 1),
6470(2457, 162, 'Balochistan', 'B', 1),
6471(2458, 162, 'Federally Administered Tribal Areas', 'T', 1),
6472(2459, 162, 'Islamabad Capital Territory', 'I', 1),
6473(2460, 162, 'North-West Frontier', 'N', 1),
6474(2461, 162, 'Punjab', 'P', 1),
6475(2462, 162, 'Sindh', 'S', 1),
6476(2463, 163, 'Aimeliik', 'AM', 1),
6477(2464, 163, 'Airai', 'AR', 1),
6478(2465, 163, 'Angaur', 'AN', 1),
6479(2466, 163, 'Hatohobei', 'HA', 1),
6480(2467, 163, 'Kayangel', 'KA', 1),
6481(2468, 163, 'Koror', 'KO', 1),
6482(2469, 163, 'Melekeok', 'ME', 1),
6483(2470, 163, 'Ngaraard', 'NA', 1),
6484(2471, 163, 'Ngarchelong', 'NG', 1),
6485(2472, 163, 'Ngardmau', 'ND', 1),
6486(2473, 163, 'Ngatpang', 'NT', 1),
6487(2474, 163, 'Ngchesar', 'NC', 1),
6488(2475, 163, 'Ngeremlengui', 'NR', 1),
6489(2476, 163, 'Ngiwal', 'NW', 1),
6490(2477, 163, 'Peleliu', 'PE', 1),
6491(2478, 163, 'Sonsorol', 'SO', 1),
6492(2479, 164, 'Bocas del Toro', 'BT', 1),
6493(2480, 164, 'Chiriqui', 'CH', 1),
6494(2481, 164, 'Cocle', 'CC', 1),
6495(2482, 164, 'Colon', 'CL', 1),
6496(2483, 164, 'Darien', 'DA', 1),
6497(2484, 164, 'Herrera', 'HE', 1),
6498(2485, 164, 'Los Santos', 'LS', 1),
6499(2486, 164, 'Panama', 'PA', 1),
6500(2487, 164, 'San Blas', 'SB', 1),
6501(2488, 164, 'Veraguas', 'VG', 1),
6502(2489, 165, 'Bougainville', 'BV', 1),
6503(2490, 165, 'Central', 'CE', 1),
6504(2491, 165, 'Chimbu', 'CH', 1),
6505(2492, 165, 'Eastern Highlands', 'EH', 1),
6506(2493, 165, 'East New Britain', 'EB', 1),
6507(2494, 165, 'East Sepik', 'ES', 1),
6508(2495, 165, 'Enga', 'EN', 1),
6509(2496, 165, 'Gulf', 'GU', 1),
6510(2497, 165, 'Madang', 'MD', 1),
6511(2498, 165, 'Manus', 'MN', 1),
6512(2499, 165, 'Milne Bay', 'MB', 1),
6513(2500, 165, 'Morobe', 'MR', 1),
6514(2501, 165, 'National Capital', 'NC', 1),
6515(2502, 165, 'New Ireland', 'NI', 1),
6516(2503, 165, 'Northern', 'NO', 1),
6517(2504, 165, 'Sandaun', 'SA', 1),
6518(2505, 165, 'Southern Highlands', 'SH', 1),
6519(2506, 165, 'Western', 'WE', 1),
6520(2507, 165, 'Western Highlands', 'WH', 1),
6521(2508, 165, 'West New Britain', 'WB', 1),
6522(2509, 166, 'Alto Paraguay', 'AG', 1),
6523(2510, 166, 'Alto Parana', 'AN', 1),
6524(2511, 166, 'Amambay', 'AM', 1),
6525(2512, 166, 'Asuncion', 'AS', 1),
6526(2513, 166, 'Boqueron', 'BO', 1),
6527(2514, 166, 'Caaguazu', 'CG', 1),
6528(2515, 166, 'Caazapa', 'CZ', 1),
6529(2516, 166, 'Canindeyu', 'CN', 1),
6530(2517, 166, 'Central', 'CE', 1),
6531(2518, 166, 'Concepcion', 'CC', 1),
6532(2519, 166, 'Cordillera', 'CD', 1),
6533(2520, 166, 'Guaira', 'GU', 1),
6534(2521, 166, 'Itapua', 'IT', 1),
6535(2522, 166, 'Misiones', 'MI', 1),
6536(2523, 166, 'Neembucu', 'NE', 1),
6537(2524, 166, 'Paraguari', 'PA', 1),
6538(2525, 166, 'Presidente Hayes', 'PH', 1),
6539(2526, 166, 'San Pedro', 'SP', 1),
6540(2527, 167, 'Amazonas', 'AM', 1),
6541(2528, 167, 'Ancash', 'AN', 1),
6542(2529, 167, 'Apurimac', 'AP', 1),
6543(2530, 167, 'Arequipa', 'AR', 1),
6544(2531, 167, 'Ayacucho', 'AY', 1),
6545(2532, 167, 'Cajamarca', 'CJ', 1),
6546(2533, 167, 'Callao', 'CL', 1),
6547(2534, 167, 'Cusco', 'CU', 1),
6548(2535, 167, 'Huancavelica', 'HV', 1),
6549(2536, 167, 'Huanuco', 'HO', 1),
6550(2537, 167, 'Ica', 'IC', 1),
6551(2538, 167, 'Junin', 'JU', 1),
6552(2539, 167, 'La Libertad', 'LD', 1),
6553(2540, 167, 'Lambayeque', 'LY', 1),
6554(2541, 167, 'Lima', 'LI', 1),
6555(2542, 167, 'Loreto', 'LO', 1),
6556(2543, 167, 'Madre de Dios', 'MD', 1),
6557(2544, 167, 'Moquegua', 'MO', 1),
6558(2545, 167, 'Pasco', 'PA', 1),
6559(2546, 167, 'Piura', 'PI', 1),
6560(2547, 167, 'Puno', 'PU', 1),
6561(2548, 167, 'San Martin', 'SM', 1),
6562(2549, 167, 'Tacna', 'TA', 1),
6563(2550, 167, 'Tumbes', 'TU', 1),
6564(2551, 167, 'Ucayali', 'UC', 1),
6565(2552, 168, 'Abra', 'ABR', 1),
6566(2553, 168, 'Agusan del Norte', 'ANO', 1),
6567(2554, 168, 'Agusan del Sur', 'ASU', 1),
6568(2555, 168, 'Aklan', 'AKL', 1),
6569(2556, 168, 'Albay', 'ALB', 1),
6570(2557, 168, 'Antique', 'ANT', 1),
6571(2558, 168, 'Apayao', 'APY', 1),
6572(2559, 168, 'Aurora', 'AUR', 1),
6573(2560, 168, 'Basilan', 'BAS', 1),
6574(2561, 168, 'Bataan', 'BTA', 1),
6575(2562, 168, 'Batanes', 'BTE', 1),
6576(2563, 168, 'Batangas', 'BTG', 1),
6577(2564, 168, 'Biliran', 'BLR', 1),
6578(2565, 168, 'Benguet', 'BEN', 1),
6579(2566, 168, 'Bohol', 'BOL', 1),
6580(2567, 168, 'Bukidnon', 'BUK', 1),
6581(2568, 168, 'Bulacan', 'BUL', 1),
6582(2569, 168, 'Cagayan', 'CAG', 1),
6583(2570, 168, 'Camarines Norte', 'CNO', 1),
6584(2571, 168, 'Camarines Sur', 'CSU', 1),
6585(2572, 168, 'Camiguin', 'CAM', 1),
6586(2573, 168, 'Capiz', 'CAP', 1),
6587(2574, 168, 'Catanduanes', 'CAT', 1),
6588(2575, 168, 'Cavite', 'CAV', 1),
6589(2576, 168, 'Cebu', 'CEB', 1),
6590(2577, 168, 'Compostela', 'CMP', 1),
6591(2578, 168, 'Davao del Norte', 'DNO', 1),
6592(2579, 168, 'Davao del Sur', 'DSU', 1),
6593(2580, 168, 'Davao Oriental', 'DOR', 1),
6594(2581, 168, 'Eastern Samar', 'ESA', 1),
6595(2582, 168, 'Guimaras', 'GUI', 1),
6596(2583, 168, 'Ifugao', 'IFU', 1),
6597(2584, 168, 'Ilocos Norte', 'INO', 1),
6598(2585, 168, 'Ilocos Sur', 'ISU', 1),
6599(2586, 168, 'Iloilo', 'ILO', 1),
6600(2587, 168, 'Isabela', 'ISA', 1),
6601(2588, 168, 'Kalinga', 'KAL', 1),
6602(2589, 168, 'Laguna', 'LAG', 1),
6603(2590, 168, 'Lanao del Norte', 'LNO', 1),
6604(2591, 168, 'Lanao del Sur', 'LSU', 1),
6605(2592, 168, 'La Union', 'UNI', 1),
6606(2593, 168, 'Leyte', 'LEY', 1),
6607(2594, 168, 'Maguindanao', 'MAG', 1),
6608(2595, 168, 'Marinduque', 'MRN', 1),
6609(2596, 168, 'Masbate', 'MSB', 1),
6610(2597, 168, 'Mindoro Occidental', 'MIC', 1),
6611(2598, 168, 'Mindoro Oriental', 'MIR', 1),
6612(2599, 168, 'Misamis Occidental', 'MSC', 1),
6613(2600, 168, 'Misamis Oriental', 'MOR', 1),
6614(2601, 168, 'Mountain', 'MOP', 1),
6615(2602, 168, 'Negros Occidental', 'NOC', 1),
6616(2603, 168, 'Negros Oriental', 'NOR', 1),
6617(2604, 168, 'North Cotabato', 'NCT', 1),
6618(2605, 168, 'Northern Samar', 'NSM', 1),
6619(2606, 168, 'Nueva Ecija', 'NEC', 1),
6620(2607, 168, 'Nueva Vizcaya', 'NVZ', 1),
6621(2608, 168, 'Palawan', 'PLW', 1),
6622(2609, 168, 'Pampanga', 'PMP', 1),
6623(2610, 168, 'Pangasinan', 'PNG', 1),
6624(2611, 168, 'Quezon', 'QZN', 1),
6625(2612, 168, 'Quirino', 'QRN', 1),
6626(2613, 168, 'Rizal', 'RIZ', 1),
6627(2614, 168, 'Romblon', 'ROM', 1),
6628(2615, 168, 'Samar', 'SMR', 1),
6629(2616, 168, 'Sarangani', 'SRG', 1),
6630(2617, 168, 'Siquijor', 'SQJ', 1),
6631(2618, 168, 'Sorsogon', 'SRS', 1),
6632(2619, 168, 'South Cotabato', 'SCO', 1),
6633(2620, 168, 'Southern Leyte', 'SLE', 1),
6634(2621, 168, 'Sultan Kudarat', 'SKU', 1),
6635(2622, 168, 'Sulu', 'SLU', 1),
6636(2623, 168, 'Surigao del Norte', 'SNO', 1),
6637(2624, 168, 'Surigao del Sur', 'SSU', 1),
6638(2625, 168, 'Tarlac', 'TAR', 1),
6639(2626, 168, 'Tawi-Tawi', 'TAW', 1),
6640(2627, 168, 'Zambales', 'ZBL', 1),
6641(2628, 168, 'Zamboanga del Norte', 'ZNO', 1),
6642(2629, 168, 'Zamboanga del Sur', 'ZSU', 1),
6643(2630, 168, 'Zamboanga Sibugay', 'ZSI', 1),
6644(2631, 170, 'Dolnoslaskie', 'DO', 1),
6645(2632, 170, 'Kujawsko-Pomorskie', 'KP', 1),
6646(2633, 170, 'Lodzkie', 'LO', 1),
6647(2634, 170, 'Lubelskie', 'LL', 1),
6648(2635, 170, 'Lubuskie', 'LU', 1),
6649(2636, 170, 'Malopolskie', 'ML', 1),
6650(2637, 170, 'Mazowieckie', 'MZ', 1),
6651(2638, 170, 'Opolskie', 'OP', 1),
6652(2639, 170, 'Podkarpackie', 'PP', 1),
6653(2640, 170, 'Podlaskie', 'PL', 1),
6654(2641, 170, 'Pomorskie', 'PM', 1),
6655(2642, 170, 'Slaskie', 'SL', 1),
6656(2643, 170, 'Swietokrzyskie', 'SW', 1),
6657(2644, 170, 'Warminsko-Mazurskie', 'WM', 1),
6658(2645, 170, 'Wielkopolskie', 'WP', 1),
6659(2646, 170, 'Zachodniopomorskie', 'ZA', 1),
6660(2647, 198, 'Saint Pierre', 'P', 1),
6661(2648, 198, 'Miquelon', 'M', 1),
6662(2649, 171, 'Açores', 'AC', 1),
6663(2650, 171, 'Aveiro', 'AV', 1),
6664(2651, 171, 'Beja', 'BE', 1),
6665(2652, 171, 'Braga', 'BR', 1),
6666(2653, 171, 'Bragança', 'BA', 1),
6667(2654, 171, 'Castelo Branco', 'CB', 1),
6668(2655, 171, 'Coimbra', 'CO', 1),
6669(2656, 171, 'Évora', 'EV', 1),
6670(2657, 171, 'Faro', 'FA', 1),
6671(2658, 171, 'Guarda', 'GU', 1),
6672(2659, 171, 'Leiria', 'LE', 1),
6673(2660, 171, 'Lisboa', 'LI', 1),
6674(2661, 171, 'Madeira', 'ME', 1),
6675(2662, 171, 'Portalegre', 'PO', 1),
6676(2663, 171, 'Porto', 'PR', 1),
6677(2664, 171, 'Santarém', 'SA', 1),
6678(2665, 171, 'Setúbal', 'SE', 1),
6679(2666, 171, 'Viana do Castelo', 'VC', 1),
6680(2667, 171, 'Vila Real', 'VR', 1),
6681(2668, 171, 'Viseu', 'VI', 1),
6682(2669, 173, 'Ad Dawhah', 'DW', 1),
6683(2670, 173, 'Al Ghuwayriyah', 'GW', 1),
6684(2671, 173, 'Al Jumayliyah', 'JM', 1),
6685(2672, 173, 'Al Khawr', 'KR', 1),
6686(2673, 173, 'Al Wakrah', 'WK', 1),
6687(2674, 173, 'Ar Rayyan', 'RN', 1),
6688(2675, 173, 'Jarayan al Batinah', 'JB', 1),
6689(2676, 173, 'Madinat ash Shamal', 'MS', 1),
6690(2677, 173, 'Umm Sa''id', 'UD', 1),
6691(2678, 173, 'Umm Salal', 'UL', 1),
6692(2679, 175, 'Alba', 'AB', 1),
6693(2680, 175, 'Arad', 'AR', 1),
6694(2681, 175, 'Arges', 'AG', 1),
6695(2682, 175, 'Bacau', 'BC', 1),
6696(2683, 175, 'Bihor', 'BH', 1),
6697(2684, 175, 'Bistrita-Nasaud', 'BN', 1),
6698(2685, 175, 'Botosani', 'BT', 1),
6699(2686, 175, 'Brasov', 'BV', 1),
6700(2687, 175, 'Braila', 'BR', 1),
6701(2688, 175, 'Bucuresti', 'B', 1),
6702(2689, 175, 'Buzau', 'BZ', 1),
6703(2690, 175, 'Caras-Severin', 'CS', 1),
6704(2691, 175, 'Calarasi', 'CL', 1),
6705(2692, 175, 'Cluj', 'CJ', 1),
6706(2693, 175, 'Constanta', 'CT', 1),
6707(2694, 175, 'Covasna', 'CV', 1),
6708(2695, 175, 'Dimbovita', 'DB', 1),
6709(2696, 175, 'Dolj', 'DJ', 1),
6710(2697, 175, 'Galati', 'GL', 1),
6711(2698, 175, 'Giurgiu', 'GR', 1),
6712(2699, 175, 'Gorj', 'GJ', 1),
6713(2700, 175, 'Harghita', 'HR', 1),
6714(2701, 175, 'Hunedoara', 'HD', 1),
6715(2702, 175, 'Ialomita', 'IL', 1),
6716(2703, 175, 'Iasi', 'IS', 1),
6717(2704, 175, 'Ilfov', 'IF', 1),
6718(2705, 175, 'Maramures', 'MM', 1),
6719(2706, 175, 'Mehedinti', 'MH', 1),
6720(2707, 175, 'Mures', 'MS', 1),
6721(2708, 175, 'Neamt', 'NT', 1),
6722(2709, 175, 'Olt', 'OT', 1),
6723(2710, 175, 'Prahova', 'PH', 1),
6724(2711, 175, 'Satu-Mare', 'SM', 1),
6725(2712, 175, 'Salaj', 'SJ', 1),
6726(2713, 175, 'Sibiu', 'SB', 1),
6727(2714, 175, 'Suceava', 'SV', 1),
6728(2715, 175, 'Teleorman', 'TR', 1),
6729(2716, 175, 'Timis', 'TM', 1),
6730(2717, 175, 'Tulcea', 'TL', 1),
6731(2718, 175, 'Vaslui', 'VS', 1),
6732(2719, 175, 'Valcea', 'VL', 1),
6733(2720, 175, 'Vrancea', 'VN', 1),
6734(2721, 176, 'Abakan', 'AB', 1),
6735(2722, 176, 'Aginskoye', 'AG', 1),
6736(2723, 176, 'Anadyr', 'AN', 1),
6737(2724, 176, 'Arkahangelsk', 'AR', 1),
6738(2725, 176, 'Astrakhan', 'AS', 1),
6739(2726, 176, 'Barnaul', 'BA', 1),
6740(2727, 176, 'Belgorod', 'BE', 1),
6741(2728, 176, 'Birobidzhan', 'BI', 1),
6742(2729, 176, 'Blagoveshchensk', 'BL', 1),
6743(2730, 176, 'Bryansk', 'BR', 1),
6744(2731, 176, 'Cheboksary', 'CH', 1),
6745(2732, 176, 'Chelyabinsk', 'CL', 1),
6746(2733, 176, 'Cherkessk', 'CR', 1),
6747(2734, 176, 'Chita', 'CI', 1),
6748(2735, 176, 'Dudinka', 'DU', 1),
6749(2736, 176, 'Elista', 'EL', 1),
6750(2737, 176, 'Gomo-Altaysk', 'GO', 1),
6751(2738, 176, 'Gorno-Altaysk', 'GA', 1),
6752(2739, 176, 'Groznyy', 'GR', 1),
6753(2740, 176, 'Irkutsk', 'IR', 1),
6754(2741, 176, 'Ivanovo', 'IV', 1),
6755(2742, 176, 'Izhevsk', 'IZ', 1),
6756(2743, 176, 'Kalinigrad', 'KA', 1),
6757(2744, 176, 'Kaluga', 'KL', 1),
6758(2745, 176, 'Kasnodar', 'KS', 1),
6759(2746, 176, 'Kazan', 'KZ', 1),
6760(2747, 176, 'Kemerovo', 'KE', 1),
6761(2748, 176, 'Khabarovsk', 'KH', 1),
6762(2749, 176, 'Khanty-Mansiysk', 'KM', 1),
6763(2750, 176, 'Kostroma', 'KO', 1),
6764(2751, 176, 'Krasnodar', 'KR', 1),
6765(2752, 176, 'Krasnoyarsk', 'KN', 1),
6766(2753, 176, 'Kudymkar', 'KU', 1),
6767(2754, 176, 'Kurgan', 'KG', 1),
6768(2755, 176, 'Kursk', 'KK', 1),
6769(2756, 176, 'Kyzyl', 'KY', 1),
6770(2757, 176, 'Lipetsk', 'LI', 1),
6771(2758, 176, 'Magadan', 'MA', 1),
6772(2759, 176, 'Makhachkala', 'MK', 1),
6773(2760, 176, 'Maykop', 'MY', 1),
6774(2761, 176, 'Moscow', 'MO', 1),
6775(2762, 176, 'Murmansk', 'MU', 1),
6776(2763, 176, 'Nalchik', 'NA', 1),
6777(2764, 176, 'Naryan Mar', 'NR', 1),
6778(2765, 176, 'Nazran', 'NZ', 1),
6779(2766, 176, 'Nizhniy Novgorod', 'NI', 1),
6780(2767, 176, 'Novgorod', 'NO', 1),
6781(2768, 176, 'Novosibirsk', 'NV', 1),
6782(2769, 176, 'Omsk', 'OM', 1),
6783(2770, 176, 'Orel', 'OR', 1),
6784(2771, 176, 'Orenburg', 'OE', 1),
6785(2772, 176, 'Palana', 'PA', 1),
6786(2773, 176, 'Penza', 'PE', 1),
6787(2774, 176, 'Perm', 'PR', 1),
6788(2775, 176, 'Petropavlovsk-Kamchatskiy', 'PK', 1),
6789(2776, 176, 'Petrozavodsk', 'PT', 1),
6790(2777, 176, 'Pskov', 'PS', 1),
6791(2778, 176, 'Rostov-na-Donu', 'RO', 1),
6792(2779, 176, 'Ryazan', 'RY', 1),
6793(2780, 176, 'Salekhard', 'SL', 1),
6794(2781, 176, 'Samara', 'SA', 1),
6795(2782, 176, 'Saransk', 'SR', 1),
6796(2783, 176, 'Saratov', 'SV', 1),
6797(2784, 176, 'Smolensk', 'SM', 1),
6798(2785, 176, 'St. Petersburg', 'SP', 1),
6799(2786, 176, 'Stavropol', 'ST', 1),
6800(2787, 176, 'Syktyvkar', 'SY', 1),
6801(2788, 176, 'Tambov', 'TA', 1),
6802(2789, 176, 'Tomsk', 'TO', 1),
6803(2790, 176, 'Tula', 'TU', 1),
6804(2791, 176, 'Tura', 'TR', 1),
6805(2792, 176, 'Tver', 'TV', 1),
6806(2793, 176, 'Tyumen', 'TY', 1),
6807(2794, 176, 'Ufa', 'UF', 1),
6808(2795, 176, 'Ul''yanovsk', 'UL', 1),
6809(2796, 176, 'Ulan-Ude', 'UU', 1),
6810(2797, 176, 'Ust''-Ordynskiy', 'US', 1),
6811(2798, 176, 'Vladikavkaz', 'VL', 1),
6812(2799, 176, 'Vladimir', 'VA', 1),
6813(2800, 176, 'Vladivostok', 'VV', 1),
6814(2801, 176, 'Volgograd', 'VG', 1),
6815(2802, 176, 'Vologda', 'VD', 1),
6816(2803, 176, 'Voronezh', 'VO', 1),
6817(2804, 176, 'Vyatka', 'VY', 1),
6818(2805, 176, 'Yakutsk', 'YA', 1),
6819(2806, 176, 'Yaroslavl', 'YR', 1),
6820(2807, 176, 'Yekaterinburg', 'YE', 1),
6821(2808, 176, 'Yoshkar-Ola', 'YO', 1),
6822(2809, 177, 'Butare', 'BU', 1),
6823(2810, 177, 'Byumba', 'BY', 1),
6824(2811, 177, 'Cyangugu', 'CY', 1),
6825(2812, 177, 'Gikongoro', 'GK', 1),
6826(2813, 177, 'Gisenyi', 'GS', 1),
6827(2814, 177, 'Gitarama', 'GT', 1),
6828(2815, 177, 'Kibungo', 'KG', 1),
6829(2816, 177, 'Kibuye', 'KY', 1),
6830(2817, 177, 'Kigali Rurale', 'KR', 1),
6831(2818, 177, 'Kigali-ville', 'KV', 1),
6832(2819, 177, 'Ruhengeri', 'RU', 1),
6833(2820, 177, 'Umutara', 'UM', 1),
6834(2821, 178, 'Christ Church Nichola Town', 'CCN', 1),
6835(2822, 178, 'Saint Anne Sandy Point', 'SAS', 1),
6836(2823, 178, 'Saint George Basseterre', 'SGB', 1),
6837(2824, 178, 'Saint George Gingerland', 'SGG', 1),
6838(2825, 178, 'Saint James Windward', 'SJW', 1),
6839(2826, 178, 'Saint John Capesterre', 'SJC', 1),
6840(2827, 178, 'Saint John Figtree', 'SJF', 1),
6841(2828, 178, 'Saint Mary Cayon', 'SMC', 1),
6842(2829, 178, 'Saint Paul Capesterre', 'CAP', 1),
6843(2830, 178, 'Saint Paul Charlestown', 'CHA', 1),
6844(2831, 178, 'Saint Peter Basseterre', 'SPB', 1),
6845(2832, 178, 'Saint Thomas Lowland', 'STL', 1),
6846(2833, 178, 'Saint Thomas Middle Island', 'STM', 1),
6847(2834, 178, 'Trinity Palmetto Point', 'TPP', 1),
6848(2835, 179, 'Anse-la-Raye', 'AR', 1),
6849(2836, 179, 'Castries', 'CA', 1),
6850(2837, 179, 'Choiseul', 'CH', 1),
6851(2838, 179, 'Dauphin', 'DA', 1),
6852(2839, 179, 'Dennery', 'DE', 1),
6853(2840, 179, 'Gros-Islet', 'GI', 1),
6854(2841, 179, 'Laborie', 'LA', 1),
6855(2842, 179, 'Micoud', 'MI', 1),
6856(2843, 179, 'Praslin', 'PR', 1),
6857(2844, 179, 'Soufriere', 'SO', 1),
6858(2845, 179, 'Vieux-Fort', 'VF', 1),
6859(2846, 180, 'Charlotte', 'C', 1),
6860(2847, 180, 'Grenadines', 'R', 1),
6861(2848, 180, 'Saint Andrew', 'A', 1),
6862(2849, 180, 'Saint David', 'D', 1),
6863(2850, 180, 'Saint George', 'G', 1),
6864(2851, 180, 'Saint Patrick', 'P', 1),
6865(2852, 181, 'A''ana', 'AN', 1),
6866(2853, 181, 'Aiga-i-le-Tai', 'AI', 1),
6867(2854, 181, 'Atua', 'AT', 1),
6868(2855, 181, 'Fa''asaleleaga', 'FA', 1),
6869(2856, 181, 'Gaga''emauga', 'GE', 1),
6870(2857, 181, 'Gagaifomauga', 'GF', 1),
6871(2858, 181, 'Palauli', 'PA', 1),
6872(2859, 181, 'Satupa''itea', 'SA', 1),
6873(2860, 181, 'Tuamasaga', 'TU', 1),
6874(2861, 181, 'Va''a-o-Fonoti', 'VF', 1),
6875(2862, 181, 'Vaisigano', 'VS', 1),
6876(2863, 182, 'Acquaviva', 'AC', 1),
6877(2864, 182, 'Borgo Maggiore', 'BM', 1),
6878(2865, 182, 'Chiesanuova', 'CH', 1),
6879(2866, 182, 'Domagnano', 'DO', 1),
6880(2867, 182, 'Faetano', 'FA', 1),
6881(2868, 182, 'Fiorentino', 'FI', 1),
6882(2869, 182, 'Montegiardino', 'MO', 1),
6883(2870, 182, 'Citta di San Marino', 'SM', 1),
6884(2871, 182, 'Serravalle', 'SE', 1),
6885(2872, 183, 'Sao Tome', 'S', 1),
6886(2873, 183, 'Principe', 'P', 1),
6887(2874, 184, 'Al Bahah', 'BH', 1),
6888(2875, 184, 'Al Hudud ash Shamaliyah', 'HS', 1),
6889(2876, 184, 'Al Jawf', 'JF', 1),
6890(2877, 184, 'Al Madinah', 'MD', 1),
6891(2878, 184, 'Al Qasim', 'QS', 1),
6892(2879, 184, 'Ar Riyad', 'RD', 1),
6893(2880, 184, 'Ash Sharqiyah (Eastern)', 'AQ', 1),
6894(2881, 184, '''Asir', 'AS', 1),
6895(2882, 184, 'Ha''il', 'HL', 1),
6896(2883, 184, 'Jizan', 'JZ', 1),
6897(2884, 184, 'Makkah', 'ML', 1),
6898(2885, 184, 'Najran', 'NR', 1),
6899(2886, 184, 'Tabuk', 'TB', 1),
6900(2887, 185, 'Dakar', 'DA', 1),
6901(2888, 185, 'Diourbel', 'DI', 1),
6902(2889, 185, 'Fatick', 'FA', 1),
6903(2890, 185, 'Kaolack', 'KA', 1),
6904(2891, 185, 'Kolda', 'KO', 1),
6905(2892, 185, 'Louga', 'LO', 1),
6906(2893, 185, 'Matam', 'MA', 1),
6907(2894, 185, 'Saint-Louis', 'SL', 1),
6908(2895, 185, 'Tambacounda', 'TA', 1),
6909(2896, 185, 'Thies', 'TH', 1),
6910(2897, 185, 'Ziguinchor', 'ZI', 1),
6911(2898, 186, 'Anse aux Pins', 'AP', 1),
6912(2899, 186, 'Anse Boileau', 'AB', 1),
6913(2900, 186, 'Anse Etoile', 'AE', 1),
6914(2901, 186, 'Anse Louis', 'AL', 1),
6915(2902, 186, 'Anse Royale', 'AR', 1),
6916(2903, 186, 'Baie Lazare', 'BL', 1),
6917(2904, 186, 'Baie Sainte Anne', 'BS', 1),
6918(2905, 186, 'Beau Vallon', 'BV', 1),
6919(2906, 186, 'Bel Air', 'BA', 1),
6920(2907, 186, 'Bel Ombre', 'BO', 1),
6921(2908, 186, 'Cascade', 'CA', 1),
6922(2909, 186, 'Glacis', 'GL', 1),
6923(2910, 186, 'Grand'' Anse (on Mahe)', 'GM', 1),
6924(2911, 186, 'Grand'' Anse (on Praslin)', 'GP', 1),
6925(2912, 186, 'La Digue', 'DG', 1),
6926(2913, 186, 'La Riviere Anglaise', 'RA', 1),
6927(2914, 186, 'Mont Buxton', 'MB', 1),
6928(2915, 186, 'Mont Fleuri', 'MF', 1),
6929(2916, 186, 'Plaisance', 'PL', 1),
6930(2917, 186, 'Pointe La Rue', 'PR', 1),
6931(2918, 186, 'Port Glaud', 'PG', 1),
6932(2919, 186, 'Saint Louis', 'SL', 1),
6933(2920, 186, 'Takamaka', 'TA', 1),
6934(2921, 187, 'Eastern', 'E', 1),
6935(2922, 187, 'Northern', 'N', 1),
6936(2923, 187, 'Southern', 'S', 1),
6937(2924, 187, 'Western', 'W', 1),
6938(2925, 189, 'Banskobystrický', 'BA', 1),
6939(2926, 189, 'Bratislavský', 'BR', 1),
6940(2927, 189, 'Košický', 'KO', 1),
6941(2928, 189, 'Nitriansky', 'NI', 1),
6942(2929, 189, 'Prešovský', 'PR', 1),
6943(2930, 189, 'TrenÄiansky', 'TC', 1),
6944(2931, 189, 'Trnavský', 'TV', 1),
6945(2932, 189, 'Žilinský', 'ZI', 1),
6946(2933, 191, 'Central', 'CE', 1),
6947(2934, 191, 'Choiseul', 'CH', 1),
6948(2935, 191, 'Guadalcanal', 'GC', 1),
6949(2936, 191, 'Honiara', 'HO', 1),
6950(2937, 191, 'Isabel', 'IS', 1),
6951(2938, 191, 'Makira', 'MK', 1),
6952(2939, 191, 'Malaita', 'ML', 1),
6953(2940, 191, 'Rennell and Bellona', 'RB', 1),
6954(2941, 191, 'Temotu', 'TM', 1),
6955(2942, 191, 'Western', 'WE', 1),
6956(2943, 192, 'Awdal', 'AW', 1),
6957(2944, 192, 'Bakool', 'BK', 1),
6958(2945, 192, 'Banaadir', 'BN', 1),
6959(2946, 192, 'Bari', 'BR', 1),
6960(2947, 192, 'Bay', 'BY', 1),
6961(2948, 192, 'Galguduud', 'GA', 1),
6962(2949, 192, 'Gedo', 'GE', 1),
6963(2950, 192, 'Hiiraan', 'HI', 1),
6964(2951, 192, 'Jubbada Dhexe', 'JD', 1),
6965(2952, 192, 'Jubbada Hoose', 'JH', 1),
6966(2953, 192, 'Mudug', 'MU', 1),
6967(2954, 192, 'Nugaal', 'NU', 1),
6968(2955, 192, 'Sanaag', 'SA', 1),
6969(2956, 192, 'Shabeellaha Dhexe', 'SD', 1),
6970(2957, 192, 'Shabeellaha Hoose', 'SH', 1),
6971(2958, 192, 'Sool', 'SL', 1),
6972(2959, 192, 'Togdheer', 'TO', 1),
6973(2960, 192, 'Woqooyi Galbeed', 'WG', 1),
6974(2961, 193, 'Eastern Cape', 'EC', 1),
6975(2962, 193, 'Free State', 'FS', 1),
6976(2963, 193, 'Gauteng', 'GT', 1),
6977(2964, 193, 'KwaZulu-Natal', 'KN', 1),
6978(2965, 193, 'Limpopo', 'LP', 1),
6979(2966, 193, 'Mpumalanga', 'MP', 1),
6980(2967, 193, 'North West', 'NW', 1),
6981(2968, 193, 'Northern Cape', 'NC', 1),
6982(2969, 193, 'Western Cape', 'WC', 1),
6983(2970, 195, 'La Coruña', 'CA', 1),
6984(2971, 195, 'Álava', 'AL', 1),
6985(2972, 195, 'Albacete', 'AB', 1),
6986(2973, 195, 'Alicante', 'AC', 1),
6987(2974, 195, 'Almeria', 'AM', 1),
6988(2975, 195, 'Asturias', 'AS', 1),
6989(2976, 195, 'Ávila', 'AV', 1),
6990(2977, 195, 'Badajoz', 'BJ', 1),
6991(2978, 195, 'Baleares', 'IB', 1),
6992(2979, 195, 'Barcelona', 'BA', 1),
6993(2980, 195, 'Burgos', 'BU', 1),
6994(2981, 195, 'Cáceres', 'CC', 1),
6995(2982, 195, 'Cádiz', 'CZ', 1),
6996(2983, 195, 'Cantabria', 'CT', 1),
6997(2984, 195, 'Castellón', 'CL', 1),
6998(2985, 195, 'Ceuta', 'CE', 1),
6999(2986, 195, 'Ciudad Real', 'CR', 1),
7000(2987, 195, 'Córdoba', 'CD', 1),
7001(2988, 195, 'Cuenca', 'CU', 1),
7002(2989, 195, 'Girona', 'GI', 1),
7003(2990, 195, 'Granada', 'GD', 1),
7004(2991, 195, 'Guadalajara', 'GJ', 1),
7005(2992, 195, 'Guipúzcoa', 'GP', 1),
7006(2993, 195, 'Huelva', 'HL', 1),
7007(2994, 195, 'Huesca', 'HS', 1),
7008(2995, 195, 'Jaén', 'JN', 1),
7009(2996, 195, 'La Rioja', 'RJ', 1),
7010(2997, 195, 'Las Palmas', 'PM', 1),
7011(2998, 195, 'Leon', 'LE', 1),
7012(2999, 195, 'Lleida', 'LL', 1),
7013(3000, 195, 'Lugo', 'LG', 1),
7014(3001, 195, 'Madrid', 'MD', 1),
7015(3002, 195, 'Malaga', 'MA', 1),
7016(3003, 195, 'Melilla', 'ML', 1),
7017(3004, 195, 'Murcia', 'MU', 1),
7018(3005, 195, 'Navarra', 'NV', 1),
7019(3006, 195, 'Ourense', 'OU', 1),
7020(3007, 195, 'Palencia', 'PL', 1),
7021(3008, 195, 'Pontevedra', 'PO', 1),
7022(3009, 195, 'Salamanca', 'SL', 1),
7023(3010, 195, 'Santa Cruz de Tenerife', 'SC', 1),
7024(3011, 195, 'Segovia', 'SG', 1),
7025(3012, 195, 'Sevilla', 'SV', 1),
7026(3013, 195, 'Soria', 'SO', 1),
7027(3014, 195, 'Tarragona', 'TA', 1),
7028(3015, 195, 'Teruel', 'TE', 1),
7029(3016, 195, 'Toledo', 'TO', 1),
7030(3017, 195, 'Valencia', 'VC', 1),
7031(3018, 195, 'Valladolid', 'VD', 1),
7032(3019, 195, 'Vizcaya', 'VZ', 1),
7033(3020, 195, 'Zamora', 'ZM', 1),
7034(3021, 195, 'Zaragoza', 'ZR', 1),
7035(3022, 196, 'Central', 'CE', 1),
7036(3023, 196, 'Eastern', 'EA', 1),
7037(3024, 196, 'North Central', 'NC', 1),
7038(3025, 196, 'Northern', 'NO', 1),
7039(3026, 196, 'North Western', 'NW', 1),
7040(3027, 196, 'Sabaragamuwa', 'SA', 1),
7041(3028, 196, 'Southern', 'SO', 1),
7042(3029, 196, 'Uva', 'UV', 1),
7043(3030, 196, 'Western', 'WE', 1),
7044(3031, 197, 'Ascension', 'A', 1),
7045(3032, 197, 'Saint Helena', 'S', 1),
7046(3033, 197, 'Tristan da Cunha', 'T', 1),
7047(3034, 199, 'A''ali an Nil', 'ANL', 1),
7048(3035, 199, 'Al Bahr al Ahmar', 'BAM', 1),
7049(3036, 199, 'Al Buhayrat', 'BRT', 1),
7050(3037, 199, 'Al Jazirah', 'JZR', 1),
7051(3038, 199, 'Al Khartum', 'KRT', 1),
7052(3039, 199, 'Al Qadarif', 'QDR', 1),
7053(3040, 199, 'Al Wahdah', 'WDH', 1),
7054(3041, 199, 'An Nil al Abyad', 'ANB', 1),
7055(3042, 199, 'An Nil al Azraq', 'ANZ', 1),
7056(3043, 199, 'Ash Shamaliyah', 'ASH', 1),
7057(3044, 199, 'Bahr al Jabal', 'BJA', 1),
7058(3045, 199, 'Gharb al Istiwa''iyah', 'GIS', 1),
7059(3046, 199, 'Gharb Bahr al Ghazal', 'GBG', 1),
7060(3047, 199, 'Gharb Darfur', 'GDA', 1),
7061(3048, 199, 'Gharb Kurdufan', 'GKU', 1),
7062(3049, 199, 'Janub Darfur', 'JDA', 1),
7063(3050, 199, 'Janub Kurdufan', 'JKU', 1),
7064(3051, 199, 'Junqali', 'JQL', 1),
7065(3052, 199, 'Kassala', 'KSL', 1),
7066(3053, 199, 'Nahr an Nil', 'NNL', 1),
7067(3054, 199, 'Shamal Bahr al Ghazal', 'SBG', 1),
7068(3055, 199, 'Shamal Darfur', 'SDA', 1),
7069(3056, 199, 'Shamal Kurdufan', 'SKU', 1),
7070(3057, 199, 'Sharq al Istiwa''iyah', 'SIS', 1),
7071(3058, 199, 'Sinnar', 'SNR', 1);
7072INSERT INTO `zone` (`zone_id`, `country_id`, `name`, `code`, `status`) VALUES
7073(3059, 199, 'Warab', 'WRB', 1),
7074(3060, 200, 'Brokopondo', 'BR', 1),
7075(3061, 200, 'Commewijne', 'CM', 1),
7076(3062, 200, 'Coronie', 'CR', 1),
7077(3063, 200, 'Marowijne', 'MA', 1),
7078(3064, 200, 'Nickerie', 'NI', 1),
7079(3065, 200, 'Para', 'PA', 1),
7080(3066, 200, 'Paramaribo', 'PM', 1),
7081(3067, 200, 'Saramacca', 'SA', 1),
7082(3068, 200, 'Sipaliwini', 'SI', 1),
7083(3069, 200, 'Wanica', 'WA', 1),
7084(3070, 202, 'Hhohho', 'H', 1),
7085(3071, 202, 'Lubombo', 'L', 1),
7086(3072, 202, 'Manzini', 'M', 1),
7087(3073, 202, 'Shishelweni', 'S', 1),
7088(3074, 203, 'Blekinge', 'K', 1),
7089(3075, 203, 'Dalarna', 'W', 1),
7090(3076, 203, 'Gävleborg', 'X', 1),
7091(3077, 203, 'Gotland', 'I', 1),
7092(3078, 203, 'Halland', 'N', 1),
7093(3079, 203, 'Jämtland', 'Z', 1),
7094(3080, 203, 'Jönköping', 'F', 1),
7095(3081, 203, 'Kalmar', 'H', 1),
7096(3082, 203, 'Kronoberg', 'G', 1),
7097(3083, 203, 'Norrbotten', 'BD', 1),
7098(3084, 203, 'Örebro', 'T', 1),
7099(3085, 203, 'Östergötland', 'E', 1),
7100(3086, 203, 'Skåne', 'M', 1),
7101(3087, 203, 'Södermanland', 'D', 1),
7102(3088, 203, 'Stockholm', 'AB', 1),
7103(3089, 203, 'Uppsala', 'C', 1),
7104(3090, 203, 'Värmland', 'S', 1),
7105(3091, 203, 'Västerbotten', 'AC', 1),
7106(3092, 203, 'Västernorrland', 'Y', 1),
7107(3093, 203, 'Västmanland', 'U', 1),
7108(3094, 203, 'Västra Götaland', 'O', 1),
7109(3095, 204, 'Aargau', 'AG', 1),
7110(3096, 204, 'Appenzell Ausserrhoden', 'AR', 1),
7111(3097, 204, 'Appenzell Innerrhoden', 'AI', 1),
7112(3098, 204, 'Basel-Stadt', 'BS', 1),
7113(3099, 204, 'Basel-Landschaft', 'BL', 1),
7114(3100, 204, 'Bern', 'BE', 1),
7115(3101, 204, 'Fribourg', 'FR', 1),
7116(3102, 204, 'Genève', 'GE', 1),
7117(3103, 204, 'Glarus', 'GL', 1),
7118(3104, 204, 'Graubünden', 'GR', 1),
7119(3105, 204, 'Jura', 'JU', 1),
7120(3106, 204, 'Luzern', 'LU', 1),
7121(3107, 204, 'Neuchâtel', 'NE', 1),
7122(3108, 204, 'Nidwald', 'NW', 1),
7123(3109, 204, 'Obwald', 'OW', 1),
7124(3110, 204, 'St. Gallen', 'SG', 1),
7125(3111, 204, 'Schaffhausen', 'SH', 1),
7126(3112, 204, 'Schwyz', 'SZ', 1),
7127(3113, 204, 'Solothurn', 'SO', 1),
7128(3114, 204, 'Thurgau', 'TG', 1),
7129(3115, 204, 'Ticino', 'TI', 1),
7130(3116, 204, 'Uri', 'UR', 1),
7131(3117, 204, 'Valais', 'VS', 1),
7132(3118, 204, 'Vaud', 'VD', 1),
7133(3119, 204, 'Zug', 'ZG', 1),
7134(3120, 204, 'Zürich', 'ZH', 1),
7135(3121, 205, 'Al Hasakah', 'HA', 1),
7136(3122, 205, 'Al Ladhiqiyah', 'LA', 1),
7137(3123, 205, 'Al Qunaytirah', 'QU', 1),
7138(3124, 205, 'Ar Raqqah', 'RQ', 1),
7139(3125, 205, 'As Suwayda', 'SU', 1),
7140(3126, 205, 'Dara', 'DA', 1),
7141(3127, 205, 'Dayr az Zawr', 'DZ', 1),
7142(3128, 205, 'Dimashq', 'DI', 1),
7143(3129, 205, 'Halab', 'HL', 1),
7144(3130, 205, 'Hamah', 'HM', 1),
7145(3131, 205, 'Hims', 'HI', 1),
7146(3132, 205, 'Idlib', 'ID', 1),
7147(3133, 205, 'Rif Dimashq', 'RD', 1),
7148(3134, 205, 'Tartus', 'TA', 1),
7149(3135, 206, 'Chang-hua', 'CH', 1),
7150(3136, 206, 'Chia-i', 'CI', 1),
7151(3137, 206, 'Hsin-chu', 'HS', 1),
7152(3138, 206, 'Hua-lien', 'HL', 1),
7153(3139, 206, 'I-lan', 'IL', 1),
7154(3140, 206, 'Kao-hsiung county', 'KH', 1),
7155(3141, 206, 'Kin-men', 'KM', 1),
7156(3142, 206, 'Lien-chiang', 'LC', 1),
7157(3143, 206, 'Miao-li', 'ML', 1),
7158(3144, 206, 'Nan-t''ou', 'NT', 1),
7159(3145, 206, 'P''eng-hu', 'PH', 1),
7160(3146, 206, 'P''ing-tung', 'PT', 1),
7161(3147, 206, 'T''ai-chung', 'TG', 1),
7162(3148, 206, 'T''ai-nan', 'TA', 1),
7163(3149, 206, 'T''ai-pei county', 'TP', 1),
7164(3150, 206, 'T''ai-tung', 'TT', 1),
7165(3151, 206, 'T''ao-yuan', 'TY', 1),
7166(3152, 206, 'Yun-lin', 'YL', 1),
7167(3153, 206, 'Chia-i city', 'CC', 1),
7168(3154, 206, 'Chi-lung', 'CL', 1),
7169(3155, 206, 'Hsin-chu', 'HC', 1),
7170(3156, 206, 'T''ai-chung', 'TH', 1),
7171(3157, 206, 'T''ai-nan', 'TN', 1),
7172(3158, 206, 'Kao-hsiung city', 'KC', 1),
7173(3159, 206, 'T''ai-pei city', 'TC', 1),
7174(3160, 207, 'Gorno-Badakhstan', 'GB', 1),
7175(3161, 207, 'Khatlon', 'KT', 1),
7176(3162, 207, 'Sughd', 'SU', 1),
7177(3163, 208, 'Arusha', 'AR', 1),
7178(3164, 208, 'Dar es Salaam', 'DS', 1),
7179(3165, 208, 'Dodoma', 'DO', 1),
7180(3166, 208, 'Iringa', 'IR', 1),
7181(3167, 208, 'Kagera', 'KA', 1),
7182(3168, 208, 'Kigoma', 'KI', 1),
7183(3169, 208, 'Kilimanjaro', 'KJ', 1),
7184(3170, 208, 'Lindi', 'LN', 1),
7185(3171, 208, 'Manyara', 'MY', 1),
7186(3172, 208, 'Mara', 'MR', 1),
7187(3173, 208, 'Mbeya', 'MB', 1),
7188(3174, 208, 'Morogoro', 'MO', 1),
7189(3175, 208, 'Mtwara', 'MT', 1),
7190(3176, 208, 'Mwanza', 'MW', 1),
7191(3177, 208, 'Pemba North', 'PN', 1),
7192(3178, 208, 'Pemba South', 'PS', 1),
7193(3179, 208, 'Pwani', 'PW', 1),
7194(3180, 208, 'Rukwa', 'RK', 1),
7195(3181, 208, 'Ruvuma', 'RV', 1),
7196(3182, 208, 'Shinyanga', 'SH', 1),
7197(3183, 208, 'Singida', 'SI', 1),
7198(3184, 208, 'Tabora', 'TB', 1),
7199(3185, 208, 'Tanga', 'TN', 1),
7200(3186, 208, 'Zanzibar Central/South', 'ZC', 1),
7201(3187, 208, 'Zanzibar North', 'ZN', 1),
7202(3188, 208, 'Zanzibar Urban/West', 'ZU', 1),
7203(3189, 209, 'Amnat Charoen', 'Amnat Charoen', 1),
7204(3190, 209, 'Ang Thong', 'Ang Thong', 1),
7205(3191, 209, 'Ayutthaya', 'Ayutthaya', 1),
7206(3192, 209, 'Bangkok', 'Bangkok', 1),
7207(3193, 209, 'Buriram', 'Buriram', 1),
7208(3194, 209, 'Chachoengsao', 'Chachoengsao', 1),
7209(3195, 209, 'Chai Nat', 'Chai Nat', 1),
7210(3196, 209, 'Chaiyaphum', 'Chaiyaphum', 1),
7211(3197, 209, 'Chanthaburi', 'Chanthaburi', 1),
7212(3198, 209, 'Chiang Mai', 'Chiang Mai', 1),
7213(3199, 209, 'Chiang Rai', 'Chiang Rai', 1),
7214(3200, 209, 'Chon Buri', 'Chon Buri', 1),
7215(3201, 209, 'Chumphon', 'Chumphon', 1),
7216(3202, 209, 'Kalasin', 'Kalasin', 1),
7217(3203, 209, 'Kamphaeng Phet', 'Kamphaeng Phet', 1),
7218(3204, 209, 'Kanchanaburi', 'Kanchanaburi', 1),
7219(3205, 209, 'Khon Kaen', 'Khon Kaen', 1),
7220(3206, 209, 'Krabi', 'Krabi', 1),
7221(3207, 209, 'Lampang', 'Lampang', 1),
7222(3208, 209, 'Lamphun', 'Lamphun', 1),
7223(3209, 209, 'Loei', 'Loei', 1),
7224(3210, 209, 'Lop Buri', 'Lop Buri', 1),
7225(3211, 209, 'Mae Hong Son', 'Mae Hong Son', 1),
7226(3212, 209, 'Maha Sarakham', 'Maha Sarakham', 1),
7227(3213, 209, 'Mukdahan', 'Mukdahan', 1),
7228(3214, 209, 'Nakhon Nayok', 'Nakhon Nayok', 1),
7229(3215, 209, 'Nakhon Pathom', 'Nakhon Pathom', 1),
7230(3216, 209, 'Nakhon Phanom', 'Nakhon Phanom', 1),
7231(3217, 209, 'Nakhon Ratchasima', 'Nakhon Ratchasima', 1),
7232(3218, 209, 'Nakhon Sawan', 'Nakhon Sawan', 1),
7233(3219, 209, 'Nakhon Si Thammarat', 'Nakhon Si Thammarat', 1),
7234(3220, 209, 'Nan', 'Nan', 1),
7235(3221, 209, 'Narathiwat', 'Narathiwat', 1),
7236(3222, 209, 'Nong Bua Lamphu', 'Nong Bua Lamphu', 1),
7237(3223, 209, 'Nong Khai', 'Nong Khai', 1),
7238(3224, 209, 'Nonthaburi', 'Nonthaburi', 1),
7239(3225, 209, 'Pathum Thani', 'Pathum Thani', 1),
7240(3226, 209, 'Pattani', 'Pattani', 1),
7241(3227, 209, 'Phangnga', 'Phangnga', 1),
7242(3228, 209, 'Phatthalung', 'Phatthalung', 1),
7243(3229, 209, 'Phayao', 'Phayao', 1),
7244(3230, 209, 'Phetchabun', 'Phetchabun', 1),
7245(3231, 209, 'Phetchaburi', 'Phetchaburi', 1),
7246(3232, 209, 'Phichit', 'Phichit', 1),
7247(3233, 209, 'Phitsanulok', 'Phitsanulok', 1),
7248(3234, 209, 'Phrae', 'Phrae', 1),
7249(3235, 209, 'Phuket', 'Phuket', 1),
7250(3236, 209, 'Prachin Buri', 'Prachin Buri', 1),
7251(3237, 209, 'Prachuap Khiri Khan', 'Prachuap Khiri Khan', 1),
7252(3238, 209, 'Ranong', 'Ranong', 1),
7253(3239, 209, 'Ratchaburi', 'Ratchaburi', 1),
7254(3240, 209, 'Rayong', 'Rayong', 1),
7255(3241, 209, 'Roi Et', 'Roi Et', 1),
7256(3242, 209, 'Sa Kaeo', 'Sa Kaeo', 1),
7257(3243, 209, 'Sakon Nakhon', 'Sakon Nakhon', 1),
7258(3244, 209, 'Samut Prakan', 'Samut Prakan', 1),
7259(3245, 209, 'Samut Sakhon', 'Samut Sakhon', 1),
7260(3246, 209, 'Samut Songkhram', 'Samut Songkhram', 1),
7261(3247, 209, 'Sara Buri', 'Sara Buri', 1),
7262(3248, 209, 'Satun', 'Satun', 1),
7263(3249, 209, 'Sing Buri', 'Sing Buri', 1),
7264(3250, 209, 'Sisaket', 'Sisaket', 1),
7265(3251, 209, 'Songkhla', 'Songkhla', 1),
7266(3252, 209, 'Sukhothai', 'Sukhothai', 1),
7267(3253, 209, 'Suphan Buri', 'Suphan Buri', 1),
7268(3254, 209, 'Surat Thani', 'Surat Thani', 1),
7269(3255, 209, 'Surin', 'Surin', 1),
7270(3256, 209, 'Tak', 'Tak', 1),
7271(3257, 209, 'Trang', 'Trang', 1),
7272(3258, 209, 'Trat', 'Trat', 1),
7273(3259, 209, 'Ubon Ratchathani', 'Ubon Ratchathani', 1),
7274(3260, 209, 'Udon Thani', 'Udon Thani', 1),
7275(3261, 209, 'Uthai Thani', 'Uthai Thani', 1),
7276(3262, 209, 'Uttaradit', 'Uttaradit', 1),
7277(3263, 209, 'Yala', 'Yala', 1),
7278(3264, 209, 'Yasothon', 'Yasothon', 1),
7279(3265, 210, 'Kara', 'K', 1),
7280(3266, 210, 'Plateaux', 'P', 1),
7281(3267, 210, 'Savanes', 'S', 1),
7282(3268, 210, 'Centrale', 'C', 1),
7283(3269, 210, 'Maritime', 'M', 1),
7284(3270, 211, 'Atafu', 'A', 1),
7285(3271, 211, 'Fakaofo', 'F', 1),
7286(3272, 211, 'Nukunonu', 'N', 1),
7287(3273, 212, 'Ha''apai', 'H', 1),
7288(3274, 212, 'Tongatapu', 'T', 1),
7289(3275, 212, 'Vava''u', 'V', 1),
7290(3276, 213, 'Couva/Tabaquite/Talparo', 'CT', 1),
7291(3277, 213, 'Diego Martin', 'DM', 1),
7292(3278, 213, 'Mayaro/Rio Claro', 'MR', 1),
7293(3279, 213, 'Penal/Debe', 'PD', 1),
7294(3280, 213, 'Princes Town', 'PT', 1),
7295(3281, 213, 'Sangre Grande', 'SG', 1),
7296(3282, 213, 'San Juan/Laventille', 'SL', 1),
7297(3283, 213, 'Siparia', 'SI', 1),
7298(3284, 213, 'Tunapuna/Piarco', 'TP', 1),
7299(3285, 213, 'Port of Spain', 'PS', 1),
7300(3286, 213, 'San Fernando', 'SF', 1),
7301(3287, 213, 'Arima', 'AR', 1),
7302(3288, 213, 'Point Fortin', 'PF', 1),
7303(3289, 213, 'Chaguanas', 'CH', 1),
7304(3290, 213, 'Tobago', 'TO', 1),
7305(3291, 214, 'Ariana', 'AR', 1),
7306(3292, 214, 'Beja', 'BJ', 1),
7307(3293, 214, 'Ben Arous', 'BA', 1),
7308(3294, 214, 'Bizerte', 'BI', 1),
7309(3295, 214, 'Gabes', 'GB', 1),
7310(3296, 214, 'Gafsa', 'GF', 1),
7311(3297, 214, 'Jendouba', 'JE', 1),
7312(3298, 214, 'Kairouan', 'KR', 1),
7313(3299, 214, 'Kasserine', 'KS', 1),
7314(3300, 214, 'Kebili', 'KB', 1),
7315(3301, 214, 'Kef', 'KF', 1),
7316(3302, 214, 'Mahdia', 'MH', 1),
7317(3303, 214, 'Manouba', 'MN', 1),
7318(3304, 214, 'Medenine', 'ME', 1),
7319(3305, 214, 'Monastir', 'MO', 1),
7320(3306, 214, 'Nabeul', 'NA', 1),
7321(3307, 214, 'Sfax', 'SF', 1),
7322(3308, 214, 'Sidi', 'SD', 1),
7323(3309, 214, 'Siliana', 'SL', 1),
7324(3310, 214, 'Sousse', 'SO', 1),
7325(3311, 214, 'Tataouine', 'TA', 1),
7326(3312, 214, 'Tozeur', 'TO', 1),
7327(3313, 214, 'Tunis', 'TU', 1),
7328(3314, 214, 'Zaghouan', 'ZA', 1),
7329(3315, 215, 'Adana', 'ADA', 1),
7330(3316, 215, 'Adıyaman', 'ADI', 1),
7331(3317, 215, 'Afyonkarahisar', 'AFY', 1),
7332(3318, 215, 'Ağrı', 'AGR', 1),
7333(3319, 215, 'Aksaray', 'AKS', 1),
7334(3320, 215, 'Amasya', 'AMA', 1),
7335(3321, 215, 'Ankara', 'ANK', 1),
7336(3322, 215, 'Antalya', 'ANT', 1),
7337(3323, 215, 'Ardahan', 'ARD', 1),
7338(3324, 215, 'Artvin', 'ART', 1),
7339(3325, 215, 'Aydın', 'AYI', 1),
7340(3326, 215, 'Balıkesir', 'BAL', 1),
7341(3327, 215, 'Bartın', 'BAR', 1),
7342(3328, 215, 'Batman', 'BAT', 1),
7343(3329, 215, 'Bayburt', 'BAY', 1),
7344(3330, 215, 'Bilecik', 'BIL', 1),
7345(3331, 215, 'Bingöl', 'BIN', 1),
7346(3332, 215, 'Bitlis', 'BIT', 1),
7347(3333, 215, 'Bolu', 'BOL', 1),
7348(3334, 215, 'Burdur', 'BRD', 1),
7349(3335, 215, 'Bursa', 'BRS', 1),
7350(3336, 215, 'Çanakkale', 'CKL', 1),
7351(3337, 215, 'Çankırı', 'CKR', 1),
7352(3338, 215, 'Çorum', 'COR', 1),
7353(3339, 215, 'Denizli', 'DEN', 1),
7354(3340, 215, 'Diyarbakir', 'DIY', 1),
7355(3341, 215, 'Düzce', 'DUZ', 1),
7356(3342, 215, 'Edirne', 'EDI', 1),
7357(3343, 215, 'Elazığ', 'ELA', 1),
7358(3344, 215, 'Erzincan', 'EZC', 1),
7359(3345, 215, 'Erzurum', 'EZR', 1),
7360(3346, 215, 'EskiÅŸehir', 'ESK', 1),
7361(3347, 215, 'Gaziantep', 'GAZ', 1),
7362(3348, 215, 'Giresun', 'GIR', 1),
7363(3349, 215, 'Gümüşhane', 'GMS', 1),
7364(3350, 215, 'Hakkari', 'HKR', 1),
7365(3351, 215, 'Hatay', 'HTY', 1),
7366(3352, 215, 'Iğdır', 'IGD', 1),
7367(3353, 215, 'Isparta', 'ISP', 1),
7368(3354, 215, 'İstanbul', 'IST', 1),
7369(3355, 215, 'İzmir', 'IZM', 1),
7370(3356, 215, 'KahramanmaraÅŸ', 'KAH', 1),
7371(3357, 215, 'Karabük', 'KRB', 1),
7372(3358, 215, 'Karaman', 'KRM', 1),
7373(3359, 215, 'Kars', 'KRS', 1),
7374(3360, 215, 'Kastamonu', 'KAS', 1),
7375(3361, 215, 'Kayseri', 'KAY', 1),
7376(3362, 215, 'Kilis', 'KLS', 1),
7377(3363, 215, 'Kırıkkale', 'KRK', 1),
7378(3364, 215, 'Kırklareli', 'KLR', 1),
7379(3365, 215, 'Kırşehir', 'KRH', 1),
7380(3366, 215, 'Kocaeli', 'KOC', 1),
7381(3367, 215, 'Konya', 'KON', 1),
7382(3368, 215, 'Kütahya', 'KUT', 1),
7383(3369, 215, 'Malatya', 'MAL', 1),
7384(3370, 215, 'Manisa', 'MAN', 1),
7385(3371, 215, 'Mardin', 'MAR', 1),
7386(3372, 215, 'Mersin', 'MER', 1),
7387(3373, 215, 'MuÄŸla', 'MUG', 1),
7388(3374, 215, 'MuÅŸ', 'MUS', 1),
7389(3375, 215, 'NevÅŸehir', 'NEV', 1),
7390(3376, 215, 'NiÄŸde', 'NIG', 1),
7391(3377, 215, 'Ordu', 'ORD', 1),
7392(3378, 215, 'Osmaniye', 'OSM', 1),
7393(3379, 215, 'Rize', 'RIZ', 1),
7394(3380, 215, 'Sakarya', 'SAK', 1),
7395(3381, 215, 'Samsun', 'SAM', 1),
7396(3382, 215, 'Şanlıurfa', 'SAN', 1),
7397(3383, 215, 'Siirt', 'SII', 1),
7398(3384, 215, 'Sinop', 'SIN', 1),
7399(3385, 215, 'Şırnak', 'SIR', 1),
7400(3386, 215, 'Sivas', 'SIV', 1),
7401(3387, 215, 'TekirdaÄŸ', 'TEL', 1),
7402(3388, 215, 'Tokat', 'TOK', 1),
7403(3389, 215, 'Trabzon', 'TRA', 1),
7404(3390, 215, 'Tunceli', 'TUN', 1),
7405(3391, 215, 'UÅŸak', 'USK', 1),
7406(3392, 215, 'Van', 'VAN', 1),
7407(3393, 215, 'Yalova', 'YAL', 1),
7408(3394, 215, 'Yozgat', 'YOZ', 1),
7409(3395, 215, 'Zonguldak', 'ZON', 1),
7410(3396, 216, 'Ahal Welayaty', 'A', 1),
7411(3397, 216, 'Balkan Welayaty', 'B', 1),
7412(3398, 216, 'Dashhowuz Welayaty', 'D', 1),
7413(3399, 216, 'Lebap Welayaty', 'L', 1),
7414(3400, 216, 'Mary Welayaty', 'M', 1),
7415(3401, 217, 'Ambergris Cays', 'AC', 1),
7416(3402, 217, 'Dellis Cay', 'DC', 1),
7417(3403, 217, 'French Cay', 'FC', 1),
7418(3404, 217, 'Little Water Cay', 'LW', 1),
7419(3405, 217, 'Parrot Cay', 'RC', 1),
7420(3406, 217, 'Pine Cay', 'PN', 1),
7421(3407, 217, 'Salt Cay', 'SL', 1),
7422(3408, 217, 'Grand Turk', 'GT', 1),
7423(3409, 217, 'South Caicos', 'SC', 1),
7424(3410, 217, 'East Caicos', 'EC', 1),
7425(3411, 217, 'Middle Caicos', 'MC', 1),
7426(3412, 217, 'North Caicos', 'NC', 1),
7427(3413, 217, 'Providenciales', 'PR', 1),
7428(3414, 217, 'West Caicos', 'WC', 1),
7429(3415, 218, 'Nanumanga', 'NMG', 1),
7430(3416, 218, 'Niulakita', 'NLK', 1),
7431(3417, 218, 'Niutao', 'NTO', 1),
7432(3418, 218, 'Funafuti', 'FUN', 1),
7433(3419, 218, 'Nanumea', 'NME', 1),
7434(3420, 218, 'Nui', 'NUI', 1),
7435(3421, 218, 'Nukufetau', 'NFT', 1),
7436(3422, 218, 'Nukulaelae', 'NLL', 1),
7437(3423, 218, 'Vaitupu', 'VAI', 1),
7438(3424, 219, 'Kalangala', 'KAL', 1),
7439(3425, 219, 'Kampala', 'KMP', 1),
7440(3426, 219, 'Kayunga', 'KAY', 1),
7441(3427, 219, 'Kiboga', 'KIB', 1),
7442(3428, 219, 'Luwero', 'LUW', 1),
7443(3429, 219, 'Masaka', 'MAS', 1),
7444(3430, 219, 'Mpigi', 'MPI', 1),
7445(3431, 219, 'Mubende', 'MUB', 1),
7446(3432, 219, 'Mukono', 'MUK', 1),
7447(3433, 219, 'Nakasongola', 'NKS', 1),
7448(3434, 219, 'Rakai', 'RAK', 1),
7449(3435, 219, 'Sembabule', 'SEM', 1),
7450(3436, 219, 'Wakiso', 'WAK', 1),
7451(3437, 219, 'Bugiri', 'BUG', 1),
7452(3438, 219, 'Busia', 'BUS', 1),
7453(3439, 219, 'Iganga', 'IGA', 1),
7454(3440, 219, 'Jinja', 'JIN', 1),
7455(3441, 219, 'Kaberamaido', 'KAB', 1),
7456(3442, 219, 'Kamuli', 'KML', 1),
7457(3443, 219, 'Kapchorwa', 'KPC', 1),
7458(3444, 219, 'Katakwi', 'KTK', 1),
7459(3445, 219, 'Kumi', 'KUM', 1),
7460(3446, 219, 'Mayuge', 'MAY', 1),
7461(3447, 219, 'Mbale', 'MBA', 1),
7462(3448, 219, 'Pallisa', 'PAL', 1),
7463(3449, 219, 'Sironko', 'SIR', 1),
7464(3450, 219, 'Soroti', 'SOR', 1),
7465(3451, 219, 'Tororo', 'TOR', 1),
7466(3452, 219, 'Adjumani', 'ADJ', 1),
7467(3453, 219, 'Apac', 'APC', 1),
7468(3454, 219, 'Arua', 'ARU', 1),
7469(3455, 219, 'Gulu', 'GUL', 1),
7470(3456, 219, 'Kitgum', 'KIT', 1),
7471(3457, 219, 'Kotido', 'KOT', 1),
7472(3458, 219, 'Lira', 'LIR', 1),
7473(3459, 219, 'Moroto', 'MRT', 1),
7474(3460, 219, 'Moyo', 'MOY', 1),
7475(3461, 219, 'Nakapiripirit', 'NAK', 1),
7476(3462, 219, 'Nebbi', 'NEB', 1),
7477(3463, 219, 'Pader', 'PAD', 1),
7478(3464, 219, 'Yumbe', 'YUM', 1),
7479(3465, 219, 'Bundibugyo', 'BUN', 1),
7480(3466, 219, 'Bushenyi', 'BSH', 1),
7481(3467, 219, 'Hoima', 'HOI', 1),
7482(3468, 219, 'Kabale', 'KBL', 1),
7483(3469, 219, 'Kabarole', 'KAR', 1),
7484(3470, 219, 'Kamwenge', 'KAM', 1),
7485(3471, 219, 'Kanungu', 'KAN', 1),
7486(3472, 219, 'Kasese', 'KAS', 1),
7487(3473, 219, 'Kibaale', 'KBA', 1),
7488(3474, 219, 'Kisoro', 'KIS', 1),
7489(3475, 219, 'Kyenjojo', 'KYE', 1),
7490(3476, 219, 'Masindi', 'MSN', 1),
7491(3477, 219, 'Mbarara', 'MBR', 1),
7492(3478, 219, 'Ntungamo', 'NTU', 1),
7493(3479, 219, 'Rukungiri', 'RUK', 1),
7494(3480, 220, 'Cherkasy', 'CK', 1),
7495(3481, 220, 'Chernihiv', 'CH', 1),
7496(3482, 220, 'Chernivtsi', 'CV', 1),
7497(3483, 220, 'Crimea', 'CR', 1),
7498(3484, 220, 'Dnipropetrovs''k', 'DN', 1),
7499(3485, 220, 'Donets''k', 'DO', 1),
7500(3486, 220, 'Ivano-Frankivs''k', 'IV', 1),
7501(3487, 220, 'Kharkiv Kherson', 'KL', 1),
7502(3488, 220, 'Khmel''nyts''kyy', 'KM', 1),
7503(3489, 220, 'Kirovohrad', 'KR', 1),
7504(3490, 220, 'Kiev', 'KV', 1),
7505(3491, 220, 'Kyyiv', 'KY', 1),
7506(3492, 220, 'Luhans''k', 'LU', 1),
7507(3493, 220, 'L''viv', 'LV', 1),
7508(3494, 220, 'Mykolayiv', 'MY', 1),
7509(3495, 220, 'Odesa', 'OD', 1),
7510(3496, 220, 'Poltava', 'PO', 1),
7511(3497, 220, 'Rivne', 'RI', 1),
7512(3498, 220, 'Sevastopol', 'SE', 1),
7513(3499, 220, 'Sumy', 'SU', 1),
7514(3500, 220, 'Ternopil''', 'TE', 1),
7515(3501, 220, 'Vinnytsya', 'VI', 1),
7516(3502, 220, 'Volyn''', 'VO', 1),
7517(3503, 220, 'Zakarpattya', 'ZK', 1),
7518(3504, 220, 'Zaporizhzhya', 'ZA', 1),
7519(3505, 220, 'Zhytomyr', 'ZH', 1),
7520(3506, 221, 'Abu Zaby', 'AZ', 1),
7521(3507, 221, '''Ajman', 'AJ', 1),
7522(3508, 221, 'Al Fujayrah', 'FU', 1),
7523(3509, 221, 'Ash Shariqah', 'SH', 1),
7524(3510, 221, 'Dubayy', 'DU', 1),
7525(3511, 221, 'R''as al Khaymah', 'RK', 1),
7526(3512, 221, 'Umm al Qaywayn', 'UQ', 1),
7527(3513, 222, 'Aberdeen', 'ABN', 1),
7528(3514, 222, 'Aberdeenshire', 'ABNS', 1),
7529(3515, 222, 'Anglesey', 'ANG', 1),
7530(3516, 222, 'Angus', 'AGS', 1),
7531(3517, 222, 'Argyll and Bute', 'ARY', 1),
7532(3518, 222, 'Bedfordshire', 'BEDS', 1),
7533(3519, 222, 'Berkshire', 'BERKS', 1),
7534(3520, 222, 'Blaenau Gwent', 'BLA', 1),
7535(3521, 222, 'Bridgend', 'BRI', 1),
7536(3522, 222, 'Bristol', 'BSTL', 1),
7537(3523, 222, 'Buckinghamshire', 'BUCKS', 1),
7538(3524, 222, 'Caerphilly', 'CAE', 1),
7539(3525, 222, 'Cambridgeshire', 'CAMBS', 1),
7540(3526, 222, 'Cardiff', 'CDF', 1),
7541(3527, 222, 'Carmarthenshire', 'CARM', 1),
7542(3528, 222, 'Ceredigion', 'CDGN', 1),
7543(3529, 222, 'Cheshire', 'CHES', 1),
7544(3530, 222, 'Clackmannanshire', 'CLACK', 1),
7545(3531, 222, 'Conwy', 'CON', 1),
7546(3532, 222, 'Cornwall', 'CORN', 1),
7547(3533, 222, 'Denbighshire', 'DNBG', 1),
7548(3534, 222, 'Derbyshire', 'DERBY', 1),
7549(3535, 222, 'Devon', 'DVN', 1),
7550(3536, 222, 'Dorset', 'DOR', 1),
7551(3537, 222, 'Dumfries and Galloway', 'DGL', 1),
7552(3538, 222, 'Dundee', 'DUND', 1),
7553(3539, 222, 'Durham', 'DHM', 1),
7554(3540, 222, 'East Ayrshire', 'ARYE', 1),
7555(3541, 222, 'East Dunbartonshire', 'DUNBE', 1),
7556(3542, 222, 'East Lothian', 'LOTE', 1),
7557(3543, 222, 'East Renfrewshire', 'RENE', 1),
7558(3544, 222, 'East Riding of Yorkshire', 'ERYS', 1),
7559(3545, 222, 'East Sussex', 'SXE', 1),
7560(3546, 222, 'Edinburgh', 'EDIN', 1),
7561(3547, 222, 'Essex', 'ESX', 1),
7562(3548, 222, 'Falkirk', 'FALK', 1),
7563(3549, 222, 'Fife', 'FFE', 1),
7564(3550, 222, 'Flintshire', 'FLINT', 1),
7565(3551, 222, 'Glasgow', 'GLAS', 1),
7566(3552, 222, 'Gloucestershire', 'GLOS', 1),
7567(3553, 222, 'Greater London', 'LDN', 1),
7568(3554, 222, 'Greater Manchester', 'MCH', 1),
7569(3555, 222, 'Gwynedd', 'GDD', 1),
7570(3556, 222, 'Hampshire', 'HANTS', 1),
7571(3557, 222, 'Herefordshire', 'HWR', 1),
7572(3558, 222, 'Hertfordshire', 'HERTS', 1),
7573(3559, 222, 'Highlands', 'HLD', 1),
7574(3560, 222, 'Inverclyde', 'IVER', 1),
7575(3561, 222, 'Isle of Wight', 'IOW', 1),
7576(3562, 222, 'Kent', 'KNT', 1),
7577(3563, 222, 'Lancashire', 'LANCS', 1),
7578(3564, 222, 'Leicestershire', 'LEICS', 1),
7579(3565, 222, 'Lincolnshire', 'LINCS', 1),
7580(3566, 222, 'Merseyside', 'MSY', 1),
7581(3567, 222, 'Merthyr Tydfil', 'MERT', 1),
7582(3568, 222, 'Midlothian', 'MLOT', 1),
7583(3569, 222, 'Monmouthshire', 'MMOUTH', 1),
7584(3570, 222, 'Moray', 'MORAY', 1),
7585(3571, 222, 'Neath Port Talbot', 'NPRTAL', 1),
7586(3572, 222, 'Newport', 'NEWPT', 1),
7587(3573, 222, 'Norfolk', 'NOR', 1),
7588(3574, 222, 'North Ayrshire', 'ARYN', 1),
7589(3575, 222, 'North Lanarkshire', 'LANN', 1),
7590(3576, 222, 'North Yorkshire', 'YSN', 1),
7591(3577, 222, 'Northamptonshire', 'NHM', 1),
7592(3578, 222, 'Northumberland', 'NLD', 1),
7593(3579, 222, 'Nottinghamshire', 'NOT', 1),
7594(3580, 222, 'Orkney Islands', 'ORK', 1),
7595(3581, 222, 'Oxfordshire', 'OFE', 1),
7596(3582, 222, 'Pembrokeshire', 'PEM', 1),
7597(3583, 222, 'Perth and Kinross', 'PERTH', 1),
7598(3584, 222, 'Powys', 'PWS', 1),
7599(3585, 222, 'Renfrewshire', 'REN', 1),
7600(3586, 222, 'Rhondda Cynon Taff', 'RHON', 1),
7601(3587, 222, 'Rutland', 'RUT', 1),
7602(3588, 222, 'Scottish Borders', 'BOR', 1),
7603(3589, 222, 'Shetland Islands', 'SHET', 1),
7604(3590, 222, 'Shropshire', 'SPE', 1),
7605(3591, 222, 'Somerset', 'SOM', 1),
7606(3592, 222, 'South Ayrshire', 'ARYS', 1),
7607(3593, 222, 'South Lanarkshire', 'LANS', 1),
7608(3594, 222, 'South Yorkshire', 'YSS', 1),
7609(3595, 222, 'Staffordshire', 'SFD', 1),
7610(3596, 222, 'Stirling', 'STIR', 1),
7611(3597, 222, 'Suffolk', 'SFK', 1),
7612(3598, 222, 'Surrey', 'SRY', 1),
7613(3599, 222, 'Swansea', 'SWAN', 1),
7614(3600, 222, 'Torfaen', 'TORF', 1),
7615(3601, 222, 'Tyne and Wear', 'TWR', 1),
7616(3602, 222, 'Vale of Glamorgan', 'VGLAM', 1),
7617(3603, 222, 'Warwickshire', 'WARKS', 1),
7618(3604, 222, 'West Dunbartonshire', 'WDUN', 1),
7619(3605, 222, 'West Lothian', 'WLOT', 1),
7620(3606, 222, 'West Midlands', 'WMD', 1),
7621(3607, 222, 'West Sussex', 'SXW', 1),
7622(3608, 222, 'West Yorkshire', 'YSW', 1),
7623(3609, 222, 'Western Isles', 'WIL', 1),
7624(3610, 222, 'Wiltshire', 'WLT', 1),
7625(3611, 222, 'Worcestershire', 'WORCS', 1),
7626(3612, 222, 'Wrexham', 'WRX', 1),
7627(3613, 223, 'Alabama', 'AL', 1),
7628(3614, 223, 'Alaska', 'AK', 1),
7629(3615, 223, 'American Samoa', 'AS', 1),
7630(3616, 223, 'Arizona', 'AZ', 1),
7631(3617, 223, 'Arkansas', 'AR', 1),
7632(3618, 223, 'Armed Forces Africa', 'AF', 1),
7633(3619, 223, 'Armed Forces Americas', 'AA', 1),
7634(3620, 223, 'Armed Forces Canada', 'AC', 1),
7635(3621, 223, 'Armed Forces Europe', 'AE', 1),
7636(3622, 223, 'Armed Forces Middle East', 'AM', 1),
7637(3623, 223, 'Armed Forces Pacific', 'AP', 1),
7638(3624, 223, 'California', 'CA', 1),
7639(3625, 223, 'Colorado', 'CO', 1),
7640(3626, 223, 'Connecticut', 'CT', 1),
7641(3627, 223, 'Delaware', 'DE', 1),
7642(3628, 223, 'District of Columbia', 'DC', 1),
7643(3629, 223, 'Federated States Of Micronesia', 'FM', 1),
7644(3630, 223, 'Florida', 'FL', 1),
7645(3631, 223, 'Georgia', 'GA', 1),
7646(3632, 223, 'Guam', 'GU', 1),
7647(3633, 223, 'Hawaii', 'HI', 1),
7648(3634, 223, 'Idaho', 'ID', 1),
7649(3635, 223, 'Illinois', 'IL', 1),
7650(3636, 223, 'Indiana', 'IN', 1),
7651(3637, 223, 'Iowa', 'IA', 1),
7652(3638, 223, 'Kansas', 'KS', 1),
7653(3639, 223, 'Kentucky', 'KY', 1),
7654(3640, 223, 'Louisiana', 'LA', 1),
7655(3641, 223, 'Maine', 'ME', 1),
7656(3642, 223, 'Marshall Islands', 'MH', 1),
7657(3643, 223, 'Maryland', 'MD', 1),
7658(3644, 223, 'Massachusetts', 'MA', 1),
7659(3645, 223, 'Michigan', 'MI', 1),
7660(3646, 223, 'Minnesota', 'MN', 1),
7661(3647, 223, 'Mississippi', 'MS', 1),
7662(3648, 223, 'Missouri', 'MO', 1),
7663(3649, 223, 'Montana', 'MT', 1),
7664(3650, 223, 'Nebraska', 'NE', 1),
7665(3651, 223, 'Nevada', 'NV', 1),
7666(3652, 223, 'New Hampshire', 'NH', 1),
7667(3653, 223, 'New Jersey', 'NJ', 1),
7668(3654, 223, 'New Mexico', 'NM', 1),
7669(3655, 223, 'New York', 'NY', 1),
7670(3656, 223, 'North Carolina', 'NC', 1),
7671(3657, 223, 'North Dakota', 'ND', 1),
7672(3658, 223, 'Northern Mariana Islands', 'MP', 1),
7673(3659, 223, 'Ohio', 'OH', 1),
7674(3660, 223, 'Oklahoma', 'OK', 1),
7675(3661, 223, 'Oregon', 'OR', 1),
7676(3662, 223, 'Palau', 'PW', 1),
7677(3663, 223, 'Pennsylvania', 'PA', 1),
7678(3664, 223, 'Puerto Rico', 'PR', 1),
7679(3665, 223, 'Rhode Island', 'RI', 1),
7680(3666, 223, 'South Carolina', 'SC', 1),
7681(3667, 223, 'South Dakota', 'SD', 1),
7682(3668, 223, 'Tennessee', 'TN', 1),
7683(3669, 223, 'Texas', 'TX', 1),
7684(3670, 223, 'Utah', 'UT', 1),
7685(3671, 223, 'Vermont', 'VT', 1),
7686(3672, 223, 'Virgin Islands', 'VI', 1),
7687(3673, 223, 'Virginia', 'VA', 1),
7688(3674, 223, 'Washington', 'WA', 1),
7689(3675, 223, 'West Virginia', 'WV', 1),
7690(3676, 223, 'Wisconsin', 'WI', 1),
7691(3677, 223, 'Wyoming', 'WY', 1),
7692(3678, 224, 'Baker Island', 'BI', 1),
7693(3679, 224, 'Howland Island', 'HI', 1),
7694(3680, 224, 'Jarvis Island', 'JI', 1),
7695(3681, 224, 'Johnston Atoll', 'JA', 1),
7696(3682, 224, 'Kingman Reef', 'KR', 1),
7697(3683, 224, 'Midway Atoll', 'MA', 1),
7698(3684, 224, 'Navassa Island', 'NI', 1),
7699(3685, 224, 'Palmyra Atoll', 'PA', 1),
7700(3686, 224, 'Wake Island', 'WI', 1),
7701(3687, 225, 'Artigas', 'AR', 1),
7702(3688, 225, 'Canelones', 'CA', 1),
7703(3689, 225, 'Cerro Largo', 'CL', 1),
7704(3690, 225, 'Colonia', 'CO', 1),
7705(3691, 225, 'Durazno', 'DU', 1),
7706(3692, 225, 'Flores', 'FS', 1),
7707(3693, 225, 'Florida', 'FA', 1),
7708(3694, 225, 'Lavalleja', 'LA', 1),
7709(3695, 225, 'Maldonado', 'MA', 1),
7710(3696, 225, 'Montevideo', 'MO', 1),
7711(3697, 225, 'Paysandu', 'PA', 1),
7712(3698, 225, 'Rio Negro', 'RN', 1),
7713(3699, 225, 'Rivera', 'RV', 1),
7714(3700, 225, 'Rocha', 'RO', 1),
7715(3701, 225, 'Salto', 'SL', 1),
7716(3702, 225, 'San Jose', 'SJ', 1),
7717(3703, 225, 'Soriano', 'SO', 1),
7718(3704, 225, 'Tacuarembo', 'TA', 1),
7719(3705, 225, 'Treinta y Tres', 'TT', 1),
7720(3706, 226, 'Andijon', 'AN', 1),
7721(3707, 226, 'Buxoro', 'BU', 1),
7722(3708, 226, 'Farg''ona', 'FA', 1),
7723(3709, 226, 'Jizzax', 'JI', 1),
7724(3710, 226, 'Namangan', 'NG', 1),
7725(3711, 226, 'Navoiy', 'NW', 1),
7726(3712, 226, 'Qashqadaryo', 'QA', 1),
7727(3713, 226, 'Qoraqalpog''iston Republikasi', 'QR', 1),
7728(3714, 226, 'Samarqand', 'SA', 1),
7729(3715, 226, 'Sirdaryo', 'SI', 1),
7730(3716, 226, 'Surxondaryo', 'SU', 1),
7731(3717, 226, 'Toshkent City', 'TK', 1),
7732(3718, 226, 'Toshkent Region', 'TO', 1),
7733(3719, 226, 'Xorazm', 'XO', 1),
7734(3720, 227, 'Malampa', 'MA', 1),
7735(3721, 227, 'Penama', 'PE', 1),
7736(3722, 227, 'Sanma', 'SA', 1),
7737(3723, 227, 'Shefa', 'SH', 1),
7738(3724, 227, 'Tafea', 'TA', 1),
7739(3725, 227, 'Torba', 'TO', 1),
7740(3726, 229, 'Amazonas', 'AM', 1),
7741(3727, 229, 'Anzoategui', 'AN', 1),
7742(3728, 229, 'Apure', 'AP', 1),
7743(3729, 229, 'Aragua', 'AR', 1),
7744(3730, 229, 'Barinas', 'BA', 1),
7745(3731, 229, 'Bolivar', 'BO', 1),
7746(3732, 229, 'Carabobo', 'CA', 1),
7747(3733, 229, 'Cojedes', 'CO', 1),
7748(3734, 229, 'Delta Amacuro', 'DA', 1),
7749(3735, 229, 'Dependencias Federales', 'DF', 1),
7750(3736, 229, 'Distrito Federal', 'DI', 1),
7751(3737, 229, 'Falcon', 'FA', 1),
7752(3738, 229, 'Guarico', 'GU', 1),
7753(3739, 229, 'Lara', 'LA', 1),
7754(3740, 229, 'Merida', 'ME', 1),
7755(3741, 229, 'Miranda', 'MI', 1),
7756(3742, 229, 'Monagas', 'MO', 1),
7757(3743, 229, 'Nueva Esparta', 'NE', 1),
7758(3744, 229, 'Portuguesa', 'PO', 1),
7759(3745, 229, 'Sucre', 'SU', 1),
7760(3746, 229, 'Tachira', 'TA', 1),
7761(3747, 229, 'Trujillo', 'TR', 1),
7762(3748, 229, 'Vargas', 'VA', 1),
7763(3749, 229, 'Yaracuy', 'YA', 1),
7764(3750, 229, 'Zulia', 'ZU', 1),
7765(3751, 230, 'An Giang', 'AG', 1),
7766(3752, 230, 'Bac Giang', 'BG', 1),
7767(3753, 230, 'Bac Kan', 'BK', 1),
7768(3754, 230, 'Bac Lieu', 'BL', 1),
7769(3755, 230, 'Bac Ninh', 'BC', 1),
7770(3756, 230, 'Ba Ria-Vung Tau', 'BR', 1),
7771(3757, 230, 'Ben Tre', 'BN', 1),
7772(3758, 230, 'Binh Dinh', 'BH', 1),
7773(3759, 230, 'Binh Duong', 'BU', 1),
7774(3760, 230, 'Binh Phuoc', 'BP', 1),
7775(3761, 230, 'Binh Thuan', 'BT', 1),
7776(3762, 230, 'Ca Mau', 'CM', 1),
7777(3763, 230, 'Can Tho', 'CT', 1),
7778(3764, 230, 'Cao Bang', 'CB', 1),
7779(3765, 230, 'Dak Lak', 'DL', 1),
7780(3766, 230, 'Dak Nong', 'DG', 1),
7781(3767, 230, 'Da Nang', 'DN', 1),
7782(3768, 230, 'Dien Bien', 'DB', 1),
7783(3769, 230, 'Dong Nai', 'DI', 1),
7784(3770, 230, 'Dong Thap', 'DT', 1),
7785(3771, 230, 'Gia Lai', 'GL', 1),
7786(3772, 230, 'Ha Giang', 'HG', 1),
7787(3773, 230, 'Hai Duong', 'HD', 1),
7788(3774, 230, 'Hai Phong', 'HP', 1),
7789(3775, 230, 'Ha Nam', 'HM', 1),
7790(3776, 230, 'Ha Noi', 'HI', 1),
7791(3777, 230, 'Ha Tay', 'HT', 1),
7792(3778, 230, 'Ha Tinh', 'HH', 1),
7793(3779, 230, 'Hoa Binh', 'HB', 1),
7794(3780, 230, 'Ho Chi Minh City', 'HC', 1),
7795(3781, 230, 'Hau Giang', 'HU', 1),
7796(3782, 230, 'Hung Yen', 'HY', 1),
7797(3783, 232, 'Saint Croix', 'C', 1),
7798(3784, 232, 'Saint John', 'J', 1),
7799(3785, 232, 'Saint Thomas', 'T', 1),
7800(3786, 233, 'Alo', 'A', 1),
7801(3787, 233, 'Sigave', 'S', 1),
7802(3788, 233, 'Wallis', 'W', 1),
7803(3789, 235, 'Abyan', 'AB', 1),
7804(3790, 235, 'Adan', 'AD', 1),
7805(3791, 235, 'Amran', 'AM', 1),
7806(3792, 235, 'Al Bayda', 'BA', 1),
7807(3793, 235, 'Ad Dali', 'DA', 1),
7808(3794, 235, 'Dhamar', 'DH', 1),
7809(3795, 235, 'Hadramawt', 'HD', 1),
7810(3796, 235, 'Hajjah', 'HJ', 1),
7811(3797, 235, 'Al Hudaydah', 'HU', 1),
7812(3798, 235, 'Ibb', 'IB', 1),
7813(3799, 235, 'Al Jawf', 'JA', 1),
7814(3800, 235, 'Lahij', 'LA', 1),
7815(3801, 235, 'Ma''rib', 'MA', 1),
7816(3802, 235, 'Al Mahrah', 'MR', 1),
7817(3803, 235, 'Al Mahwit', 'MW', 1),
7818(3804, 235, 'Sa''dah', 'SD', 1),
7819(3805, 235, 'San''a', 'SN', 1),
7820(3806, 235, 'Shabwah', 'SH', 1),
7821(3807, 235, 'Ta''izz', 'TA', 1),
7822(3812, 237, 'Bas-Congo', 'BC', 1),
7823(3813, 237, 'Bandundu', 'BN', 1),
7824(3814, 237, 'Equateur', 'EQ', 1),
7825(3815, 237, 'Katanga', 'KA', 1),
7826(3816, 237, 'Kasai-Oriental', 'KE', 1),
7827(3817, 237, 'Kinshasa', 'KN', 1),
7828(3818, 237, 'Kasai-Occidental', 'KW', 1),
7829(3819, 237, 'Maniema', 'MA', 1),
7830(3820, 237, 'Nord-Kivu', 'NK', 1),
7831(3821, 237, 'Orientale', 'OR', 1),
7832(3822, 237, 'Sud-Kivu', 'SK', 1),
7833(3823, 238, 'Central', 'CE', 1),
7834(3824, 238, 'Copperbelt', 'CB', 1),
7835(3825, 238, 'Eastern', 'EA', 1),
7836(3826, 238, 'Luapula', 'LP', 1),
7837(3827, 238, 'Lusaka', 'LK', 1),
7838(3828, 238, 'Northern', 'NO', 1),
7839(3829, 238, 'North-Western', 'NW', 1),
7840(3830, 238, 'Southern', 'SO', 1),
7841(3831, 238, 'Western', 'WE', 1),
7842(3832, 239, 'Bulawayo', 'BU', 1),
7843(3833, 239, 'Harare', 'HA', 1),
7844(3834, 239, 'Manicaland', 'ML', 1),
7845(3835, 239, 'Mashonaland Central', 'MC', 1),
7846(3836, 239, 'Mashonaland East', 'ME', 1),
7847(3837, 239, 'Mashonaland West', 'MW', 1),
7848(3838, 239, 'Masvingo', 'MV', 1),
7849(3839, 239, 'Matabeleland North', 'MN', 1),
7850(3840, 239, 'Matabeleland South', 'MS', 1),
7851(3841, 239, 'Midlands', 'MD', 1),
7852(3861, 105, 'Campobasso', 'CB', 1),
7853(3862, 105, 'Carbonia-Iglesias', 'CI', 1),
7854(3863, 105, 'Caserta', 'CE', 1),
7855(3864, 105, 'Catania', 'CT', 1),
7856(3865, 105, 'Catanzaro', 'CZ', 1),
7857(3866, 105, 'Chieti', 'CH', 1),
7858(3867, 105, 'Como', 'CO', 1),
7859(3868, 105, 'Cosenza', 'CS', 1),
7860(3869, 105, 'Cremona', 'CR', 1),
7861(3870, 105, 'Crotone', 'KR', 1),
7862(3871, 105, 'Cuneo', 'CN', 1),
7863(3872, 105, 'Enna', 'EN', 1),
7864(3873, 105, 'Ferrara', 'FE', 1),
7865(3874, 105, 'Firenze', 'FI', 1),
7866(3875, 105, 'Foggia', 'FG', 1),
7867(3876, 105, 'Forli-Cesena', 'FC', 1),
7868(3877, 105, 'Frosinone', 'FR', 1),
7869(3878, 105, 'Genova', 'GE', 1),
7870(3879, 105, 'Gorizia', 'GO', 1),
7871(3880, 105, 'Grosseto', 'GR', 1),
7872(3881, 105, 'Imperia', 'IM', 1),
7873(3882, 105, 'Isernia', 'IS', 1),
7874(3883, 105, 'L'Aquila', 'AQ', 1),
7875(3884, 105, 'La Spezia', 'SP', 1),
7876(3885, 105, 'Latina', 'LT', 1),
7877(3886, 105, 'Lecce', 'LE', 1),
7878(3887, 105, 'Lecco', 'LC', 1),
7879(3888, 105, 'Livorno', 'LI', 1),
7880(3889, 105, 'Lodi', 'LO', 1),
7881(3890, 105, 'Lucca', 'LU', 1),
7882(3891, 105, 'Macerata', 'MC', 1),
7883(3892, 105, 'Mantova', 'MN', 1),
7884(3893, 105, 'Massa-Carrara', 'MS', 1),
7885(3894, 105, 'Matera', 'MT', 1),
7886(3895, 105, 'Medio Campidano', 'VS', 1),
7887(3896, 105, 'Messina', 'ME', 1),
7888(3897, 105, 'Milano', 'MI', 1),
7889(3898, 105, 'Modena', 'MO', 1),
7890(3899, 105, 'Napoli', 'NA', 1),
7891(3900, 105, 'Novara', 'NO', 1),
7892(3901, 105, 'Nuoro', 'NU', 1),
7893(3902, 105, 'Ogliastra', 'OG', 1),
7894(3903, 105, 'Olbia-Tempio', 'OT', 1),
7895(3904, 105, 'Oristano', 'OR', 1),
7896(3905, 105, 'Padova', 'PD', 1),
7897(3906, 105, 'Palermo', 'PA', 1),
7898(3907, 105, 'Parma', 'PR', 1),
7899(3908, 105, 'Pavia', 'PV', 1),
7900(3909, 105, 'Perugia', 'PG', 1),
7901(3910, 105, 'Pesaro e Urbino', 'PU', 1),
7902(3911, 105, 'Pescara', 'PE', 1),
7903(3912, 105, 'Piacenza', 'PC', 1),
7904(3913, 105, 'Pisa', 'PI', 1),
7905(3914, 105, 'Pistoia', 'PT', 1),
7906(3915, 105, 'Pordenone', 'PN', 1),
7907(3916, 105, 'Potenza', 'PZ', 1),
7908(3917, 105, 'Prato', 'PO', 1),
7909(3918, 105, 'Ragusa', 'RG', 1),
7910(3919, 105, 'Ravenna', 'RA', 1),
7911(3920, 105, 'Reggio Calabria', 'RC', 1),
7912(3921, 105, 'Reggio Emilia', 'RE', 1),
7913(3922, 105, 'Rieti', 'RI', 1),
7914(3923, 105, 'Rimini', 'RN', 1),
7915(3924, 105, 'Roma', 'RM', 1),
7916(3925, 105, 'Rovigo', 'RO', 1),
7917(3926, 105, 'Salerno', 'SA', 1),
7918(3927, 105, 'Sassari', 'SS', 1),
7919(3928, 105, 'Savona', 'SV', 1),
7920(3929, 105, 'Siena', 'SI', 1),
7921(3930, 105, 'Siracusa', 'SR', 1),
7922(3931, 105, 'Sondrio', 'SO', 1),
7923(3932, 105, 'Taranto', 'TA', 1),
7924(3933, 105, 'Teramo', 'TE', 1),
7925(3934, 105, 'Terni', 'TR', 1),
7926(3935, 105, 'Torino', 'TO', 1),
7927(3936, 105, 'Trapani', 'TP', 1),
7928(3937, 105, 'Trento', 'TN', 1),
7929(3938, 105, 'Treviso', 'TV', 1),
7930(3939, 105, 'Trieste', 'TS', 1),
7931(3940, 105, 'Udine', 'UD', 1),
7932(3941, 105, 'Varese', 'VA', 1),
7933(3942, 105, 'Venezia', 'VE', 1),
7934(3943, 105, 'Verbano-Cusio-Ossola', 'VB', 1),
7935(3944, 105, 'Vercelli', 'VC', 1),
7936(3945, 105, 'Verona', 'VR', 1),
7937(3946, 105, 'Vibo Valentia', 'VV', 1),
7938(3947, 105, 'Vicenza', 'VI', 1),
7939(3948, 105, 'Viterbo', 'VT', 1),
7940(3949, 222, 'County Antrim', 'ANT', 1),
7941(3950, 222, 'County Armagh', 'ARM', 1),
7942(3951, 222, 'County Down', 'DOW', 1),
7943(3952, 222, 'County Fermanagh', 'FER', 1),
7944(3953, 222, 'County Londonderry', 'LDY', 1),
7945(3954, 222, 'County Tyrone', 'TYR', 1),
7946(3955, 222, 'Cumbria', 'CMA', 1),
7947(3956, 190, 'Pomurska', '1', 1),
7948(3957, 190, 'Podravska', '2', 1),
7949(3958, 190, 'Koroška', '3', 1),
7950(3959, 190, 'Savinjska', '4', 1),
7951(3960, 190, 'Zasavska', '5', 1),
7952(3961, 190, 'Spodnjeposavska', '6', 1),
7953(3962, 190, 'Jugovzhodna Slovenija', '7', 1),
7954(3963, 190, 'Osrednjeslovenska', '8', 1),
7955(3964, 190, 'Gorenjska', '9', 1),
7956(3965, 190, 'Notranjsko-kraška', '10', 1),
7957(3966, 190, 'Goriška', '11', 1),
7958(3967, 190, 'Obalno-kraška', '12', 1),
7959(3968, 33, 'Ruse', '', 1),
7960(3969, 101, 'Alborz', 'ALB', 1),
7961(3970, 21, 'Brussels-Capital Region', 'BRU', 1),
7962(3971, 138, 'Aguascalientes', 'AG', 1),
7963(3972, 222, 'Isle of Man', 'IOM', 1),
7964(3973, 242, 'Andrijevica', '01', 1),
7965(3974, 242, 'Bar', '02', 1),
7966(3975, 242, 'Berane', '03', 1),
7967(3976, 242, 'Bijelo Polje', '04', 1),
7968(3977, 242, 'Budva', '05', 1),
7969(3978, 242, 'Cetinje', '06', 1),
7970(3979, 242, 'Danilovgrad', '07', 1),
7971(3980, 242, 'Herceg-Novi', '08', 1),
7972(3981, 242, 'Kolašin', '09', 1),
7973(3982, 242, 'Kotor', '10', 1),
7974(3983, 242, 'Mojkovac', '11', 1),
7975(3984, 242, 'Nikšić', '12', 1),
7976(3985, 242, 'Plav', '13', 1),
7977(3986, 242, 'Pljevlja', '14', 1),
7978(3987, 242, 'Plužine', '15', 1),
7979(3988, 242, 'Podgorica', '16', 1),
7980(3989, 242, 'Rožaje', '17', 1),
7981(3990, 242, 'Å avnik', '18', 1),
7982(3991, 242, 'Tivat', '19', 1),
7983(3992, 242, 'Ulcinj', '20', 1),
7984(3993, 242, 'Žabljak', '21', 1),
7985(3994, 243, 'Belgrade', '00', 1),
7986(3995, 243, 'North BaÄka', '01', 1),
7987(3996, 243, 'Central Banat', '02', 1),
7988(3997, 243, 'North Banat', '03', 1),
7989(3998, 243, 'South Banat', '04', 1),
7990(3999, 243, 'West BaÄka', '05', 1),
7991(4000, 243, 'South BaÄka', '06', 1),
7992(4001, 243, 'Srem', '07', 1),
7993(4002, 243, 'MaÄva', '08', 1),
7994(4003, 243, 'Kolubara', '09', 1),
7995(4004, 243, 'Podunavlje', '10', 1),
7996(4005, 243, 'BraniÄevo', '11', 1),
7997(4006, 243, 'Å umadija', '12', 1),
7998(4007, 243, 'Pomoravlje', '13', 1),
7999(4008, 243, 'Bor', '14', 1),
8000(4009, 243, 'ZajeÄar', '15', 1),
8001(4010, 243, 'Zlatibor', '16', 1),
8002(4011, 243, 'Moravica', '17', 1),
8003(4012, 243, 'Raška', '18', 1),
8004(4013, 243, 'Rasina', '19', 1),
8005(4014, 243, 'Nišava', '20', 1),
8006(4015, 243, 'Toplica', '21', 1),
8007(4016, 243, 'Pirot', '22', 1),
8008(4017, 243, 'Jablanica', '23', 1),
8009(4018, 243, 'PÄinja', '24', 1),
8010(4019, 243, 'Kosovo', 'KM', 1),
8011(4020, 245, 'Bonaire', 'BO', 1),
8012(4021, 245, 'Saba', 'SA', 1),
8013(4022, 245, 'Sint Eustatius', 'SE', 1),
8014(4023, 248, 'Central Equatoria', 'EC', 1),
8015(4024, 248, 'Eastern Equatoria', 'EE', 1),
8016(4025, 248, 'Jonglei', 'JG', 1),
8017(4026, 248, 'Lakes', 'LK', 1),
8018(4027, 248, 'Northern Bahr el-Ghazal', 'BN', 1),
8019(4028, 248, 'Unity', 'UY', 1),
8020(4029, 248, 'Upper Nile', 'NU', 1),
8021(4030, 248, 'Warrap', 'WR', 1),
8022(4031, 248, 'Western Bahr el-Ghazal', 'BW', 1),
8023(4032, 248, 'Western Equatoria', 'EW', 1);
8024
8025-- --------------------------------------------------------
8026
8027--
8028-- Table structure for table `zone_to_geo_zone`
8029--
8030
8031CREATE TABLE IF NOT EXISTS `zone_to_geo_zone` (
8032 `zone_to_geo_zone_id` int(11) NOT NULL AUTO_INCREMENT,
8033 `country_id` int(11) NOT NULL,
8034 `zone_id` int(11) NOT NULL DEFAULT '0',
8035 `geo_zone_id` int(11) NOT NULL,
8036 `date_added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
8037 `date_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
8038 PRIMARY KEY (`zone_to_geo_zone_id`)
8039) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=66 ;
8040
8041--
8042-- Dumping data for table `zone_to_geo_zone`
8043--
8044
8045INSERT INTO `zone_to_geo_zone` (`zone_to_geo_zone_id`, `country_id`, `zone_id`, `geo_zone_id`, `date_added`, `date_modified`) VALUES
8046(57, 222, 0, 3, '2010-02-26 22:33:24', '0000-00-00 00:00:00'),
8047(65, 222, 0, 4, '2010-12-15 15:18:13', '0000-00-00 00:00:00');
8048
8049/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
8050/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
8051/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;