/*!999999\- enable the sandbox mode */ 
-- MariaDB dump 10.19  Distrib 10.5.25-MariaDB, for Linux (x86_64)
--
-- Host: localhost    Database: fmedia_lokalo
-- ------------------------------------------------------
-- Server version	10.5.25-MariaDB

/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;

--
-- Table structure for table `lk_address`
--

DROP TABLE IF EXISTS `lk_address`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_address` (
  `address_id` int(11) NOT NULL AUTO_INCREMENT,
  `customer_id` int(11) NOT NULL,
  `firstname` varchar(32) NOT NULL,
  `lastname` varchar(32) NOT NULL,
  `company` varchar(40) NOT NULL,
  `address_1` varchar(128) NOT NULL,
  `address_2` varchar(128) NOT NULL,
  `city` varchar(128) NOT NULL,
  `postcode` varchar(10) NOT NULL,
  `country_id` int(11) NOT NULL DEFAULT 0,
  `zone_id` int(11) NOT NULL DEFAULT 0,
  `custom_field` text NOT NULL,
  PRIMARY KEY (`address_id`),
  KEY `customer_id` (`customer_id`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_address`
--

LOCK TABLES `lk_address` WRITE;
/*!40000 ALTER TABLE `lk_address` DISABLE KEYS */;
INSERT INTO `lk_address` VALUES (1,1,'John','Doe','Webkul','Noida','Noida','Noida','110092',99,1489,''),(2,2,'Test','Test','Webkul','Noida','Noida','Noida','110092',218,3418,''),(3,3,'Henrico','Wijaya','','Jalan Dr Susilo IIE nomor 102A','','Jakarta','11450',100,1513,'[]');
/*!40000 ALTER TABLE `lk_address` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_affiliate`
--

DROP TABLE IF EXISTS `lk_affiliate`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_affiliate` (
  `affiliate_id` int(11) NOT NULL AUTO_INCREMENT,
  `firstname` varchar(32) NOT NULL,
  `lastname` varchar(32) NOT NULL,
  `email` varchar(96) NOT NULL,
  `telephone` varchar(32) NOT NULL,
  `fax` varchar(32) NOT NULL,
  `password` varchar(40) NOT NULL,
  `salt` varchar(9) NOT NULL,
  `company` varchar(40) NOT NULL,
  `website` varchar(255) NOT NULL,
  `address_1` varchar(128) NOT NULL,
  `address_2` varchar(128) NOT NULL,
  `city` varchar(128) NOT NULL,
  `postcode` varchar(10) NOT NULL,
  `country_id` int(11) NOT NULL,
  `zone_id` int(11) NOT NULL,
  `code` varchar(64) NOT NULL,
  `commission` decimal(4,2) NOT NULL DEFAULT 0.00,
  `tax` varchar(64) NOT NULL,
  `payment` varchar(6) NOT NULL,
  `cheque` varchar(100) NOT NULL,
  `paypal` varchar(64) NOT NULL,
  `bank_name` varchar(64) NOT NULL,
  `bank_branch_number` varchar(64) NOT NULL,
  `bank_swift_code` varchar(64) NOT NULL,
  `bank_account_name` varchar(64) NOT NULL,
  `bank_account_number` varchar(64) NOT NULL,
  `ip` varchar(40) NOT NULL,
  `status` tinyint(1) NOT NULL,
  `approved` tinyint(1) NOT NULL,
  `date_added` datetime NOT NULL,
  PRIMARY KEY (`affiliate_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_affiliate`
--

LOCK TABLES `lk_affiliate` WRITE;
/*!40000 ALTER TABLE `lk_affiliate` DISABLE KEYS */;
/*!40000 ALTER TABLE `lk_affiliate` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_affiliate_activity`
--

DROP TABLE IF EXISTS `lk_affiliate_activity`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_affiliate_activity` (
  `affiliate_activity_id` int(11) NOT NULL AUTO_INCREMENT,
  `affiliate_id` int(11) NOT NULL,
  `key` varchar(64) NOT NULL,
  `data` text NOT NULL,
  `ip` varchar(40) NOT NULL,
  `date_added` datetime NOT NULL,
  PRIMARY KEY (`affiliate_activity_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_affiliate_activity`
--

LOCK TABLES `lk_affiliate_activity` WRITE;
/*!40000 ALTER TABLE `lk_affiliate_activity` DISABLE KEYS */;
/*!40000 ALTER TABLE `lk_affiliate_activity` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_affiliate_login`
--

DROP TABLE IF EXISTS `lk_affiliate_login`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_affiliate_login` (
  `affiliate_login_id` int(11) NOT NULL AUTO_INCREMENT,
  `email` varchar(96) NOT NULL,
  `ip` varchar(40) NOT NULL,
  `total` int(4) NOT NULL,
  `date_added` datetime NOT NULL,
  `date_modified` datetime NOT NULL,
  PRIMARY KEY (`affiliate_login_id`),
  KEY `email` (`email`),
  KEY `ip` (`ip`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_affiliate_login`
--

LOCK TABLES `lk_affiliate_login` WRITE;
/*!40000 ALTER TABLE `lk_affiliate_login` DISABLE KEYS */;
/*!40000 ALTER TABLE `lk_affiliate_login` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_affiliate_transaction`
--

DROP TABLE IF EXISTS `lk_affiliate_transaction`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_affiliate_transaction` (
  `affiliate_transaction_id` int(11) NOT NULL AUTO_INCREMENT,
  `affiliate_id` int(11) NOT NULL,
  `order_id` int(11) NOT NULL,
  `description` text NOT NULL,
  `amount` decimal(15,4) NOT NULL,
  `date_added` datetime NOT NULL,
  PRIMARY KEY (`affiliate_transaction_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_affiliate_transaction`
--

LOCK TABLES `lk_affiliate_transaction` WRITE;
/*!40000 ALTER TABLE `lk_affiliate_transaction` DISABLE KEYS */;
/*!40000 ALTER TABLE `lk_affiliate_transaction` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_api`
--

DROP TABLE IF EXISTS `lk_api`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_api` (
  `api_id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(64) NOT NULL,
  `key` text NOT NULL,
  `status` tinyint(1) NOT NULL,
  `date_added` datetime NOT NULL,
  `date_modified` datetime NOT NULL,
  PRIMARY KEY (`api_id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_api`
--

LOCK TABLES `lk_api` WRITE;
/*!40000 ALTER TABLE `lk_api` DISABLE KEYS */;
INSERT INTO `lk_api` VALUES (1,'Default','CkD8071AR0LvuW3J5FNMhKt8nxe0yyvZk0l5ECsVX0v6wNjZFFSrfg3z72kIjv2nEjw9fxnWO2ZXXEIIc29TpDzXYQ57py5S2bar7WTmdpn1Je7wWnKXXIr4pt9GEZT1Bi6q1lji0dbPURxQfYguGb4yfDfWCxZTmzPS4M1WTSNrKoU9o3p9rAfmF3TpAygr4nd1aFxawRBNm15xHiCWMqKmImp0irFVquJ8HwxHNe4ieuluSeGlyNga2NOEP7t3',1,'2017-08-22 07:23:29','2017-08-22 07:23:29');
/*!40000 ALTER TABLE `lk_api` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_api_ip`
--

DROP TABLE IF EXISTS `lk_api_ip`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_api_ip` (
  `api_ip_id` int(11) NOT NULL AUTO_INCREMENT,
  `api_id` int(11) NOT NULL,
  `ip` varchar(40) NOT NULL,
  PRIMARY KEY (`api_ip_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_api_ip`
--

LOCK TABLES `lk_api_ip` WRITE;
/*!40000 ALTER TABLE `lk_api_ip` DISABLE KEYS */;
/*!40000 ALTER TABLE `lk_api_ip` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_api_session`
--

DROP TABLE IF EXISTS `lk_api_session`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_api_session` (
  `api_session_id` int(11) NOT NULL AUTO_INCREMENT,
  `api_id` int(11) NOT NULL,
  `token` varchar(32) NOT NULL,
  `session_id` varchar(32) NOT NULL,
  `session_name` varchar(32) NOT NULL,
  `ip` varchar(40) NOT NULL,
  `date_added` datetime NOT NULL,
  `date_modified` datetime NOT NULL,
  PRIMARY KEY (`api_session_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_api_session`
--

LOCK TABLES `lk_api_session` WRITE;
/*!40000 ALTER TABLE `lk_api_session` DISABLE KEYS */;
/*!40000 ALTER TABLE `lk_api_session` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_attribute`
--

DROP TABLE IF EXISTS `lk_attribute`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_attribute` (
  `attribute_id` int(11) NOT NULL AUTO_INCREMENT,
  `attribute_group_id` int(11) NOT NULL,
  `sort_order` int(3) NOT NULL,
  PRIMARY KEY (`attribute_id`)
) ENGINE=MyISAM AUTO_INCREMENT=12 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_attribute`
--

LOCK TABLES `lk_attribute` WRITE;
/*!40000 ALTER TABLE `lk_attribute` DISABLE KEYS */;
INSERT INTO `lk_attribute` VALUES (1,6,1),(2,6,5),(3,6,3),(4,3,1),(5,3,2),(6,3,3),(7,3,4),(8,3,5),(9,3,6),(10,3,7),(11,3,8);
/*!40000 ALTER TABLE `lk_attribute` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_attribute_description`
--

DROP TABLE IF EXISTS `lk_attribute_description`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_attribute_description` (
  `attribute_id` int(11) NOT NULL,
  `language_id` int(11) NOT NULL,
  `name` varchar(64) NOT NULL,
  PRIMARY KEY (`attribute_id`,`language_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_attribute_description`
--

LOCK TABLES `lk_attribute_description` WRITE;
/*!40000 ALTER TABLE `lk_attribute_description` DISABLE KEYS */;
INSERT INTO `lk_attribute_description` VALUES (1,1,'Description'),(2,1,'No. of Cores'),(4,1,'test 1'),(5,1,'test 2'),(6,1,'test 3'),(7,1,'test 4'),(8,1,'test 5'),(9,1,'test 6'),(10,1,'test 7'),(11,1,'test 8'),(3,1,'Clockspeed');
/*!40000 ALTER TABLE `lk_attribute_description` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_attribute_group`
--

DROP TABLE IF EXISTS `lk_attribute_group`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_attribute_group` (
  `attribute_group_id` int(11) NOT NULL AUTO_INCREMENT,
  `sort_order` int(3) NOT NULL,
  PRIMARY KEY (`attribute_group_id`)
) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_attribute_group`
--

LOCK TABLES `lk_attribute_group` WRITE;
/*!40000 ALTER TABLE `lk_attribute_group` DISABLE KEYS */;
INSERT INTO `lk_attribute_group` VALUES (3,2),(4,1),(5,3),(6,4);
/*!40000 ALTER TABLE `lk_attribute_group` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_attribute_group_description`
--

DROP TABLE IF EXISTS `lk_attribute_group_description`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_attribute_group_description` (
  `attribute_group_id` int(11) NOT NULL,
  `language_id` int(11) NOT NULL,
  `name` varchar(64) NOT NULL,
  PRIMARY KEY (`attribute_group_id`,`language_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_attribute_group_description`
--

LOCK TABLES `lk_attribute_group_description` WRITE;
/*!40000 ALTER TABLE `lk_attribute_group_description` DISABLE KEYS */;
INSERT INTO `lk_attribute_group_description` VALUES (3,1,'Memory'),(4,1,'Technical'),(5,1,'Motherboard'),(6,1,'Processor');
/*!40000 ALTER TABLE `lk_attribute_group_description` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_banner`
--

DROP TABLE IF EXISTS `lk_banner`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_banner` (
  `banner_id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(64) NOT NULL,
  `status` tinyint(1) NOT NULL,
  PRIMARY KEY (`banner_id`)
) ENGINE=MyISAM AUTO_INCREMENT=9 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_banner`
--

LOCK TABLES `lk_banner` WRITE;
/*!40000 ALTER TABLE `lk_banner` DISABLE KEYS */;
INSERT INTO `lk_banner` VALUES (6,'HP Products',1),(7,'Home Page Slideshow',1),(8,'Manufacturers',1);
/*!40000 ALTER TABLE `lk_banner` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_banner_image`
--

DROP TABLE IF EXISTS `lk_banner_image`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_banner_image` (
  `banner_image_id` int(11) NOT NULL AUTO_INCREMENT,
  `banner_id` int(11) NOT NULL,
  `language_id` int(11) NOT NULL,
  `title` varchar(64) NOT NULL,
  `link` varchar(255) NOT NULL,
  `image` varchar(255) NOT NULL,
  `sort_order` int(3) NOT NULL DEFAULT 0,
  PRIMARY KEY (`banner_image_id`)
) ENGINE=MyISAM AUTO_INCREMENT=99 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_banner_image`
--

LOCK TABLES `lk_banner_image` WRITE;
/*!40000 ALTER TABLE `lk_banner_image` DISABLE KEYS */;
INSERT INTO `lk_banner_image` VALUES (79,7,1,'iPhone 6','index.php?route=product/product&amp;path=57&amp;product_id=49','catalog/demo/banners/iPhone6.jpg',0),(87,6,1,'HP Banner','index.php?route=product/manufacturer/info&amp;manufacturer_id=7','catalog/demo/compaq_presario.jpg',0),(94,8,1,'NFL','','catalog/demo/manufacturer/nfl.png',0),(95,8,1,'RedBull','','catalog/demo/manufacturer/redbull.png',0),(96,8,1,'Sony','','catalog/demo/manufacturer/sony.png',0),(91,8,1,'Coca Cola','','catalog/demo/manufacturer/cocacola.png',0),(92,8,1,'Burger King','','catalog/demo/manufacturer/burgerking.png',0),(93,8,1,'Canon','','catalog/demo/manufacturer/canon.png',0),(88,8,1,'Harley Davidson','','catalog/demo/manufacturer/harley.png',0),(89,8,1,'Dell','','catalog/demo/manufacturer/dell.png',0),(90,8,1,'Disney','','catalog/demo/manufacturer/disney.png',0),(80,7,1,'MacBookAir','','catalog/demo/banners/MacBookAir.jpg',0),(97,8,1,'Starbucks','','catalog/demo/manufacturer/starbucks.png',0),(98,8,1,'Nintendo','','catalog/demo/manufacturer/nintendo.png',0);
/*!40000 ALTER TABLE `lk_banner_image` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_cart`
--

DROP TABLE IF EXISTS `lk_cart`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_cart` (
  `cart_id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `api_id` int(11) NOT NULL,
  `customer_id` int(11) NOT NULL,
  `session_id` varchar(32) NOT NULL,
  `product_id` int(11) NOT NULL,
  `recurring_id` int(11) NOT NULL,
  `option` text NOT NULL,
  `quantity` int(5) NOT NULL,
  `date_added` datetime NOT NULL,
  PRIMARY KEY (`cart_id`),
  KEY `cart_id` (`api_id`,`customer_id`,`session_id`,`product_id`,`recurring_id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_cart`
--

LOCK TABLES `lk_cart` WRITE;
/*!40000 ALTER TABLE `lk_cart` DISABLE KEYS */;
INSERT INTO `lk_cart` VALUES (1,0,1,'tv2sbj286u38isvk111gcdjm57',50,0,'[]',2,'2017-08-23 23:48:06'),(2,0,3,'6m8m1a84q06vfmtqo4mm2hngh5',43,0,'[]',1,'2017-09-22 10:38:15');
/*!40000 ALTER TABLE `lk_cart` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_category`
--

DROP TABLE IF EXISTS `lk_category`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_category` (
  `category_id` int(11) NOT NULL AUTO_INCREMENT,
  `image` varchar(255) DEFAULT NULL,
  `parent_id` int(11) NOT NULL DEFAULT 0,
  `top` tinyint(1) NOT NULL,
  `column` int(3) NOT NULL,
  `sort_order` int(3) NOT NULL DEFAULT 0,
  `status` tinyint(1) NOT NULL,
  `date_added` datetime NOT NULL,
  `date_modified` datetime NOT NULL,
  PRIMARY KEY (`category_id`),
  KEY `parent_id` (`parent_id`)
) ENGINE=MyISAM AUTO_INCREMENT=59 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_category`
--

LOCK TABLES `lk_category` WRITE;
/*!40000 ALTER TABLE `lk_category` DISABLE KEYS */;
INSERT INTO `lk_category` VALUES (25,'',0,1,1,3,1,'2009-01-31 01:04:25','2011-05-30 12:14:55'),(27,'',20,0,0,2,1,'2009-01-31 01:55:34','2010-08-22 06:32:15'),(20,'catalog/demo/compaq_presario.jpg',0,1,1,1,1,'2009-01-05 21:49:43','2011-07-16 02:14:42'),(24,'',0,1,1,5,1,'2009-01-20 02:36:26','2011-05-30 12:15:18'),(18,'catalog/demo/hp_2.jpg',0,1,0,2,1,'2009-01-05 21:49:15','2011-05-30 12:13:55'),(17,'',0,1,1,4,1,'2009-01-03 21:08:57','2011-05-30 12:15:11'),(28,'',25,0,0,1,1,'2009-02-02 13:11:12','2010-08-22 06:32:46'),(26,'',20,0,0,1,1,'2009-01-31 01:55:14','2010-08-22 06:31:45'),(29,'',25,0,0,1,1,'2009-02-02 13:11:37','2010-08-22 06:32:39'),(30,'',25,0,0,1,1,'2009-02-02 13:11:59','2010-08-22 06:33:00'),(31,'',25,0,0,1,1,'2009-02-03 14:17:24','2010-08-22 06:33:06'),(32,'',25,0,0,1,1,'2009-02-03 14:17:34','2010-08-22 06:33:12'),(33,'',0,1,1,6,1,'2009-02-03 14:17:55','2011-05-30 12:15:25'),(34,'catalog/demo/ipod_touch_4.jpg',0,1,4,7,1,'2009-02-03 14:18:11','2011-05-30 12:15:31'),(35,'',28,0,0,0,1,'2010-09-17 10:06:48','2010-09-18 14:02:42'),(36,'',28,0,0,0,1,'2010-09-17 10:07:13','2010-09-18 14:02:55'),(37,'',34,0,0,0,1,'2010-09-18 14:03:39','2011-04-22 01:55:08'),(38,'',34,0,0,0,1,'2010-09-18 14:03:51','2010-09-18 14:03:51'),(39,'',34,0,0,0,1,'2010-09-18 14:04:17','2011-04-22 01:55:20'),(40,'',34,0,0,0,1,'2010-09-18 14:05:36','2010-09-18 14:05:36'),(41,'',34,0,0,0,1,'2010-09-18 14:05:49','2011-04-22 01:55:30'),(42,'',34,0,0,0,1,'2010-09-18 14:06:34','2010-11-07 20:31:04'),(43,'',34,0,0,0,1,'2010-09-18 14:06:49','2011-04-22 01:55:40'),(44,'',34,0,0,0,1,'2010-09-21 15:39:21','2010-11-07 20:30:55'),(45,'',18,0,0,0,1,'2010-09-24 18:29:16','2011-04-26 08:52:11'),(46,'',18,0,0,0,1,'2010-09-24 18:29:31','2011-04-26 08:52:23'),(47,'',34,0,0,0,1,'2010-11-07 11:13:16','2010-11-07 11:13:16'),(48,'',34,0,0,0,1,'2010-11-07 11:13:33','2010-11-07 11:13:33'),(49,'',34,0,0,0,1,'2010-11-07 11:14:04','2010-11-07 11:14:04'),(50,'',34,0,0,0,1,'2010-11-07 11:14:23','2011-04-22 01:16:01'),(51,'',34,0,0,0,1,'2010-11-07 11:14:38','2011-04-22 01:16:13'),(52,'',34,0,0,0,1,'2010-11-07 11:16:09','2011-04-22 01:54:57'),(53,'',34,0,0,0,1,'2010-11-07 11:28:53','2011-04-22 01:14:36'),(54,'',34,0,0,0,1,'2010-11-07 11:29:16','2011-04-22 01:16:50'),(55,'',34,0,0,0,1,'2010-11-08 10:31:32','2010-11-08 10:31:32'),(56,'',34,0,0,0,1,'2010-11-08 10:31:50','2011-04-22 01:16:37'),(57,'',0,1,1,3,1,'2011-04-26 08:53:16','2011-05-30 12:15:05'),(58,'',52,0,0,0,1,'2011-05-08 13:44:16','2011-05-08 13:44:16');
/*!40000 ALTER TABLE `lk_category` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_category_description`
--

DROP TABLE IF EXISTS `lk_category_description`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_category_description` (
  `category_id` int(11) NOT NULL,
  `language_id` int(11) NOT NULL,
  `name` varchar(255) NOT NULL,
  `description` text NOT NULL,
  `meta_title` varchar(255) NOT NULL,
  `meta_description` varchar(255) NOT NULL,
  `meta_keyword` varchar(255) NOT NULL,
  PRIMARY KEY (`category_id`,`language_id`),
  KEY `name` (`name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_category_description`
--

LOCK TABLES `lk_category_description` WRITE;
/*!40000 ALTER TABLE `lk_category_description` DISABLE KEYS */;
INSERT INTO `lk_category_description` VALUES (28,1,'Monitors','','Monitors','',''),(33,1,'Cameras','','Cameras','',''),(32,1,'Web Cameras','','Web Cameras','',''),(31,1,'Scanners','','Scanners','',''),(30,1,'Printers','','Printers','',''),(29,1,'Mice and Trackballs','','Mice and Trackballs','',''),(27,1,'Mac','','Mac','',''),(26,1,'PC','','PC','',''),(17,1,'Software','','Software','',''),(25,1,'Components','','Components','',''),(24,1,'Phones &amp; PDAs','','Phones &amp; PDAs','',''),(20,1,'Desktops','&lt;p&gt;\r\n	Example of category description text&lt;/p&gt;\r\n','Desktops','Example of category description',''),(35,1,'test 1','','test 1','',''),(36,1,'test 2','','test 2','',''),(37,1,'test 5','','test 5','',''),(38,1,'test 4','','test 4','',''),(39,1,'test 6','','test 6','',''),(40,1,'test 7','','test 7','',''),(41,1,'test 8','','test 8','',''),(42,1,'test 9','','test 9','',''),(43,1,'test 11','','test 11','',''),(34,1,'MP3 Players','&lt;p&gt;\r\n	Shop Laptop feature only the best laptop deals on the market. By comparing laptop deals from the likes of PC World, Comet, Dixons, The Link and Carphone Warehouse, Shop Laptop has the most comprehensive selection of laptops on the internet. At Shop Laptop, we pride ourselves on offering customers the very best laptop deals. From refurbished laptops to netbooks, Shop Laptop ensures that every laptop - in every colour, style, size and technical spec - is featured on the site at the lowest possible price.&lt;/p&gt;\r\n','MP3 Players','',''),(18,1,'Laptops &amp; Notebooks','&lt;p&gt;\r\n	Shop Laptop feature only the best laptop deals on the market. By comparing laptop deals from the likes of PC World, Comet, Dixons, The Link and Carphone Warehouse, Shop Laptop has the most comprehensive selection of laptops on the internet. At Shop Laptop, we pride ourselves on offering customers the very best laptop deals. From refurbished laptops to netbooks, Shop Laptop ensures that every laptop - in every colour, style, size and technical spec - is featured on the site at the lowest possible price.&lt;/p&gt;\r\n','Laptops &amp; Notebooks','',''),(44,1,'test 12','','test 12','',''),(45,1,'Windows','','Windows','',''),(46,1,'Macs','','Macs','',''),(47,1,'test 15','','test 15','',''),(48,1,'test 16','','test 16','',''),(49,1,'test 17','','test 17','',''),(50,1,'test 18','','test 18','',''),(51,1,'test 19','','test 19','',''),(52,1,'test 20','','test 20','',''),(53,1,'test 21','','test 21','',''),(54,1,'test 22','','test 22','',''),(55,1,'test 23','','test 23','',''),(56,1,'test 24','','test 24','',''),(57,1,'Tablets','','Tablets','',''),(58,1,'test 25','','test 25','','');
/*!40000 ALTER TABLE `lk_category_description` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_category_filter`
--

DROP TABLE IF EXISTS `lk_category_filter`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_category_filter` (
  `category_id` int(11) NOT NULL,
  `filter_id` int(11) NOT NULL,
  PRIMARY KEY (`category_id`,`filter_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_category_filter`
--

LOCK TABLES `lk_category_filter` WRITE;
/*!40000 ALTER TABLE `lk_category_filter` DISABLE KEYS */;
/*!40000 ALTER TABLE `lk_category_filter` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_category_path`
--

DROP TABLE IF EXISTS `lk_category_path`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_category_path` (
  `category_id` int(11) NOT NULL,
  `path_id` int(11) NOT NULL,
  `level` int(11) NOT NULL,
  PRIMARY KEY (`category_id`,`path_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_category_path`
--

LOCK TABLES `lk_category_path` WRITE;
/*!40000 ALTER TABLE `lk_category_path` DISABLE KEYS */;
INSERT INTO `lk_category_path` VALUES (25,25,0),(28,25,0),(28,28,1),(35,25,0),(35,28,1),(35,35,2),(36,25,0),(36,28,1),(36,36,2),(29,25,0),(29,29,1),(30,25,0),(30,30,1),(31,25,0),(31,31,1),(32,25,0),(32,32,1),(20,20,0),(27,20,0),(27,27,1),(26,20,0),(26,26,1),(24,24,0),(18,18,0),(45,18,0),(45,45,1),(46,18,0),(46,46,1),(17,17,0),(33,33,0),(34,34,0),(37,34,0),(37,37,1),(38,34,0),(38,38,1),(39,34,0),(39,39,1),(40,34,0),(40,40,1),(41,34,0),(41,41,1),(42,34,0),(42,42,1),(43,34,0),(43,43,1),(44,34,0),(44,44,1),(47,34,0),(47,47,1),(48,34,0),(48,48,1),(49,34,0),(49,49,1),(50,34,0),(50,50,1),(51,34,0),(51,51,1),(52,34,0),(52,52,1),(58,34,0),(58,52,1),(58,58,2),(53,34,0),(53,53,1),(54,34,0),(54,54,1),(55,34,0),(55,55,1),(56,34,0),(56,56,1),(57,57,0);
/*!40000 ALTER TABLE `lk_category_path` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_category_to_layout`
--

DROP TABLE IF EXISTS `lk_category_to_layout`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_category_to_layout` (
  `category_id` int(11) NOT NULL,
  `store_id` int(11) NOT NULL,
  `layout_id` int(11) NOT NULL,
  PRIMARY KEY (`category_id`,`store_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_category_to_layout`
--

LOCK TABLES `lk_category_to_layout` WRITE;
/*!40000 ALTER TABLE `lk_category_to_layout` DISABLE KEYS */;
/*!40000 ALTER TABLE `lk_category_to_layout` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_category_to_store`
--

DROP TABLE IF EXISTS `lk_category_to_store`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_category_to_store` (
  `category_id` int(11) NOT NULL,
  `store_id` int(11) NOT NULL,
  PRIMARY KEY (`category_id`,`store_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_category_to_store`
--

LOCK TABLES `lk_category_to_store` WRITE;
/*!40000 ALTER TABLE `lk_category_to_store` DISABLE KEYS */;
INSERT INTO `lk_category_to_store` VALUES (17,0),(18,0),(20,0),(24,0),(25,0),(26,0),(27,0),(28,0),(29,0),(30,0),(31,0),(32,0),(33,0),(34,0),(35,0),(36,0),(37,0),(38,0),(39,0),(40,0),(41,0),(42,0),(43,0),(44,0),(45,0),(46,0),(47,0),(48,0),(49,0),(50,0),(51,0),(52,0),(53,0),(54,0),(55,0),(56,0),(57,0),(58,0);
/*!40000 ALTER TABLE `lk_category_to_store` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_country`
--

DROP TABLE IF EXISTS `lk_country`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_country` (
  `country_id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(128) NOT NULL,
  `iso_code_2` varchar(2) NOT NULL,
  `iso_code_3` varchar(3) NOT NULL,
  `address_format` text NOT NULL,
  `postcode_required` tinyint(1) NOT NULL,
  `status` tinyint(1) NOT NULL DEFAULT 1,
  PRIMARY KEY (`country_id`)
) ENGINE=MyISAM AUTO_INCREMENT=258 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_country`
--

LOCK TABLES `lk_country` WRITE;
/*!40000 ALTER TABLE `lk_country` DISABLE KEYS */;
INSERT INTO `lk_country` VALUES (1,'Afghanistan','AF','AFG','',0,1),(2,'Albania','AL','ALB','',0,1),(3,'Algeria','DZ','DZA','',0,1),(4,'American Samoa','AS','ASM','',0,1),(5,'Andorra','AD','AND','',0,1),(6,'Angola','AO','AGO','',0,1),(7,'Anguilla','AI','AIA','',0,1),(8,'Antarctica','AQ','ATA','',0,1),(9,'Antigua and Barbuda','AG','ATG','',0,1),(10,'Argentina','AR','ARG','',0,1),(11,'Armenia','AM','ARM','',0,1),(12,'Aruba','AW','ABW','',0,1),(13,'Australia','AU','AUS','',0,1),(14,'Austria','AT','AUT','',0,1),(15,'Azerbaijan','AZ','AZE','',0,1),(16,'Bahamas','BS','BHS','',0,1),(17,'Bahrain','BH','BHR','',0,1),(18,'Bangladesh','BD','BGD','',0,1),(19,'Barbados','BB','BRB','',0,1),(20,'Belarus','BY','BLR','',0,1),(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),(22,'Belize','BZ','BLZ','',0,1),(23,'Benin','BJ','BEN','',0,1),(24,'Bermuda','BM','BMU','',0,1),(25,'Bhutan','BT','BTN','',0,1),(26,'Bolivia','BO','BOL','',0,1),(27,'Bosnia and Herzegovina','BA','BIH','',0,1),(28,'Botswana','BW','BWA','',0,1),(29,'Bouvet Island','BV','BVT','',0,1),(30,'Brazil','BR','BRA','',0,1),(31,'British Indian Ocean Territory','IO','IOT','',0,1),(32,'Brunei Darussalam','BN','BRN','',0,1),(33,'Bulgaria','BG','BGR','',0,1),(34,'Burkina Faso','BF','BFA','',0,1),(35,'Burundi','BI','BDI','',0,1),(36,'Cambodia','KH','KHM','',0,1),(37,'Cameroon','CM','CMR','',0,1),(38,'Canada','CA','CAN','',0,1),(39,'Cape Verde','CV','CPV','',0,1),(40,'Cayman Islands','KY','CYM','',0,1),(41,'Central African Republic','CF','CAF','',0,1),(42,'Chad','TD','TCD','',0,1),(43,'Chile','CL','CHL','',0,1),(44,'China','CN','CHN','',0,1),(45,'Christmas Island','CX','CXR','',0,1),(46,'Cocos (Keeling) Islands','CC','CCK','',0,1),(47,'Colombia','CO','COL','',0,1),(48,'Comoros','KM','COM','',0,1),(49,'Congo','CG','COG','',0,1),(50,'Cook Islands','CK','COK','',0,1),(51,'Costa Rica','CR','CRI','',0,1),(52,'Cote D\'Ivoire','CI','CIV','',0,1),(53,'Croatia','HR','HRV','',0,1),(54,'Cuba','CU','CUB','',0,1),(55,'Cyprus','CY','CYP','',0,1),(56,'Czech Republic','CZ','CZE','',0,1),(57,'Denmark','DK','DNK','',0,1),(58,'Djibouti','DJ','DJI','',0,1),(59,'Dominica','DM','DMA','',0,1),(60,'Dominican Republic','DO','DOM','',0,1),(61,'East Timor','TL','TLS','',0,1),(62,'Ecuador','EC','ECU','',0,1),(63,'Egypt','EG','EGY','',0,1),(64,'El Salvador','SV','SLV','',0,1),(65,'Equatorial Guinea','GQ','GNQ','',0,1),(66,'Eritrea','ER','ERI','',0,1),(67,'Estonia','EE','EST','',0,1),(68,'Ethiopia','ET','ETH','',0,1),(69,'Falkland Islands (Malvinas)','FK','FLK','',0,1),(70,'Faroe Islands','FO','FRO','',0,1),(71,'Fiji','FJ','FJI','',0,1),(72,'Finland','FI','FIN','',0,1),(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),(75,'French Guiana','GF','GUF','',0,1),(76,'French Polynesia','PF','PYF','',0,1),(77,'French Southern Territories','TF','ATF','',0,1),(78,'Gabon','GA','GAB','',0,1),(79,'Gambia','GM','GMB','',0,1),(80,'Georgia','GE','GEO','',0,1),(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),(82,'Ghana','GH','GHA','',0,1),(83,'Gibraltar','GI','GIB','',0,1),(84,'Greece','GR','GRC','',0,1),(85,'Greenland','GL','GRL','',0,1),(86,'Grenada','GD','GRD','',0,1),(87,'Guadeloupe','GP','GLP','',0,1),(88,'Guam','GU','GUM','',0,1),(89,'Guatemala','GT','GTM','',0,1),(90,'Guinea','GN','GIN','',0,1),(91,'Guinea-Bissau','GW','GNB','',0,1),(92,'Guyana','GY','GUY','',0,1),(93,'Haiti','HT','HTI','',0,1),(94,'Heard and Mc Donald Islands','HM','HMD','',0,1),(95,'Honduras','HN','HND','',0,1),(96,'Hong Kong','HK','HKG','',0,1),(97,'Hungary','HU','HUN','',0,1),(98,'Iceland','IS','ISL','',0,1),(99,'India','IN','IND','',0,1),(100,'Indonesia','ID','IDN','',0,1),(101,'Iran (Islamic Republic of)','IR','IRN','',0,1),(102,'Iraq','IQ','IRQ','',0,1),(103,'Ireland','IE','IRL','',0,1),(104,'Israel','IL','ISR','',0,1),(105,'Italy','IT','ITA','',0,1),(106,'Jamaica','JM','JAM','',0,1),(107,'Japan','JP','JPN','',0,1),(108,'Jordan','JO','JOR','',0,1),(109,'Kazakhstan','KZ','KAZ','',0,1),(110,'Kenya','KE','KEN','',0,1),(111,'Kiribati','KI','KIR','',0,1),(112,'North Korea','KP','PRK','',0,1),(113,'South Korea','KR','KOR','',0,1),(114,'Kuwait','KW','KWT','',0,1),(115,'Kyrgyzstan','KG','KGZ','',0,1),(116,'Lao People\'s Democratic Republic','LA','LAO','',0,1),(117,'Latvia','LV','LVA','',0,1),(118,'Lebanon','LB','LBN','',0,1),(119,'Lesotho','LS','LSO','',0,1),(120,'Liberia','LR','LBR','',0,1),(121,'Libyan Arab Jamahiriya','LY','LBY','',0,1),(122,'Liechtenstein','LI','LIE','',0,1),(123,'Lithuania','LT','LTU','',0,1),(124,'Luxembourg','LU','LUX','',0,1),(125,'Macau','MO','MAC','',0,1),(126,'FYROM','MK','MKD','',0,1),(127,'Madagascar','MG','MDG','',0,1),(128,'Malawi','MW','MWI','',0,1),(129,'Malaysia','MY','MYS','',0,1),(130,'Maldives','MV','MDV','',0,1),(131,'Mali','ML','MLI','',0,1),(132,'Malta','MT','MLT','',0,1),(133,'Marshall Islands','MH','MHL','',0,1),(134,'Martinique','MQ','MTQ','',0,1),(135,'Mauritania','MR','MRT','',0,1),(136,'Mauritius','MU','MUS','',0,1),(137,'Mayotte','YT','MYT','',0,1),(138,'Mexico','MX','MEX','',0,1),(139,'Micronesia, Federated States of','FM','FSM','',0,1),(140,'Moldova, Republic of','MD','MDA','',0,1),(141,'Monaco','MC','MCO','',0,1),(142,'Mongolia','MN','MNG','',0,1),(143,'Montserrat','MS','MSR','',0,1),(144,'Morocco','MA','MAR','',0,1),(145,'Mozambique','MZ','MOZ','',0,1),(146,'Myanmar','MM','MMR','',0,1),(147,'Namibia','NA','NAM','',0,1),(148,'Nauru','NR','NRU','',0,1),(149,'Nepal','NP','NPL','',0,1),(150,'Netherlands','NL','NLD','',0,1),(151,'Netherlands Antilles','AN','ANT','',0,1),(152,'New Caledonia','NC','NCL','',0,1),(153,'New Zealand','NZ','NZL','',0,1),(154,'Nicaragua','NI','NIC','',0,1),(155,'Niger','NE','NER','',0,1),(156,'Nigeria','NG','NGA','',0,1),(157,'Niue','NU','NIU','',0,1),(158,'Norfolk Island','NF','NFK','',0,1),(159,'Northern Mariana Islands','MP','MNP','',0,1),(160,'Norway','NO','NOR','',0,1),(161,'Oman','OM','OMN','',0,1),(162,'Pakistan','PK','PAK','',0,1),(163,'Palau','PW','PLW','',0,1),(164,'Panama','PA','PAN','',0,1),(165,'Papua New Guinea','PG','PNG','',0,1),(166,'Paraguay','PY','PRY','',0,1),(167,'Peru','PE','PER','',0,1),(168,'Philippines','PH','PHL','',0,1),(169,'Pitcairn','PN','PCN','',0,1),(170,'Poland','PL','POL','',0,1),(171,'Portugal','PT','PRT','',0,1),(172,'Puerto Rico','PR','PRI','',0,1),(173,'Qatar','QA','QAT','',0,1),(174,'Reunion','RE','REU','',0,1),(175,'Romania','RO','ROM','',0,1),(176,'Russian Federation','RU','RUS','',0,1),(177,'Rwanda','RW','RWA','',0,1),(178,'Saint Kitts and Nevis','KN','KNA','',0,1),(179,'Saint Lucia','LC','LCA','',0,1),(180,'Saint Vincent and the Grenadines','VC','VCT','',0,1),(181,'Samoa','WS','WSM','',0,1),(182,'San Marino','SM','SMR','',0,1),(183,'Sao Tome and Principe','ST','STP','',0,1),(184,'Saudi Arabia','SA','SAU','',0,1),(185,'Senegal','SN','SEN','',0,1),(186,'Seychelles','SC','SYC','',0,1),(187,'Sierra Leone','SL','SLE','',0,1),(188,'Singapore','SG','SGP','',0,1),(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),(190,'Slovenia','SI','SVN','',0,1),(191,'Solomon Islands','SB','SLB','',0,1),(192,'Somalia','SO','SOM','',0,1),(193,'South Africa','ZA','ZAF','',0,1),(194,'South Georgia &amp; South Sandwich Islands','GS','SGS','',0,1),(195,'Spain','ES','ESP','',0,1),(196,'Sri Lanka','LK','LKA','',0,1),(197,'St. Helena','SH','SHN','',0,1),(198,'St. Pierre and Miquelon','PM','SPM','',0,1),(199,'Sudan','SD','SDN','',0,1),(200,'Suriname','SR','SUR','',0,1),(201,'Svalbard and Jan Mayen Islands','SJ','SJM','',0,1),(202,'Swaziland','SZ','SWZ','',0,1),(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),(204,'Switzerland','CH','CHE','',0,1),(205,'Syrian Arab Republic','SY','SYR','',0,1),(206,'Taiwan','TW','TWN','',0,1),(207,'Tajikistan','TJ','TJK','',0,1),(208,'Tanzania, United Republic of','TZ','TZA','',0,1),(209,'Thailand','TH','THA','',0,1),(210,'Togo','TG','TGO','',0,1),(211,'Tokelau','TK','TKL','',0,1),(212,'Tonga','TO','TON','',0,1),(213,'Trinidad and Tobago','TT','TTO','',0,1),(214,'Tunisia','TN','TUN','',0,1),(215,'Turkey','TR','TUR','',0,1),(216,'Turkmenistan','TM','TKM','',0,1),(217,'Turks and Caicos Islands','TC','TCA','',0,1),(218,'Tuvalu','TV','TUV','',0,1),(219,'Uganda','UG','UGA','',0,1),(220,'Ukraine','UA','UKR','',0,1),(221,'United Arab Emirates','AE','ARE','',0,1),(222,'United Kingdom','GB','GBR','',1,1),(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),(224,'United States Minor Outlying Islands','UM','UMI','',0,1),(225,'Uruguay','UY','URY','',0,1),(226,'Uzbekistan','UZ','UZB','',0,1),(227,'Vanuatu','VU','VUT','',0,1),(228,'Vatican City State (Holy See)','VA','VAT','',0,1),(229,'Venezuela','VE','VEN','',0,1),(230,'Viet Nam','VN','VNM','',0,1),(231,'Virgin Islands (British)','VG','VGB','',0,1),(232,'Virgin Islands (U.S.)','VI','VIR','',0,1),(233,'Wallis and Futuna Islands','WF','WLF','',0,1),(234,'Western Sahara','EH','ESH','',0,1),(235,'Yemen','YE','YEM','',0,1),(237,'Democratic Republic of Congo','CD','COD','',0,1),(238,'Zambia','ZM','ZMB','',0,1),(239,'Zimbabwe','ZW','ZWE','',0,1),(242,'Montenegro','ME','MNE','',0,1),(243,'Serbia','RS','SRB','',0,1),(244,'Aaland Islands','AX','ALA','',0,1),(245,'Bonaire, Sint Eustatius and Saba','BQ','BES','',0,1),(246,'Curacao','CW','CUW','',0,1),(247,'Palestinian Territory, Occupied','PS','PSE','',0,1),(248,'South Sudan','SS','SSD','',0,1),(249,'St. Barthelemy','BL','BLM','',0,1),(250,'St. Martin (French part)','MF','MAF','',0,1),(251,'Canary Islands','IC','ICA','',0,1),(252,'Ascension Island (British)','AC','ASC','',0,1),(253,'Kosovo, Republic of','XK','UNK','',0,1),(254,'Isle of Man','IM','IMN','',0,1),(255,'Tristan da Cunha','TA','SHN','',0,1),(256,'Guernsey','GG','GGY','',0,1),(257,'Jersey','JE','JEY','',0,1);
/*!40000 ALTER TABLE `lk_country` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_coupon`
--

DROP TABLE IF EXISTS `lk_coupon`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_coupon` (
  `coupon_id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(128) NOT NULL,
  `code` varchar(20) NOT NULL,
  `type` char(1) NOT NULL,
  `discount` decimal(15,4) NOT NULL,
  `logged` tinyint(1) NOT NULL,
  `shipping` tinyint(1) NOT NULL,
  `total` decimal(15,4) NOT NULL,
  `date_start` date NOT NULL DEFAULT '0000-00-00',
  `date_end` date NOT NULL DEFAULT '0000-00-00',
  `uses_total` int(11) NOT NULL,
  `uses_customer` varchar(11) NOT NULL,
  `status` tinyint(1) NOT NULL,
  `date_added` datetime NOT NULL,
  PRIMARY KEY (`coupon_id`)
) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_coupon`
--

LOCK TABLES `lk_coupon` WRITE;
/*!40000 ALTER TABLE `lk_coupon` DISABLE KEYS */;
INSERT INTO `lk_coupon` VALUES (4,'-10% Discount','2222','P',10.0000,0,0,0.0000,'2014-01-01','2020-01-01',10,'10',0,'2009-01-27 13:55:03'),(5,'Free Shipping','3333','P',0.0000,0,1,100.0000,'2014-01-01','2014-02-01',10,'10',0,'2009-03-14 21:13:53'),(6,'-10.00 Discount','1111','F',10.0000,0,0,10.0000,'2014-01-01','2020-01-01',100000,'10000',0,'2009-03-14 21:15:18');
/*!40000 ALTER TABLE `lk_coupon` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_coupon_category`
--

DROP TABLE IF EXISTS `lk_coupon_category`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_coupon_category` (
  `coupon_id` int(11) NOT NULL,
  `category_id` int(11) NOT NULL,
  PRIMARY KEY (`coupon_id`,`category_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_coupon_category`
--

LOCK TABLES `lk_coupon_category` WRITE;
/*!40000 ALTER TABLE `lk_coupon_category` DISABLE KEYS */;
/*!40000 ALTER TABLE `lk_coupon_category` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_coupon_history`
--

DROP TABLE IF EXISTS `lk_coupon_history`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_coupon_history` (
  `coupon_history_id` int(11) NOT NULL AUTO_INCREMENT,
  `coupon_id` int(11) NOT NULL,
  `order_id` int(11) NOT NULL,
  `customer_id` int(11) NOT NULL,
  `amount` decimal(15,4) NOT NULL,
  `date_added` datetime NOT NULL,
  PRIMARY KEY (`coupon_history_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_coupon_history`
--

LOCK TABLES `lk_coupon_history` WRITE;
/*!40000 ALTER TABLE `lk_coupon_history` DISABLE KEYS */;
/*!40000 ALTER TABLE `lk_coupon_history` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_coupon_product`
--

DROP TABLE IF EXISTS `lk_coupon_product`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_coupon_product` (
  `coupon_product_id` int(11) NOT NULL AUTO_INCREMENT,
  `coupon_id` int(11) NOT NULL,
  `product_id` int(11) NOT NULL,
  PRIMARY KEY (`coupon_product_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_coupon_product`
--

LOCK TABLES `lk_coupon_product` WRITE;
/*!40000 ALTER TABLE `lk_coupon_product` DISABLE KEYS */;
/*!40000 ALTER TABLE `lk_coupon_product` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_currency`
--

DROP TABLE IF EXISTS `lk_currency`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_currency` (
  `currency_id` int(11) NOT NULL AUTO_INCREMENT,
  `title` varchar(32) NOT NULL,
  `code` varchar(3) NOT NULL,
  `symbol_left` varchar(12) NOT NULL,
  `symbol_right` varchar(12) NOT NULL,
  `decimal_place` char(1) NOT NULL,
  `value` float(15,8) NOT NULL,
  `status` tinyint(1) NOT NULL,
  `date_modified` datetime NOT NULL,
  PRIMARY KEY (`currency_id`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_currency`
--

LOCK TABLES `lk_currency` WRITE;
/*!40000 ALTER TABLE `lk_currency` DISABLE KEYS */;
INSERT INTO `lk_currency` VALUES (1,'Pound Sterling','GBP','£','','2',0.75970000,1,'2017-10-10 04:20:34'),(2,'US Dollar','USD','$','','2',1.00000000,1,'2017-10-10 15:53:39'),(3,'Euro','EUR','','€','2',0.84950000,1,'2017-10-10 04:20:34');
/*!40000 ALTER TABLE `lk_currency` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_custom_field`
--

DROP TABLE IF EXISTS `lk_custom_field`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_custom_field` (
  `custom_field_id` int(11) NOT NULL AUTO_INCREMENT,
  `type` varchar(32) NOT NULL,
  `value` text NOT NULL,
  `validation` varchar(255) NOT NULL,
  `location` varchar(7) NOT NULL,
  `status` tinyint(1) NOT NULL,
  `sort_order` int(3) NOT NULL,
  PRIMARY KEY (`custom_field_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_custom_field`
--

LOCK TABLES `lk_custom_field` WRITE;
/*!40000 ALTER TABLE `lk_custom_field` DISABLE KEYS */;
/*!40000 ALTER TABLE `lk_custom_field` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_custom_field_customer_group`
--

DROP TABLE IF EXISTS `lk_custom_field_customer_group`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_custom_field_customer_group` (
  `custom_field_id` int(11) NOT NULL,
  `customer_group_id` int(11) NOT NULL,
  `required` tinyint(1) NOT NULL,
  PRIMARY KEY (`custom_field_id`,`customer_group_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_custom_field_customer_group`
--

LOCK TABLES `lk_custom_field_customer_group` WRITE;
/*!40000 ALTER TABLE `lk_custom_field_customer_group` DISABLE KEYS */;
/*!40000 ALTER TABLE `lk_custom_field_customer_group` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_custom_field_description`
--

DROP TABLE IF EXISTS `lk_custom_field_description`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_custom_field_description` (
  `custom_field_id` int(11) NOT NULL,
  `language_id` int(11) NOT NULL,
  `name` varchar(128) NOT NULL,
  PRIMARY KEY (`custom_field_id`,`language_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_custom_field_description`
--

LOCK TABLES `lk_custom_field_description` WRITE;
/*!40000 ALTER TABLE `lk_custom_field_description` DISABLE KEYS */;
/*!40000 ALTER TABLE `lk_custom_field_description` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_custom_field_value`
--

DROP TABLE IF EXISTS `lk_custom_field_value`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_custom_field_value` (
  `custom_field_value_id` int(11) NOT NULL AUTO_INCREMENT,
  `custom_field_id` int(11) NOT NULL,
  `sort_order` int(3) NOT NULL,
  PRIMARY KEY (`custom_field_value_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_custom_field_value`
--

LOCK TABLES `lk_custom_field_value` WRITE;
/*!40000 ALTER TABLE `lk_custom_field_value` DISABLE KEYS */;
/*!40000 ALTER TABLE `lk_custom_field_value` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_custom_field_value_description`
--

DROP TABLE IF EXISTS `lk_custom_field_value_description`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_custom_field_value_description` (
  `custom_field_value_id` int(11) NOT NULL,
  `language_id` int(11) NOT NULL,
  `custom_field_id` int(11) NOT NULL,
  `name` varchar(128) NOT NULL,
  PRIMARY KEY (`custom_field_value_id`,`language_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_custom_field_value_description`
--

LOCK TABLES `lk_custom_field_value_description` WRITE;
/*!40000 ALTER TABLE `lk_custom_field_value_description` DISABLE KEYS */;
/*!40000 ALTER TABLE `lk_custom_field_value_description` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_customer`
--

DROP TABLE IF EXISTS `lk_customer`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_customer` (
  `customer_id` int(11) NOT NULL AUTO_INCREMENT,
  `customer_group_id` int(11) NOT NULL,
  `store_id` int(11) NOT NULL DEFAULT 0,
  `language_id` int(11) NOT NULL,
  `firstname` varchar(32) NOT NULL,
  `lastname` varchar(32) NOT NULL,
  `email` varchar(96) NOT NULL,
  `telephone` varchar(32) NOT NULL,
  `fax` varchar(32) NOT NULL,
  `password` varchar(40) NOT NULL,
  `salt` varchar(9) NOT NULL,
  `cart` text DEFAULT NULL,
  `wishlist` text DEFAULT NULL,
  `newsletter` tinyint(1) NOT NULL DEFAULT 0,
  `address_id` int(11) NOT NULL DEFAULT 0,
  `custom_field` text NOT NULL,
  `ip` varchar(40) NOT NULL,
  `status` tinyint(1) NOT NULL,
  `approved` tinyint(1) NOT NULL,
  `safe` tinyint(1) NOT NULL,
  `token` text NOT NULL,
  `code` varchar(40) NOT NULL,
  `date_added` datetime NOT NULL,
  PRIMARY KEY (`customer_id`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_customer`
--

LOCK TABLES `lk_customer` WRITE;
/*!40000 ALTER TABLE `lk_customer` DISABLE KEYS */;
INSERT INTO `lk_customer` VALUES (1,1,0,1,'John','Doe','johndoe@gmail.com','123456789','12345','a8193575a3277b93418c1b55fc7d4d378e21d756','aNksINRI1',NULL,NULL,0,1,'','203.122.41.218',1,1,0,'','','2017-08-23 23:42:14'),(2,1,0,1,'Test','Test','test@webkul.com','123456','123456','473825dd2cdd3e766c8e13266b6a044806fb4b30','qedHaGrNC',NULL,NULL,0,2,'','203.122.41.218',1,1,0,'','','2017-08-23 23:49:18'),(3,1,0,1,'Henrico','Wijaya','h3nrico_wjy@yahoo.co.id','085228241628','','06689f739477b04b7c2358aad5da12cfe6de57b6','gzGebxDWz',NULL,NULL,0,3,'[]','139.193.106.192',1,1,0,'','','2017-09-22 10:37:23');
/*!40000 ALTER TABLE `lk_customer` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_customer_activity`
--

DROP TABLE IF EXISTS `lk_customer_activity`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_customer_activity` (
  `customer_activity_id` int(11) NOT NULL AUTO_INCREMENT,
  `customer_id` int(11) NOT NULL,
  `key` varchar(64) NOT NULL,
  `data` text NOT NULL,
  `ip` varchar(40) NOT NULL,
  `date_added` datetime NOT NULL,
  PRIMARY KEY (`customer_activity_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_customer_activity`
--

LOCK TABLES `lk_customer_activity` WRITE;
/*!40000 ALTER TABLE `lk_customer_activity` DISABLE KEYS */;
/*!40000 ALTER TABLE `lk_customer_activity` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_customer_group`
--

DROP TABLE IF EXISTS `lk_customer_group`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_customer_group` (
  `customer_group_id` int(11) NOT NULL AUTO_INCREMENT,
  `approval` int(1) NOT NULL,
  `sort_order` int(3) NOT NULL,
  PRIMARY KEY (`customer_group_id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_customer_group`
--

LOCK TABLES `lk_customer_group` WRITE;
/*!40000 ALTER TABLE `lk_customer_group` DISABLE KEYS */;
INSERT INTO `lk_customer_group` VALUES (1,0,1);
/*!40000 ALTER TABLE `lk_customer_group` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_customer_group_description`
--

DROP TABLE IF EXISTS `lk_customer_group_description`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_customer_group_description` (
  `customer_group_id` int(11) NOT NULL,
  `language_id` int(11) NOT NULL,
  `name` varchar(32) NOT NULL,
  `description` text NOT NULL,
  PRIMARY KEY (`customer_group_id`,`language_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_customer_group_description`
--

LOCK TABLES `lk_customer_group_description` WRITE;
/*!40000 ALTER TABLE `lk_customer_group_description` DISABLE KEYS */;
INSERT INTO `lk_customer_group_description` VALUES (1,1,'Default','test');
/*!40000 ALTER TABLE `lk_customer_group_description` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_customer_history`
--

DROP TABLE IF EXISTS `lk_customer_history`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_customer_history` (
  `customer_history_id` int(11) NOT NULL AUTO_INCREMENT,
  `customer_id` int(11) NOT NULL,
  `comment` text NOT NULL,
  `date_added` datetime NOT NULL,
  PRIMARY KEY (`customer_history_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_customer_history`
--

LOCK TABLES `lk_customer_history` WRITE;
/*!40000 ALTER TABLE `lk_customer_history` DISABLE KEYS */;
/*!40000 ALTER TABLE `lk_customer_history` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_customer_ip`
--

DROP TABLE IF EXISTS `lk_customer_ip`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_customer_ip` (
  `customer_ip_id` int(11) NOT NULL AUTO_INCREMENT,
  `customer_id` int(11) NOT NULL,
  `ip` varchar(40) NOT NULL,
  `date_added` datetime NOT NULL,
  PRIMARY KEY (`customer_ip_id`),
  KEY `ip` (`ip`)
) ENGINE=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_customer_ip`
--

LOCK TABLES `lk_customer_ip` WRITE;
/*!40000 ALTER TABLE `lk_customer_ip` DISABLE KEYS */;
INSERT INTO `lk_customer_ip` VALUES (1,1,'203.122.41.218','2017-08-23 23:42:14'),(2,2,'203.122.41.218','2017-08-23 23:49:19'),(3,3,'111.94.228.159','2017-09-22 10:37:23'),(4,3,'182.253.38.11','2017-10-09 21:25:44'),(5,3,'36.88.52.204','2017-10-09 21:28:23'),(6,3,'202.62.17.118','2017-10-09 21:54:42'),(7,3,'139.193.106.192','2017-10-10 06:31:11');
/*!40000 ALTER TABLE `lk_customer_ip` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_customer_login`
--

DROP TABLE IF EXISTS `lk_customer_login`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_customer_login` (
  `customer_login_id` int(11) NOT NULL AUTO_INCREMENT,
  `email` varchar(96) NOT NULL,
  `ip` varchar(40) NOT NULL,
  `total` int(4) NOT NULL,
  `date_added` datetime NOT NULL,
  `date_modified` datetime NOT NULL,
  PRIMARY KEY (`customer_login_id`),
  KEY `email` (`email`),
  KEY `ip` (`ip`)
) ENGINE=MyISAM AUTO_INCREMENT=12 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_customer_login`
--

LOCK TABLES `lk_customer_login` WRITE;
/*!40000 ALTER TABLE `lk_customer_login` DISABLE KEYS */;
INSERT INTO `lk_customer_login` VALUES (1,'h3nr','139.193.106.192',1,'2017-10-10 13:30:55','2017-10-10 13:30:55'),(2,'\'','36.82.83.24',1,'2017-11-30 04:07:12','2017-11-30 04:07:12'),(3,'alinasagma@y7m0y3ir.xzzy.info','188.68.3.122',1,'2018-06-04 12:41:42','2018-06-04 12:41:42'),(4,'longattext@y7m0y3ir.xzzy.info','5.62.154.62',1,'2018-06-04 16:22:24','2018-06-04 16:22:24'),(5,'longattext@y7m0y3ir.xzzy.info','188.68.0.185',1,'2018-06-04 18:33:26','2018-06-04 18:33:26'),(6,'diandruche@5zlz03gx.xzzy.info','93.179.90.52',1,'2018-06-06 23:50:16','2018-06-06 23:50:16'),(7,'tinishamor@5zlz03gx.xzzy.info','46.161.61.51',1,'2018-06-07 03:11:54','2018-06-07 03:11:54'),(8,'tinishamor@5zlz03gx.xzzy.info','5.62.159.214',1,'2018-06-07 05:27:00','2018-06-07 05:27:00'),(9,'erichboify@1yuyrzp4.xzzy.info','95.181.176.15',1,'2018-06-24 09:16:53','2018-06-24 09:16:53'),(10,'lionellerb@1yuyrzp4.xzzy.info','185.223.165.235',1,'2018-06-24 14:48:54','2018-06-24 14:48:54'),(11,'lionellerb@1yuyrzp4.xzzy.info','95.181.176.136',1,'2018-06-25 02:54:17','2018-06-25 02:54:17');
/*!40000 ALTER TABLE `lk_customer_login` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_customer_online`
--

DROP TABLE IF EXISTS `lk_customer_online`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_customer_online` (
  `ip` varchar(40) NOT NULL,
  `customer_id` int(11) NOT NULL,
  `url` text NOT NULL,
  `referer` text NOT NULL,
  `date_added` datetime NOT NULL,
  PRIMARY KEY (`ip`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_customer_online`
--

LOCK TABLES `lk_customer_online` WRITE;
/*!40000 ALTER TABLE `lk_customer_online` DISABLE KEYS */;
/*!40000 ALTER TABLE `lk_customer_online` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_customer_reward`
--

DROP TABLE IF EXISTS `lk_customer_reward`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_customer_reward` (
  `customer_reward_id` int(11) NOT NULL AUTO_INCREMENT,
  `customer_id` int(11) NOT NULL DEFAULT 0,
  `order_id` int(11) NOT NULL DEFAULT 0,
  `description` text NOT NULL,
  `points` int(8) NOT NULL DEFAULT 0,
  `date_added` datetime NOT NULL,
  PRIMARY KEY (`customer_reward_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_customer_reward`
--

LOCK TABLES `lk_customer_reward` WRITE;
/*!40000 ALTER TABLE `lk_customer_reward` DISABLE KEYS */;
/*!40000 ALTER TABLE `lk_customer_reward` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_customer_search`
--

DROP TABLE IF EXISTS `lk_customer_search`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_customer_search` (
  `customer_search_id` int(11) NOT NULL AUTO_INCREMENT,
  `store_id` int(11) NOT NULL,
  `language_id` int(11) NOT NULL,
  `customer_id` int(11) NOT NULL,
  `keyword` varchar(255) NOT NULL,
  `category_id` int(11) DEFAULT NULL,
  `sub_category` tinyint(1) NOT NULL,
  `description` tinyint(1) NOT NULL,
  `products` int(11) NOT NULL,
  `ip` varchar(40) NOT NULL,
  `date_added` datetime NOT NULL,
  PRIMARY KEY (`customer_search_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_customer_search`
--

LOCK TABLES `lk_customer_search` WRITE;
/*!40000 ALTER TABLE `lk_customer_search` DISABLE KEYS */;
/*!40000 ALTER TABLE `lk_customer_search` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_customer_transaction`
--

DROP TABLE IF EXISTS `lk_customer_transaction`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_customer_transaction` (
  `customer_transaction_id` int(11) NOT NULL AUTO_INCREMENT,
  `customer_id` int(11) NOT NULL,
  `order_id` int(11) NOT NULL,
  `description` text NOT NULL,
  `amount` decimal(15,4) NOT NULL,
  `date_added` datetime NOT NULL,
  PRIMARY KEY (`customer_transaction_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_customer_transaction`
--

LOCK TABLES `lk_customer_transaction` WRITE;
/*!40000 ALTER TABLE `lk_customer_transaction` DISABLE KEYS */;
/*!40000 ALTER TABLE `lk_customer_transaction` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_customer_wishlist`
--

DROP TABLE IF EXISTS `lk_customer_wishlist`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_customer_wishlist` (
  `customer_id` int(11) NOT NULL,
  `product_id` int(11) NOT NULL,
  `date_added` datetime NOT NULL,
  PRIMARY KEY (`customer_id`,`product_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_customer_wishlist`
--

LOCK TABLES `lk_customer_wishlist` WRITE;
/*!40000 ALTER TABLE `lk_customer_wishlist` DISABLE KEYS */;
INSERT INTO `lk_customer_wishlist` VALUES (2,51,'2017-08-23 23:58:29');
/*!40000 ALTER TABLE `lk_customer_wishlist` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_customerpartner_commission_category`
--

DROP TABLE IF EXISTS `lk_customerpartner_commission_category`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_customerpartner_commission_category` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `category_id` int(100) NOT NULL,
  `fixed` float NOT NULL,
  `percentage` float NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_customerpartner_commission_category`
--

LOCK TABLES `lk_customerpartner_commission_category` WRITE;
/*!40000 ALTER TABLE `lk_customerpartner_commission_category` DISABLE KEYS */;
/*!40000 ALTER TABLE `lk_customerpartner_commission_category` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_customerpartner_download`
--

DROP TABLE IF EXISTS `lk_customerpartner_download`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_customerpartner_download` (
  `download_id` int(11) NOT NULL AUTO_INCREMENT,
  `seller_id` int(11) NOT NULL,
  PRIMARY KEY (`download_id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_customerpartner_download`
--

LOCK TABLES `lk_customerpartner_download` WRITE;
/*!40000 ALTER TABLE `lk_customerpartner_download` DISABLE KEYS */;
INSERT INTO `lk_customerpartner_download` VALUES (1,2);
/*!40000 ALTER TABLE `lk_customerpartner_download` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_customerpartner_flatshipping`
--

DROP TABLE IF EXISTS `lk_customerpartner_flatshipping`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_customerpartner_flatshipping` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `partner_id` int(11) NOT NULL,
  `amount` float DEFAULT NULL,
  `tax_class_id` float NOT NULL,
  `status` int(1) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_customerpartner_flatshipping`
--

LOCK TABLES `lk_customerpartner_flatshipping` WRITE;
/*!40000 ALTER TABLE `lk_customerpartner_flatshipping` DISABLE KEYS */;
INSERT INTO `lk_customerpartner_flatshipping` VALUES (1,2,20,0,1);
/*!40000 ALTER TABLE `lk_customerpartner_flatshipping` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_customerpartner_mail`
--

DROP TABLE IF EXISTS `lk_customerpartner_mail`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_customerpartner_mail` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(100) NOT NULL,
  `subject` varchar(1000) NOT NULL,
  `message` varchar(5000) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_customerpartner_mail`
--

LOCK TABLES `lk_customerpartner_mail` WRITE;
/*!40000 ALTER TABLE `lk_customerpartner_mail` DISABLE KEYS */;
/*!40000 ALTER TABLE `lk_customerpartner_mail` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_customerpartner_shipping`
--

DROP TABLE IF EXISTS `lk_customerpartner_shipping`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_customerpartner_shipping` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `seller_id` int(10) NOT NULL,
  `country_code` varchar(100) NOT NULL,
  `zip_to` varchar(100) NOT NULL,
  `zip_from` varchar(100) NOT NULL,
  `price` float NOT NULL,
  `weight_from` decimal(10,2) NOT NULL,
  `weight_to` decimal(10,2) NOT NULL,
  `max_days` int(10) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_customerpartner_shipping`
--

LOCK TABLES `lk_customerpartner_shipping` WRITE;
/*!40000 ALTER TABLE `lk_customerpartner_shipping` DISABLE KEYS */;
INSERT INTO `lk_customerpartner_shipping` VALUES (1,2,'IN','200000','100000',20,1.00,100.00,5),(2,2,'IN','400000','300000',20,1.00,100.00,3),(3,2,'IN','600000','500000',20,1.00,100.00,4),(4,2,'IN','800000','700000',20,1.00,100.00,2),(5,2,'IN','100000','800000',20,1.00,100.00,3);
/*!40000 ALTER TABLE `lk_customerpartner_shipping` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_customerpartner_sold_tracking`
--

DROP TABLE IF EXISTS `lk_customerpartner_sold_tracking`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_customerpartner_sold_tracking` (
  `product_id` int(11) NOT NULL,
  `order_id` int(11) NOT NULL,
  `customer_id` int(11) NOT NULL,
  `date_added` date NOT NULL DEFAULT '0000-00-00',
  `tracking` varchar(100) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_customerpartner_sold_tracking`
--

LOCK TABLES `lk_customerpartner_sold_tracking` WRITE;
/*!40000 ALTER TABLE `lk_customerpartner_sold_tracking` DISABLE KEYS */;
INSERT INTO `lk_customerpartner_sold_tracking` VALUES (50,2,2,'0000-00-00','78945');
/*!40000 ALTER TABLE `lk_customerpartner_sold_tracking` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_customerpartner_to_category`
--

DROP TABLE IF EXISTS `lk_customerpartner_to_category`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_customerpartner_to_category` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `seller_id` int(11) NOT NULL,
  `category_id` varchar(1000) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_customerpartner_to_category`
--

LOCK TABLES `lk_customerpartner_to_category` WRITE;
/*!40000 ALTER TABLE `lk_customerpartner_to_category` DISABLE KEYS */;
/*!40000 ALTER TABLE `lk_customerpartner_to_category` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_customerpartner_to_commission`
--

DROP TABLE IF EXISTS `lk_customerpartner_to_commission`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_customerpartner_to_commission` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `customer_id` int(100) NOT NULL,
  `commission_id` int(100) NOT NULL,
  `fixed` float NOT NULL,
  `percentage` float NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_customerpartner_to_commission`
--

LOCK TABLES `lk_customerpartner_to_commission` WRITE;
/*!40000 ALTER TABLE `lk_customerpartner_to_commission` DISABLE KEYS */;
/*!40000 ALTER TABLE `lk_customerpartner_to_commission` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_customerpartner_to_customer`
--

DROP TABLE IF EXISTS `lk_customerpartner_to_customer`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_customerpartner_to_customer` (
  `customer_id` int(11) NOT NULL,
  `is_partner` int(1) NOT NULL,
  `screenname` varchar(255) NOT NULL,
  `gender` varchar(255) NOT NULL,
  `shortprofile` text NOT NULL,
  `avatar` varchar(255) NOT NULL,
  `twitterid` varchar(255) NOT NULL,
  `paypalid` varchar(255) NOT NULL,
  `paypalfirstname` varchar(255) DEFAULT NULL,
  `paypallastname` varchar(255) DEFAULT NULL,
  `country` varchar(255) NOT NULL,
  `facebookid` varchar(255) NOT NULL,
  `backgroundcolor` varchar(255) NOT NULL,
  `companybanner` varchar(255) NOT NULL,
  `companylogo` varchar(255) NOT NULL,
  `companylocality` varchar(255) NOT NULL,
  `companyname` varchar(255) NOT NULL,
  `companydescription` text NOT NULL,
  `countrylogo` varchar(1000) NOT NULL,
  `otherpayment` text NOT NULL,
  `taxinfo` varchar(500) DEFAULT NULL,
  `commission` decimal(10,2) NOT NULL,
  PRIMARY KEY (`customer_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_customerpartner_to_customer`
--

LOCK TABLES `lk_customerpartner_to_customer` WRITE;
/*!40000 ALTER TABLE `lk_customerpartner_to_customer` DISABLE KEYS */;
INSERT INTO `lk_customerpartner_to_customer` VALUES (1,1,'First Seller','','','','','',NULL,NULL,'IN','','','','','','First Seller','','image/flags/in.png','',NULL,0.00),(2,1,'Test 12','','','wkseller/2/c05059975.png','','','','','TV','','','wkseller/2/canon_eos_5d_mark_iv_1274706.jpg','','','Test 1','','image/flags/tv.png','','',10.00),(3,1,'Henrico-Wijaya-fbe021704f8c8500a65c89e4cf2820c0','','','','','',NULL,NULL,'','','','','','','Henrico-Wijaya-fbe021704f8c8500a65c89e4cf2820c0','','','','',700.00);
/*!40000 ALTER TABLE `lk_customerpartner_to_customer` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_customerpartner_to_feedback`
--

DROP TABLE IF EXISTS `lk_customerpartner_to_feedback`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_customerpartner_to_feedback` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `customer_id` smallint(6) NOT NULL,
  `seller_id` smallint(6) NOT NULL,
  `nickname` varchar(255) NOT NULL,
  `summary` text NOT NULL,
  `review` text NOT NULL,
  `status` int(1) NOT NULL,
  `createdate` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_customerpartner_to_feedback`
--

LOCK TABLES `lk_customerpartner_to_feedback` WRITE;
/*!40000 ALTER TABLE `lk_customerpartner_to_feedback` DISABLE KEYS */;
/*!40000 ALTER TABLE `lk_customerpartner_to_feedback` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_customerpartner_to_order`
--

DROP TABLE IF EXISTS `lk_customerpartner_to_order`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_customerpartner_to_order` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `order_id` int(11) NOT NULL,
  `customer_id` int(11) NOT NULL,
  `product_id` int(11) NOT NULL,
  `order_product_id` int(100) NOT NULL,
  `price` float NOT NULL,
  `quantity` float NOT NULL,
  `shipping` varchar(255) NOT NULL,
  `shipping_rate` float NOT NULL,
  `payment` varchar(255) NOT NULL,
  `payment_rate` float NOT NULL,
  `admin` float NOT NULL,
  `customer` float NOT NULL,
  `shipping_applied` float NOT NULL,
  `commission_applied` decimal(10,2) NOT NULL,
  `currency_code` varchar(10) NOT NULL,
  `currency_value` decimal(15,8) NOT NULL,
  `details` varchar(255) NOT NULL,
  `paid_status` tinyint(1) NOT NULL,
  `date_added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `order_product_status` int(11) NOT NULL,
  `option_data` varchar(5000) DEFAULT NULL,
  `seller_access` int(1) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_customerpartner_to_order`
--

LOCK TABLES `lk_customerpartner_to_order` WRITE;
/*!40000 ALTER TABLE `lk_customerpartner_to_order` DISABLE KEYS */;
INSERT INTO `lk_customerpartner_to_order` VALUES (1,1,2,50,60,1020,1,'Flat Shipping Rate',0,'Cash On Delivery',0,0,1025,5,0.00,'USD',1.00000000,'Partner Fixed Based',0,'2017-08-24 00:20:20',1,'[]',1),(2,2,2,50,171,3702.6,3,'Flat Shipping Rate',0,'Cash On Delivery',0,336.6,3371,5,10.00,'USD',1.00000000,'Partner Fixed Based',0,'2017-08-24 00:26:07',3,'[]',1);
/*!40000 ALTER TABLE `lk_customerpartner_to_order` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_customerpartner_to_order_status`
--

DROP TABLE IF EXISTS `lk_customerpartner_to_order_status`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_customerpartner_to_order_status` (
  `change_orderstatus_id` int(11) NOT NULL AUTO_INCREMENT,
  `order_id` int(11) NOT NULL,
  `product_id` int(11) NOT NULL,
  `customer_id` int(11) NOT NULL,
  `order_status_id` int(11) NOT NULL,
  `comment` text NOT NULL,
  `date_added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`change_orderstatus_id`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_customerpartner_to_order_status`
--

LOCK TABLES `lk_customerpartner_to_order_status` WRITE;
/*!40000 ALTER TABLE `lk_customerpartner_to_order_status` DISABLE KEYS */;
INSERT INTO `lk_customerpartner_to_order_status` VALUES (1,2,50,2,3,'Product 1  status has been changed to Shipped','2017-08-24 00:27:46'),(2,2,50,2,3,'Product 1  status has been changed to Shipped','2017-08-24 01:11:49'),(3,2,50,2,1,'Product - Product 1<br/>Seller Tracking No - 78945<br/>','2017-08-24 01:12:42');
/*!40000 ALTER TABLE `lk_customerpartner_to_order_status` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_customerpartner_to_payment`
--

DROP TABLE IF EXISTS `lk_customerpartner_to_payment`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_customerpartner_to_payment` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `customer_id` int(11) NOT NULL,
  `amount` float NOT NULL,
  `text` varchar(255) NOT NULL,
  `details` varchar(255) NOT NULL,
  `request_type` varchar(255) NOT NULL,
  `paid` int(10) NOT NULL,
  `balance_reduced` int(10) NOT NULL,
  `payment` varchar(255) NOT NULL,
  `date_added` date NOT NULL DEFAULT '0000-00-00',
  `date_modified` date NOT NULL DEFAULT '0000-00-00',
  `added_by` varchar(255) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_customerpartner_to_payment`
--

LOCK TABLES `lk_customerpartner_to_payment` WRITE;
/*!40000 ALTER TABLE `lk_customerpartner_to_payment` DISABLE KEYS */;
/*!40000 ALTER TABLE `lk_customerpartner_to_payment` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_customerpartner_to_product`
--

DROP TABLE IF EXISTS `lk_customerpartner_to_product`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_customerpartner_to_product` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `customer_id` int(100) NOT NULL,
  `product_id` int(100) NOT NULL,
  `price` float NOT NULL,
  `seller_price` float NOT NULL,
  `currency_code` varchar(11) NOT NULL,
  `quantity` int(100) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_customerpartner_to_product`
--

LOCK TABLES `lk_customerpartner_to_product` WRITE;
/*!40000 ALTER TABLE `lk_customerpartner_to_product` DISABLE KEYS */;
INSERT INTO `lk_customerpartner_to_product` VALUES (1,2,50,1020,1020,'USD',96),(2,2,51,1246,1246,'USD',0),(3,2,52,2463,2463,'USD',0),(4,3,41,100,100,'',977),(5,3,40,101,101,'',970),(6,3,42,100,100,'',990),(7,3,53,50,50,'USD',100);
/*!40000 ALTER TABLE `lk_customerpartner_to_product` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_customerpartner_to_transaction`
--

DROP TABLE IF EXISTS `lk_customerpartner_to_transaction`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_customerpartner_to_transaction` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `customer_id` int(11) NOT NULL,
  `order_id` varchar(500) NOT NULL,
  `order_product_id` varchar(500) NOT NULL,
  `amount` float NOT NULL,
  `text` varchar(255) NOT NULL,
  `details` varchar(255) NOT NULL,
  `date_added` date NOT NULL DEFAULT '0000-00-00',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_customerpartner_to_transaction`
--

LOCK TABLES `lk_customerpartner_to_transaction` WRITE;
/*!40000 ALTER TABLE `lk_customerpartner_to_transaction` DISABLE KEYS */;
/*!40000 ALTER TABLE `lk_customerpartner_to_transaction` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_download`
--

DROP TABLE IF EXISTS `lk_download`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_download` (
  `download_id` int(11) NOT NULL AUTO_INCREMENT,
  `filename` varchar(160) NOT NULL,
  `mask` varchar(128) NOT NULL,
  `date_added` datetime NOT NULL,
  PRIMARY KEY (`download_id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_download`
--

LOCK TABLES `lk_download` WRITE;
/*!40000 ALTER TABLE `lk_download` DISABLE KEYS */;
INSERT INTO `lk_download` VALUES (1,'download.jpg.a5c3c6bf0dccb941ac2b2fc867a284c0','download.jpg','2017-08-24 00:28:35');
/*!40000 ALTER TABLE `lk_download` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_download_description`
--

DROP TABLE IF EXISTS `lk_download_description`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_download_description` (
  `download_id` int(11) NOT NULL,
  `language_id` int(11) NOT NULL,
  `name` varchar(64) NOT NULL,
  PRIMARY KEY (`download_id`,`language_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_download_description`
--

LOCK TABLES `lk_download_description` WRITE;
/*!40000 ALTER TABLE `lk_download_description` DISABLE KEYS */;
INSERT INTO `lk_download_description` VALUES (1,1,'Download1');
/*!40000 ALTER TABLE `lk_download_description` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_event`
--

DROP TABLE IF EXISTS `lk_event`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_event` (
  `event_id` int(11) NOT NULL AUTO_INCREMENT,
  `code` varchar(32) NOT NULL,
  `trigger` text NOT NULL,
  `action` text NOT NULL,
  `status` tinyint(1) NOT NULL,
  `date_added` datetime NOT NULL,
  PRIMARY KEY (`event_id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_event`
--

LOCK TABLES `lk_event` WRITE;
/*!40000 ALTER TABLE `lk_event` DISABLE KEYS */;
INSERT INTO `lk_event` VALUES (1,'voucher','catalog/model/checkout/order/addOrderHistory/after','extension/total/voucher/send',0,'0000-00-00 00:00:00');
/*!40000 ALTER TABLE `lk_event` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_extension`
--

DROP TABLE IF EXISTS `lk_extension`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_extension` (
  `extension_id` int(11) NOT NULL AUTO_INCREMENT,
  `type` varchar(32) NOT NULL,
  `code` varchar(32) NOT NULL,
  PRIMARY KEY (`extension_id`)
) ENGINE=MyISAM AUTO_INCREMENT=32 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_extension`
--

LOCK TABLES `lk_extension` WRITE;
/*!40000 ALTER TABLE `lk_extension` DISABLE KEYS */;
INSERT INTO `lk_extension` VALUES (1,'payment','cod'),(2,'total','shipping'),(3,'total','sub_total'),(4,'total','tax'),(5,'total','total'),(6,'module','banner'),(7,'module','carousel'),(8,'total','credit'),(9,'shipping','flat'),(10,'total','handling'),(11,'total','low_order_fee'),(12,'total','coupon'),(13,'module','category'),(14,'module','account'),(15,'total','reward'),(16,'total','voucher'),(17,'payment','free_checkout'),(18,'module','featured'),(19,'module','slideshow'),(20,'theme','theme_default'),(21,'dashboard','activity'),(22,'dashboard','sale'),(23,'dashboard','recent'),(24,'dashboard','order'),(25,'dashboard','online'),(26,'dashboard','map'),(27,'dashboard','customer'),(28,'dashboard','chart'),(30,'module','journal2'),(31,'module','marketplace');
/*!40000 ALTER TABLE `lk_extension` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_filter`
--

DROP TABLE IF EXISTS `lk_filter`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_filter` (
  `filter_id` int(11) NOT NULL AUTO_INCREMENT,
  `filter_group_id` int(11) NOT NULL,
  `sort_order` int(3) NOT NULL,
  PRIMARY KEY (`filter_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_filter`
--

LOCK TABLES `lk_filter` WRITE;
/*!40000 ALTER TABLE `lk_filter` DISABLE KEYS */;
/*!40000 ALTER TABLE `lk_filter` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_filter_description`
--

DROP TABLE IF EXISTS `lk_filter_description`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_filter_description` (
  `filter_id` int(11) NOT NULL,
  `language_id` int(11) NOT NULL,
  `filter_group_id` int(11) NOT NULL,
  `name` varchar(64) NOT NULL,
  PRIMARY KEY (`filter_id`,`language_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_filter_description`
--

LOCK TABLES `lk_filter_description` WRITE;
/*!40000 ALTER TABLE `lk_filter_description` DISABLE KEYS */;
/*!40000 ALTER TABLE `lk_filter_description` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_filter_group`
--

DROP TABLE IF EXISTS `lk_filter_group`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_filter_group` (
  `filter_group_id` int(11) NOT NULL AUTO_INCREMENT,
  `sort_order` int(3) NOT NULL,
  PRIMARY KEY (`filter_group_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_filter_group`
--

LOCK TABLES `lk_filter_group` WRITE;
/*!40000 ALTER TABLE `lk_filter_group` DISABLE KEYS */;
/*!40000 ALTER TABLE `lk_filter_group` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_filter_group_description`
--

DROP TABLE IF EXISTS `lk_filter_group_description`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_filter_group_description` (
  `filter_group_id` int(11) NOT NULL,
  `language_id` int(11) NOT NULL,
  `name` varchar(64) NOT NULL,
  PRIMARY KEY (`filter_group_id`,`language_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_filter_group_description`
--

LOCK TABLES `lk_filter_group_description` WRITE;
/*!40000 ALTER TABLE `lk_filter_group_description` DISABLE KEYS */;
/*!40000 ALTER TABLE `lk_filter_group_description` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_geo_zone`
--

DROP TABLE IF EXISTS `lk_geo_zone`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_geo_zone` (
  `geo_zone_id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(32) NOT NULL,
  `description` varchar(255) NOT NULL,
  `date_modified` datetime NOT NULL,
  `date_added` datetime NOT NULL,
  PRIMARY KEY (`geo_zone_id`)
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_geo_zone`
--

LOCK TABLES `lk_geo_zone` WRITE;
/*!40000 ALTER TABLE `lk_geo_zone` DISABLE KEYS */;
INSERT INTO `lk_geo_zone` VALUES (3,'UK VAT Zone','UK VAT','2010-02-26 22:33:24','2009-01-06 23:26:25'),(4,'UK Shipping','UK Shipping Zones','2010-12-15 15:18:13','2009-06-23 01:14:53');
/*!40000 ALTER TABLE `lk_geo_zone` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_information`
--

DROP TABLE IF EXISTS `lk_information`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_information` (
  `information_id` int(11) NOT NULL AUTO_INCREMENT,
  `bottom` int(1) NOT NULL DEFAULT 0,
  `sort_order` int(3) NOT NULL DEFAULT 0,
  `status` tinyint(1) NOT NULL DEFAULT 1,
  PRIMARY KEY (`information_id`)
) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_information`
--

LOCK TABLES `lk_information` WRITE;
/*!40000 ALTER TABLE `lk_information` DISABLE KEYS */;
INSERT INTO `lk_information` VALUES (3,1,3,1),(4,1,1,1),(5,1,4,1),(6,1,2,1);
/*!40000 ALTER TABLE `lk_information` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_information_description`
--

DROP TABLE IF EXISTS `lk_information_description`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_information_description` (
  `information_id` int(11) NOT NULL,
  `language_id` int(11) NOT NULL,
  `title` varchar(64) NOT NULL,
  `description` text NOT NULL,
  `meta_title` varchar(255) NOT NULL,
  `meta_description` varchar(255) NOT NULL,
  `meta_keyword` varchar(255) NOT NULL,
  PRIMARY KEY (`information_id`,`language_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_information_description`
--

LOCK TABLES `lk_information_description` WRITE;
/*!40000 ALTER TABLE `lk_information_description` DISABLE KEYS */;
INSERT INTO `lk_information_description` VALUES (4,1,'About Us','&lt;p&gt;\r\n	About Us&lt;/p&gt;\r\n','About Us','',''),(5,1,'Terms &amp; Conditions','&lt;p&gt;\r\n	Terms &amp;amp; Conditions&lt;/p&gt;\r\n','Terms &amp; Conditions','',''),(3,1,'Privacy Policy','&lt;p&gt;\r\n	Privacy Policy&lt;/p&gt;\r\n','Privacy Policy','',''),(6,1,'Delivery Information','&lt;p&gt;\r\n	Delivery Information&lt;/p&gt;\r\n','Delivery Information','','');
/*!40000 ALTER TABLE `lk_information_description` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_information_to_layout`
--

DROP TABLE IF EXISTS `lk_information_to_layout`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_information_to_layout` (
  `information_id` int(11) NOT NULL,
  `store_id` int(11) NOT NULL,
  `layout_id` int(11) NOT NULL,
  PRIMARY KEY (`information_id`,`store_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_information_to_layout`
--

LOCK TABLES `lk_information_to_layout` WRITE;
/*!40000 ALTER TABLE `lk_information_to_layout` DISABLE KEYS */;
/*!40000 ALTER TABLE `lk_information_to_layout` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_information_to_store`
--

DROP TABLE IF EXISTS `lk_information_to_store`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_information_to_store` (
  `information_id` int(11) NOT NULL,
  `store_id` int(11) NOT NULL,
  PRIMARY KEY (`information_id`,`store_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_information_to_store`
--

LOCK TABLES `lk_information_to_store` WRITE;
/*!40000 ALTER TABLE `lk_information_to_store` DISABLE KEYS */;
INSERT INTO `lk_information_to_store` VALUES (3,0),(4,0),(5,0),(6,0);
/*!40000 ALTER TABLE `lk_information_to_store` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_journal2_blog_category`
--

DROP TABLE IF EXISTS `lk_journal2_blog_category`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_journal2_blog_category` (
  `category_id` int(11) NOT NULL AUTO_INCREMENT,
  `parent_id` int(11) DEFAULT NULL,
  `image` varchar(256) DEFAULT NULL,
  `status` tinyint(1) DEFAULT NULL,
  `sort_order` int(11) DEFAULT NULL,
  PRIMARY KEY (`category_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_journal2_blog_category`
--

LOCK TABLES `lk_journal2_blog_category` WRITE;
/*!40000 ALTER TABLE `lk_journal2_blog_category` DISABLE KEYS */;
/*!40000 ALTER TABLE `lk_journal2_blog_category` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_journal2_blog_category_description`
--

DROP TABLE IF EXISTS `lk_journal2_blog_category_description`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_journal2_blog_category_description` (
  `category_id` int(11) NOT NULL,
  `language_id` int(11) NOT NULL,
  `name` varchar(256) DEFAULT NULL,
  `description` text DEFAULT NULL,
  `meta_title` varchar(256) DEFAULT NULL,
  `meta_keywords` varchar(256) DEFAULT NULL,
  `meta_description` text DEFAULT NULL,
  `keyword` varchar(256) DEFAULT NULL,
  PRIMARY KEY (`category_id`,`language_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_journal2_blog_category_description`
--

LOCK TABLES `lk_journal2_blog_category_description` WRITE;
/*!40000 ALTER TABLE `lk_journal2_blog_category_description` DISABLE KEYS */;
/*!40000 ALTER TABLE `lk_journal2_blog_category_description` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_journal2_blog_category_to_layout`
--

DROP TABLE IF EXISTS `lk_journal2_blog_category_to_layout`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_journal2_blog_category_to_layout` (
  `category_id` int(11) NOT NULL AUTO_INCREMENT,
  `store_id` int(11) NOT NULL,
  `layout_id` int(11) DEFAULT NULL,
  PRIMARY KEY (`category_id`,`store_id`),
  KEY `layout_id` (`layout_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_journal2_blog_category_to_layout`
--

LOCK TABLES `lk_journal2_blog_category_to_layout` WRITE;
/*!40000 ALTER TABLE `lk_journal2_blog_category_to_layout` DISABLE KEYS */;
/*!40000 ALTER TABLE `lk_journal2_blog_category_to_layout` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_journal2_blog_category_to_store`
--

DROP TABLE IF EXISTS `lk_journal2_blog_category_to_store`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_journal2_blog_category_to_store` (
  `category_id` int(11) DEFAULT NULL,
  `store_id` int(11) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_journal2_blog_category_to_store`
--

LOCK TABLES `lk_journal2_blog_category_to_store` WRITE;
/*!40000 ALTER TABLE `lk_journal2_blog_category_to_store` DISABLE KEYS */;
/*!40000 ALTER TABLE `lk_journal2_blog_category_to_store` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_journal2_blog_comments`
--

DROP TABLE IF EXISTS `lk_journal2_blog_comments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_journal2_blog_comments` (
  `comment_id` int(11) NOT NULL AUTO_INCREMENT,
  `parent_id` int(11) DEFAULT NULL,
  `post_id` int(11) DEFAULT NULL,
  `customer_id` int(11) DEFAULT NULL,
  `author_id` int(11) DEFAULT NULL,
  `name` varchar(256) DEFAULT NULL,
  `email` varchar(256) DEFAULT NULL,
  `website` varchar(256) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `status` tinyint(1) DEFAULT NULL,
  `date` datetime DEFAULT NULL,
  PRIMARY KEY (`comment_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_journal2_blog_comments`
--

LOCK TABLES `lk_journal2_blog_comments` WRITE;
/*!40000 ALTER TABLE `lk_journal2_blog_comments` DISABLE KEYS */;
/*!40000 ALTER TABLE `lk_journal2_blog_comments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_journal2_blog_post`
--

DROP TABLE IF EXISTS `lk_journal2_blog_post`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_journal2_blog_post` (
  `post_id` int(11) NOT NULL AUTO_INCREMENT,
  `author_id` int(11) DEFAULT NULL,
  `image` varchar(256) DEFAULT NULL,
  `comments` tinyint(1) DEFAULT NULL,
  `status` tinyint(1) DEFAULT NULL,
  `sort_order` int(11) DEFAULT NULL,
  `date_created` datetime DEFAULT NULL,
  `date_updated` datetime DEFAULT NULL,
  `views` int(11) DEFAULT NULL,
  PRIMARY KEY (`post_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_journal2_blog_post`
--

LOCK TABLES `lk_journal2_blog_post` WRITE;
/*!40000 ALTER TABLE `lk_journal2_blog_post` DISABLE KEYS */;
/*!40000 ALTER TABLE `lk_journal2_blog_post` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_journal2_blog_post_description`
--

DROP TABLE IF EXISTS `lk_journal2_blog_post_description`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_journal2_blog_post_description` (
  `post_id` int(11) NOT NULL,
  `language_id` int(11) NOT NULL,
  `name` varchar(256) DEFAULT NULL,
  `description` text DEFAULT NULL,
  `meta_title` varchar(256) DEFAULT NULL,
  `meta_keywords` varchar(256) DEFAULT NULL,
  `meta_description` text DEFAULT NULL,
  `keyword` varchar(256) DEFAULT NULL,
  `tags` varchar(256) DEFAULT NULL,
  PRIMARY KEY (`post_id`,`language_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_journal2_blog_post_description`
--

LOCK TABLES `lk_journal2_blog_post_description` WRITE;
/*!40000 ALTER TABLE `lk_journal2_blog_post_description` DISABLE KEYS */;
/*!40000 ALTER TABLE `lk_journal2_blog_post_description` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_journal2_blog_post_to_category`
--

DROP TABLE IF EXISTS `lk_journal2_blog_post_to_category`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_journal2_blog_post_to_category` (
  `post_id` int(11) NOT NULL,
  `category_id` int(11) NOT NULL,
  PRIMARY KEY (`post_id`,`category_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_journal2_blog_post_to_category`
--

LOCK TABLES `lk_journal2_blog_post_to_category` WRITE;
/*!40000 ALTER TABLE `lk_journal2_blog_post_to_category` DISABLE KEYS */;
/*!40000 ALTER TABLE `lk_journal2_blog_post_to_category` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_journal2_blog_post_to_layout`
--

DROP TABLE IF EXISTS `lk_journal2_blog_post_to_layout`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_journal2_blog_post_to_layout` (
  `post_id` int(11) NOT NULL AUTO_INCREMENT,
  `store_id` int(11) NOT NULL,
  `layout_id` int(11) DEFAULT NULL,
  PRIMARY KEY (`post_id`,`store_id`),
  KEY `layout_id` (`layout_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_journal2_blog_post_to_layout`
--

LOCK TABLES `lk_journal2_blog_post_to_layout` WRITE;
/*!40000 ALTER TABLE `lk_journal2_blog_post_to_layout` DISABLE KEYS */;
/*!40000 ALTER TABLE `lk_journal2_blog_post_to_layout` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_journal2_blog_post_to_product`
--

DROP TABLE IF EXISTS `lk_journal2_blog_post_to_product`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_journal2_blog_post_to_product` (
  `post_id` int(11) NOT NULL,
  `product_id` int(11) NOT NULL,
  PRIMARY KEY (`post_id`,`product_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_journal2_blog_post_to_product`
--

LOCK TABLES `lk_journal2_blog_post_to_product` WRITE;
/*!40000 ALTER TABLE `lk_journal2_blog_post_to_product` DISABLE KEYS */;
/*!40000 ALTER TABLE `lk_journal2_blog_post_to_product` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_journal2_blog_post_to_store`
--

DROP TABLE IF EXISTS `lk_journal2_blog_post_to_store`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_journal2_blog_post_to_store` (
  `post_id` int(11) DEFAULT NULL,
  `store_id` int(11) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_journal2_blog_post_to_store`
--

LOCK TABLES `lk_journal2_blog_post_to_store` WRITE;
/*!40000 ALTER TABLE `lk_journal2_blog_post_to_store` DISABLE KEYS */;
/*!40000 ALTER TABLE `lk_journal2_blog_post_to_store` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_journal2_config`
--

DROP TABLE IF EXISTS `lk_journal2_config`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_journal2_config` (
  `key` varchar(64) NOT NULL,
  `store_id` int(11) NOT NULL DEFAULT 0,
  `value` mediumtext NOT NULL,
  `serialized` tinyint(1) NOT NULL,
  PRIMARY KEY (`key`,`store_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_journal2_config`
--

LOCK TABLES `lk_journal2_config` WRITE;
/*!40000 ALTER TABLE `lk_journal2_config` DISABLE KEYS */;
INSERT INTO `lk_journal2_config` VALUES ('active_skin',0,'4',0),('active_skin',3,'1',0),('blog_settings',0,'{\"posts_per_row\":{\"range\":\"1,10\",\"step\":\"1\",\"value\":{\"mobile\":{\"value\":\"1\",\"range\":\"1,10\",\"step\":\"1\"},\"mobile1\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet1\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet2\":{\"value\":\"1\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop\":{\"value\":\"3\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop1\":{\"value\":\"3\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop2\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop\":{\"value\":\"4\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop1\":{\"value\":\"3\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop2\":{\"value\":\"3\",\"range\":\"1,10\",\"step\":\"1\"}}},\"related_products_per_row\":{\"range\":\"1,10\",\"step\":\"1\",\"value\":{\"mobile\":{\"value\":\"1\",\"range\":\"1,10\",\"step\":\"1\"},\"mobile1\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet\":{\"value\":\"3\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet1\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet2\":{\"value\":\"1\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop\":{\"value\":\"4\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop1\":{\"value\":\"3\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop2\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop\":{\"value\":\"5\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop1\":{\"value\":\"4\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop2\":{\"value\":\"3\",\"range\":\"1,10\",\"step\":\"1\"}}},\"posts_display\":\"grid\",\"posts_sort\":\"newest\",\"author_name\":\"username\",\"posts_limit\":15,\"status\":\"1\",\"title\":{\"value\":{\"1\":\"Journal Blog\"}},\"keyword\":{\"value\":{\"1\":\"blog\"}},\"posts_image_type\":\"crop\",\"share_this\":\"1\",\"comments\":\"1\",\"auto_approve_comments\":\"1\",\"related_products_carousel\":\"1\",\"meta_title\":{\"value\":{\"1\":\"\"}},\"meta_keywords\":{\"value\":{\"1\":\"\"}},\"meta_description\":{\"value\":[]},\"posts_image_width\":\"300\",\"posts_image_height\":\"200\"}',1),('copyright',0,'{\"value\":{\"1\":\"Copyright \\u00a9 2014, Your Store, All Rights Reserved.\",\"2\":\"Copyright \\u00a9 2014, Your Store\"}}',1),('footer_menu',0,'{\"rows\":[{\"type\":\"columns\",\"text\":[],\"columns\":[{\"type\":\"products\",\"items\":[],\"text\":[],\"title\":{\"value\":{\"1\":\"Latest Products\",\"2\":\"\",\"4\":\"\"}},\"icon_status\":\"0\",\"icon\":{\"options\":{\"font_size\":\"16px\"}},\"icon_position\":\"top\",\"icon_border\":{\"value\":{\"border_rounded\":\"px\"}},\"icon_bg_color\":\"\",\"icon_width\":\"\",\"icon_height\":\"\",\"is_open\":true,\"newsletter_id\":\"\",\"section_type\":\"module\",\"products\":[],\"category\":\"\",\"items_limit\":\"4\",\"module_type\":\"latest\",\"posts_type\":\"newest\",\"posts\":[],\"status\":\"1\",\"enable_on_phone\":\"1\",\"enable_on_tablet\":\"1\",\"enable_on_desktop\":\"1\",\"disable_mobile\":\"0\",\"disable_desktop\":\"0\",\"random_from\":\"all\"},{\"type\":\"products\",\"items\":[],\"text\":[],\"title\":{\"value\":{\"1\":\"Special Offers\",\"2\":\"\",\"4\":\"\"}},\"icon_status\":\"0\",\"icon\":{\"options\":{\"font_size\":\"16px\"}},\"icon_position\":\"top\",\"icon_border\":{\"value\":{\"border_rounded\":\"px\"}},\"icon_bg_color\":\"\",\"icon_width\":\"\",\"icon_height\":\"\",\"is_open\":true,\"newsletter_id\":\"\",\"section_type\":\"module\",\"products\":[],\"category\":{\"data\":{\"id\":\"107\",\"name\":\"Fashion &gt; Bags\"}},\"items_limit\":\"4\",\"module_type\":\"specials\",\"posts_type\":\"newest\",\"posts\":[],\"status\":\"1\",\"enable_on_phone\":\"1\",\"enable_on_tablet\":\"1\",\"enable_on_desktop\":\"1\",\"disable_mobile\":\"0\",\"disable_desktop\":\"0\",\"random_from\":\"all\"},{\"type\":\"posts\",\"items\":[],\"text\":[],\"title\":{\"value\":{\"1\":\"Latest Blog Posts\",\"2\":\"\",\"4\":\"\"}},\"icon_status\":\"0\",\"icon\":{\"options\":{\"font_size\":\"16px\"}},\"icon_position\":\"top\",\"icon_border\":{\"value\":{\"border_rounded\":\"px\"}},\"icon_bg_color\":\"\",\"icon_width\":\"\",\"icon_height\":\"\",\"is_open\":true,\"newsletter_id\":\"\",\"section_type\":\"module\",\"products\":[],\"category\":\"\",\"items_limit\":\"4\",\"module_type\":\"bestsellers\",\"posts_type\":\"newest\",\"posts\":[],\"status\":\"1\",\"enable_on_phone\":\"1\",\"enable_on_tablet\":\"1\",\"enable_on_desktop\":\"1\",\"disable_mobile\":\"0\",\"disable_desktop\":\"0\",\"random_from\":\"all\"},{\"type\":\"posts\",\"items\":[],\"text\":[],\"title\":{\"value\":{\"1\":\"Popular Blog Posts\",\"2\":\"\",\"4\":\"\"}},\"icon_status\":\"0\",\"icon\":{\"options\":{\"font_size\":\"16px\"}},\"icon_position\":\"top\",\"icon_border\":{\"value\":{\"border_rounded\":\"px\"}},\"icon_bg_color\":\"\",\"icon_width\":\"\",\"icon_height\":\"\",\"is_open\":true,\"newsletter_id\":\"\",\"section_type\":\"module\",\"products\":[],\"category\":\"\",\"items_limit\":\"4\",\"module_type\":\"specials\",\"posts_type\":\"views\",\"posts\":[],\"status\":\"1\",\"enable_on_phone\":\"1\",\"enable_on_tablet\":\"1\",\"enable_on_desktop\":\"1\",\"disable_mobile\":\"0\",\"disable_desktop\":\"0\",\"random_from\":\"all\"}],\"contacts\":[],\"social_icons\":[],\"status\":\"1\",\"sort_order\":\"-15\",\"bottom_spacing\":\"\",\"padding_top\":\"\",\"padding_right\":\"\",\"padding_bottom\":\"\",\"padding_left\":\"\",\"items_per_row\":{\"hide_columns\":true,\"range\":\"1,10\",\"step\":\"1\",\"value\":{\"mobile\":{\"value\":\"1\",\"range\":\"1,10\",\"step\":\"1\"},\"mobile1\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet1\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet2\":{\"value\":\"1\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop\":{\"value\":\"4\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop1\":{\"value\":\"3\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop2\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop\":{\"value\":\"4\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop1\":{\"value\":\"3\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop2\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"}}},\"is_open\":false,\"background\":{\"value\":{\"bgimage_attach\":\"scroll\",\"bgimage_repeat\":\"repeat\",\"bgimage_position\":\"center top\",\"bgcolor\":{\"value\":{\"color\":\"\"}},\"use_gradient\":0,\"bgimage_size\":\"auto\"}},\"enable_on_phone\":\"1\",\"enable_on_tablet\":\"1\",\"enable_on_desktop\":\"1\",\"disable_mobile\":\"0\",\"disable_desktop\":\"0\",\"item_name\":\"Products\"},{\"type\":\"columns\",\"text\":[],\"columns\":[{\"type\":\"menu\",\"items\":[{\"icon\":{\"options\":{\"font_size\":\"14px\",\"color\":{\"value\":{\"color\":\"\"}},\"top\":\"-1\"},\"icon_type\":\"icon\",\"icon\":{\"icon\":\"&#xe62c;\",\"class\":\"angle-right\"}},\"menu\":{\"menu_type\":\"information\",\"menu_item\":{\"id\":\"4\",\"name\":\"About Us\"}},\"name_overwrite\":0,\"target\":0,\"name\":{\"value\":{\"1\":\"\",\"2\":\"\",\"4\":\"\"}},\"is_open\":false},{\"icon\":{\"options\":{\"font_size\":\"14px\",\"top\":\"-1\"},\"icon_type\":\"icon\",\"icon\":{\"icon\":\"&#xe62c;\",\"class\":\"angle-right\"}},\"menu\":{\"menu_type\":\"information\",\"menu_item\":{\"id\":\"6\",\"name\":\"Delivery Information\"}},\"name_overwrite\":0,\"target\":0,\"name\":{\"value\":{\"1\":\"\",\"2\":\"\",\"4\":\"\"}},\"is_open\":true},{\"icon\":{\"options\":{\"font_size\":\"14px\",\"color\":{\"value\":{\"color\":\"\"}},\"top\":\"-1\"},\"icon_type\":\"icon\",\"icon\":{\"icon\":\"&#xe62c;\",\"class\":\"angle-right\"}},\"menu\":{\"menu_type\":\"information\",\"menu_item\":{\"id\":\"3\",\"name\":\"Privacy Policy\"}},\"name_overwrite\":0,\"target\":0,\"name\":{\"value\":{\"1\":\"\",\"2\":\"\",\"4\":\"\"}},\"is_open\":false},{\"icon\":{\"options\":{\"font_size\":\"14px\",\"color\":{\"value\":{\"color\":\"\"}},\"top\":\"-1\"},\"icon_type\":\"icon\",\"icon\":{\"icon\":\"&#xe62c;\",\"class\":\"angle-right\"}},\"menu\":{\"menu_type\":\"information\",\"menu_item\":{\"id\":\"5\",\"name\":\"Terms &amp; Conditions\"}},\"name_overwrite\":0,\"target\":0,\"name\":{\"value\":{\"1\":\"\",\"2\":\"\",\"4\":\"\"}},\"is_open\":false},{\"icon\":{\"options\":{\"font_size\":\"14px\",\"color\":{\"value\":{\"color\":\"\"}},\"top\":\"-1\"},\"icon_type\":\"icon\",\"icon\":{\"icon\":\"&#xe62c;\",\"class\":\"angle-right\"}},\"menu\":{\"menu_type\":\"opencart\",\"menu_item\":{\"page\":\"information\\/contact\"}},\"name_overwrite\":0,\"target\":0,\"is_open\":false,\"name\":{\"value\":{\"1\":\"\",\"2\":\"\",\"4\":\"\"}}},{\"icon\":{\"options\":{\"font_size\":\"14px\",\"color\":{\"value\":{\"color\":\"\"}},\"top\":\"-1\"},\"icon_type\":\"icon\",\"icon\":{\"icon\":\"&#xe62c;\",\"class\":\"angle-right\"}},\"menu\":{\"menu_type\":\"opencart\",\"menu_item\":{\"page\":\"information\\/sitemap\"}},\"name_overwrite\":0,\"target\":0,\"is_open\":false,\"name\":{\"value\":{\"1\":\"\",\"2\":\"\",\"4\":\"\"}}}],\"text\":[],\"title\":{\"value\":{\"1\":\"Information\",\"2\":\"Information\",\"4\":\"\"}},\"icon_status\":\"1\",\"icon\":{\"options\":{\"font_size\":\"16px\"}},\"icon_position\":\"left\",\"icon_border\":{\"value\":{\"border_rounded\":\"px\"}},\"icon_bg_color\":\"\",\"icon_width\":\"\",\"icon_height\":\"\",\"is_open\":false,\"newsletter_id\":\"\",\"section_type\":\"module\",\"products\":[],\"category\":\"\",\"items_limit\":4,\"module_type\":\"featured\",\"posts_type\":\"newest\",\"posts\":[],\"status\":\"1\",\"enable_on_phone\":\"1\",\"enable_on_tablet\":\"1\",\"enable_on_desktop\":\"1\",\"disable_mobile\":\"0\",\"disable_desktop\":\"0\",\"random_from\":\"all\",\"close_others\":true,\"item_name\":\"Information\",\"sort_order\":\"3\"},{\"type\":\"menu\",\"items\":[{\"icon\":{\"options\":{\"font_size\":\"5px\",\"color\":{\"value\":{\"color\":\"\"}},\"top\":\"-1\"},\"icon_type\":\"icon\",\"icon\":{\"icon\":\"&#xe643;\",\"class\":\"circle\"}},\"menu\":{\"menu_type\":\"opencart\",\"menu_item\":{\"page\":\"information\\/contact\"}},\"name_overwrite\":0,\"target\":0,\"name\":{\"value\":{\"1\":\"\",\"2\":\"\",\"4\":\"\"}},\"is_open\":false},{\"icon\":{\"options\":{\"font_size\":\"5px\",\"color\":{\"value\":{\"color\":\"\"}},\"top\":\"-1\"},\"icon_type\":\"icon\",\"icon\":{\"icon\":\"&#xe643;\",\"class\":\"circle\"}},\"menu\":{\"menu_type\":\"opencart\",\"menu_item\":{\"page\":\"account\\/return\\/insert\"}},\"target\":0,\"name_overwrite\":\"0\",\"name\":{\"value\":{\"1\":\"\",\"2\":\"\",\"4\":\"\"}},\"is_open\":true},{\"icon\":{\"options\":{\"font_size\":\"5px\",\"top\":\"-1\",\"color\":{\"value\":{\"color\":\"\"}}},\"icon_type\":\"icon\",\"icon\":{\"icon\":\"&#xe643;\",\"class\":\"circle\"}},\"menu\":{\"menu_type\":\"opencart\",\"menu_item\":{\"page\":\"account\\/order\"}},\"name_overwrite\":0,\"target\":0,\"name\":{\"value\":{\"1\":\"\",\"2\":\"\",\"4\":\"\"}},\"is_open\":false},{\"icon\":{\"options\":{\"font_size\":\"5px\",\"color\":{\"value\":{\"color\":\"\"}},\"top\":\"-1\"},\"icon_type\":\"icon\",\"icon\":{\"icon\":\"&#xe643;\",\"class\":\"circle\"}},\"menu\":{\"menu_type\":\"opencart\",\"menu_item\":{\"page\":\"product\\/compare\"}},\"name_overwrite\":\"1\",\"target\":0,\"is_open\":false,\"name\":{\"value\":{\"1\":\"Custom Link\",\"2\":\"\",\"4\":\"\"}}},{\"icon\":{\"options\":{\"font_size\":\"5px\",\"color\":{\"value\":{\"color\":\"\"}},\"top\":\"-1\"},\"icon_type\":\"icon\",\"icon\":{\"icon\":\"&#xe643;\",\"class\":\"circle\"}},\"menu\":{\"menu_type\":\"custom\",\"menu_item\":{\"url\":\"#\"}},\"name_overwrite\":0,\"target\":0,\"is_open\":false,\"name\":{\"value\":{\"1\":\"Sample Link\",\"2\":\"\",\"4\":\"\"}}},{\"icon\":{\"options\":{\"font_size\":\"5px\",\"color\":{\"value\":{\"color\":\"\"}},\"top\":\"-1\"},\"icon_type\":\"icon\",\"icon\":{\"icon\":\"&#xe643;\",\"class\":\"circle\"}},\"menu\":{\"menu_type\":\"custom\",\"menu_item\":{\"url\":\"#\"}},\"name_overwrite\":0,\"target\":0,\"is_open\":false,\"name\":{\"value\":{\"1\":\"Another Sample Link\",\"2\":\"\",\"4\":\"\"}}}],\"text\":[],\"title\":{\"value\":{\"1\":\"Customer Support\",\"2\":\"\",\"4\":\"\"}},\"icon_status\":\"1\",\"icon\":{\"options\":{\"font_size\":\"16px\"}},\"icon_position\":\"left\",\"icon_border\":{\"value\":{\"border_rounded\":\"px\"}},\"icon_bg_color\":\"\",\"icon_width\":\"\",\"icon_height\":\"\",\"is_open\":true,\"newsletter_id\":\"\",\"section_type\":\"module\",\"products\":[],\"category\":\"\",\"items_limit\":4,\"module_type\":\"featured\",\"posts_type\":\"newest\",\"posts\":[],\"status\":\"1\",\"enable_on_phone\":\"1\",\"enable_on_tablet\":\"1\",\"enable_on_desktop\":\"1\",\"disable_mobile\":\"0\",\"disable_desktop\":\"0\",\"random_from\":\"all\",\"close_others\":true,\"item_name\":\"Customer Support\",\"sort_order\":\"2\"},{\"type\":\"menu\",\"items\":[{\"icon\":{\"options\":{\"font_size\":\"16px\",\"color\":{\"value\":{\"color\":\"rgb(68, 67, 73)\"}}},\"icon_type\":\"icon\",\"icon\":{\"icon\":\"&#xe6a3;\",\"class\":\"phone\"}},\"menu\":{\"menu_type\":\"custom\",\"menu_item\":{\"url\":\"tel:18005558989\"}},\"name_overwrite\":0,\"target\":0,\"is_open\":true,\"name\":{\"value\":{\"1\":\"1.800.555.8989\",\"2\":\"\",\"4\":\"\"}}},{\"icon\":{\"options\":{\"font_size\":\"16px\",\"color\":{\"value\":{\"color\":\"rgb(68, 67, 73)\"}}},\"icon_type\":\"icon\",\"icon\":{\"icon\":\"&#xe61a;\",\"class\":\"location\"}},\"menu\":{\"menu_type\":\"custom\",\"menu_item\":{\"url\":\"\"}},\"name_overwrite\":0,\"target\":0,\"is_open\":true,\"name\":{\"value\":{\"1\":\"1234 Fashion Ave, NY, 10001\",\"2\":\"\",\"4\":\"\"}}},{\"icon\":{\"options\":{\"font_size\":\"16px\",\"color\":{\"value\":{\"color\":\"rgb(68, 67, 73)\"}}},\"icon_type\":\"icon\",\"icon\":{\"icon\":\"&#xe651;\",\"class\":\"apple\"}},\"menu\":{\"menu_type\":\"manufacturer\",\"menu_item\":{\"id\":\"8\",\"name\":\"Apple\"}},\"name_overwrite\":\"1\",\"target\":0,\"is_open\":true,\"name\":{\"value\":{\"1\":\"Unlimited Links\",\"2\":\"\",\"4\":\"\"}}},{\"icon\":{\"options\":{\"font_size\":\"16px\",\"color\":{\"value\":{\"color\":\"rgb(68, 67, 73)\"}}},\"icon_type\":\"icon\",\"icon\":{\"icon\":\"&#xe060;\",\"class\":\"plane\"}},\"menu\":{\"menu_type\":\"information\",\"menu_item\":{\"id\":\"6\",\"name\":\"Delivery Information\"}},\"name_overwrite\":\"1\",\"target\":0,\"is_open\":true,\"name\":{\"value\":{\"1\":\"With Optional Icons\",\"2\":\"\",\"4\":\"\"}}},{\"icon\":{\"options\":{\"font_size\":\"16px\",\"color\":{\"value\":{\"color\":\"rgb(68, 67, 73)\"}}},\"icon_type\":\"icon\",\"icon\":{\"icon\":\"&#xe657;\",\"class\":\"shield\"}},\"menu\":{\"menu_type\":\"information\",\"menu_item\":{\"id\":\"8\",\"name\":\"Theme Features\"}},\"name_overwrite\":\"0\",\"target\":0,\"is_open\":true,\"name\":{\"value\":{\"1\":\"\",\"2\":\"\",\"4\":\"\"}}}],\"text\":[null,\"<p><img alt=\\\"\\\" src=\\\"http:\\/\\/127.0.0.1:8080\\/journal2\\/image\\/data\\/journal2\\/j2.png\\\" style=\\\"width: 34px; height: 43px; float: left; margin: 5px 15px 10px 5px\\\" \\/>The most advanced footer system in Opencart. Create unlimited rows and columns containing any combinations of content such as: text links, HTML blocks, product lists, contact and social icons, etc. Every single link in the footer is controlled from the admin and you can edit, add icons or remove them entirel. <strong><a href=\\\"http:\\/\\/themeforest.net\\/item\\/journal-premium-responsive-opencart-theme\\/4260361?ref=DigitalAtelier\\\" target=\\\"_blank\\\">Buy Journal!<\\/a><\\/strong><\\/p>\\n\"],\"title\":{\"value\":{\"1\":\"Custom Columns\",\"2\":\"\",\"4\":\"\"}},\"icon_status\":\"1\",\"icon\":{\"options\":{\"font_size\":\"50px\",\"color\":{\"value\":{\"color\":\"rgb(255, 255, 255)\"}}},\"icon_type\":\"none\",\"icon\":{\"icon\":\"&#xe643;\",\"class\":\"circle\"}},\"icon_position\":\"left\",\"icon_border\":{\"value\":{\"border_rounded\":\"px\"}},\"icon_bg_color\":{\"value\":{\"color\":\"\"}},\"icon_width\":\"\",\"icon_height\":\"\",\"is_open\":false,\"newsletter_id\":\"\",\"section_type\":\"module\",\"products\":[],\"category\":\"\",\"items_limit\":4,\"module_type\":\"featured\",\"posts_type\":\"newest\",\"posts\":[],\"status\":\"1\",\"enable_on_phone\":\"1\",\"enable_on_tablet\":\"1\",\"enable_on_desktop\":\"1\",\"disable_mobile\":\"0\",\"disable_desktop\":\"0\",\"random_from\":\"all\",\"sort_order\":\"1\",\"item_name\":\"Custom Columns\"},{\"type\":\"newsletter\",\"items\":[{\"icon\":{\"options\":{\"font_size\":\"16px\"}},\"menu\":{\"menu_type\":\"opencart\",\"menu_item\":{\"page\":\"account\\/account\"}},\"name_overwrite\":0,\"target\":0,\"name\":{\"value\":{\"1\":\"\",\"2\":\"\",\"4\":\"\"}}},{\"icon\":{\"options\":{\"font_size\":\"16px\"}},\"menu\":{\"menu_type\":\"opencart\",\"menu_item\":{\"page\":\"account\\/order\"}},\"name_overwrite\":0,\"target\":0,\"name\":{\"value\":{\"1\":\"\",\"2\":\"\",\"4\":\"\"}}},{\"icon\":{\"options\":{\"font_size\":\"16px\"}},\"menu\":{\"menu_type\":\"opencart\",\"menu_item\":{\"page\":\"account\\/wishlist\"}},\"name_overwrite\":0,\"target\":0,\"name\":{\"value\":{\"1\":\"\",\"2\":\"\",\"4\":\"\"}}},{\"icon\":{\"options\":{\"font_size\":\"16px\"}},\"menu\":{\"menu_type\":\"opencart\",\"menu_item\":{\"page\":\"account\\/newsletter\"}},\"name_overwrite\":0,\"target\":0,\"name\":{\"value\":{\"1\":\"\",\"2\":\"\",\"4\":\"\"}}}],\"text\":[],\"title\":{\"value\":{\"1\":\"Newsletter\",\"2\":\"\",\"4\":\"\"}},\"icon_status\":\"1\",\"icon\":{\"options\":{\"font_size\":\"16px\"}},\"icon_position\":\"left\",\"icon_border\":{\"value\":{\"border_rounded\":\"px\"}},\"icon_bg_color\":\"\",\"icon_width\":\"\",\"icon_height\":\"\",\"is_open\":false,\"newsletter_id\":\"133\",\"section_type\":\"module\",\"products\":[],\"category\":\"\",\"items_limit\":\"4\",\"module_type\":\"latest\",\"posts_type\":\"newest\",\"posts\":[],\"status\":\"1\",\"enable_on_phone\":\"1\",\"enable_on_tablet\":\"1\",\"enable_on_desktop\":\"1\",\"disable_mobile\":\"0\",\"disable_desktop\":\"0\",\"random_from\":\"all\",\"item_name\":\"News\",\"sort_order\":\"5\"},{\"type\":\"text\",\"items\":[],\"text\":{\"1\":\"<p><img alt=\\\"\\\" height=\\\"33\\\" src=\\\"https:\\/\\/static.journal-theme.com\\/4\\/image\\/data\\/journal2\\/j.png\\\" style=\\\"float: left; margin: 5px 10px 5px 0px;\\\" width=\\\"33\\\" \\/>Journal is an OpenCart framework built for the future. It&nbsp;introduces many innovative features and comes with 10 pre-made skins and 16 multi-purpose modules, all built into the most powerful admin to date.&nbsp;<a href=\\\"http:\\/\\/themeforest.net\\/item\\/journal-premium-responsive-opencart-theme\\/4260361?ref=DigitalAtelier\\\" target=\\\"_blank\\\">Buy Journal<\\/a>!<\\/p>\\n\"},\"title\":{\"value\":{\"1\":\"About Us\",\"2\":\"\",\"4\":\"\"}},\"icon_status\":\"0\",\"icon\":{\"options\":{\"font_size\":\"16px\"}},\"icon_position\":\"top\",\"icon_border\":{\"value\":{\"border_rounded\":\"px\"}},\"icon_bg_color\":\"\",\"icon_width\":\"\",\"icon_height\":\"\",\"is_open\":false,\"newsletter_id\":\"\",\"section_type\":\"module\",\"products\":[],\"category\":\"\",\"items_limit\":5,\"module_type\":\"featured\",\"posts_type\":\"newest\",\"posts\":[],\"status\":\"1\",\"enable_on_phone\":\"1\",\"enable_on_tablet\":\"1\",\"enable_on_desktop\":\"1\",\"disable_mobile\":\"0\",\"disable_desktop\":\"0\",\"random_from\":\"all\",\"sort_order\":\"0\",\"item_name\":\"About\"}],\"contacts\":[],\"social_icons\":[],\"status\":\"1\",\"sort_order\":\"1\",\"bottom_spacing\":\"15\",\"padding_top\":\"\",\"padding_right\":\"\",\"padding_bottom\":\"\",\"padding_left\":\"\",\"items_per_row\":{\"hide_columns\":true,\"range\":\"1,10\",\"step\":\"1\",\"value\":{\"mobile\":{\"value\":\"1\",\"range\":\"1,10\",\"step\":\"1\"},\"mobile1\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet\":{\"value\":\"3\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet1\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet2\":{\"value\":\"1\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop\":{\"value\":\"5\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop1\":{\"value\":\"3\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop2\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop\":{\"value\":\"5\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop1\":{\"value\":\"3\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop2\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"}}},\"is_open\":false,\"background\":{\"value\":{\"bgimage_attach\":\"scroll\",\"use_gradient\":0,\"bgimage_size\":\"auto\",\"bgimage_position\":\"center top\"}},\"enable_on_phone\":\"1\",\"enable_on_tablet\":\"1\",\"enable_on_desktop\":\"1\",\"disable_mobile\":\"0\",\"disable_desktop\":\"0\",\"close_others\":true,\"item_name\":\"Links Columns\"},{\"type\":\"contacts\",\"text\":[],\"columns\":[],\"contacts\":[{\"position\":\"left\",\"link\":{\"menu_type\":\"custom\",\"menu_item\":{\"url\":\"tel:0708-61 98 94\"}},\"target\":\"1\",\"icon\":{\"options\":{\"font_size\":\"18px\",\"color\":{\"value\":{\"color\":\"rgb(255, 255, 255)\"}}},\"icon_type\":\"icon\",\"icon\":{\"icon\":\"&#xe683;\",\"class\":\"facebook3\"}},\"name\":{\"value\":{\"1\":\"Facebook\",\"2\":\"\",\"4\":\"\"}},\"tooltip\":\"1\",\"sort_order\":\"\",\"is_open\":false},{\"position\":\"left\",\"link\":{\"menu_type\":\"custom\",\"menu_item\":{\"url\":\"#\"}},\"target\":\"1\",\"icon\":{\"options\":{\"font_size\":\"18px\",\"color\":{\"value\":{\"color\":\"rgb(255, 255, 255)\"}},\"top\":\"1\"},\"icon_type\":\"icon\",\"icon\":{\"icon\":\"&#xe682;\",\"class\":\"twitter3\"}},\"name\":{\"value\":{\"1\":\"Twitter\",\"2\":\"\",\"4\":\"\"}},\"tooltip\":\"1\",\"sort_order\":\"\",\"is_open\":false},{\"position\":\"left\",\"link\":{\"menu_type\":\"custom\",\"menu_item\":{\"url\":\"#\"}},\"target\":0,\"icon\":{\"options\":{\"font_size\":\"18px\",\"color\":{\"value\":{\"color\":\"rgb(255, 255, 255)\"}}},\"icon_type\":\"icon\",\"icon\":{\"icon\":\"&#xe635;\",\"class\":\"google-plus\"}},\"name\":{\"value\":{\"1\":\"Google +\",\"2\":\"\",\"4\":\"\"}},\"tooltip\":\"1\",\"sort_order\":\"\",\"is_open\":false},{\"position\":\"left\",\"link\":{\"menu_type\":\"custom\",\"menu_item\":{\"url\":\"#\"}},\"target\":0,\"icon\":{\"options\":{\"font_size\":\"18px\",\"color\":{\"value\":{\"color\":\"rgb(255, 255, 255)\"}}},\"icon_type\":\"icon\",\"icon\":{\"icon\":\"&#xe642;\",\"class\":\"youtube\"}},\"name\":{\"value\":{\"1\":\"YouTube\",\"2\":\"\",\"4\":\"\"}},\"tooltip\":\"1\",\"sort_order\":\"\",\"is_open\":false},{\"position\":\"left\",\"link\":{\"menu_type\":\"custom\",\"menu_item\":{\"url\":\"#\"}},\"target\":0,\"icon\":{\"options\":{\"font_size\":\"18px\",\"color\":{\"value\":{\"color\":\"rgb(255, 255, 255)\"}}},\"icon_type\":\"icon\",\"icon\":{\"icon\":\"&#xe67f;\",\"class\":\"vimeo2\"}},\"name\":{\"value\":{\"1\":\"Vimeo\",\"2\":\"\",\"4\":\"\"}},\"tooltip\":\"1\",\"sort_order\":\"\",\"is_open\":false},{\"position\":\"left\",\"link\":{\"menu_type\":\"custom\",\"menu_item\":{\"url\":\"#\"}},\"target\":0,\"icon\":{\"options\":{\"font_size\":\"18px\",\"color\":{\"value\":{\"color\":\"rgb(255, 255, 255)\"}}},\"icon_type\":\"icon\",\"icon\":{\"icon\":\"&#xe0af;\",\"class\":\"pinterest-sign\"}},\"name\":{\"value\":{\"1\":\"Pinterest\",\"2\":\"\",\"4\":\"\"}},\"tooltip\":\"1\",\"sort_order\":\"\",\"is_open\":false},{\"position\":\"left\",\"link\":{\"menu_type\":\"custom\",\"menu_item\":{\"url\":\"#\"}},\"target\":0,\"icon\":{\"options\":{\"font_size\":\"18px\",\"color\":{\"value\":{\"color\":\"rgb(255, 255, 255)\"}}},\"icon_type\":\"icon\",\"icon\":{\"icon\":\"&#xe67a;\",\"class\":\"skype\"}},\"name\":{\"value\":{\"1\":\"Skype\",\"2\":\"\",\"4\":\"\"}},\"tooltip\":\"1\",\"sort_order\":\"\",\"is_open\":false},{\"position\":\"left\",\"link\":{\"menu_type\":\"custom\",\"menu_item\":{\"url\":\"#\"}},\"target\":0,\"icon\":{\"options\":{\"font_size\":\"21px\",\"color\":{\"value\":{\"color\":\"rgb(255, 255, 255)\"}}},\"icon_type\":\"icon\",\"icon\":{\"icon\":\"&#xe67c;\",\"class\":\"yahoo\"}},\"name\":{\"value\":{\"1\":\"Yahoo\",\"2\":\"\",\"4\":\"\"}},\"tooltip\":\"1\",\"sort_order\":\"\",\"is_open\":false},{\"position\":\"left\",\"link\":{\"menu_type\":\"custom\",\"menu_item\":{\"url\":\"#\"}},\"target\":0,\"icon\":{\"options\":{\"font_size\":\"18px\",\"color\":{\"value\":{\"color\":\"rgb(255, 255, 255)\"}}},\"icon_type\":\"icon\",\"icon\":{\"icon\":\"&#xe622;\",\"class\":\"linkedin\"}},\"name\":{\"value\":{\"1\":\"LinkedIn\",\"2\":\"\",\"4\":\"\"}},\"tooltip\":\"1\",\"sort_order\":\"\",\"is_open\":false},{\"position\":\"left\",\"link\":{\"menu_type\":\"custom\",\"menu_item\":{\"url\":\"#\"}},\"target\":0,\"icon\":{\"options\":{\"font_size\":\"18px\",\"color\":{\"value\":{\"color\":\"rgb(255, 255, 255)\"}}},\"icon_type\":\"icon\",\"icon\":{\"icon\":\"&#xe67e;\",\"class\":\"flickr\"}},\"name\":{\"value\":{\"1\":\"Flickr\",\"2\":\"\",\"4\":\"\"}},\"tooltip\":\"1\",\"sort_order\":\"\",\"is_open\":false},{\"position\":\"right\",\"link\":{\"menu_type\":\"custom\",\"menu_item\":{\"url\":\"#\"}},\"target\":0,\"icon\":{\"options\":{\"font_size\":\"22px\",\"color\":{\"value\":{\"color\":\"rgb(255, 255, 255)\"}}},\"icon_type\":\"icon\",\"icon\":{\"icon\":\"&#xe6a3;\",\"class\":\"phone\"}},\"name\":{\"value\":{\"1\":\"1.800.555.8989\",\"2\":\"\",\"4\":\"\"}},\"tooltip\":0,\"sort_order\":\"\",\"is_open\":false},{\"position\":\"right\",\"link\":{\"menu_type\":\"custom\",\"menu_item\":{\"url\":\"#\"}},\"target\":0,\"icon\":{\"options\":{\"font_size\":\"22px\",\"color\":{\"value\":{\"color\":\"rgb(255, 255, 255)\"}}},\"icon_type\":\"icon\",\"icon\":{\"icon\":\"&#xe61a;\",\"class\":\"location\"}},\"name\":{\"value\":{\"1\":\"123 Fashion Ave. NY, 10010\",\"2\":\"\",\"4\":\"\"}},\"tooltip\":0,\"sort_order\":\"\",\"is_open\":false}],\"social_icons\":[],\"status\":\"1\",\"sort_order\":\"0\",\"bottom_spacing\":\"\",\"padding_top\":\"\",\"padding_right\":\"\",\"padding_bottom\":\"\",\"padding_left\":\"\",\"items_per_row\":{\"hide_columns\":true,\"range\":\"1,10\",\"step\":\"1\",\"value\":{\"mobile\":{\"value\":\"1\",\"range\":\"1,10\",\"step\":\"1\"},\"mobile1\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet\":{\"value\":\"3\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet1\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet2\":{\"value\":\"1\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop\":{\"value\":\"4\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop1\":{\"value\":\"3\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop2\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop\":{\"value\":\"4\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop1\":{\"value\":\"3\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop2\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"}}},\"is_open\":true,\"background\":{\"value\":{\"bgimage_attach\":\"scroll\",\"bgimage_repeat\":\"repeat\",\"bgimage_position\":\"center top\",\"bgcolor\":{\"value\":{\"color\":\"\"}},\"use_gradient\":0,\"bgimage_size\":\"auto\"}},\"enable_on_phone\":\"1\",\"enable_on_tablet\":\"1\",\"enable_on_desktop\":\"1\",\"disable_mobile\":\"0\",\"disable_desktop\":\"0\",\"close_others\":true,\"item_name\":\"Contacts Icons\"}],\"close_others\":true}',1),('mega_menu',0,'{\"items\":[{\"type\":\"custom\",\"categories\":{\"type\":\"existing\",\"show\":\"both\",\"image_position\":\"right\",\"links_type\":\"categories\",\"items\":[],\"render_as\":\"megamenu\"},\"products\":{\"source\":\"category\",\"module_type\":\"featured\",\"items\":[]},\"manufacturers\":{\"type\":\"all\",\"show\":\"image\",\"items\":[]},\"custom\":{\"top\":{\"menu_type\":\"opencart\",\"menu_item\":{\"page\":\"common\\/home\"}},\"items\":[],\"target\":\"0\"},\"mixed_columns\":[],\"icon\":{\"options\":{\"font_size\":\"20px\",\"color\":{\"value\":{\"color\":\"\"}},\"top\":\"-1\"},\"icon_type\":\"icon\",\"icon\":{\"icon\":\"&#xe14f;\",\"class\":\"home3\"}},\"hide_text\":\"1\",\"is_open\":false,\"status\":1,\"items_per_row\":{\"range\":\"1,10\",\"step\":\"1\",\"hide_columns\":true,\"value\":{\"mobile\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"mobile1\":{\"value\":\"3\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet\":{\"value\":\"4\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet1\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet2\":{\"value\":\"1\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop\":{\"value\":\"6\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop1\":{\"value\":\"3\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop2\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop\":{\"value\":\"6\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop1\":{\"value\":\"3\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop2\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"}}},\"items_limit\":5,\"html_blocks\":[],\"html_menu_link\":{\"menu_type\":\"custom\",\"menu_item\":[]},\"title\":[],\"float\":\"left\",\"image_width\":\"\",\"image_height\":\"\",\"image_type\":\"fit\",\"enable_on_phone\":\"0\",\"enable_on_tablet\":\"0\",\"enable_on_desktop\":\"1\",\"hide_on_mobile\":\"1\",\"name\":{\"value\":{\"1\":\"\",\"2\":\"\",\"4\":\"\"}},\"sort_order\":\"0\"},{\"type\":\"mixed\",\"categories\":{\"type\":\"existing\",\"show\":\"both\",\"image_position\":\"right\",\"links_type\":\"categories\",\"items\":[],\"render_as\":\"megamenu\"},\"products\":{\"source\":\"category\",\"module_type\":\"featured\",\"items\":[]},\"manufacturers\":{\"type\":\"all\",\"show\":\"image\",\"items\":[]},\"custom\":{\"top\":{\"menu_type\":\"custom\",\"menu_item\":[]},\"items\":[],\"target\":\"1\"},\"mixed_columns\":[{\"is_open\":true,\"type\":\"categories\",\"categories\":{\"type\":\"existing\",\"show\":\"both\",\"image_position\":\"left\",\"links_type\":\"categories\",\"items\":[],\"top\":{\"id\":\"59\",\"name\":\"Fashion\"}},\"products\":{\"source\":\"category\",\"module_type\":\"featured\",\"items\":[]},\"manufacturers\":{\"type\":\"all\",\"show\":\"image\",\"items\":[]},\"custom\":{\"top\":{\"menu_type\":\"custom\",\"menu_item\":null},\"items\":[]},\"link\":{\"menu_type\":\"custom\",\"menu_item\":null},\"html_text\":[],\"cms_blocks\":[],\"width\":\"66.66666\",\"image_width\":\"75\",\"image_height\":\"75\",\"image_type\":\"fit\",\"items_per_row\":{\"range\":\"1,10\",\"step\":\"1\",\"hide_columns\":true,\"value\":{\"mobile\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"mobile1\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet\":{\"value\":\"3\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet1\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet2\":{\"value\":\"1\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop\":{\"value\":\"4\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop1\":{\"value\":\"3\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop2\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop\":{\"value\":\"4\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop1\":{\"value\":\"3\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop2\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"}}},\"items_limit\":\"4\",\"status\":\"1\",\"sort_order\":\"1\",\"name\":{\"value\":{\"1\":\"\",\"2\":\"\",\"4\":\"\"}},\"hide_on_mobile\":\"0\"},{\"is_open\":true,\"type\":\"html-block\",\"categories\":{\"type\":\"existing\",\"show\":\"both\",\"image_position\":\"right\",\"links_type\":\"categories\",\"items\":[]},\"products\":{\"source\":\"category\",\"module_type\":\"featured\",\"items\":[]},\"manufacturers\":{\"type\":\"all\",\"show\":\"image\",\"items\":[]},\"custom\":{\"top\":{\"menu_type\":\"custom\",\"menu_item\":null},\"items\":[]},\"link\":{\"menu_type\":\"custom\",\"menu_item\":null},\"html_text\":{\"1\":\"<p><img alt=\\\"\\\" height=\\\"150\\\" src=\\\"https:\\/\\/static.journal-theme.com\\/4\\/image\\/data\\/journal-demo\\/menu-1.jpg\\\" style=\\\"margin-bottom: 5px;\\\" width=\\\"400\\\" \\/><\\/p>\\n\\n<p><span style=\\\"line-height: 1.6;\\\">Journal is a fluid responsive OpenCart theme built with the best design and development&nbsp;practices in mind. It&nbsp;introduces many innovative features and offers more than 1000 customizable admin options including 17 multi-purpose built-in modules.&nbsp;<\\/span><strong style=\\\"line-height: 1.6;\\\"><a href=\\\"http:\\/\\/themeforest.net\\/item\\/journal-premium-responsive-opencart-theme\\/4260361?ref=DigitalAtelier\\\" target=\\\"_blank\\\">Buy Journal!<\\/a><\\/strong><\\/p>\\n\"},\"cms_blocks\":[],\"width\":\"33.33333\",\"image_width\":\"\",\"image_height\":\"\",\"image_type\":\"fit\",\"items_per_row\":{\"range\":\"1,10\",\"step\":\"1\",\"hide_columns\":true,\"value\":{\"mobile\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"mobile1\":{\"value\":\"3\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet\":{\"value\":\"4\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet1\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet2\":{\"value\":\"1\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop\":{\"value\":\"6\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop1\":{\"value\":\"3\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop2\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop\":{\"value\":\"6\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop1\":{\"value\":\"3\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop2\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"}}},\"items_limit\":5,\"status\":\"1\",\"sort_order\":\"3\",\"name\":{\"value\":{\"1\":\"Add any Content\",\"2\":\"\",\"4\":\"\"}},\"hide_on_mobile\":\"0\"}],\"icon\":{\"options\":{\"font_size\":\"14px\"},\"icon_type\":\"none\",\"icon\":{\"icon\":\"&#xe6ab;\",\"class\":\"caret-down\"}},\"hide_text\":\"0\",\"is_open\":true,\"status\":1,\"items_per_row\":{\"range\":\"1,10\",\"step\":\"1\",\"hide_columns\":true,\"value\":{\"mobile\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"mobile1\":{\"value\":\"3\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet\":{\"value\":\"4\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet1\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet2\":{\"value\":\"1\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop\":{\"value\":\"6\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop1\":{\"value\":\"3\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop2\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop\":{\"value\":\"6\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop1\":{\"value\":\"3\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop2\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"}}},\"items_limit\":5,\"html_blocks\":[],\"html_menu_link\":{\"menu_type\":\"category\",\"menu_item\":{\"id\":\"59\",\"name\":\"Fashion\"}},\"title\":[],\"float\":\"left\",\"image_width\":\"\",\"image_height\":\"\",\"image_type\":\"fit\",\"enable_on_phone\":\"1\",\"enable_on_tablet\":\"1\",\"enable_on_desktop\":\"1\",\"hide_on_mobile\":0,\"name\":{\"value\":{\"1\":\"Categories\",\"2\":\"\",\"4\":\"\"}},\"sort_order\":\"1\"},{\"type\":\"categories\",\"categories\":{\"type\":\"existing\",\"show\":\"both\",\"image_position\":\"left\",\"links_type\":\"products\",\"items\":[{\"menu_type\":\"opencart\",\"menu_item\":[],\"data\":{\"id\":\"105\",\"name\":\"Fashion &gt; Accesories\"}},{\"menu_type\":\"opencart\",\"menu_item\":[],\"data\":{\"id\":\"107\",\"name\":\"Fashion &gt; Bags\"}},{\"menu_type\":\"opencart\",\"menu_item\":[],\"data\":{\"id\":\"109\",\"name\":\"Fashion &gt; Beauty\"}},{\"menu_type\":\"opencart\",\"menu_item\":[],\"data\":{\"id\":\"60\",\"name\":\"Fashion &gt; Dresses\"}}],\"render_as\":\"dropdown\",\"top\":{\"id\":\"59\",\"name\":\"Fashion\"}},\"products\":{\"source\":\"module\",\"module_type\":\"special\",\"items\":[]},\"manufacturers\":{\"type\":\"all\",\"show\":\"image\",\"items\":[]},\"custom\":{\"top\":{\"menu_type\":\"custom\",\"menu_item\":[]},\"items\":[],\"target\":\"1\"},\"mixed_columns\":[{\"is_open\":1,\"hide_on_mobile\":0,\"type\":\"categories\",\"categories\":{\"type\":\"custom\",\"show\":\"both\",\"image_position\":\"left\",\"links_type\":\"products\",\"items\":[{\"menu_type\":\"opencart\",\"menu_item\":[],\"data\":{\"id\":\"105\",\"name\":\"Fashion &gt; Accesories\"}},{\"menu_type\":\"opencart\",\"menu_item\":[],\"data\":{\"id\":\"107\",\"name\":\"Fashion &gt; Bags\"}},{\"menu_type\":\"opencart\",\"menu_item\":[],\"data\":{\"id\":\"109\",\"name\":\"Fashion &gt; Beauty\"}},{\"menu_type\":\"opencart\",\"menu_item\":[],\"data\":{\"id\":\"60\",\"name\":\"Fashion &gt; Dresses\"}}]},\"products\":{\"source\":\"category\",\"module_type\":\"featured\",\"items\":[]},\"manufacturers\":{\"type\":\"all\",\"show\":\"image\",\"items\":[]},\"custom\":{\"top\":{\"menu_type\":\"custom\",\"menu_item\":null},\"items\":[]},\"link\":{\"menu_type\":\"custom\",\"menu_item\":null},\"html_text\":[],\"cms_blocks\":[],\"width\":\"50\",\"image_width\":\"\",\"image_height\":\"\",\"image_type\":\"fit\",\"items_per_row\":{\"range\":\"1,10\",\"step\":\"1\",\"hide_columns\":true,\"value\":{\"mobile\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"mobile1\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet1\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet2\":{\"value\":\"1\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop1\":{\"value\":\"3\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop2\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop1\":{\"value\":\"3\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop2\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"}}},\"items_limit\":5,\"status\":\"1\",\"sort_order\":\"\",\"name\":{\"value\":{\"1\":\"\",\"2\":\"\",\"4\":\"\"}}},{\"is_open\":1,\"hide_on_mobile\":0,\"type\":\"products\",\"categories\":{\"type\":\"custom\",\"show\":\"both\",\"image_position\":\"right\",\"links_type\":\"products\",\"items\":[]},\"products\":{\"source\":\"module\",\"module_type\":\"special\",\"items\":[]},\"manufacturers\":{\"type\":\"all\",\"show\":\"image\",\"items\":[]},\"custom\":{\"top\":{\"menu_type\":\"custom\",\"menu_item\":null},\"items\":[]},\"link\":{\"menu_type\":\"custom\",\"menu_item\":null},\"html_text\":[],\"cms_blocks\":[],\"width\":\"50\",\"image_width\":\"\",\"image_height\":\"\",\"image_type\":\"fit\",\"items_per_row\":{\"range\":\"1,10\",\"step\":\"1\",\"hide_columns\":true,\"value\":{\"mobile\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"mobile1\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet\":{\"value\":\"3\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet1\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet2\":{\"value\":\"1\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop\":{\"value\":\"3\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop1\":{\"value\":\"3\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop2\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop\":{\"value\":\"3\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop1\":{\"value\":\"3\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop2\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"}}},\"items_limit\":\"3\",\"status\":\"1\",\"sort_order\":\"\",\"name\":{\"value\":{\"1\":\"Special Offers\",\"2\":\"\",\"4\":\"\"}}}],\"icon\":{\"options\":{\"font_size\":\"16px\"}},\"hide_text\":\"0\",\"is_open\":false,\"status\":1,\"items_per_row\":{\"range\":\"1,10\",\"step\":\"1\",\"hide_columns\":true,\"value\":{\"mobile\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"mobile1\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet1\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet2\":{\"value\":\"1\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop\":{\"value\":\"4\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop1\":{\"value\":\"3\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop2\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop\":{\"value\":\"4\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop1\":{\"value\":\"3\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop2\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"}}},\"items_limit\":\"5\",\"html_blocks\":[],\"html_menu_link\":{\"menu_type\":\"category\",\"menu_item\":{\"id\":\"59\",\"name\":\"Fashion\"}},\"title\":[],\"float\":\"left\",\"image_width\":\"\",\"image_height\":\"\",\"image_type\":\"fit\",\"enable_on_phone\":\"1\",\"enable_on_tablet\":\"1\",\"enable_on_desktop\":\"1\",\"hide_on_mobile\":0,\"name\":{\"value\":{\"1\":\"Multi Level\",\"2\":\"\",\"4\":\"\"}}},{\"type\":\"mixed\",\"categories\":{\"type\":\"existing\",\"show\":\"both\",\"image_position\":\"right\",\"links_type\":\"categories\",\"items\":[],\"render_as\":\"dropdown\",\"top\":{\"id\":\"59\",\"name\":\"Fashion\"}},\"products\":{\"source\":\"module\",\"module_type\":\"special\",\"items\":[]},\"manufacturers\":{\"type\":\"all\",\"show\":\"image\",\"items\":[]},\"custom\":{\"top\":{\"menu_type\":\"custom\",\"menu_item\":[]},\"items\":[],\"target\":\"1\"},\"mixed_columns\":[{\"is_open\":true,\"hide_on_mobile\":0,\"type\":\"categories\",\"categories\":{\"type\":\"custom\",\"show\":\"both\",\"image_position\":\"left\",\"links_type\":\"products\",\"items\":[{\"menu_type\":\"opencart\",\"menu_item\":[],\"data\":{\"id\":\"105\",\"name\":\"Fashion &gt; Accesories\"}},{\"menu_type\":\"opencart\",\"menu_item\":[],\"data\":{\"id\":\"107\",\"name\":\"Fashion &gt; Bags\"}},{\"menu_type\":\"opencart\",\"menu_item\":[],\"data\":{\"id\":\"109\",\"name\":\"Fashion &gt; Beauty\"}},{\"menu_type\":\"opencart\",\"menu_item\":[],\"data\":{\"id\":\"60\",\"name\":\"Fashion &gt; Dresses\"}}],\"top\":{\"id\":\"59\",\"name\":\"Fashion\"}},\"products\":{\"source\":\"category\",\"module_type\":\"featured\",\"items\":[]},\"manufacturers\":{\"type\":\"all\",\"show\":\"image\",\"items\":[]},\"custom\":{\"top\":{\"menu_type\":\"custom\",\"menu_item\":null},\"items\":[]},\"link\":{\"menu_type\":\"custom\",\"menu_item\":null},\"html_text\":[],\"cms_blocks\":[],\"width\":\"50\",\"image_width\":\"115\",\"image_height\":\"115\",\"image_type\":\"fit\",\"items_per_row\":{\"range\":\"1,10\",\"step\":\"1\",\"hide_columns\":true,\"value\":{\"mobile\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"mobile1\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet1\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet2\":{\"value\":\"1\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop1\":{\"value\":\"3\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop2\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop1\":{\"value\":\"3\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop2\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"}}},\"items_limit\":\"7\",\"status\":\"1\",\"sort_order\":\"\",\"name\":{\"value\":{\"1\":\"\",\"2\":\"\",\"4\":\"\"}}},{\"is_open\":1,\"hide_on_mobile\":0,\"type\":\"products\",\"categories\":{\"type\":\"existing\",\"show\":\"both\",\"image_position\":\"right\",\"links_type\":\"categories\",\"items\":[]},\"products\":{\"source\":\"module\",\"module_type\":\"special\",\"items\":[]},\"manufacturers\":{\"type\":\"all\",\"show\":\"image\",\"items\":[]},\"custom\":{\"top\":{\"menu_type\":\"custom\",\"menu_item\":null},\"items\":[]},\"link\":{\"menu_type\":\"custom\",\"menu_item\":null},\"html_text\":[],\"cms_blocks\":[],\"width\":\"50\",\"image_width\":\"\",\"image_height\":\"\",\"image_type\":\"fit\",\"items_per_row\":{\"range\":\"1,10\",\"step\":\"1\",\"hide_columns\":true,\"value\":{\"mobile\":{\"value\":\"1\",\"range\":\"1,10\",\"step\":\"1\"},\"mobile1\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet\":{\"value\":\"3\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet1\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet2\":{\"value\":\"1\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop\":{\"value\":\"3\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop1\":{\"value\":\"3\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop2\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop\":{\"value\":\"3\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop1\":{\"value\":\"3\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop2\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"}}},\"items_limit\":\"3\",\"status\":\"1\",\"sort_order\":\"\",\"name\":{\"value\":{\"1\":\"Special Offers\",\"2\":\"\",\"4\":\"\"}}}],\"icon\":{\"options\":{\"font_size\":\"16px\"}},\"hide_text\":\"0\",\"is_open\":false,\"status\":1,\"items_per_row\":{\"range\":\"1,10\",\"step\":\"1\",\"hide_columns\":true,\"value\":{\"mobile\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"mobile1\":{\"value\":\"3\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet\":{\"value\":\"4\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet1\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet2\":{\"value\":\"1\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop\":{\"value\":\"6\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop1\":{\"value\":\"3\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop2\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop\":{\"value\":\"6\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop1\":{\"value\":\"3\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop2\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"}}},\"items_limit\":\"6\",\"html_blocks\":[],\"html_menu_link\":{\"menu_type\":\"custom\",\"menu_item\":[]},\"title\":[],\"float\":\"left\",\"image_width\":\"\",\"image_height\":\"\",\"image_type\":\"fit\",\"enable_on_phone\":\"1\",\"enable_on_tablet\":\"1\",\"enable_on_desktop\":\"1\",\"hide_on_mobile\":0,\"name\":{\"value\":{\"1\":\"Products\",\"2\":\"\",\"4\":\"\"}}},{\"type\":\"mixed\",\"categories\":{\"type\":\"existing\",\"show\":\"both\",\"image_position\":\"right\",\"links_type\":\"categories\",\"items\":[],\"render_as\":\"megamenu\"},\"products\":{\"source\":\"category\",\"module_type\":\"featured\",\"items\":[]},\"manufacturers\":{\"type\":\"all\",\"show\":\"image\",\"items\":[]},\"custom\":{\"top\":{\"menu_type\":\"custom\",\"menu_item\":[]},\"items\":[],\"target\":\"1\"},\"mixed_columns\":[{\"is_open\":1,\"hide_on_mobile\":0,\"type\":\"categories\",\"categories\":{\"type\":\"existing\",\"show\":\"links\",\"image_position\":\"left\",\"links_type\":\"categories\",\"items\":[{\"menu_type\":\"opencart\",\"menu_item\":[],\"data\":{\"id\":\"112\",\"name\":\"Fashion &gt; Lingerie\"}},{\"menu_type\":\"opencart\",\"menu_item\":[],\"data\":{\"id\":\"131\",\"name\":\"Fashion &gt; Shoes &gt; Boots\"}},{\"menu_type\":\"opencart\",\"menu_item\":[],\"data\":{\"id\":\"110\",\"name\":\"Fashion &gt; Accesories &gt; Jewelry\"}},{\"menu_type\":\"opencart\",\"menu_item\":[],\"data\":{\"id\":\"106\",\"name\":\"Fashion &gt; Tops &gt; Jackets\"}}],\"top\":{\"id\":\"59\",\"name\":\"Fashion\"}},\"products\":{\"source\":\"category\",\"module_type\":\"featured\",\"items\":[]},\"manufacturers\":{\"type\":\"all\",\"show\":\"image\",\"items\":[]},\"custom\":{\"top\":{\"menu_type\":\"custom\",\"menu_item\":null},\"items\":[]},\"link\":{\"menu_type\":\"custom\",\"menu_item\":null},\"html_text\":[null,\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam iaculis egestas laoreet. Etiam faucibus massa sed risus lacinia in vulputate dolor imperdiet. Curabitur pharetra, purus a commodo dignissim, sapien nulla tempus nisi, et varius nulla urna at arcu.<\\/p>\\n\"],\"cms_blocks\":[],\"width\":\"50\",\"image_width\":\"\",\"image_height\":\"\",\"image_type\":\"fit\",\"items_per_row\":{\"range\":\"1,10\",\"step\":\"1\",\"hide_columns\":true,\"value\":{\"mobile\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"mobile1\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet1\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet2\":{\"value\":\"1\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop\":{\"value\":\"4\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop1\":{\"value\":\"3\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop2\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop\":{\"value\":\"4\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop1\":{\"value\":\"3\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop2\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"}}},\"items_limit\":\"10\",\"status\":\"1\",\"sort_order\":\"\",\"name\":{\"value\":{\"1\":\"\",\"2\":\"\",\"4\":\"\"}}},{\"is_open\":1,\"hide_on_mobile\":0,\"type\":\"manufacturers\",\"categories\":{\"type\":\"existing\",\"show\":\"both\",\"image_position\":\"right\",\"links_type\":\"categories\",\"items\":[]},\"products\":{\"source\":\"category\",\"module_type\":\"featured\",\"items\":[]},\"manufacturers\":{\"type\":\"all\",\"show\":\"image\",\"items\":[]},\"custom\":{\"top\":{\"menu_type\":\"custom\",\"menu_item\":null},\"items\":[]},\"link\":{\"menu_type\":\"custom\",\"menu_item\":null},\"html_text\":[],\"cms_blocks\":[],\"width\":\"25\",\"image_width\":\"90\",\"image_height\":\"90\",\"image_type\":\"fit\",\"items_per_row\":{\"range\":\"1,10\",\"step\":\"1\",\"hide_columns\":true,\"value\":{\"mobile\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"mobile1\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet\":{\"value\":\"4\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet1\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet2\":{\"value\":\"1\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop\":{\"value\":\"4\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop1\":{\"value\":\"3\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop2\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop\":{\"value\":\"4\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop1\":{\"value\":\"3\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop2\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"}}},\"items_limit\":\"\",\"status\":\"1\",\"sort_order\":\"\",\"name\":{\"value\":{\"1\":\"Our Brands\",\"2\":\"\",\"4\":\"\"}}},{\"is_open\":1,\"hide_on_mobile\":0,\"type\":\"html-block\",\"categories\":{\"type\":\"custom\",\"show\":\"both\",\"image_position\":\"left\",\"links_type\":\"products\",\"items\":[{\"menu_type\":\"opencart\",\"menu_item\":[],\"data\":{\"id\":\"105\",\"name\":\"Fashion &gt; Accesories\"}}],\"top\":{\"id\":\"59\",\"name\":\"Fashion\"}},\"products\":{\"source\":\"category\",\"module_type\":\"featured\",\"items\":[]},\"manufacturers\":{\"type\":\"all\",\"show\":\"image\",\"items\":[]},\"custom\":{\"top\":{\"menu_type\":\"custom\",\"menu_item\":null},\"items\":[]},\"link\":{\"menu_type\":\"custom\",\"menu_item\":null},\"html_text\":{\"1\":\"<p><img alt=\\\"\\\" height=\\\"150\\\" src=\\\"https:\\/\\/static.journal-theme.com\\/4\\/image\\/data\\/journal-demo\\/menu-1.jpg\\\" style=\\\"margin-right: 10px;\\\" width=\\\"400\\\" \\/><\\/p>\\n\\n<p>&nbsp;<\\/p>\\n\\n<p>Journal is a fluid responsive OpenCart theme built with the best design and development&nbsp;practices in mind. It&nbsp;introduces many innovative features and offers more than 1000 customizable admin options including 17 multi-purpose built-in modules.&nbsp;<\\/p>\\n\\n<p><strong style=\\\"line-height: 1.6;\\\"><a href=\\\"http:\\/\\/themeforest.net\\/item\\/journal-premium-responsive-opencart-theme\\/4260361?ref=DigitalAtelier\\\" target=\\\"_blank\\\">Buy Journal!<\\/a><\\/strong><\\/p>\\n\"},\"cms_blocks\":[],\"width\":\"25\",\"image_width\":\"\",\"image_height\":\"\",\"image_type\":\"fit\",\"items_per_row\":{\"range\":\"1,10\",\"step\":\"1\",\"hide_columns\":true,\"value\":{\"mobile\":{\"value\":\"1\",\"range\":\"1,10\",\"step\":\"1\"},\"mobile1\":{\"value\":\"1\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet\":{\"value\":\"1\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet1\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet2\":{\"value\":\"1\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop\":{\"value\":\"1\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop1\":{\"value\":\"3\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop2\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop\":{\"value\":\"1\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop1\":{\"value\":\"3\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop2\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"}}},\"items_limit\":5,\"status\":\"1\",\"sort_order\":\"\",\"name\":{\"value\":{\"1\":\"Custom HTML\",\"2\":\"\",\"4\":\"\"}}}],\"icon\":{\"options\":{\"font_size\":\"16px\"}},\"hide_text\":\"0\",\"is_open\":false,\"status\":1,\"items_per_row\":{\"range\":\"1,10\",\"step\":\"1\",\"hide_columns\":true,\"value\":{\"mobile\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"mobile1\":{\"value\":\"3\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet\":{\"value\":\"4\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet1\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet2\":{\"value\":\"1\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop\":{\"value\":\"6\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop1\":{\"value\":\"3\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop2\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop\":{\"value\":\"6\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop1\":{\"value\":\"3\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop2\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"}}},\"items_limit\":5,\"html_blocks\":[],\"html_menu_link\":{\"menu_type\":\"custom\",\"menu_item\":[]},\"title\":[],\"float\":\"left\",\"image_width\":\"\",\"image_height\":\"\",\"image_type\":\"fit\",\"enable_on_phone\":\"1\",\"enable_on_tablet\":\"1\",\"enable_on_desktop\":\"1\",\"hide_on_mobile\":0,\"name\":{\"value\":{\"1\":\"Mixed Menu\",\"2\":\"\",\"4\":\"\"}}},{\"type\":\"custom\",\"categories\":{\"type\":\"existing\",\"show\":\"both\",\"image_position\":\"right\",\"links_type\":\"categories\",\"items\":[],\"render_as\":\"megamenu\"},\"products\":{\"source\":\"category\",\"module_type\":\"featured\",\"items\":[]},\"manufacturers\":{\"type\":\"all\",\"show\":\"image\",\"items\":[]},\"custom\":{\"top\":{\"menu_type\":\"blog_home\",\"menu_item\":[]},\"items\":[{\"menu\":{\"menu_type\":\"blog_home\",\"menu_item\":[]},\"target\":0,\"is_open\":1,\"name\":{\"value\":{\"1\":\"Latest Articles\",\"2\":\"\",\"4\":\"\"}}},{\"menu\":{\"menu_type\":\"information\",\"menu_item\":{\"id\":\"4\",\"name\":\"About Us\"}},\"target\":0,\"is_open\":1,\"name\":{\"value\":{\"1\":\"\",\"2\":\"\",\"4\":\"\"}}},{\"menu\":{\"menu_type\":\"opencart\",\"menu_item\":{\"page\":\"account\\/account\"}},\"target\":0,\"is_open\":false,\"name\":{\"value\":{\"1\":\"\",\"2\":\"\",\"4\":\"\"}}},{\"menu\":{\"menu_type\":\"information\",\"menu_item\":{\"id\":\"5\",\"name\":\"Terms &amp; Conditions\"}},\"target\":0,\"is_open\":1,\"name\":{\"value\":{\"1\":\"\",\"2\":\"\",\"4\":\"\"}}}],\"target\":\"0\"},\"mixed_columns\":[],\"icon\":{\"options\":{\"font_size\":\"16px\"}},\"hide_text\":\"0\",\"is_open\":false,\"status\":1,\"items_per_row\":{\"range\":\"1,10\",\"step\":\"1\",\"hide_columns\":true,\"value\":{\"mobile\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"mobile1\":{\"value\":\"3\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet\":{\"value\":\"4\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet1\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet2\":{\"value\":\"1\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop\":{\"value\":\"6\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop1\":{\"value\":\"3\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop2\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop\":{\"value\":\"6\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop1\":{\"value\":\"3\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop2\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"}}},\"items_limit\":5,\"html_blocks\":[],\"html_menu_link\":{\"menu_type\":\"opencart\",\"menu_item\":{\"page\":\"product\\/special\"}},\"title\":[],\"float\":\"left\",\"image_width\":\"\",\"image_height\":\"\",\"image_type\":\"fit\",\"enable_on_phone\":\"1\",\"enable_on_tablet\":\"1\",\"enable_on_desktop\":\"1\",\"hide_on_mobile\":0,\"name\":{\"value\":{\"1\":\"Blog\",\"2\":\"\",\"4\":\"\"}}},{\"type\":\"categories\",\"categories\":{\"type\":\"existing\",\"show\":\"both\",\"image_position\":\"top\",\"links_type\":\"categories\",\"items\":[],\"render_as\":\"megamenu\",\"top\":{\"id\":\"59\",\"name\":\"Fashion\"}},\"products\":{\"source\":\"category\",\"module_type\":\"featured\",\"items\":[]},\"manufacturers\":{\"type\":\"all\",\"show\":\"image\",\"items\":[]},\"custom\":{\"top\":{\"menu_type\":\"opencart\",\"menu_item\":{\"page\":\"information\\/contact\"}},\"items\":[],\"target\":\"1\"},\"mixed_columns\":[],\"icon\":{\"options\":{\"font_size\":\"21px\",\"top\":\"-1\"},\"icon_type\":\"none\",\"icon\":{\"icon\":\"&#xe67b;\",\"class\":\"envelope\"}},\"hide_text\":\"0\",\"is_open\":false,\"status\":1,\"items_per_row\":{\"range\":\"1,10\",\"step\":\"1\",\"hide_columns\":true,\"value\":{\"mobile\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"mobile1\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet\":{\"value\":\"4\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet1\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet2\":{\"value\":\"1\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop\":{\"value\":\"8\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop1\":{\"value\":\"3\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop2\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop\":{\"value\":\"8\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop1\":{\"value\":\"3\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop2\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"}}},\"items_limit\":5,\"html_blocks\":[],\"html_menu_link\":{\"menu_type\":\"custom\",\"menu_item\":[]},\"title\":[],\"float\":\"left\",\"image_width\":\"136\",\"image_height\":\"136\",\"image_type\":\"fit\",\"enable_on_phone\":\"1\",\"enable_on_tablet\":\"1\",\"enable_on_desktop\":\"1\",\"hide_on_mobile\":0,\"name\":{\"value\":{\"1\":\"Images Top\",\"2\":\"\",\"4\":\"\"}},\"sort_order\":\"2\"}],\"close_others\":true,\"options\":{\"display\":\"table\",\"table_layout\":\"fixed\",\"is_open\":false}}',1),('payments',0,'{\"payments\":[{\"image\":\"data\\/journal2\\/cards\\/visa.png\",\"name\":{\"value\":{\"1\":\"Visa\",\"2\":\"\"}},\"link\":{\"value\":\"\"},\"new_window\":\"0\",\"sort_order\":\"\",\"is_open\":true},{\"image\":\"data\\/journal2\\/cards\\/mc.png\",\"name\":{\"value\":{\"1\":\"MasterCard\",\"2\":\"\"}},\"link\":{\"value\":\"\"},\"new_window\":\"0\",\"sort_order\":\"\",\"is_open\":true},{\"image\":\"data\\/journal2\\/cards\\/maestro.png\",\"name\":{\"value\":{\"1\":\"Maestro\",\"2\":\"\"}},\"link\":{\"value\":\"\"},\"new_window\":\"0\",\"sort_order\":\"\",\"is_open\":true},{\"image\":\"data\\/journal2\\/cards\\/disc.png\",\"name\":{\"value\":{\"1\":\"Discover\",\"2\":\"\"}},\"link\":{\"value\":\"\"},\"new_window\":\"0\",\"sort_order\":\"\",\"is_open\":true},{\"image\":\"data\\/journal2\\/cards\\/ax.png\",\"name\":{\"value\":{\"1\":\"American Express\",\"2\":\"\"}},\"link\":{\"value\":\"\"},\"new_window\":\"0\",\"sort_order\":\"\",\"is_open\":true},{\"image\":\"data\\/journal2\\/cards\\/pp.png\",\"name\":{\"value\":{\"1\":\"PayPal\",\"2\":\"\"}},\"link\":{\"value\":\"\"},\"new_window\":\"0\",\"sort_order\":\"\",\"is_open\":true}],\"close_others\":false}',1),('primary_menu',0,'{\"items\":[{\"icon\":{\"options\":{\"font_size\":\"16px\"},\"icon_type\":\"none\",\"icon\":{\"icon\":\"&#xe680;\",\"class\":\"facebook2\"}},\"mobile_view\":\"text\",\"menu\":{\"menu_type\":\"information\",\"menu_item\":{\"id\":\"4\",\"name\":\"About Us\"}},\"name_overwrite\":0,\"target\":0,\"enable_on_phone\":\"1\",\"enable_on_tablet\":\"1\",\"enable_on_desktop\":\"1\",\"hide_on_mobile\":\"0\",\"is_open\":true,\"icon_position\":\"left\",\"name\":{\"value\":{\"1\":\"\"}}},{\"icon\":{\"options\":{\"font_size\":\"16px\"},\"icon_type\":\"none\",\"icon\":{\"icon\":\"&#xe094;\",\"class\":\"circle-arrow-right2\"}},\"mobile_view\":\"both\",\"menu\":{\"menu_type\":\"custom\",\"menu_item\":[]},\"name_overwrite\":0,\"target\":0,\"enable_on_phone\":\"0\",\"enable_on_tablet\":\"0\",\"enable_on_desktop\":\"1\",\"hide_on_mobile\":\"1\",\"is_open\":true,\"icon_position\":\"left\",\"name\":{\"value\":{\"1\":\"&bull;\"}}},{\"icon\":{\"options\":{\"font_size\":\"15px\"},\"icon_type\":\"none\",\"icon\":{\"icon\":\"&#xe681;\",\"class\":\"twitter2\"}},\"mobile_view\":\"text\",\"menu\":{\"menu_type\":\"opencart\",\"menu_item\":{\"page\":\"information\\/contact\"}},\"name_overwrite\":0,\"target\":0,\"enable_on_phone\":\"1\",\"enable_on_tablet\":\"1\",\"enable_on_desktop\":\"1\",\"hide_on_mobile\":\"0\",\"is_open\":true,\"icon_position\":\"left\",\"name\":{\"value\":{\"1\":\"\"}}},{\"icon\":{\"options\":{\"font_size\":\"16px\"},\"icon_type\":\"none\",\"icon\":{\"icon\":\"&#xe07d;\",\"class\":\"trophy2\"}},\"mobile_view\":\"both\",\"menu\":{\"menu_type\":\"custom\",\"menu_item\":[]},\"name_overwrite\":0,\"target\":0,\"enable_on_phone\":\"0\",\"enable_on_tablet\":\"0\",\"enable_on_desktop\":\"1\",\"hide_on_mobile\":\"1\",\"is_open\":true,\"icon_position\":\"left\",\"name\":{\"value\":{\"1\":\"&bull;\"}}},{\"icon\":{\"options\":{\"font_size\":\"16px\"}},\"mobile_view\":\"both\",\"menu\":{\"menu_type\":\"opencart\",\"menu_item\":{\"page\":\"product\\/special\"}},\"name_overwrite\":0,\"target\":0,\"enable_on_phone\":\"1\",\"enable_on_tablet\":\"1\",\"enable_on_desktop\":\"1\",\"hide_on_mobile\":\"0\",\"is_open\":true,\"icon_position\":\"left\",\"name\":{\"value\":{\"1\":\"\"}}},{\"icon\":{\"options\":{\"font_size\":\"16px\"}},\"mobile_view\":\"both\",\"menu\":{\"menu_type\":\"custom\",\"menu_item\":[]},\"name_overwrite\":0,\"target\":0,\"enable_on_phone\":\"0\",\"enable_on_tablet\":\"0\",\"enable_on_desktop\":\"1\",\"hide_on_mobile\":\"1\",\"is_open\":true,\"icon_position\":\"left\",\"name\":{\"value\":{\"1\":\"&bull;\"}}},{\"icon\":{\"options\":{\"font_size\":\"16px\"}},\"mobile_view\":\"both\",\"menu\":{\"menu_type\":\"popup\",\"menu_item\":\"235\"},\"name_overwrite\":\"1\",\"target\":0,\"enable_on_phone\":\"1\",\"enable_on_tablet\":\"1\",\"enable_on_desktop\":\"1\",\"hide_on_mobile\":\"0\",\"is_open\":true,\"icon_position\":\"left\",\"name\":{\"value\":{\"1\":\"Site Feedback\"}}}]}',1),('secondary_menu',0,'{\"items\":[{\"icon\":{\"options\":{\"font_size\":\"16px\"}},\"mobile_view\":\"both\",\"menu\":{\"menu_type\":\"opencart\",\"menu_item\":{\"page\":\"login\"}},\"name_overwrite\":0,\"target\":0,\"enable_on_phone\":\"1\",\"enable_on_tablet\":\"1\",\"enable_on_desktop\":\"1\",\"hide_on_mobile\":\"0\",\"is_open\":true,\"icon_position\":\"left\",\"name\":{\"value\":{\"1\":\"\"}}},{\"icon\":{\"options\":{\"font_size\":\"16px\"}},\"mobile_view\":\"both\",\"menu\":{\"menu_type\":\"custom\",\"menu_item\":[]},\"name_overwrite\":0,\"target\":0,\"enable_on_phone\":\"0\",\"enable_on_tablet\":\"0\",\"enable_on_desktop\":\"1\",\"hide_on_mobile\":\"1\",\"is_open\":true,\"icon_position\":\"left\",\"name\":{\"value\":{\"1\":\"&bull;\"}}},{\"icon\":{\"options\":{\"font_size\":\"16px\"}},\"mobile_view\":\"both\",\"menu\":{\"menu_type\":\"opencart\",\"menu_item\":{\"page\":\"register\"}},\"name_overwrite\":0,\"target\":0,\"enable_on_phone\":\"1\",\"enable_on_tablet\":\"1\",\"enable_on_desktop\":\"1\",\"hide_on_mobile\":\"0\",\"is_open\":true,\"icon_position\":\"left\",\"name\":{\"value\":{\"1\":\"\"}}},{\"icon\":{\"options\":{\"font_size\":\"16px\"}},\"mobile_view\":\"both\",\"menu\":{\"menu_type\":\"custom\",\"menu_item\":[]},\"name_overwrite\":0,\"target\":0,\"enable_on_phone\":\"0\",\"enable_on_tablet\":\"0\",\"enable_on_desktop\":\"1\",\"hide_on_mobile\":\"1\",\"is_open\":true,\"icon_position\":\"left\",\"name\":{\"value\":{\"1\":\"&bull;\"}}},{\"icon\":{\"options\":{\"font_size\":\"16px\"}},\"mobile_view\":\"both\",\"menu\":{\"menu_type\":\"opencart\",\"menu_item\":{\"page\":\"account\\/wishlist\"}},\"name_overwrite\":0,\"target\":0,\"enable_on_phone\":\"1\",\"enable_on_tablet\":\"1\",\"enable_on_desktop\":\"1\",\"hide_on_mobile\":\"0\",\"is_open\":true,\"icon_position\":\"left\",\"name\":{\"value\":{\"1\":\"\"}}},{\"icon\":{\"options\":{\"font_size\":\"16px\"}},\"mobile_view\":\"both\",\"menu\":{\"menu_type\":\"custom\",\"menu_item\":[]},\"name_overwrite\":0,\"target\":0,\"enable_on_phone\":\"0\",\"enable_on_tablet\":\"0\",\"enable_on_desktop\":\"1\",\"hide_on_mobile\":\"1\",\"is_open\":true,\"icon_position\":\"left\",\"name\":{\"value\":{\"1\":\"&bull;\"}}},{\"icon\":{\"options\":{\"font_size\":\"16px\"}},\"mobile_view\":\"both\",\"menu\":{\"menu_type\":\"opencart\",\"menu_item\":{\"page\":\"checkout\\/checkout\"}},\"name_overwrite\":0,\"target\":0,\"enable_on_phone\":\"1\",\"enable_on_tablet\":\"1\",\"enable_on_desktop\":\"1\",\"hide_on_mobile\":\"0\",\"is_open\":true,\"icon_position\":\"left\",\"name\":{\"value\":{\"1\":\"\"}}}]}',1);
/*!40000 ALTER TABLE `lk_journal2_config` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_journal2_modules`
--

DROP TABLE IF EXISTS `lk_journal2_modules`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_journal2_modules` (
  `module_id` int(11) NOT NULL AUTO_INCREMENT,
  `module_type` varchar(64) NOT NULL,
  `module_data` mediumtext NOT NULL,
  PRIMARY KEY (`module_id`)
) ENGINE=MyISAM AUTO_INCREMENT=240 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_journal2_modules`
--

LOCK TABLES `lk_journal2_modules` WRITE;
/*!40000 ALTER TABLE `lk_journal2_modules` DISABLE KEYS */;
INSERT INTO `lk_journal2_modules` VALUES (52,'journal2_side_blocks','{\"module_name\":\"FB Button\",\"module_type\":\"button\",\"icon\":{\"options\":{\"font_size\":\"24px\",\"color\":{\"value\":{\"color\":\"rgb(255, 255, 255)\"}}},\"icon_type\":\"icon\",\"icon\":{\"icon\":\"&#xe683;\",\"class\":\"facebook3\"}},\"icon_bg_color\":\"rgb(60, 89, 155)\",\"icon_border\":{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"%\",\"border\":{\"value\":\"\"},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":\"\"},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":{\"text\":\"50\"}},\"border_radius_top\":{\"value\":{\"text\":\"\"}},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":{\"text\":\"\"}},\"border_radius_bottom\":{\"value\":\"\"}}},\"icon_bg_hover_color\":\"rgb(155, 89, 182)\",\"content_bg_color\":\"rgb(51, 153, 101)\",\"alignment\":\"right\",\"position\":\"fixed\",\"icon_width\":\"50\",\"icon_height\":\"50\",\"offset_top\":\"325\",\"offset_side\":\"15\",\"content_width\":\"300\",\"content_padding\":\"10\",\"content\":{\"1\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam iaculis egestas laoreet. Etiam faucibus massa sed risus lacinia in vulputate dolor imperdiet. Curabitur pharetra, purus a commodo dignissim, sapien nulla tempus nisi, et varius nulla urna at arcu.<\\/p>\\n\",\"2\":\"\"},\"link\":{\"menu_type\":\"custom\",\"url\":\"\",\"menu_item\":{\"url\":\"https:\\/\\/www.facebook.com\"}},\"new_window\":\"1\",\"status\":\"1\"}'),(54,'journal2_super_filter','{\"module_name\":\"New Module\",\"reset\":1,\"product_count\":1,\"price\":1,\"price_slider\":\"1\",\"tags\":\"1\",\"availability\":1,\"enable_on_mobile\":\"1\",\"tax_class_id\":\"-1\",\"manufacturer\":\"list\",\"manufacturer_type\":\"single\",\"category\":\"list\",\"category_type\":\"single\",\"options\":{\"1\":\"list\",\"2\":\"image\",\"5\":\"list\",\"11\":\"list\",\"16\":\"list\"},\"options_type\":{\"1\":\"multi\",\"2\":\"multi\",\"5\":\"multi\",\"11\":\"multi\",\"16\":\"multi\"},\"attributes\":{\"1\":\"on\",\"2\":\"on\",\"3\":\"on\",\"4\":\"on\",\"5\":\"on\",\"6\":\"on\",\"7\":\"on\",\"8\":\"on\",\"9\":\"on\",\"10\":\"on\",\"11\":\"on\",\"12\":\"off\",\"13\":\"on\",\"14\":\"on\",\"15\":\"on\",\"16\":\"on\",\"18\":\"on\",\"19\":\"on\",\"20\":\"on\",\"22\":\"off\",\"23\":\"off\",\"24\":\"on\",\"25\":\"on\",\"26\":\"on\",\"27\":\"on\"},\"attributes_type\":{\"1\":\"multi\",\"2\":\"multi\",\"3\":\"multi\",\"4\":\"multi\",\"5\":\"multi\",\"6\":\"multi\",\"7\":\"multi\",\"8\":\"multi\",\"9\":\"multi\",\"10\":\"multi\",\"11\":\"multi\",\"12\":\"multi\",\"13\":\"multi\",\"14\":\"multi\",\"15\":\"multi\",\"16\":\"multi\",\"18\":\"multi\",\"19\":\"multi\",\"20\":\"multi\",\"22\":\"multi\",\"23\":\"multi\",\"24\":\"multi\",\"25\":\"multi\",\"26\":\"multi\",\"27\":\"multi\"},\"sort_orders\":{\"c\":\"1\",\"m\":\"2\",\"p\":\"0\",\"o_2\":\"3\"},\"filters\":[],\"filters_type\":[],\"general_is_open\":true,\"options_is_open\":true,\"is_open\":{\"3\":{\"is_open\":true},\"6\":{\"is_open\":true},\"7\":{\"is_open\":true}}}'),(226,'journal2_blog_side_posts','{\"general_is_open\":true,\"close_others\":false,\"module_name\":\"New Module\",\"module_type\":\"newest\",\"limit\":5,\"title\":{\"value\":{\"1\":\"Latest Blog Posts\"}}}'),(227,'journal2_simple_slider','{\"module_name\":\"Blog Cover\",\"height\":\"315\",\"transition\":\"fade\",\"transition_speed\":1000,\"autoplay\":\"1\",\"pause_on_hover\":\"1\",\"transition_delay\":3000,\"touch_drag\":\"0\",\"preload_images\":\"1\",\"arrows\":\"0\",\"bullets\":\"1\",\"show_on_hover\":\"1\",\"background\":{\"value\":{\"bgimage_attach\":\"scroll\",\"use_gradient\":0,\"bgimage_size\":\"auto\",\"bgimage_position\":\"center top\"}},\"margin_top\":\"\",\"margin_bottom\":\"\",\"slides\":[{\"is_open\":true,\"slide_name\":\"\",\"image\":{\"1\":\"data\\/journal2\\/blog\\/blog-4.jpg\"},\"link\":{\"menu_type\":\"custom\",\"menu_item\":[]},\"link_new_window\":\"0\",\"status\":1,\"sort_order\":\"\"}],\"enable_on_phone\":\"1\",\"enable_on_tablet\":\"1\",\"enable_on_desktop\":\"1\",\"general_is_open\":true,\"navigation_is_open\":true,\"hideonmobile\":\"0\"}'),(9,'journal2_side_category','{\"module_name\":\"New Side Category\",\"type\":\"accordion\",\"title\":{\"value\":{\"1\":\"All Categories\",\"2\":\"\"}},\"show_categories\":\"1\",\"sections\":[{\"is_open\":true,\"link\":{\"menu_type\":\"opencart\",\"menu_item\":{\"page\":\"product\\/special\"}},\"name\":{\"value\":{\"1\":\"Custom Menu\",\"2\":\"\"}},\"new_window\":0,\"position\":\"bottom\",\"sort_order\":\"1\"}],\"general_is_open\":true}'),(113,'journal2_cms_blocks','{\"module_name\":\"Text block\",\"module_title\":{\"value\":{\"1\":\"CMS Blocks\",\"2\":\"\"}},\"items_per_row\":{\"range\":\"1,10\",\"step\":\"1\",\"value\":{\"mobile\":{\"value\":\"1\",\"range\":\"1,10\",\"step\":\"1\"},\"mobile1\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet1\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet2\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop\":{\"value\":\"4\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop1\":{\"value\":\"4\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop2\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop\":{\"value\":\"4\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop1\":{\"value\":\"4\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop2\":{\"value\":\"4\",\"range\":\"1,10\",\"step\":\"1\"}}},\"disable_mobile\":\"0\",\"background\":{\"value\":{\"bgimage_attach\":\"scroll\"}},\"fullwidth\":\"0\",\"margin_top\":\"\",\"margin_bottom\":\"\",\"sections\":[{\"is_open\":true,\"section_title\":[],\"text\":{\"1\":\"<p>You can add icons to CMS blocks. Choose from our 235 retina icons pack that comes built in with the theme, or upload your own custom png icons.<\\/p>\\n\"},\"text_align\":\"left\",\"icon_status\":\"1\",\"icon_position\":\"left\",\"icon\":{\"options\":{\"font_size\":\"22px\",\"color\":{\"value\":{\"color\":\"rgb(176, 158, 102)\"}},\"top\":\"3\"},\"icon_type\":\"icon\",\"icon\":{\"icon\":\"&#xe0ad;\",\"class\":\"truck3\"}},\"icon_border\":{\"value\":{\"border_rounded\":\"px\"}},\"icon_bg_color\":\"\",\"icon_width\":\"\",\"icon_height\":\"\",\"status\":\"1\",\"sort_order\":\"\"},{\"is_open\":true,\"section_title\":[],\"text\":{\"1\":\"<p>This is another block within the same module. You can add multiple blocks within the same module or multiple separate modules within any page.<\\/p>\\n\"},\"text_align\":\"left\",\"icon_status\":\"1\",\"icon_position\":\"left\",\"icon\":{\"options\":{\"font_size\":\"22px\",\"color\":{\"value\":{\"color\":\"rgb(176, 158, 102)\"}},\"top\":\"3\"},\"icon_type\":\"icon\",\"icon\":{\"icon\":\"&#xe60b;\",\"class\":\"route\"}},\"icon_border\":{\"value\":{\"border_rounded\":\"px\"}},\"icon_bg_color\":\"\",\"icon_width\":\"\",\"icon_height\":\"\",\"status\":\"1\",\"sort_order\":\"\"}],\"general_is_open\":true,\"top_bottom_is_open\":true}'),(125,'journal2_carousel','{\"module_name\":\"Featured Brands\",\"module_type\":\"manufacturer\",\"items_per_row\":{\"range\":\"1,10\",\"step\":\"1\",\"value\":{\"mobile\":{\"value\":\"3\",\"range\":\"1,10\",\"step\":\"1\"},\"mobile1\":{\"value\":\"4\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet\":{\"value\":\"5\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet1\":{\"value\":\"4\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet2\":{\"value\":\"3\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop\":{\"value\":\"8\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop1\":{\"value\":\"6\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop2\":{\"value\":\"4\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop\":{\"value\":\"9\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop1\":{\"value\":\"7\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop2\":{\"value\":\"6\",\"range\":\"1,10\",\"step\":\"1\"}}},\"module_background\":{\"value\":{\"bgimage_attach\":\"scroll\"}},\"module_padding\":\"0\",\"arrows\":\"top\",\"bullets\":\"1\",\"top_bottom_placement\":0,\"background\":{\"value\":{\"bgimage_attach\":\"scroll\",\"bgimage_repeat\":\"repeat\",\"bgimage_position\":\"center\",\"bgimage\":{\"value\":{\"image\":\"\"}},\"bgcolor\":{\"value\":{\"color\":\"\"}}}},\"fullwidth\":\"0\",\"margin_top\":\"20\",\"margin_bottom\":\"\",\"show_title\":\"1\",\"brand_name\":\"0\",\"autoplay\":\"0\",\"pause_on_hover\":\"1\",\"transition_speed\":\"400\",\"transition_delay\":\"3000\",\"touch_drag\":\"0\",\"image_border\":{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"%\",\"border\":{\"value\":\"\"},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":\"\"},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":{\"text\":\"\"}},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"}}},\"image_bgcolor\":{\"value\":{\"color\":\"\"}},\"image_width\":\"120\",\"image_height\":\"120\",\"image_type\":\"fit\",\"product_sections\":[],\"category_sections\":[],\"manufacturer_sections\":[{\"is_open\":true,\"section_title\":{\"value\":{\"1\":\"Our Awesome Brands\",\"2\":\"\"}},\"section_type\":\"all\",\"status\":\"1\",\"default_section\":\"1\",\"sort_order\":\"\",\"manufacturers\":[{\"data\":{\"id\":\"8\",\"name\":\"Apple\"}},{\"data\":{\"id\":\"5\",\"name\":\"HTC\"}},{\"data\":{\"id\":\"13\",\"name\":\"Chic D\'or\"}},{\"data\":{\"id\":\"12\",\"name\":\"Awesome Brand\"}},{\"data\":{\"id\":\"9\",\"name\":\"Canon\"}},{\"data\":{\"id\":\"11\",\"name\":\"SuperBrand\"}},{\"data\":{\"id\":\"10\",\"name\":\"Sony\"}},{\"data\":{\"id\":\"7\",\"name\":\"Hewlett-Packard\"}}],\"items_limit\":\"7\",\"link\":{\"menu_type\":\"custom\",\"url\":\"\",\"menu_item\":[]},\"new_window\":\"0\"}],\"enable_on_phone\":\"1\",\"enable_on_tablet\":\"1\",\"enable_on_desktop\":\"1\",\"general_is_open\":true,\"top_bottom_is_open\":true,\"disable_mobile\":\"0\"}'),(94,'journal2_side_blocks','{\"module_name\":\"Twitter Button\",\"module_type\":\"button\",\"icon\":{\"options\":{\"font_size\":\"22px\",\"color\":{\"value\":{\"color\":\"rgb(255, 255, 255)\"}}},\"icon_type\":\"icon\",\"icon\":{\"icon\":\"&#xe682;\",\"class\":\"twitter3\"}},\"icon_bg_color\":\"rgb(43, 176, 227)\",\"icon_border\":{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"%\",\"border\":{\"value\":\"\"},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":\"\"},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":{\"text\":\"50\"}},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"}}},\"icon_bg_hover_color\":\"rgb(155, 89, 182)\",\"content_bg_color\":\"999999\",\"alignment\":\"right\",\"position\":\"fixed\",\"icon_width\":\"50\",\"icon_height\":\"50\",\"offset_top\":\"380\",\"offset_side\":\"15\",\"content_width\":\"\",\"content_padding\":\"\",\"content\":[],\"link\":{\"menu_type\":\"custom\",\"url\":\"\",\"menu_item\":{\"url\":\"https:\\/\\/twitter.com\\/\"}},\"new_window\":\"1\"}'),(66,'journal2_slider','{\"module_name\":\"Main Slider\",\"width\":\"1024\",\"height\":\"450\",\"hidecaptionsonmobile\":\"0\",\"timer\":\"bottom\",\"js_options\":{\"delay\":\"4000\",\"onHoverStop\":\"on\",\"thumbWidth\":\"110\",\"thumbHeight\":\"55\",\"thumbAmount\":4,\"hideThumbs\":\"1\",\"navigationType\":\"bullet\",\"navigationArrows\":\"solo\",\"navigationStyle\":\"round\",\"navigationHAlign\":\"center\",\"navigationVAlign\":\"bottom\",\"navigationHOffset\":\"\",\"navigationVOffset\":\"20\"},\"preload_images\":\"1\",\"background\":{\"value\":{\"bgimage_attach\":\"scroll\",\"bgimage_repeat\":\"repeat\",\"bgimage_position\":\"center top\",\"use_gradient\":0,\"bgimage_size\":\"auto\"}},\"fullwidth\":\"1\",\"margin_top\":\"\",\"margin_bottom\":\"\",\"slides\":[{\"is_open\":false,\"slide_name\":\"Beauty\",\"image\":{\"1\":\"data\\/journal2\\/slider\\/5226290116_4c46f5e023_o.jpg\"},\"thumb\":{\"1\":\"\"},\"transition\":\"fade\",\"slotamount\":\"1\",\"masterspeed\":\"\",\"delay\":\"\",\"captions\":[{\"is_open\":false,\"caption_name\":\"\",\"type\":\"text\",\"video_type\":\"youtube\",\"video_yt_id\":\"\",\"video_vm_id\":\"\",\"video_path\":\"\",\"video_fullwidth\":1,\"video_width\":\"\",\"video_height\":\"\",\"video_autoplay\":0,\"video_autoplayonlyfirsttime\":0,\"video_nextslideatend\":1,\"video_volume\":1,\"video_loop\":0,\"text_font\":{\"value\":{\"font_type\":\"google\",\"font_size\":\"65px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"Playfair Display\",\"font_weight\":\"700\",\"font_style\":\"normal\",\"letter_spacing\":\"\",\"text_transform\":\"uppercase\",\"font_subset\":[\"latin\"],\"color\":{\"value\":{\"color\":\"rgb(255, 255, 255)\"}}}},\"text_color\":\"\",\"text_bgcolor\":\"\",\"text_hover_color\":\"\",\"text_hover_bg_color\":\"\",\"text_border\":{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"px\",\"border\":{\"value\":{\"text\":\"\"}},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":{\"text\":\"\"}},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":{\"text\":\"\"}},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"},\"border_color\":{\"value\":{\"color\":\"\"}}}},\"text_hover_border_color\":\"\",\"text_padding_top\":\"\",\"text_padding_right\":\"\",\"text_padding_bottom\":\"\",\"text_padding_left\":\"\",\"text_line_height\":\"\",\"text_align\":\"left\",\"position\":\"custom\",\"multilanguage_position\":\"0\",\"x\":\"555\",\"y\":\"120\",\"x_ml\":{\"value\":{\"1\":\"\"}},\"y_ml\":{\"value\":{\"1\":\"\"}},\"animation_in\":\"customin\",\"animation_out\":\"customout\",\"custom_in_transition_x\":\"\",\"custom_in_transition_y\":\"\",\"custom_in_scale_x\":\"\",\"custom_in_scale_y\":\"\",\"custom_in_rotation_x\":\"90\",\"custom_in_rotation_y\":\"\",\"custom_in_rotation_z\":\"\",\"transformOriginXin\":\"center\",\"transformOriginYin\":\"center\",\"custom_in_transform_perspective\":\"500\",\"custom_in_opacity\":\"1\",\"custom_out_transition_x\":\"\",\"custom_out_transition_y\":\"\",\"custom_out_scale_x\":\"\",\"custom_out_scale_y\":\"\",\"custom_out_rotation_x\":\"90\",\"custom_out_rotation_y\":\"\",\"custom_out_rotation_z\":\"\",\"transformOriginXout\":\"center\",\"transformOriginYout\":\"center\",\"custom_out_transform_perspective\":\"500\",\"custom_out_opacity\":\"1\",\"speed\":\"1000\",\"start\":\"500\",\"endspeed\":\"1000\",\"end\":\"\",\"status\":\"1\",\"sort_order\":\"\",\"link\":{\"menu_type\":\"custom\",\"menu_item\":[]},\"link_new_window\":\"0\",\"easing\":\"easeInOutQuart\",\"endeasing\":\"easeInOutQuart\",\"shadow\":{\"value\":{\"inner_shadow\":\"0\"}},\"shadow_hover\":{\"value\":{\"inner_shadow\":\"0\"}},\"shadow_active\":{\"value\":{\"inner_shadow\":\"0\"}},\"border\":{\"value\":{\"border_rounded\":\"px\"}},\"bg_image\":{\"value\":{\"bgimage_attach\":\"scroll\",\"use_gradient\":0,\"bgimage_size\":\"auto\",\"bgimage_position\":\"center top\"}},\"custom_in_transition_z\":\"\",\"custom_out_transition_z\":\"\",\"text\":{\"value\":{\"1\":\"Beauty & Brains\",\"2\":\"\"}},\"animations_is_open\":true,\"image\":{\"1\":[]},\"bg_image_hover\":{\"value\":{\"bgimage_attach\":\"scroll\",\"use_gradient\":0,\"bgimage_size\":\"auto\",\"bgimage_position\":\"center top\"}}},{\"is_open\":false,\"caption_name\":\"\",\"type\":\"text\",\"video_type\":\"youtube\",\"video_yt_id\":\"\",\"video_vm_id\":\"\",\"video_path\":\"\",\"video_fullwidth\":0,\"video_width\":\"\",\"video_height\":\"\",\"video_autoplay\":0,\"video_autoplayonlyfirsttime\":0,\"video_nextslideatend\":1,\"video_volume\":1,\"video_loop\":0,\"text_font\":{\"value\":{\"font_type\":\"system\",\"font_size\":\"21px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"Playfair Display\",\"font_weight\":\"bold\",\"font_style\":\"normal\",\"letter_spacing\":\"\",\"text_transform\":\"uppercase\",\"color\":{\"value\":{\"color\":\"rgb(255, 255, 255)\"}},\"font_subset\":[\"latin\"]}},\"text_color\":\"\",\"text_bgcolor\":{\"value\":{\"color\":\"rgb(176, 158, 102)\"}},\"text_hover_color\":\"\",\"text_hover_bg_color\":\"\",\"text_border\":{\"value\":{\"border_rounded\":\"px\"}},\"text_hover_border_color\":\"\",\"text_padding_top\":\"12\",\"text_padding_right\":\"12\",\"text_padding_bottom\":\"10\",\"text_padding_left\":\"12\",\"text_line_height\":\"\",\"text_align\":\"left\",\"position\":\"custom\",\"multilanguage_position\":\"0\",\"x\":\"555\",\"y\":\"210\",\"x_ml\":{\"value\":{\"1\":\"\"}},\"y_ml\":{\"value\":{\"1\":\"\"}},\"animation_in\":\"customin\",\"animation_out\":\"customout\",\"custom_in_transition_x\":\"\",\"custom_in_transition_y\":\"\",\"custom_in_scale_x\":\"\",\"custom_in_scale_y\":\"\",\"custom_in_rotation_x\":\"90\",\"custom_in_rotation_y\":\"\",\"custom_in_rotation_z\":\"\",\"transformOriginXin\":\"center\",\"transformOriginYin\":\"center\",\"custom_in_transform_perspective\":\"500\",\"custom_in_opacity\":\"1\",\"custom_out_transition_x\":\"\",\"custom_out_transition_y\":\"\",\"custom_out_scale_x\":\"\",\"custom_out_scale_y\":\"\",\"custom_out_rotation_x\":\"90\",\"custom_out_rotation_y\":\"\",\"custom_out_rotation_z\":\"\",\"transformOriginXout\":\"center\",\"transformOriginYout\":\"center\",\"custom_out_transform_perspective\":\"500\",\"custom_out_opacity\":\"1\",\"speed\":\"800\",\"start\":\"500\",\"endspeed\":\"1000\",\"end\":\"\",\"status\":1,\"sort_order\":\"\",\"link\":{\"menu_type\":\"custom\",\"menu_item\":[]},\"link_new_window\":\"0\",\"easing\":\"easeInOutQuart\",\"endeasing\":\"easeInOutQuart\",\"shadow\":{\"value\":{\"inner_shadow\":\"0\"}},\"shadow_hover\":{\"value\":{\"inner_shadow\":\"0\"}},\"shadow_active\":{\"value\":{\"inner_shadow\":\"0\"}},\"border\":{\"value\":{\"border_rounded\":\"px\"}},\"bg_image\":{\"value\":{\"bgimage_attach\":\"scroll\",\"use_gradient\":0,\"bgimage_size\":\"auto\",\"bgimage_position\":\"center top\"}},\"custom_in_transition_z\":\"\",\"custom_out_transition_z\":\"\",\"text\":{\"value\":{\"1\":\"Best Design Features & Superior Code Quality\",\"2\":\"\"}},\"animations_is_open\":true,\"image\":{\"1\":[]},\"bg_image_hover\":{\"value\":{\"bgimage_attach\":\"scroll\",\"use_gradient\":0,\"bgimage_size\":\"auto\",\"bgimage_position\":\"center top\"}}},{\"is_open\":false,\"caption_name\":\"\",\"type\":\"text\",\"video_type\":\"youtube\",\"video_yt_id\":\"\",\"video_vm_id\":\"\",\"video_path\":\"\",\"video_fullwidth\":0,\"video_width\":\"\",\"video_height\":\"\",\"video_autoplay\":0,\"video_autoplayonlyfirsttime\":0,\"video_nextslideatend\":1,\"video_volume\":1,\"video_loop\":0,\"text_font\":{\"value\":{\"font_type\":\"system\",\"font_size\":\"20px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"\",\"font_weight\":\"normal\",\"font_style\":\"normal\",\"letter_spacing\":\"\",\"text_transform\":\"uppercase\",\"color\":{\"value\":{\"color\":\"rgb(255, 255, 255)\"}}}},\"text_color\":\"\",\"text_bgcolor\":\"\",\"text_hover_color\":{\"value\":{\"color\":\"\"}},\"text_hover_bg_color\":{\"value\":{\"color\":\"rgb(176, 158, 102)\"}},\"text_border\":{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"px\",\"border\":{\"value\":{\"text\":\"1\"}},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":\"\"},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":\"\"},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"},\"border_color\":{\"value\":{\"color\":\"rgb(255, 255, 255)\"}}}},\"text_hover_border_color\":{\"value\":{\"color\":\"rgb(176, 158, 102)\"}},\"text_padding_top\":\"20\",\"text_padding_right\":\"30\",\"text_padding_bottom\":\"17\",\"text_padding_left\":\"27\",\"text_line_height\":\"\",\"text_align\":\"left\",\"position\":\"custom\",\"multilanguage_position\":\"0\",\"x\":\"720\",\"y\":\"280\",\"x_ml\":{\"value\":{\"1\":\"\"}},\"y_ml\":{\"value\":{\"1\":\"\"}},\"animation_in\":\"customin\",\"animation_out\":\"customout\",\"custom_in_transition_x\":\"\",\"custom_in_transition_y\":\"\",\"custom_in_scale_x\":\"\",\"custom_in_scale_y\":\"\",\"custom_in_rotation_x\":\"90\",\"custom_in_rotation_y\":\"\",\"custom_in_rotation_z\":\"\",\"transformOriginXin\":\"center\",\"transformOriginYin\":\"center\",\"custom_in_transform_perspective\":\"500\",\"custom_in_opacity\":\"1\",\"custom_out_transition_x\":\"\",\"custom_out_transition_y\":\"\",\"custom_out_scale_x\":\"\",\"custom_out_scale_y\":\"\",\"custom_out_rotation_x\":\"90\",\"custom_out_rotation_y\":\"\",\"custom_out_rotation_z\":\"\",\"transformOriginXout\":\"center\",\"transformOriginYout\":\"center\",\"custom_out_transform_perspective\":\"500\",\"custom_out_opacity\":\"1\",\"speed\":\"1000\",\"start\":\"500\",\"endspeed\":\"1000\",\"end\":\"\",\"status\":1,\"sort_order\":\"\",\"link\":{\"menu_type\":\"information\",\"menu_item\":{\"id\":\"8\",\"name\":\"Theme Features\"}},\"link_new_window\":\"0\",\"easing\":\"easeInOutQuart\",\"endeasing\":\"easeInOutQuart\",\"shadow\":{\"value\":{\"inner_shadow\":\"0\"}},\"shadow_hover\":{\"value\":{\"inner_shadow\":\"0\"}},\"shadow_active\":{\"value\":{\"inner_shadow\":\"0\"}},\"border\":{\"value\":{\"border_rounded\":\"px\"}},\"bg_image\":{\"value\":{\"bgimage_attach\":\"scroll\",\"use_gradient\":0,\"bgimage_size\":\"auto\",\"bgimage_position\":\"center top\"}},\"text\":{\"value\":{\"1\":\"See Theme Features\",\"2\":\"\"}},\"animations_is_open\":true,\"image\":{\"1\":[]},\"bg_image_hover\":{\"value\":{\"bgimage_attach\":\"scroll\",\"use_gradient\":0,\"bgimage_size\":\"auto\",\"bgimage_position\":\"center top\"}}}],\"status\":\"1\",\"sort_order\":\"\",\"link\":{\"menu_type\":\"custom\",\"menu_item\":[]},\"link_new_window\":\"0\",\"easing\":\"easeInOutQuart\",\"close_others\":true},{\"is_open\":false,\"slide_name\":\"Design features\",\"image\":{\"1\":\"data\\/journal2\\/background\\/g-dark.jpg\"},\"thumb\":{\"1\":\"\"},\"transition\":\"fade\",\"slotamount\":\"\",\"masterspeed\":800,\"delay\":\"6000\",\"captions\":[{\"is_open\":false,\"caption_name\":\"Design\",\"type\":\"text\",\"video_type\":\"youtube\",\"video_yt_id\":\"\",\"video_vm_id\":\"\",\"video_path\":\"\",\"video_fullwidth\":0,\"video_width\":\"\",\"video_height\":\"\",\"video_autoplay\":0,\"video_autoplayonlyfirsttime\":0,\"video_nextslideatend\":1,\"video_volume\":1,\"video_loop\":0,\"text_font\":{\"value\":{\"font_type\":\"google\",\"font_size\":\"60px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"Playfair Display\",\"font_weight\":\"regular\",\"font_style\":\"normal\",\"letter_spacing\":\"\",\"text_transform\":\"none\",\"font_subset\":[\"latin\"],\"color\":{\"value\":{\"color\":\"rgb(255, 255, 255)\"}}}},\"text_color\":\"\",\"text_bgcolor\":\"\",\"text_hover_color\":\"\",\"text_hover_bg_color\":\"\",\"text_border\":{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"px\",\"border\":{\"value\":\"\"},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":\"\"},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":\"\"},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"}}},\"text_hover_border_color\":\"\",\"text_padding_top\":\"\",\"text_padding_right\":\"\",\"text_padding_bottom\":\"\",\"text_padding_left\":\"\",\"text_line_height\":\"60\",\"text_align\":\"left\",\"position\":\"custom\",\"multilanguage_position\":\"0\",\"x\":\"\",\"y\":\"35\",\"x_ml\":{\"value\":{\"1\":\"\"}},\"y_ml\":{\"value\":{\"1\":\"\"}},\"animation_in\":\"sfr\",\"animation_out\":\"fadeout\",\"custom_in_transition_x\":\"\",\"custom_in_transition_y\":\"\",\"custom_in_scale_x\":\"\",\"custom_in_scale_y\":\"\",\"custom_in_rotation_x\":\"\",\"custom_in_rotation_y\":\"\",\"custom_in_rotation_z\":\"\",\"transformOriginXin\":\"center\",\"transformOriginYin\":\"center\",\"custom_in_transform_perspective\":\"600\",\"custom_in_opacity\":\"0\",\"custom_out_transition_x\":\"\",\"custom_out_transition_y\":\"\",\"custom_out_scale_x\":\"\",\"custom_out_scale_y\":\"\",\"custom_out_rotation_x\":\"\",\"custom_out_rotation_y\":\"\",\"custom_out_rotation_z\":\"\",\"transformOriginXout\":\"center\",\"transformOriginYout\":\"center\",\"custom_out_transform_perspective\":\"500\",\"custom_out_opacity\":\"1\",\"speed\":\"1000\",\"start\":\"100\",\"endspeed\":\"\",\"end\":\"\",\"status\":1,\"sort_order\":\"\",\"link\":{\"menu_type\":\"custom\",\"menu_item\":[]},\"link_new_window\":\"0\",\"easing\":\"easeInOutQuart\",\"endeasing\":\"easeInOutQuart\",\"shadow\":{\"value\":{\"inner_shadow\":\"0\"}},\"shadow_hover\":{\"value\":{\"inner_shadow\":\"0\"}},\"shadow_active\":{\"value\":{\"inner_shadow\":\"0\"}},\"border\":{\"value\":{\"border_rounded\":\"px\"}},\"bg_image\":{\"value\":{\"bgimage_attach\":\"scroll\",\"use_gradient\":0,\"bgimage_size\":\"auto\",\"bgimage_position\":\"center top\"}},\"text\":{\"value\":{\"1\":\"Design<br \\/>Without<br \\/>Limits\",\"2\":\"\"}},\"animations_is_open\":true,\"image\":{\"1\":[]},\"bg_image_hover\":{\"value\":{\"bgimage_attach\":\"scroll\",\"use_gradient\":0,\"bgimage_size\":\"auto\",\"bgimage_position\":\"center top\"}}},{\"is_open\":false,\"caption_name\":\"We\'ve built....\",\"type\":\"text\",\"video_type\":\"youtube\",\"video_yt_id\":\"\",\"video_vm_id\":\"\",\"video_path\":\"\",\"video_fullwidth\":0,\"video_width\":\"\",\"video_height\":\"\",\"video_autoplay\":0,\"video_autoplayonlyfirsttime\":0,\"video_nextslideatend\":1,\"video_volume\":1,\"video_loop\":0,\"text_font\":{\"value\":{\"font_type\":\"system\",\"font_size\":\"20px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"\",\"font_weight\":\"bold\",\"font_style\":\"normal\",\"letter_spacing\":\"\",\"text_transform\":\"none\",\"color\":{\"value\":{\"color\":\"rgb(255, 255, 255)\"}}}},\"text_color\":\"\",\"text_bgcolor\":\"\",\"text_hover_color\":\"\",\"text_hover_bg_color\":\"\",\"text_border\":{\"value\":{\"border_rounded\":\"px\"}},\"text_hover_border_color\":\"\",\"text_padding_top\":\"\",\"text_padding_right\":\"\",\"text_padding_bottom\":\"\",\"text_padding_left\":\"\",\"text_line_height\":\"\",\"text_align\":\"left\",\"position\":\"custom\",\"multilanguage_position\":\"0\",\"x\":\"\",\"y\":\"275\",\"x_ml\":{\"value\":{\"1\":\"\"}},\"y_ml\":{\"value\":{\"1\":\"\"}},\"animation_in\":\"sfr\",\"animation_out\":\"fadeout\",\"custom_in_transition_x\":\"\",\"custom_in_transition_y\":\"\",\"custom_in_scale_x\":\"\",\"custom_in_scale_y\":\"\",\"custom_in_rotation_x\":\"\",\"custom_in_rotation_y\":\"\",\"custom_in_rotation_z\":\"\",\"transformOriginXin\":\"center\",\"transformOriginYin\":\"center\",\"custom_in_transform_perspective\":\"500\",\"custom_in_opacity\":\"1\",\"custom_out_transition_x\":\"\",\"custom_out_transition_y\":\"\",\"custom_out_scale_x\":\"\",\"custom_out_scale_y\":\"\",\"custom_out_rotation_x\":\"\",\"custom_out_rotation_y\":\"\",\"custom_out_rotation_z\":\"\",\"transformOriginXout\":\"center\",\"transformOriginYout\":\"center\",\"custom_out_transform_perspective\":\"500\",\"custom_out_opacity\":\"1\",\"speed\":\"1000\",\"start\":\"300\",\"endspeed\":\"\",\"end\":\"\",\"status\":1,\"sort_order\":\"\",\"link\":{\"menu_type\":\"custom\",\"menu_item\":[]},\"link_new_window\":\"0\",\"easing\":\"easeInOutQuart\",\"endeasing\":\"easeInOutQuart\",\"shadow\":{\"value\":{\"inner_shadow\":\"0\"}},\"shadow_hover\":{\"value\":{\"inner_shadow\":\"0\"}},\"shadow_active\":{\"value\":{\"inner_shadow\":\"0\"}},\"border\":{\"value\":{\"border_rounded\":\"px\"}},\"bg_image\":{\"value\":{\"bgimage_attach\":\"scroll\",\"use_gradient\":0,\"bgimage_size\":\"auto\",\"bgimage_position\":\"center top\"}},\"text\":{\"value\":{\"1\":\"We\\u2019ve built the most powerful<br \\/>design tools in Journal 2\",\"2\":\"\"}},\"animations_is_open\":true,\"image\":{\"1\":[]},\"bg_image_hover\":{\"value\":{\"bgimage_attach\":\"scroll\",\"use_gradient\":0,\"bgimage_size\":\"auto\",\"bgimage_position\":\"center top\"}}},{\"is_open\":false,\"caption_name\":\"Button\",\"type\":\"text\",\"video_type\":\"youtube\",\"video_yt_id\":\"\",\"video_vm_id\":\"\",\"video_path\":\"\",\"video_fullwidth\":0,\"video_width\":\"\",\"video_height\":\"\",\"video_autoplay\":0,\"video_autoplayonlyfirsttime\":0,\"video_nextslideatend\":1,\"video_volume\":1,\"video_loop\":0,\"text_font\":{\"value\":{\"font_type\":\"system\",\"font_size\":\"18px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"\",\"font_weight\":\"normal\",\"font_style\":\"normal\",\"letter_spacing\":\"\",\"text_transform\":\"uppercase\",\"color\":{\"value\":{\"color\":\"rgb(255, 255, 255)\"}}}},\"text_color\":\"\",\"text_bgcolor\":\"\",\"text_hover_color\":\"\",\"text_hover_bg_color\":{\"value\":{\"color\":\"rgb(176, 158, 102)\"}},\"text_border\":{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"px\",\"border\":{\"value\":{\"text\":\"1\"}},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":\"\"},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":\"\"},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"},\"border_color\":{\"value\":{\"color\":\"rgb(255, 255, 255)\"}}}},\"text_hover_border_color\":{\"value\":{\"color\":\"rgb(176, 158, 102)\"}},\"text_padding_top\":\"15\",\"text_padding_right\":\"25\",\"text_padding_bottom\":\"15\",\"text_padding_left\":\"25\",\"text_line_height\":\"\",\"text_align\":\"center\",\"position\":\"custom\",\"multilanguage_position\":\"0\",\"x\":\"\",\"y\":\"345\",\"x_ml\":{\"value\":{\"1\":\"\"}},\"y_ml\":{\"value\":{\"1\":\"\"}},\"animation_in\":\"sfr\",\"animation_out\":\"fadeout\",\"custom_in_transition_x\":\"\",\"custom_in_transition_y\":\"\",\"custom_in_scale_x\":\"\",\"custom_in_scale_y\":\"\",\"custom_in_rotation_x\":\"\",\"custom_in_rotation_y\":\"\",\"custom_in_rotation_z\":\"\",\"transformOriginXin\":\"center\",\"transformOriginYin\":\"center\",\"custom_in_transform_perspective\":\"500\",\"custom_in_opacity\":\"1\",\"custom_out_transition_x\":\"\",\"custom_out_transition_y\":\"\",\"custom_out_scale_x\":\"\",\"custom_out_scale_y\":\"\",\"custom_out_rotation_x\":\"\",\"custom_out_rotation_y\":\"\",\"custom_out_rotation_z\":\"\",\"transformOriginXout\":\"center\",\"transformOriginYout\":\"center\",\"custom_out_transform_perspective\":\"500\",\"custom_out_opacity\":\"1\",\"speed\":\"1000\",\"start\":\"400\",\"endspeed\":\"\",\"end\":\"\",\"status\":1,\"sort_order\":\"\",\"link\":{\"menu_type\":\"custom\",\"menu_item\":{\"url\":\"http:\\/\\/journal.digital-atelier.com\\/4\\/admin\\/index.php?route=module\\/journal2\"}},\"link_new_window\":\"1\",\"easing\":\"easeInOutQuart\",\"endeasing\":\"easeInOutQuart\",\"shadow\":{\"value\":{\"inner_shadow\":\"0\"}},\"shadow_hover\":{\"value\":{\"inner_shadow\":\"0\"}},\"shadow_active\":{\"value\":{\"inner_shadow\":\"0\"}},\"border\":{\"value\":{\"border_rounded\":\"px\"}},\"bg_image\":{\"value\":{\"bgimage_attach\":\"scroll\",\"use_gradient\":0,\"bgimage_size\":\"auto\",\"bgimage_position\":\"center top\"}},\"text\":{\"value\":{\"1\":\"Visit the Admin\",\"2\":\"\"}},\"animations_is_open\":true,\"image\":{\"1\":[]},\"bg_image_hover\":{\"value\":{\"bgimage_attach\":\"scroll\",\"use_gradient\":0,\"bgimage_size\":\"auto\",\"bgimage_position\":\"center top\"}}},{\"is_open\":false,\"caption_name\":\"Divider\",\"type\":\"image\",\"video_type\":\"youtube\",\"video_yt_id\":\"\",\"video_vm_id\":\"\",\"video_path\":\"\",\"video_fullwidth\":0,\"video_width\":\"\",\"video_height\":\"\",\"video_autoplay\":0,\"video_autoplayonlyfirsttime\":0,\"video_nextslideatend\":1,\"video_volume\":1,\"video_loop\":0,\"text_font\":{\"value\":{\"font_type\":\"none\",\"font_size\":\"13px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"\",\"font_weight\":\"normal\",\"font_style\":\"normal\",\"letter_spacing\":\"\",\"text_transform\":\"none\"}},\"text_color\":\"\",\"text_bgcolor\":\"\",\"text_hover_color\":\"\",\"text_hover_bg_color\":\"\",\"text_border\":{\"value\":{\"border_rounded\":\"px\"}},\"text_hover_border_color\":\"\",\"text_padding_top\":\"\",\"text_padding_right\":\"\",\"text_padding_bottom\":\"\",\"text_padding_left\":\"\",\"text_line_height\":\"\",\"text_align\":\"center\",\"position\":\"custom\",\"multilanguage_position\":\"0\",\"x\":\"\",\"y\":\"240\",\"x_ml\":{\"value\":{\"1\":\"\"}},\"y_ml\":{\"value\":{\"1\":\"\"}},\"animation_in\":\"sfr\",\"animation_out\":\"fadeout\",\"custom_in_transition_x\":\"\",\"custom_in_transition_y\":\"\",\"custom_in_scale_x\":\"\",\"custom_in_scale_y\":\"\",\"custom_in_rotation_x\":\"\",\"custom_in_rotation_y\":\"\",\"custom_in_rotation_z\":\"\",\"transformOriginXin\":\"center\",\"transformOriginYin\":\"center\",\"custom_in_transform_perspective\":\"500\",\"custom_in_opacity\":\"1\",\"custom_out_transition_x\":\"\",\"custom_out_transition_y\":\"\",\"custom_out_scale_x\":\"\",\"custom_out_scale_y\":\"\",\"custom_out_rotation_x\":\"\",\"custom_out_rotation_y\":\"\",\"custom_out_rotation_z\":\"\",\"transformOriginXout\":\"center\",\"transformOriginYout\":\"center\",\"custom_out_transform_perspective\":\"500\",\"custom_out_opacity\":\"1\",\"speed\":\"1000\",\"start\":\"200\",\"endspeed\":\"\",\"end\":\"\",\"status\":1,\"sort_order\":\"\",\"link\":{\"menu_type\":\"custom\",\"menu_item\":[]},\"link_new_window\":\"0\",\"easing\":\"easeInOutQuart\",\"endeasing\":\"easeInOutQuart\",\"shadow\":{\"value\":{\"inner_shadow\":\"0\"}},\"shadow_hover\":{\"value\":{\"inner_shadow\":\"0\"}},\"shadow_active\":{\"value\":{\"inner_shadow\":\"0\"}},\"border\":{\"value\":{\"border_rounded\":\"px\"}},\"bg_image\":{\"value\":{\"bgimage_attach\":\"scroll\",\"use_gradient\":0,\"bgimage_size\":\"auto\",\"bgimage_position\":\"center top\"}},\"text\":{\"value\":{\"1\":\"\",\"2\":\"\"}},\"animations_is_open\":true,\"image\":{\"1\":\"data\\/journal2\\/misc\\/div.png\"},\"bg_image_hover\":{\"value\":{\"bgimage_attach\":\"scroll\",\"use_gradient\":0,\"bgimage_size\":\"auto\",\"bgimage_position\":\"center top\"}}},{\"is_open\":false,\"caption_name\":\"Border\",\"type\":\"image\",\"video_type\":\"youtube\",\"video_yt_id\":\"\",\"video_vm_id\":\"\",\"video_path\":\"\",\"video_fullwidth\":0,\"video_width\":\"\",\"video_height\":\"\",\"video_autoplay\":0,\"video_autoplayonlyfirsttime\":0,\"video_nextslideatend\":1,\"video_volume\":1,\"video_loop\":0,\"text_font\":{\"value\":{\"font_type\":\"none\",\"font_size\":\"13px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"\",\"font_weight\":\"normal\",\"font_style\":\"normal\",\"letter_spacing\":\"\",\"text_transform\":\"none\"}},\"text_color\":\"\",\"text_bgcolor\":\"\",\"text_hover_color\":\"\",\"text_hover_bg_color\":\"\",\"text_border\":{\"value\":{\"border_rounded\":\"px\"}},\"text_hover_border_color\":\"\",\"text_padding_top\":\"\",\"text_padding_right\":\"\",\"text_padding_bottom\":\"\",\"text_padding_left\":\"\",\"text_line_height\":\"\",\"text_align\":\"center\",\"position\":\"custom\",\"multilanguage_position\":\"0\",\"x\":\"240\",\"y\":\"140\",\"x_ml\":{\"value\":{\"1\":\"\"}},\"y_ml\":{\"value\":{\"1\":\"\"}},\"animation_in\":\"lfr\",\"animation_out\":\"fadeout\",\"custom_in_transition_x\":\"\",\"custom_in_transition_y\":\"\",\"custom_in_scale_x\":\"\",\"custom_in_scale_y\":\"\",\"custom_in_rotation_x\":\"\",\"custom_in_rotation_y\":\"\",\"custom_in_rotation_z\":\"\",\"transformOriginXin\":\"center\",\"transformOriginYin\":\"center\",\"custom_in_transform_perspective\":\"500\",\"custom_in_opacity\":\"1\",\"custom_out_transition_x\":\"\",\"custom_out_transition_y\":\"\",\"custom_out_scale_x\":\"\",\"custom_out_scale_y\":\"\",\"custom_out_rotation_x\":\"\",\"custom_out_rotation_y\":\"\",\"custom_out_rotation_z\":\"\",\"transformOriginXout\":\"center\",\"transformOriginYout\":\"center\",\"custom_out_transform_perspective\":\"500\",\"custom_out_opacity\":\"1\",\"speed\":\"2200\",\"start\":\"50\",\"endspeed\":\"\",\"end\":\"\",\"status\":1,\"sort_order\":\"1\",\"link\":{\"menu_type\":\"custom\",\"menu_item\":[]},\"link_new_window\":\"0\",\"easing\":\"easeInOutExpo\",\"endeasing\":\"easeInOutQuart\",\"shadow\":{\"value\":{\"inner_shadow\":\"0\"}},\"shadow_hover\":{\"value\":{\"inner_shadow\":\"0\"}},\"shadow_active\":{\"value\":{\"inner_shadow\":\"0\"}},\"border\":{\"value\":{\"border_rounded\":\"px\"}},\"bg_image\":{\"value\":{\"bgimage_attach\":\"scroll\",\"use_gradient\":0,\"bgimage_size\":\"auto\",\"bgimage_position\":\"center top\"}},\"text\":{\"value\":{\"1\":\"\",\"2\":\"\"}},\"animations_is_open\":true,\"image\":{\"1\":\"data\\/journal2\\/misc\\/border.png\"},\"bg_image_hover\":{\"value\":{\"bgimage_attach\":\"scroll\",\"use_gradient\":0,\"bgimage_size\":\"auto\",\"bgimage_position\":\"center top\"}}},{\"is_open\":false,\"caption_name\":\"Icon\",\"type\":\"image\",\"video_type\":\"youtube\",\"video_yt_id\":\"\",\"video_vm_id\":\"\",\"video_path\":\"\",\"video_fullwidth\":0,\"video_width\":\"\",\"video_height\":\"\",\"video_autoplay\":0,\"video_autoplayonlyfirsttime\":0,\"video_nextslideatend\":1,\"video_volume\":1,\"video_loop\":0,\"text_font\":{\"value\":{\"font_type\":\"none\",\"font_size\":\"13px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"\",\"font_weight\":\"normal\",\"font_style\":\"normal\",\"letter_spacing\":\"\",\"text_transform\":\"none\"}},\"text_color\":\"\",\"text_bgcolor\":\"\",\"text_hover_color\":\"\",\"text_hover_bg_color\":\"\",\"text_border\":{\"value\":{\"border_rounded\":\"px\"}},\"text_hover_border_color\":\"\",\"text_padding_top\":\"\",\"text_padding_right\":\"\",\"text_padding_bottom\":\"\",\"text_padding_left\":\"\",\"text_line_height\":\"\",\"text_align\":\"center\",\"position\":\"custom\",\"multilanguage_position\":\"0\",\"x\":\"527\",\"y\":\"\",\"x_ml\":{\"value\":{\"1\":\"\"}},\"y_ml\":{\"value\":{\"1\":\"\"}},\"animation_in\":\"lfr\",\"animation_out\":\"fadeout\",\"custom_in_transition_x\":\"\",\"custom_in_transition_y\":\"\",\"custom_in_scale_x\":\"\",\"custom_in_scale_y\":\"\",\"custom_in_rotation_x\":\"\",\"custom_in_rotation_y\":\"\",\"custom_in_rotation_z\":\"\",\"transformOriginXin\":\"center\",\"transformOriginYin\":\"center\",\"custom_in_transform_perspective\":\"500\",\"custom_in_opacity\":\"1\",\"custom_out_transition_x\":\"\",\"custom_out_transition_y\":\"\",\"custom_out_scale_x\":\"\",\"custom_out_scale_y\":\"\",\"custom_out_rotation_x\":\"\",\"custom_out_rotation_y\":\"\",\"custom_out_rotation_z\":\"\",\"transformOriginXout\":\"center\",\"transformOriginYout\":\"center\",\"custom_out_transform_perspective\":\"500\",\"custom_out_opacity\":\"1\",\"speed\":\"2200\",\"start\":\"350\",\"endspeed\":\"\",\"end\":\"\",\"status\":1,\"sort_order\":\"0\",\"link\":{\"menu_type\":\"custom\",\"menu_item\":[]},\"link_new_window\":\"0\",\"easing\":\"easeInOutExpo\",\"endeasing\":\"easeInOutQuart\",\"shadow\":{\"value\":{\"inner_shadow\":\"0\"}},\"shadow_hover\":{\"value\":{\"inner_shadow\":\"0\"}},\"shadow_active\":{\"value\":{\"inner_shadow\":\"0\"}},\"border\":{\"value\":{\"border_rounded\":\"px\"}},\"bg_image\":{\"value\":{\"bgimage_attach\":\"scroll\",\"use_gradient\":0,\"bgimage_size\":\"auto\",\"bgimage_position\":\"center top\"}},\"text\":{\"value\":{\"1\":\"\",\"2\":\"\"}},\"animations_is_open\":true,\"image\":{\"1\":\"data\\/journal2\\/misc\\/icon.png\"},\"bg_image_hover\":{\"value\":{\"bgimage_attach\":\"scroll\",\"use_gradient\":0,\"bgimage_size\":\"auto\",\"bgimage_position\":\"center top\"}}},{\"is_open\":false,\"caption_name\":\"Font\",\"type\":\"image\",\"video_type\":\"youtube\",\"video_yt_id\":\"\",\"video_vm_id\":\"\",\"video_path\":\"\",\"video_fullwidth\":0,\"video_width\":\"\",\"video_height\":\"\",\"video_autoplay\":0,\"video_autoplayonlyfirsttime\":0,\"video_nextslideatend\":1,\"video_volume\":1,\"video_loop\":0,\"text_font\":{\"value\":{\"font_type\":\"none\",\"font_size\":\"13px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"\",\"font_weight\":\"normal\",\"font_style\":\"normal\",\"letter_spacing\":\"\",\"text_transform\":\"none\"}},\"text_color\":\"\",\"text_bgcolor\":\"\",\"text_hover_color\":\"\",\"text_hover_bg_color\":\"\",\"text_border\":{\"value\":{\"border_rounded\":\"px\"}},\"text_hover_border_color\":\"\",\"text_padding_top\":\"\",\"text_padding_right\":\"\",\"text_padding_bottom\":\"\",\"text_padding_left\":\"\",\"text_line_height\":\"\",\"text_align\":\"center\",\"position\":\"custom\",\"multilanguage_position\":\"0\",\"x\":\"415\",\"y\":\"245\",\"x_ml\":{\"value\":{\"1\":\"\"}},\"y_ml\":{\"value\":{\"1\":\"\"}},\"animation_in\":\"lfr\",\"animation_out\":\"fadeout\",\"custom_in_transition_x\":\"\",\"custom_in_transition_y\":\"\",\"custom_in_scale_x\":\"\",\"custom_in_scale_y\":\"\",\"custom_in_rotation_x\":\"\",\"custom_in_rotation_y\":\"\",\"custom_in_rotation_z\":\"\",\"transformOriginXin\":\"center\",\"transformOriginYin\":\"center\",\"custom_in_transform_perspective\":\"500\",\"custom_in_opacity\":\"1\",\"custom_out_transition_x\":\"\",\"custom_out_transition_y\":\"\",\"custom_out_scale_x\":\"\",\"custom_out_scale_y\":\"\",\"custom_out_rotation_x\":\"\",\"custom_out_rotation_y\":\"\",\"custom_out_rotation_z\":\"\",\"transformOriginXout\":\"center\",\"transformOriginYout\":\"center\",\"custom_out_transform_perspective\":\"500\",\"custom_out_opacity\":\"1\",\"speed\":\"2200\",\"start\":\"200\",\"endspeed\":\"\",\"end\":\"\",\"status\":1,\"sort_order\":\"3\",\"link\":{\"menu_type\":\"custom\",\"menu_item\":[]},\"link_new_window\":\"0\",\"easing\":\"easeInOutExpo\",\"endeasing\":\"easeInOutQuart\",\"shadow\":{\"value\":{\"inner_shadow\":\"0\"}},\"shadow_hover\":{\"value\":{\"inner_shadow\":\"0\"}},\"shadow_active\":{\"value\":{\"inner_shadow\":\"0\"}},\"border\":{\"value\":{\"border_rounded\":\"px\"}},\"bg_image\":{\"value\":{\"bgimage_attach\":\"scroll\",\"use_gradient\":0,\"bgimage_size\":\"auto\",\"bgimage_position\":\"center top\"}},\"text\":{\"value\":{\"1\":\"\",\"2\":\"\"}},\"animations_is_open\":true,\"image\":{\"1\":\"data\\/journal2\\/misc\\/font.png\"},\"bg_image_hover\":{\"value\":{\"bgimage_attach\":\"scroll\",\"use_gradient\":0,\"bgimage_size\":\"auto\",\"bgimage_position\":\"center top\"}}},{\"is_open\":false,\"caption_name\":\"Items per Row\",\"type\":\"image\",\"video_type\":\"youtube\",\"video_yt_id\":\"\",\"video_vm_id\":\"\",\"video_path\":\"\",\"video_fullwidth\":0,\"video_width\":\"\",\"video_height\":\"\",\"video_autoplay\":0,\"video_autoplayonlyfirsttime\":0,\"video_nextslideatend\":1,\"video_volume\":1,\"video_loop\":0,\"text_font\":{\"value\":{\"font_type\":\"none\",\"font_size\":\"13px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"\",\"font_weight\":\"normal\",\"font_style\":\"normal\",\"letter_spacing\":\"\",\"text_transform\":\"none\"}},\"text_color\":\"\",\"text_bgcolor\":\"\",\"text_hover_color\":\"\",\"text_hover_bg_color\":\"\",\"text_border\":{\"value\":{\"border_rounded\":\"px\"}},\"text_hover_border_color\":\"\",\"text_padding_top\":\"\",\"text_padding_right\":\"\",\"text_padding_bottom\":\"\",\"text_padding_left\":\"\",\"text_line_height\":\"\",\"text_align\":\"center\",\"position\":\"custom\",\"multilanguage_position\":\"0\",\"x\":\"820\",\"y\":\"175\",\"x_ml\":{\"value\":{\"1\":\"\"}},\"y_ml\":{\"value\":{\"1\":\"\"}},\"animation_in\":\"lfr\",\"animation_out\":\"fadeout\",\"custom_in_transition_x\":\"\",\"custom_in_transition_y\":\"\",\"custom_in_scale_x\":\"\",\"custom_in_scale_y\":\"\",\"custom_in_rotation_x\":\"\",\"custom_in_rotation_y\":\"\",\"custom_in_rotation_z\":\"\",\"transformOriginXin\":\"center\",\"transformOriginYin\":\"center\",\"custom_in_transform_perspective\":\"500\",\"custom_in_opacity\":\"1\",\"custom_out_transition_x\":\"\",\"custom_out_transition_y\":\"\",\"custom_out_scale_x\":\"\",\"custom_out_scale_y\":\"\",\"custom_out_rotation_x\":\"\",\"custom_out_rotation_y\":\"\",\"custom_out_rotation_z\":\"\",\"transformOriginXout\":\"center\",\"transformOriginYout\":\"center\",\"custom_out_transform_perspective\":\"500\",\"custom_out_opacity\":\"1\",\"speed\":\"2200\",\"start\":\"500\",\"endspeed\":\"\",\"end\":\"\",\"status\":1,\"sort_order\":\"2\",\"link\":{\"menu_type\":\"custom\",\"menu_item\":[]},\"link_new_window\":\"0\",\"easing\":\"easeInOutExpo\",\"endeasing\":\"easeInOutQuart\",\"shadow\":{\"value\":{\"inner_shadow\":\"0\"}},\"shadow_hover\":{\"value\":{\"inner_shadow\":\"0\"}},\"shadow_active\":{\"value\":{\"inner_shadow\":\"0\"}},\"border\":{\"value\":{\"border_rounded\":\"px\"}},\"bg_image\":{\"value\":{\"bgimage_attach\":\"scroll\",\"use_gradient\":0,\"bgimage_size\":\"auto\",\"bgimage_position\":\"center top\"}},\"text\":{\"value\":{\"1\":\"\",\"2\":\"\"}},\"animations_is_open\":true,\"image\":{\"1\":\"data\\/journal2\\/misc\\/items.png\"},\"bg_image_hover\":{\"value\":{\"bgimage_attach\":\"scroll\",\"use_gradient\":0,\"bgimage_size\":\"auto\",\"bgimage_position\":\"center top\"}}},{\"is_open\":false,\"caption_name\":\"Border-bubble\",\"type\":\"image\",\"video_type\":\"youtube\",\"video_yt_id\":\"\",\"video_vm_id\":\"\",\"video_path\":\"\",\"video_fullwidth\":0,\"video_width\":\"\",\"video_height\":\"\",\"video_autoplay\":0,\"video_autoplayonlyfirsttime\":0,\"video_nextslideatend\":1,\"video_volume\":1,\"video_loop\":0,\"text_font\":{\"value\":{\"font_type\":\"none\",\"font_size\":\"13px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"\",\"font_weight\":\"normal\",\"font_style\":\"normal\",\"letter_spacing\":\"\",\"text_transform\":\"none\"}},\"text_color\":\"\",\"text_bgcolor\":\"\",\"text_hover_color\":\"\",\"text_hover_bg_color\":\"\",\"text_border\":{\"value\":{\"border_rounded\":\"px\"}},\"text_hover_border_color\":\"\",\"text_padding_top\":\"\",\"text_padding_right\":\"\",\"text_padding_bottom\":\"\",\"text_padding_left\":\"\",\"text_line_height\":\"\",\"text_align\":\"center\",\"position\":\"custom\",\"multilanguage_position\":\"0\",\"x\":\"410\",\"y\":\"125\",\"x_ml\":{\"value\":{\"1\":\"\"}},\"y_ml\":{\"value\":{\"1\":\"\"}},\"animation_in\":\"lft\",\"animation_out\":\"fadeout\",\"custom_in_transition_x\":\"\",\"custom_in_transition_y\":\"\",\"custom_in_scale_x\":\"\",\"custom_in_scale_y\":\"\",\"custom_in_rotation_x\":\"\",\"custom_in_rotation_y\":\"\",\"custom_in_rotation_z\":\"\",\"transformOriginXin\":\"center\",\"transformOriginYin\":\"center\",\"custom_in_transform_perspective\":\"500\",\"custom_in_opacity\":\"1\",\"custom_out_transition_x\":\"\",\"custom_out_transition_y\":\"\",\"custom_out_scale_x\":\"\",\"custom_out_scale_y\":\"\",\"custom_out_rotation_x\":\"\",\"custom_out_rotation_y\":\"\",\"custom_out_rotation_z\":\"\",\"transformOriginXout\":\"center\",\"transformOriginYout\":\"center\",\"custom_out_transform_perspective\":\"500\",\"custom_out_opacity\":\"1\",\"speed\":\"1000\",\"start\":\"2000\",\"endspeed\":\"\",\"end\":\"\",\"status\":1,\"sort_order\":\"\",\"link\":{\"menu_type\":\"custom\",\"menu_item\":[]},\"link_new_window\":\"0\",\"easing\":\"easeOutBounce\",\"endeasing\":\"easeInOutQuart\",\"shadow\":{\"value\":{\"inner_shadow\":\"0\"}},\"shadow_hover\":{\"value\":{\"inner_shadow\":\"0\"}},\"shadow_active\":{\"value\":{\"inner_shadow\":\"0\"}},\"border\":{\"value\":{\"border_rounded\":\"px\"}},\"bg_image\":{\"value\":{\"bgimage_attach\":\"scroll\",\"use_gradient\":0,\"bgimage_size\":\"auto\",\"bgimage_position\":\"center top\"}},\"text\":{\"value\":{\"1\":\"\",\"2\":\"\"}},\"animations_is_open\":true,\"image\":{\"1\":\"data\\/journal2\\/misc\\/border-bub.png\"},\"bg_image_hover\":{\"value\":{\"bgimage_attach\":\"scroll\",\"use_gradient\":0,\"bgimage_size\":\"auto\",\"bgimage_position\":\"center top\"}}},{\"is_open\":false,\"caption_name\":\"Icon-bubble\",\"type\":\"image\",\"video_type\":\"youtube\",\"video_yt_id\":\"\",\"video_vm_id\":\"\",\"video_path\":\"\",\"video_fullwidth\":0,\"video_width\":\"\",\"video_height\":\"\",\"video_autoplay\":0,\"video_autoplayonlyfirsttime\":0,\"video_nextslideatend\":1,\"video_volume\":1,\"video_loop\":0,\"text_font\":{\"value\":{\"font_type\":\"none\",\"font_size\":\"13px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"\",\"font_weight\":\"normal\",\"font_style\":\"normal\",\"letter_spacing\":\"\",\"text_transform\":\"none\"}},\"text_color\":\"\",\"text_bgcolor\":\"\",\"text_hover_color\":\"\",\"text_hover_bg_color\":\"\",\"text_border\":{\"value\":{\"border_rounded\":\"px\"}},\"text_hover_border_color\":\"\",\"text_padding_top\":\"\",\"text_padding_right\":\"\",\"text_padding_bottom\":\"\",\"text_padding_left\":\"\",\"text_line_height\":\"\",\"text_align\":\"center\",\"position\":\"custom\",\"multilanguage_position\":\"0\",\"x\":\"745\",\"y\":\"10\",\"x_ml\":{\"value\":{\"1\":\"\"}},\"y_ml\":{\"value\":{\"1\":\"\"}},\"animation_in\":\"lft\",\"animation_out\":\"fadeout\",\"custom_in_transition_x\":\"\",\"custom_in_transition_y\":\"\",\"custom_in_scale_x\":\"\",\"custom_in_scale_y\":\"\",\"custom_in_rotation_x\":\"\",\"custom_in_rotation_y\":\"\",\"custom_in_rotation_z\":\"\",\"transformOriginXin\":\"center\",\"transformOriginYin\":\"center\",\"custom_in_transform_perspective\":\"500\",\"custom_in_opacity\":\"1\",\"custom_out_transition_x\":\"\",\"custom_out_transition_y\":\"\",\"custom_out_scale_x\":\"\",\"custom_out_scale_y\":\"\",\"custom_out_rotation_x\":\"\",\"custom_out_rotation_y\":\"\",\"custom_out_rotation_z\":\"\",\"transformOriginXout\":\"center\",\"transformOriginYout\":\"center\",\"custom_out_transform_perspective\":\"500\",\"custom_out_opacity\":\"1\",\"speed\":\"1000\",\"start\":\"2200\",\"endspeed\":\"\",\"end\":\"\",\"status\":1,\"sort_order\":\"\",\"link\":{\"menu_type\":\"custom\",\"menu_item\":[]},\"link_new_window\":\"0\",\"easing\":\"easeOutBounce\",\"endeasing\":\"easeInOutQuart\",\"shadow\":{\"value\":{\"inner_shadow\":\"0\"}},\"shadow_hover\":{\"value\":{\"inner_shadow\":\"0\"}},\"shadow_active\":{\"value\":{\"inner_shadow\":\"0\"}},\"border\":{\"value\":{\"border_rounded\":\"px\"}},\"bg_image\":{\"value\":{\"bgimage_attach\":\"scroll\",\"use_gradient\":0,\"bgimage_size\":\"auto\",\"bgimage_position\":\"center top\"}},\"text\":{\"value\":{\"1\":\"\",\"2\":\"\"}},\"animations_is_open\":true,\"image\":{\"1\":\"data\\/journal2\\/misc\\/icon-bub.png\"},\"bg_image_hover\":{\"value\":{\"bgimage_attach\":\"scroll\",\"use_gradient\":0,\"bgimage_size\":\"auto\",\"bgimage_position\":\"center top\"}}},{\"is_open\":false,\"caption_name\":\"Font-bubble\",\"type\":\"image\",\"video_type\":\"youtube\",\"video_yt_id\":\"\",\"video_vm_id\":\"\",\"video_path\":\"\",\"video_fullwidth\":0,\"video_width\":\"\",\"video_height\":\"\",\"video_autoplay\":0,\"video_autoplayonlyfirsttime\":0,\"video_nextslideatend\":1,\"video_volume\":1,\"video_loop\":0,\"text_font\":{\"value\":{\"font_type\":\"none\",\"font_size\":\"13px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"\",\"font_weight\":\"normal\",\"font_style\":\"normal\",\"letter_spacing\":\"\",\"text_transform\":\"none\"}},\"text_color\":\"\",\"text_bgcolor\":\"\",\"text_hover_color\":\"\",\"text_hover_bg_color\":\"\",\"text_border\":{\"value\":{\"border_rounded\":\"px\"}},\"text_hover_border_color\":\"\",\"text_padding_top\":\"\",\"text_padding_right\":\"\",\"text_padding_bottom\":\"\",\"text_padding_left\":\"\",\"text_line_height\":\"\",\"text_align\":\"center\",\"position\":\"custom\",\"multilanguage_position\":\"0\",\"x\":\"640\",\"y\":\"245\",\"x_ml\":{\"value\":{\"1\":\"\"}},\"y_ml\":{\"value\":{\"1\":\"\"}},\"animation_in\":\"lft\",\"animation_out\":\"fadeout\",\"custom_in_transition_x\":\"\",\"custom_in_transition_y\":\"\",\"custom_in_scale_x\":\"\",\"custom_in_scale_y\":\"\",\"custom_in_rotation_x\":\"\",\"custom_in_rotation_y\":\"\",\"custom_in_rotation_z\":\"\",\"transformOriginXin\":\"center\",\"transformOriginYin\":\"center\",\"custom_in_transform_perspective\":\"500\",\"custom_in_opacity\":\"1\",\"custom_out_transition_x\":\"\",\"custom_out_transition_y\":\"\",\"custom_out_scale_x\":\"\",\"custom_out_scale_y\":\"\",\"custom_out_rotation_x\":\"\",\"custom_out_rotation_y\":\"\",\"custom_out_rotation_z\":\"\",\"transformOriginXout\":\"center\",\"transformOriginYout\":\"center\",\"custom_out_transform_perspective\":\"500\",\"custom_out_opacity\":\"1\",\"speed\":\"1000\",\"start\":\"2100\",\"endspeed\":\"\",\"end\":\"\",\"status\":1,\"sort_order\":\"\",\"link\":{\"menu_type\":\"custom\",\"menu_item\":[]},\"link_new_window\":\"0\",\"easing\":\"easeOutBounce\",\"endeasing\":\"easeInOutQuart\",\"shadow\":{\"value\":{\"inner_shadow\":\"0\"}},\"shadow_hover\":{\"value\":{\"inner_shadow\":\"0\"}},\"shadow_active\":{\"value\":{\"inner_shadow\":\"0\"}},\"border\":{\"value\":{\"border_rounded\":\"px\"}},\"bg_image\":{\"value\":{\"bgimage_attach\":\"scroll\",\"use_gradient\":0,\"bgimage_size\":\"auto\",\"bgimage_position\":\"center top\"}},\"text\":{\"value\":{\"1\":\"\",\"2\":\"\"}},\"animations_is_open\":true,\"image\":{\"1\":\"data\\/journal2\\/misc\\/font-bub.png\"},\"bg_image_hover\":{\"value\":{\"bgimage_attach\":\"scroll\",\"use_gradient\":0,\"bgimage_size\":\"auto\",\"bgimage_position\":\"center top\"}}},{\"is_open\":false,\"caption_name\":\"Items-bubble\",\"type\":\"image\",\"video_type\":\"youtube\",\"video_yt_id\":\"\",\"video_vm_id\":\"\",\"video_path\":\"\",\"video_fullwidth\":0,\"video_width\":\"\",\"video_height\":\"\",\"video_autoplay\":0,\"video_autoplayonlyfirsttime\":0,\"video_nextslideatend\":1,\"video_volume\":1,\"video_loop\":0,\"text_font\":{\"value\":{\"font_type\":\"none\",\"font_size\":\"13px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"\",\"font_weight\":\"normal\",\"font_style\":\"normal\",\"letter_spacing\":\"\",\"text_transform\":\"none\"}},\"text_color\":\"\",\"text_bgcolor\":\"\",\"text_hover_color\":\"\",\"text_hover_bg_color\":\"\",\"text_border\":{\"value\":{\"border_rounded\":\"px\"}},\"text_hover_border_color\":\"\",\"text_padding_top\":\"\",\"text_padding_right\":\"\",\"text_padding_bottom\":\"\",\"text_padding_left\":\"\",\"text_line_height\":\"\",\"text_align\":\"center\",\"position\":\"custom\",\"multilanguage_position\":\"0\",\"x\":\"1030\",\"y\":\"170\",\"x_ml\":{\"value\":{\"1\":\"\"}},\"y_ml\":{\"value\":{\"1\":\"\"}},\"animation_in\":\"lft\",\"animation_out\":\"fadeout\",\"custom_in_transition_x\":\"\",\"custom_in_transition_y\":\"\",\"custom_in_scale_x\":\"\",\"custom_in_scale_y\":\"\",\"custom_in_rotation_x\":\"\",\"custom_in_rotation_y\":\"\",\"custom_in_rotation_z\":\"\",\"transformOriginXin\":\"center\",\"transformOriginYin\":\"center\",\"custom_in_transform_perspective\":\"500\",\"custom_in_opacity\":\"1\",\"custom_out_transition_x\":\"\",\"custom_out_transition_y\":\"\",\"custom_out_scale_x\":\"\",\"custom_out_scale_y\":\"\",\"custom_out_rotation_x\":\"\",\"custom_out_rotation_y\":\"\",\"custom_out_rotation_z\":\"\",\"transformOriginXout\":\"center\",\"transformOriginYout\":\"center\",\"custom_out_transform_perspective\":\"500\",\"custom_out_opacity\":\"1\",\"speed\":\"1000\",\"start\":\"2300\",\"endspeed\":\"\",\"end\":\"\",\"status\":1,\"sort_order\":\"\",\"link\":{\"menu_type\":\"custom\",\"menu_item\":[]},\"link_new_window\":\"0\",\"easing\":\"easeOutBounce\",\"endeasing\":\"easeInOutQuart\",\"shadow\":{\"value\":{\"inner_shadow\":\"0\"}},\"shadow_hover\":{\"value\":{\"inner_shadow\":\"0\"}},\"shadow_active\":{\"value\":{\"inner_shadow\":\"0\"}},\"border\":{\"value\":{\"border_rounded\":\"px\"}},\"bg_image\":{\"value\":{\"bgimage_attach\":\"scroll\",\"use_gradient\":0,\"bgimage_size\":\"auto\",\"bgimage_position\":\"center top\"}},\"text\":{\"value\":{\"1\":\"\",\"2\":\"\"}},\"animations_is_open\":true,\"image\":{\"1\":\"data\\/journal2\\/misc\\/item-bub.png\"},\"bg_image_hover\":{\"value\":{\"bgimage_attach\":\"scroll\",\"use_gradient\":0,\"bgimage_size\":\"auto\",\"bgimage_position\":\"center top\"}}}],\"status\":\"1\",\"sort_order\":\"\",\"link\":{\"menu_type\":\"custom\",\"menu_item\":[]},\"link_new_window\":\"0\",\"easing\":\"easeInOutQuart\",\"close_others\":true},{\"is_open\":true,\"slide_name\":\"Video\",\"image\":{\"1\":\"data\\/journal2\\/slider\\/vid-bg.jpg\"},\"thumb\":{\"1\":\"\"},\"transition\":\"fade\",\"slotamount\":\"\",\"masterspeed\":800,\"delay\":\"\",\"captions\":[{\"is_open\":true,\"caption_name\":\"Title\",\"type\":\"text\",\"video_type\":\"local\",\"video_yt_id\":\"\",\"video_vm_id\":\"26017275\",\"video_path\":\"videos\\/Split\",\"video_fullwidth\":\"1\",\"video_width\":\"300\",\"video_height\":\"200\",\"video_autoplay\":\"1\",\"video_autoplayonlyfirsttime\":\"1\",\"video_nextslideatend\":1,\"video_volume\":1,\"video_loop\":0,\"text_font\":{\"value\":{\"font_type\":\"google\",\"font_size\":\"50px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"Playfair Display\",\"font_weight\":\"regular\",\"font_style\":\"normal\",\"letter_spacing\":\"\",\"text_transform\":\"uppercase\",\"font_subset\":[\"latin\"],\"color\":{\"value\":{\"color\":\"rgb(255, 255, 255)\"}}}},\"text_color\":\"\",\"text_bgcolor\":{\"value\":{\"color\":\"rgb(176, 158, 102)\"}},\"text_hover_color\":\"\",\"text_hover_bg_color\":\"\",\"text_border\":{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"px\",\"border\":{\"value\":{\"text\":\"\"}},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":{\"text\":\"\"}},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":{\"text\":\"\"}},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"},\"border_color\":{\"value\":{\"color\":\"\"}}}},\"text_hover_border_color\":\"\",\"text_padding_top\":\"7\",\"text_padding_right\":\"17\",\"text_padding_bottom\":\"12\",\"text_padding_left\":\"17\",\"text_line_height\":\"\",\"text_align\":\"center\",\"position\":\"center\",\"multilanguage_position\":\"0\",\"x\":\"\",\"y\":\"-40\",\"x_ml\":{\"value\":{\"1\":\"\"}},\"y_ml\":{\"value\":{\"1\":\"\"}},\"animation_in\":\"customin\",\"animation_out\":\"fadeout\",\"custom_in_transition_x\":\"\",\"custom_in_transition_y\":\"\",\"custom_in_scale_x\":\"\",\"custom_in_scale_y\":\"\",\"custom_in_rotation_x\":\"90\",\"custom_in_rotation_y\":\"\",\"custom_in_rotation_z\":\"\",\"transformOriginXin\":\"top\",\"transformOriginYin\":\"center\",\"custom_in_transform_perspective\":\"700\",\"custom_in_opacity\":\"1\",\"custom_out_transition_x\":\"\",\"custom_out_transition_y\":\"\",\"custom_out_scale_x\":\"\",\"custom_out_scale_y\":\"\",\"custom_out_rotation_x\":\"\",\"custom_out_rotation_y\":\"\",\"custom_out_rotation_z\":\"\",\"transformOriginXout\":\"center\",\"transformOriginYout\":\"center\",\"custom_out_transform_perspective\":\"500\",\"custom_out_opacity\":\"1\",\"speed\":\"1000\",\"start\":\"700\",\"endspeed\":\"\",\"end\":\"\",\"status\":\"1\",\"sort_order\":\"\",\"link\":{\"menu_type\":\"custom\",\"menu_item\":[]},\"link_new_window\":\"0\",\"easing\":\"easeOutBounce\",\"endeasing\":\"easeInOutQuart\",\"shadow\":{\"value\":{\"inner_shadow\":\"0\"}},\"shadow_hover\":{\"value\":{\"inner_shadow\":\"0\"}},\"shadow_active\":{\"value\":{\"inner_shadow\":\"0\"}},\"border\":{\"value\":{\"border_rounded\":\"px\"}},\"bg_image\":{\"value\":{\"bgimage_attach\":\"scroll\",\"use_gradient\":0,\"bgimage_size\":\"auto\",\"bgimage_position\":\"center top\"}},\"custom_in_transition_z\":\"\",\"custom_out_transition_z\":\"\",\"text\":{\"value\":{\"1\":\"Opencart Never Looked So Good\",\"2\":\"\"}},\"animations_is_open\":false,\"image\":{\"1\":[]},\"bg_image_hover\":{\"value\":{\"bgimage_attach\":\"scroll\",\"use_gradient\":0,\"bgimage_size\":\"auto\",\"bgimage_position\":\"center top\"}}},{\"is_open\":true,\"caption_name\":\"Button\",\"type\":\"text\",\"video_type\":\"youtube\",\"video_yt_id\":\"\",\"video_vm_id\":\"\",\"video_path\":\"\",\"video_fullwidth\":0,\"video_width\":\"\",\"video_height\":\"\",\"video_autoplay\":0,\"video_autoplayonlyfirsttime\":0,\"video_nextslideatend\":1,\"video_volume\":1,\"video_loop\":0,\"text_font\":{\"value\":{\"font_type\":\"system\",\"font_size\":\"20px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"\",\"font_weight\":\"normal\",\"font_style\":\"normal\",\"letter_spacing\":\"\",\"text_transform\":\"uppercase\",\"color\":{\"value\":{\"color\":\"rgb(255, 255, 255)\"}}}},\"text_color\":\"\",\"text_bgcolor\":\"\",\"text_hover_color\":\"\",\"text_hover_bg_color\":{\"value\":{\"color\":\"rgb(176, 158, 102)\"}},\"text_border\":{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"px\",\"border\":{\"value\":{\"text\":\"1\"}},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":\"\"},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":\"\"},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"},\"border_color\":{\"value\":{\"color\":\"rgb(255, 255, 255)\"}}}},\"text_hover_border_color\":{\"value\":{\"color\":\"rgb(176, 158, 102)\"}},\"text_padding_top\":\"17\",\"text_padding_right\":\"30\",\"text_padding_bottom\":\"17\",\"text_padding_left\":\"30\",\"text_line_height\":\"\",\"text_align\":\"center\",\"position\":\"center\",\"multilanguage_position\":\"0\",\"x\":\"\",\"y\":\"75\",\"x_ml\":{\"value\":{\"1\":\"\"}},\"y_ml\":{\"value\":{\"1\":\"\"}},\"animation_in\":\"customin\",\"animation_out\":\"fadeout\",\"custom_in_transition_x\":\"\",\"custom_in_transition_y\":\"\",\"custom_in_scale_x\":\"\",\"custom_in_scale_y\":\"\",\"custom_in_rotation_x\":\"90\",\"custom_in_rotation_y\":\"\",\"custom_in_rotation_z\":\"\",\"transformOriginXin\":\"top\",\"transformOriginYin\":\"center\",\"custom_in_transform_perspective\":\"700\",\"custom_in_opacity\":\"1\",\"custom_out_transition_x\":\"\",\"custom_out_transition_y\":\"\",\"custom_out_scale_x\":\"\",\"custom_out_scale_y\":\"\",\"custom_out_rotation_x\":\"\",\"custom_out_rotation_y\":\"\",\"custom_out_rotation_z\":\"\",\"transformOriginXout\":\"center\",\"transformOriginYout\":\"center\",\"custom_out_transform_perspective\":\"500\",\"custom_out_opacity\":\"1\",\"speed\":\"1000\",\"start\":\"850\",\"endspeed\":\"\",\"end\":\"\",\"status\":1,\"sort_order\":\"\",\"link\":{\"menu_type\":\"custom\",\"menu_item\":{\"url\":\"http:\\/\\/themeforest.net\\/item\\/journal-premium-responsive-opencart-theme\\/4260361?ref=DigitalAtelier\"}},\"link_new_window\":\"1\",\"easing\":\"easeOutBounce\",\"endeasing\":\"easeInOutQuart\",\"shadow\":{\"value\":{\"inner_shadow\":\"0\"}},\"shadow_hover\":{\"value\":{\"inner_shadow\":\"0\"}},\"shadow_active\":{\"value\":{\"inner_shadow\":\"0\"}},\"border\":{\"value\":{\"border_rounded\":\"px\"}},\"bg_image\":{\"value\":{\"bgimage_attach\":\"scroll\",\"use_gradient\":0,\"bgimage_size\":\"auto\",\"bgimage_position\":\"center top\"}},\"text\":{\"value\":{\"1\":\"Buy Journal\",\"2\":\"\"}},\"animations_is_open\":false,\"image\":{\"1\":[]},\"bg_image_hover\":{\"value\":{\"bgimage_attach\":\"scroll\",\"use_gradient\":0,\"bgimage_size\":\"auto\",\"bgimage_position\":\"center top\"}}},{\"is_open\":true,\"caption_name\":\"Video\",\"type\":\"video\",\"video_type\":\"local\",\"video_yt_id\":\"2qmjLEU4f1I\",\"video_vm_id\":\"\",\"video_path\":\"videos\\/vid\",\"video_fullwidth\":\"1\",\"video_width\":\"\",\"video_height\":\"\",\"video_autoplay\":\"1\",\"video_autoplayonlyfirsttime\":\"0\",\"video_nextslideatend\":\"1\",\"video_volume\":\"0\",\"video_loop\":0,\"text_font\":{\"value\":{\"font_type\":\"none\",\"font_size\":\"13px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"\",\"font_weight\":\"normal\",\"font_style\":\"normal\",\"letter_spacing\":\"\",\"text_transform\":\"none\"}},\"text_color\":\"\",\"text_bgcolor\":\"\",\"text_hover_color\":\"\",\"text_hover_bg_color\":\"\",\"text_border\":{\"value\":{\"border_rounded\":\"px\"}},\"text_hover_border_color\":\"\",\"text_padding_top\":\"\",\"text_padding_right\":\"\",\"text_padding_bottom\":\"\",\"text_padding_left\":\"\",\"text_line_height\":\"\",\"text_align\":\"center\",\"position\":\"custom\",\"multilanguage_position\":\"0\",\"x\":\"\",\"y\":\"\",\"x_ml\":{\"value\":{\"1\":\"\"}},\"y_ml\":{\"value\":{\"1\":\"\"}},\"animation_in\":\"fade\",\"animation_out\":\"fadeout\",\"custom_in_transition_x\":\"\",\"custom_in_transition_y\":\"\",\"custom_in_scale_x\":\"\",\"custom_in_scale_y\":\"\",\"custom_in_rotation_x\":\"\",\"custom_in_rotation_y\":\"\",\"custom_in_rotation_z\":\"\",\"transformOriginXin\":\"center\",\"transformOriginYin\":\"center\",\"custom_in_transform_perspective\":\"500\",\"custom_in_opacity\":\"1\",\"custom_out_transition_x\":\"\",\"custom_out_transition_y\":\"\",\"custom_out_scale_x\":\"\",\"custom_out_scale_y\":\"\",\"custom_out_rotation_x\":\"\",\"custom_out_rotation_y\":\"\",\"custom_out_rotation_z\":\"\",\"transformOriginXout\":\"center\",\"transformOriginYout\":\"center\",\"custom_out_transform_perspective\":\"500\",\"custom_out_opacity\":\"1\",\"speed\":\"0\",\"start\":\"\",\"endspeed\":\"\",\"end\":\"\",\"status\":1,\"sort_order\":\"0\",\"link\":{\"menu_type\":\"custom\",\"menu_item\":[]},\"link_new_window\":\"0\",\"easing\":\"easeInOutQuart\",\"endeasing\":\"easeInOutQuart\",\"shadow\":{\"value\":{\"inner_shadow\":\"0\"}},\"shadow_hover\":{\"value\":{\"inner_shadow\":\"0\"}},\"shadow_active\":{\"value\":{\"inner_shadow\":\"0\"}},\"border\":{\"value\":{\"border_rounded\":\"px\"}},\"bg_image\":{\"value\":{\"bgimage_attach\":\"scroll\",\"use_gradient\":0,\"bgimage_size\":\"auto\",\"bgimage_position\":\"center top\"}},\"text\":{\"value\":{\"1\":\"\",\"2\":\"\"}},\"animations_is_open\":true,\"image\":{\"1\":[]},\"bg_image_hover\":{\"value\":{\"bgimage_attach\":\"scroll\",\"use_gradient\":0,\"bgimage_size\":\"auto\",\"bgimage_position\":\"center top\"}}}],\"status\":\"1\",\"sort_order\":\"\",\"link\":{\"menu_type\":\"custom\",\"menu_item\":[]},\"link_new_window\":\"0\",\"easing\":\"easeInOutQuart\"}],\"enable_on_phone\":\"1\",\"enable_on_tablet\":\"1\",\"enable_on_desktop\":\"1\",\"spinner\":\"0\",\"general_is_open\":false,\"navigation_is_open\":false,\"top_bottom_is_open\":false,\"hideonmobile\":\"0\",\"disable_desktop\":\"0\",\"module_type\":\"normal\",\"close_others\":true}'),(236,'journal2_header_notice','{\"module_name\":\"Notice\",\"height\":\"\",\"padding_t\":{\"value\":{\"text\":\"5\"}},\"padding_l\":{\"value\":\"\"},\"padding_b\":{\"value\":{\"text\":\"5\"}},\"padding_r\":{\"value\":\"\"},\"text\":{\"value\":{\"1\":\"This is the <strong>Header Notice<\\/strong> module. It can be used for <a href=\\\"javascript:Journal.openPopup(\'249\')\\\"><strong>Cookie Law<\\/strong><\\/a> messages or any other text. Multiple modules with different styles can be added on any page.\"}},\"text_align\":\"left\",\"text_font\":{\"value\":{\"font_type\":\"none\",\"font_size\":\"13px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":null,\"font_weight\":\"normal\",\"font_style\":\"normal\",\"letter_spacing\":\"\",\"text_transform\":\"none\",\"font_subset\":[]}},\"text_link_color\":[],\"text_link_hover_color\":[],\"button_color\":[],\"button_hover_color\":[],\"button_bg_color\":[],\"button_hover_bg_color\":[],\"icon\":{\"options\":{\"font_size\":\"24px\",\"color\":{\"value\":{\"color\":\"rgb(221, 0, 23)\"}},\"top\":\"1\"},\"icon_type\":\"icon\",\"icon\":{\"icon\":\"&#xe059;\",\"class\":\"exclamation-sign2\"}},\"float_icon\":\"0\",\"fullwidth\":\"0\",\"icon_position\":\"left\",\"close_button_type\":\"icon\",\"close_button_text\":{\"value\":{\"1\":\"\"}},\"show_only_once\":\"0\",\"do_not_show_again\":\"1\",\"do_not_show_again_cookie\":\"rph7aobhi4iicjmc59udi\",\"enable_on_phone\":\"1\",\"enable_on_tablet\":\"1\",\"enable_on_desktop\":\"1\",\"general_is_open\":true,\"disable_mobile\":\"0\",\"disable_desktop\":\"0\",\"content_is_open\":true,\"text_background_color\":{\"value\":{\"color\":\"rgb(233, 232, 211)\"}}}'),(24,'journal2_text_rotator','{\"module_name\":\"Testimonials\",\"module_title\":{\"value\":{\"1\":\"\"}},\"transition_delay\":\"4000\",\"pause_on_hover\":\"1\",\"text_align\":\"center\",\"image_align\":\"center\",\"author_align\":\"center\",\"text_font\":{\"value\":{\"font_type\":\"system\",\"font_size\":\"22px\",\"font_name\":\"Playfair Display\",\"font_weight\":\"normal\",\"font_subset\":[\"latin\"],\"font_style\":\"italic\",\"text_transform\":\"none\",\"color\":{\"value\":{\"color\":\"rgb(255, 255, 255)\"}},\"font_family\":\"Georgia, serif\"}},\"author_font\":{\"value\":{\"font_type\":\"system\",\"font_size\":\"22px\",\"font_name\":\"Ubuntu\",\"font_weight\":\"bold\",\"font_subset\":[\"latin\"],\"font_style\":\"normal\",\"text_transform\":\"none\",\"color\":{\"value\":{\"color\":\"rgb(255, 255, 255)\"}},\"font_family\":\"Helvetica, Arial, sans-serif\"}},\"text_background\":{\"value\":{\"bgimage_attach\":\"scroll\",\"bgcolor\":{\"value\":{\"color\":\"\"}},\"bgimage_repeat\":\"repeat\",\"bgimage_position\":\"center top\",\"use_gradient\":0,\"bgimage_size\":\"auto\"}},\"image_border\":{\"value\":{\"border_rounded\":\"1\",\"border_top\":{\"value\":{\"text\":\"\"}},\"border_right\":{\"value\":{\"text\":\"\"}},\"border_bottom\":{\"value\":{\"text\":\"\"}},\"border_left\":{\"value\":{\"text\":\"\"}},\"border_radius_left\":{\"value\":{\"text\":\"\"}},\"border_radius_top\":{\"value\":{\"text\":\"\"}},\"border_radius_right\":{\"value\":{\"text\":\"\"}},\"border_radius_bottom\":{\"value\":{\"text\":\"\"}},\"border_type\":\"solid\",\"border_color\":{\"value\":{\"color\":\"\"}},\"border\":{\"value\":\"\"},\"border_radius\":{\"value\":{\"text\":\"50\"}},\"border_radius_unit\":\"%\"}},\"bullets\":\"1\",\"bullets_position\":\"center\",\"top_bottom_placement\":0,\"background\":{\"value\":{\"bgcolor\":{\"value\":{\"color\":\"\"}},\"bgimage\":{\"value\":{\"image\":\"data\\/journal2\\/background\\/fashion-bg-dark.jpg\"}},\"bgimage_attach\":\"fixed\",\"bgimage_repeat\":\"no-repeat\",\"bgimage_position\":\"center top\",\"use_gradient\":0,\"bgimage_size\":\"auto\"}},\"fullwidth\":\"0\",\"margin_top\":\"30\",\"margin_bottom\":\"30\",\"sections\":[{\"is_open\":false,\"name\":\"Item 1\",\"text\":{\"value\":{\"1\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam iaculis egestas laoreet. Etiam faucibus massa sed risus lacinia.\",\"2\":\"\"}},\"author\":\"John\",\"icon\":{\"options\":{\"font_size\":\"15px\"}},\"image\":{\"1\":\"data\\/journal2\\/testimonials\\/test5.jpg\"},\"status\":\"1\",\"sort_order\":\"\",\"cta\":\"0\",\"cta_link\":{\"menu_type\":\"custom\"},\"cta_icon\":{\"options\":{\"font_size\":\"15px\"}},\"cta_new_window\":\"0\",\"cta_text\":{\"value\":{\"1\":\"\",\"2\":\"\"}},\"cta_position\":\"center\",\"cta_offset_top\":\"\",\"cta_offset_left\":\"\"},{\"is_open\":false,\"name\":\"\",\"text\":{\"value\":{\"1\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam iaculis egestas laoreet. Etiam faucibus massa sed risus lacinia.\",\"2\":\"\"}},\"author\":\"Mike\",\"icon\":{\"options\":{\"font_size\":\"16px\"}},\"image\":{\"1\":\"data\\/journal2\\/testimonials\\/test2.jpg\"},\"status\":\"1\",\"sort_order\":\"\"},{\"is_open\":false,\"name\":\"\",\"text\":{\"value\":{\"1\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam iaculis egestas laoreet. Etiam faucibus massa sed risus lacinia.\",\"2\":\"\"}},\"author\":\"Amira\",\"icon\":{\"options\":{\"font_size\":\"16px\"}},\"image\":{\"1\":\"data\\/journal2\\/testimonials\\/test1.jpg\"},\"status\":\"1\",\"sort_order\":\"\"}],\"random_sections\":\"0\",\"enable_on_phone\":\"1\",\"enable_on_tablet\":\"1\",\"enable_on_desktop\":\"1\",\"general_is_open\":true,\"top_bottom_is_open\":false,\"module_background\":{\"value\":{\"bgimage_attach\":\"scroll\",\"use_gradient\":0,\"bgimage_size\":\"auto\",\"bgimage_position\":\"center top\"}},\"module_shadow\":{\"value\":{\"inner_shadow\":\"0\"}},\"disable_mobile\":\"0\",\"bullets_color\":{\"value\":{\"color\":\"rgb(51, 153, 101)\"}},\"bullets_hover_color\":{\"value\":{\"color\":\"rgb(234, 35, 73)\"}},\"margin\":\"none\",\"cta_mode\":\"1\",\"close_others\":true}'),(27,'journal2_cms_blocks','{\"module_name\":\"3 piece\",\"module_title\":{\"value\":{\"1\":\"\",\"2\":\"\"}},\"items_per_row\":{\"range\":\"1,8\",\"step\":\"1\",\"value\":{\"mobile\":{\"value\":\"1\",\"range\":\"1,8\",\"step\":\"1\"},\"mobile1\":{\"value\":\"2\",\"range\":\"1,8\",\"step\":\"1\"},\"tablet\":{\"value\":\"3\",\"range\":\"1,8\",\"step\":\"1\"},\"tablet1\":{\"value\":\"2\",\"range\":\"1,8\",\"step\":\"1\"},\"tablet2\":{\"value\":\"1\",\"range\":\"1,8\",\"step\":\"1\"},\"desktop\":{\"value\":\"3\",\"range\":\"1,8\",\"step\":\"1\"},\"desktop1\":{\"value\":\"3\",\"range\":\"1,8\",\"step\":\"1\"},\"desktop2\":{\"value\":\"4\",\"range\":\"1,8\",\"step\":\"1\"},\"large_desktop\":{\"value\":\"3\",\"range\":\"1,8\",\"step\":\"1\"},\"large_desktop1\":{\"value\":\"4\",\"range\":\"1,8\",\"step\":\"1\"},\"large_desktop2\":{\"value\":\"4\",\"range\":\"1,8\",\"step\":\"1\"}}},\"disable_mobile\":\"0\",\"background\":{\"value\":{\"bgimage_attach\":\"scroll\",\"bgcolor\":{\"value\":{\"color\":\"rgb(255, 255, 255)\"}},\"bgimage_repeat\":\"no-repeat\",\"bgimage_position\":\"center\",\"bgimage\":{\"value\":{\"image\":\"\"}}}},\"fullwidth\":\"0\",\"margin_top\":\"20\",\"margin_bottom\":\"\",\"sections\":[{\"is_open\":true,\"section_title\":[],\"text\":{\"1\":\"<h2>Customize Everything<\\/h2>\\n\\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam iaculis egestas laoreet. Etiam faucibus massa sed risus lacinia in vulputate dolor imperdiet. Curabitur pharetra, purus a commodo dignissim, sapien nulla tempus nisi, et varius nulla urna at arcu.<\\/p>\\n\\n<p><strong><a href=\\\"#\\\">See theme features<\\/a><\\/strong><\\/p>\\n\",\"2\":\"\"},\"text_align\":\"center\",\"icon_status\":\"1\",\"icon_position\":\"top\",\"icon\":{\"options\":{\"font_size\":\"28px\",\"color\":{\"value\":{\"color\":\"rgb(255, 255, 255)\"}}},\"icon_type\":\"icon\",\"icon\":{\"icon\":\"&#xe61c;\",\"class\":\"glass\"}},\"icon_border\":{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"%\",\"border\":{\"value\":\"\"},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":\"\"},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":{\"text\":\"50\"}},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"}}},\"icon_bg_color\":{\"value\":{\"color\":\"rgb(68, 67, 73)\"}},\"icon_width\":\"65\",\"icon_height\":\"65\",\"status\":\"1\",\"sort_order\":\"\"},{\"is_open\":false,\"section_title\":[],\"text\":{\"1\":\"<h2>16 Multi Purpose Modules<\\/h2>\\n\\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam iaculis egestas laoreet. Etiam faucibus massa sed risus lacinia in vulputate dolor imperdiet. Curabitur pharetra, purus a commodo dignissim, sapien nulla tempus nisi, et varius nulla urna at arcu.<\\/p>\\n\\n<p><a href=\\\"#\\\" style=\\\"line-height: 1.6;\\\"><strong>See theme features<\\/strong><\\/a><\\/p>\\n\",\"2\":\"\"},\"text_align\":\"center\",\"icon_status\":\"1\",\"icon_position\":\"top\",\"icon\":{\"options\":{\"font_size\":\"34px\",\"color\":{\"value\":{\"color\":\"rgb(255, 255, 255)\"}}},\"icon_type\":\"icon\",\"icon\":{\"icon\":\"&#xe07d;\",\"class\":\"trophy2\"}},\"icon_border\":{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"%\",\"border\":{\"value\":\"\"},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":\"\"},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":{\"text\":\"50\"}},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"}}},\"icon_bg_color\":{\"value\":{\"color\":\"rgb(68, 67, 73)\"}},\"icon_width\":\"65\",\"icon_height\":\"65\",\"status\":\"1\",\"sort_order\":\"\"},{\"is_open\":false,\"section_title\":[],\"text\":{\"1\":\"<h2>Made with Love<\\/h2>\\n\\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam iaculis egestas laoreet. Etiam faucibus massa sed risus lacinia in vulputate dolor imperdiet. Curabitur pharetra, purus a commodo dignissim, sapien nulla tempus nisi, et varius nulla urna at arcu.<\\/p>\\n\\n<p><strong><a href=\\\"http:\\/\\/themeforest.net\\/item\\/journal-premium-responsive-opencart-theme\\/4260361?ref=DigitalAtelier\\\" target=\\\"_blank\\\">Buy Journal<\\/a><\\/strong><\\/p>\\n\",\"2\":\"\"},\"text_align\":\"center\",\"icon_status\":\"1\",\"icon_position\":\"top\",\"icon\":{\"options\":{\"font_size\":\"27px\",\"color\":{\"value\":{\"color\":\"rgb(255, 255, 255)\"}},\"top\":\"1\",\"left\":\"-1\"},\"icon_type\":\"icon\",\"icon\":{\"icon\":\"&#xe663;\",\"class\":\"heart3\"}},\"icon_border\":{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"%\",\"border\":{\"value\":\"\"},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":\"\"},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":{\"text\":\"50\"}},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"}}},\"icon_bg_color\":{\"value\":{\"color\":\"rgb(68, 67, 73)\"}},\"icon_width\":\"65\",\"icon_height\":\"65\",\"status\":\"1\",\"sort_order\":\"\"},{\"is_open\":false,\"section_title\":[],\"text\":{\"1\":\"<h2>All Google Fonts<\\/h2>\\n\\n<p>We&#39;ve added the entire Google fonts library into an intuitive interface with support for live preview and custom font subsets so you only load what you need and nothing else. Choose from over 650 fonts and apply them to nearly every element on the page.<\\/p>\\n\\n<p><a href=\\\"https:\\/\\/www.google.com\\/fonts\\\" target=\\\"_blank\\\"><strong>Google Fonts<\\/strong><\\/a><\\/p>\\n\"},\"text_align\":\"center\",\"icon_status\":\"1\",\"icon_position\":\"top\",\"icon\":{\"options\":{\"font_size\":\"28px\",\"color\":{\"value\":{\"color\":\"rgb(43, 176, 227)\"}},\"left\":\"1\",\"top\":\"1\"},\"icon_type\":\"icon\",\"icon\":{\"icon\":\"&#xe60d;\",\"class\":\"ampersand\"}},\"icon_border\":{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"%\",\"border\":{\"value\":\"\"},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":\"\"},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":{\"text\":\"50\"}},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"}}},\"icon_bg_color\":{\"value\":{\"color\":\"rgb(68, 67, 73)\"}},\"icon_width\":\"65\",\"icon_height\":\"65\",\"status\":\"0\",\"sort_order\":\"\"},{\"is_open\":false,\"section_title\":[],\"text\":{\"1\":\"<h2>Unlimited Colors<\\/h2>\\n\\n<p>The most advanced color picker is built into the Journal admin. You can apply full or semi-transparency to any element. The color picker widget also offers a handy color palette which allows you to quickly access pre-saved colors with a single click.&nbsp;<\\/p>\\n\\n<p><a href=\\\"#\\\"><strong>See theme features<\\/strong><\\/a><\\/p>\\n\"},\"text_align\":\"center\",\"icon_status\":\"1\",\"icon_position\":\"top\",\"icon\":{\"options\":{\"font_size\":\"27px\",\"color\":{\"value\":{\"color\":\"rgb(241, 196, 15)\"}},\"top\":\"-1\",\"left\":\"-1\"},\"icon_type\":\"icon\",\"icon\":{\"icon\":\"&#xe656;\",\"class\":\"leaf\"}},\"icon_border\":{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"%\",\"border\":{\"value\":\"\"},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":\"\"},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":{\"text\":\"50\"}},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"}}},\"icon_bg_color\":{\"value\":{\"color\":\"rgb(68, 67, 73)\"}},\"icon_width\":\"65\",\"icon_height\":\"65\",\"status\":\"0\",\"sort_order\":\"\"},{\"is_open\":false,\"section_title\":[],\"text\":{\"1\":\"<h2>Out-of-this-world Admin<\\/h2>\\n\\n<p>Nowadays every theme claims to have the best and most powerful admin. Truth is, no other theme can come even close to the <strong><a href=\\\"https:\\/\\/journal.digital-atelier.com\\/v2\\/1\\/admin\\/index.php?route=module\\/journal2\\\" target=\\\"_blank\\\">Journal Admin<\\/a><\\/strong>. Over 1000 customizable options, 16 multi-purpose modules built in and powerful fluid grid layouts are just the tip of the iceberg.<\\/p>\\n\\n<p><span style=\\\"line-height: 1.6;\\\"><a href=\\\"#\\\" style=\\\"font-weight: bold; line-height: 1.6;\\\">See theme features<\\/a><\\/span><\\/p>\\n\"},\"text_align\":\"center\",\"icon_status\":\"1\",\"icon_position\":\"top\",\"icon\":{\"options\":{\"font_size\":\"28px\",\"color\":{\"value\":{\"color\":\"rgb(76, 179, 86)\"}},\"top\":\"-1\",\"left\":\"\"},\"icon_type\":\"icon\",\"icon\":{\"icon\":\"&#xe6a7;\",\"class\":\"settings\"}},\"icon_border\":{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"%\",\"border\":{\"value\":\"\"},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":\"\"},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":{\"text\":\"50\"}},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"}}},\"icon_bg_color\":{\"value\":{\"color\":\"rgb(68, 67, 73)\"}},\"icon_width\":\"65\",\"icon_height\":\"65\",\"status\":\"0\",\"sort_order\":\"\"}],\"general_is_open\":false,\"top_bottom_is_open\":false,\"content_align\":\"center\",\"margin\":\"none\",\"close_others\":true}'),(76,'journal2_product_tabs','{\"module_name\":\"Free Shipping\",\"name\":{\"value\":{\"1\":\"Free Shipping\",\"2\":\"\"}},\"icon_status\":\"1\",\"icon\":{\"options\":{\"font_size\":\"18px\",\"color\":{\"value\":{\"color\":\"rgb(255, 255, 255)\"}},\"left\":\"\"},\"icon_type\":\"icon\",\"icon\":{\"icon\":\"&#xe659;\",\"class\":\"airplane\"}},\"icon_border\":{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"px\",\"border\":{\"value\":\"\"},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":\"\"},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":{\"text\":\"50\"}},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"}}},\"icon_bg_color\":{\"value\":{\"color\":\"rgb(176, 158, 102)\"}},\"icon_width\":\"40\",\"icon_height\":\"40\",\"content\":{\"1\":\"<p>This product qualifies for free air shipping.<\\/p>\\n\"},\"global\":\"1\",\"products\":[],\"status\":\"1\",\"sort_order\":\"1\",\"position\":\"desc\",\"option_position\":\"top\"}'),(33,'journal2_headline_rotator','{\"module_name\":\"Main Title Under Slider\",\"transition_delay\":\"5000\",\"headline_rotator_height\":\"\",\"pause_on_hover\":\"1\",\"text_font\":{\"value\":{\"font_type\":\"google\",\"font_size\":\"28px\",\"font_name\":\"Playfair Display\",\"font_weight\":\"regular\",\"font_style\":\"normal\",\"text_transform\":\"none\",\"color\":{\"value\":{\"color\":\"rgb(255, 255, 255)\"}},\"font_subset\":[\"latin\"],\"font_family\":\"Helvetica, Arial, sans-serif\",\"v\":\"2\",\"font_size_mobile\":\"20px\"}},\"text_background\":{\"value\":{\"bgimage_attach\":\"scroll\",\"bgimage_repeat\":\"repeat\",\"bgimage_position\":\"center top\",\"bgcolor\":{\"value\":{\"color\":\"\"}},\"use_gradient\":0,\"bgimage_size\":\"auto\"}},\"text_align\":\"center\",\"bullets\":\"0\",\"bullets_position\":\"right\",\"top_bottom_placement\":0,\"background\":{\"value\":{\"bgimage\":{\"value\":{\"image\":\"\"}},\"bgimage_attach\":\"scroll\",\"bgcolor\":{\"value\":{\"color\":\"rgb(56, 56, 56)\"}},\"bgimage_repeat\":\"repeat\",\"bgimage_position\":\"center top\",\"use_gradient\":0,\"bgimage_size\":\"auto\"}},\"fullwidth\":\"0\",\"margin_top\":\"10\",\"margin_bottom\":\"15\",\"sections\":[{\"is_open\":true,\"name\":\"\",\"text\":{\"value\":{\"1\":\"Journal 2 is here and it\'s better than ever!\",\"2\":\"\"}},\"icon\":{\"options\":{\"font_size\":\"20px\",\"color\":{\"value\":{\"color\":\"rgb(255, 255, 255)\"}}},\"icon_type\":\"none\",\"icon\":{\"icon\":\"&#xe0ad;\",\"class\":\"truck3\"}},\"cta\":\"1\",\"cta_link\":{\"menu_type\":\"custom\",\"menu_item\":{\"url\":\"http:\\/\\/themeforest.net\\/item\\/journal-premium-responsive-opencart-theme\\/4260361?ref=DigitalAtelier\"}},\"cta_icon\":{\"options\":{\"font_size\":\"17px\",\"color\":{\"value\":{\"color\":\"rgb(255, 255, 255)\"}},\"top\":\"-1\"},\"icon_type\":\"none\",\"icon\":{\"icon\":\"&#xe608;\",\"class\":\"arrow-right\"}},\"cta_icon_position\":\"right\",\"cta_new_window\":\"1\",\"cta_text\":{\"value\":{\"1\":\"Buy Theme\",\"2\":\"\"}},\"cta_position\":\"right\",\"cta_offset_top\":\"2\",\"cta_offset_left\":\"15\",\"status\":\"1\",\"sort_order\":\"\"},{\"is_open\":true,\"name\":\"\",\"text\":{\"value\":{\"1\":\"This is the Headline Rotator, you can put it on any page\",\"2\":\"\"}},\"icon\":{\"options\":{\"font_size\":\"16px\"}},\"cta\":\"1\",\"cta_link\":{\"menu_type\":\"custom\",\"menu_item\":{\"url\":\"http:\\/\\/journal.digital-atelier.com\"}},\"cta_icon\":{\"options\":{\"font_size\":\"17px\",\"color\":{\"value\":{\"color\":\"rgb(255, 255, 255)\"}},\"top\":\"-1\"},\"icon_type\":\"none\",\"icon\":{\"icon\":\"&#xe608;\",\"class\":\"arrow-right\"}},\"cta_icon_position\":\"right\",\"cta_new_window\":\"1\",\"cta_text\":{\"value\":{\"1\":\"See All Demos\",\"2\":\"\"}},\"cta_position\":\"right\",\"cta_offset_top\":\"2\",\"cta_offset_left\":\"15\",\"status\":\"1\",\"sort_order\":\"\"},{\"is_open\":true,\"name\":\"\",\"text\":{\"value\":{\"1\":\"Use it for news, promo messages, etc. Or just remove it.\",\"2\":\"\"}},\"icon\":{\"options\":{\"font_size\":\"16px\"}},\"cta\":\"0\",\"cta_link\":{\"menu_type\":\"custom\",\"menu_item\":[]},\"cta_icon\":{\"options\":{\"font_size\":\"16px\"}},\"cta_icon_position\":\"right\",\"cta_new_window\":\"0\",\"cta_text\":{\"value\":{\"1\":\"\",\"2\":\"\"}},\"cta_position\":\"right\",\"cta_offset_top\":\"\",\"cta_offset_left\":\"\",\"status\":\"1\",\"sort_order\":\"\"}],\"enable_on_phone\":\"0\",\"enable_on_tablet\":\"1\",\"enable_on_desktop\":\"1\",\"general_is_open\":true,\"top_bottom_is_open\":true,\"disable_mobile\":\"1\",\"bullets_color\":\"\",\"bullets_hover_color\":\"\",\"margin\":\"both\"}'),(61,'journal2_custom_sections','{\"module_name\":\"Fashion Categories\",\"module_type\":\"product\",\"items_per_row\":{\"range\":\"1,8\",\"step\":\"1\",\"value\":{\"mobile\":{\"value\":\"2\",\"range\":\"1,8\",\"step\":\"1\"},\"mobile1\":{\"value\":\"3\",\"range\":\"1,8\",\"step\":\"1\"},\"tablet\":{\"value\":\"4\",\"range\":\"1,8\",\"step\":\"1\"},\"tablet1\":{\"value\":\"3\",\"range\":\"1,8\",\"step\":\"1\"},\"tablet2\":{\"value\":\"2\",\"range\":\"1,8\",\"step\":\"1\"},\"desktop\":{\"value\":\"5\",\"range\":\"1,8\",\"step\":\"1\"},\"desktop1\":{\"value\":\"4\",\"range\":\"1,8\",\"step\":\"1\"},\"desktop2\":{\"value\":\"3\",\"range\":\"1,8\",\"step\":\"1\"},\"large_desktop\":{\"value\":\"5\",\"range\":\"1,8\",\"step\":\"1\"},\"large_desktop1\":{\"value\":\"5\",\"range\":\"1,8\",\"step\":\"1\"},\"large_desktop2\":{\"value\":\"4\",\"range\":\"1,8\",\"step\":\"1\"}}},\"top_bottom_placement\":0,\"background\":{\"value\":{\"bgimage_attach\":\"scroll\",\"bgimage_repeat\":\"no-repeat\",\"bgimage_position\":\"center\",\"bgimage\":{\"value\":{\"image\":\"\"}},\"bgcolor\":{\"value\":{\"color\":\"\"}}}},\"disable_mobile\":\"0\",\"fullwidth\":\"0\",\"margin_top\":\"20\",\"margin_bottom\":\"\",\"show_title\":\"1\",\"brand_name\":\"1\",\"image_border\":{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"px\",\"border\":{\"value\":\"\"},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":\"\"},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":{\"text\":\"\"}},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"}}},\"image_bgcolor\":{\"value\":{\"color\":\"\"}},\"image_width\":\"\",\"image_height\":\"\",\"image_type\":\"fit\",\"product_sections\":[{\"is_open\":true,\"section_title\":{\"value\":{\"1\":\"Accesories\",\"2\":\"\"}},\"section_type\":\"category\",\"status\":\"1\",\"default_section\":\"1\",\"sort_order\":\"\",\"products\":[],\"category\":{\"data\":{\"id\":\"105\",\"name\":\"Fashion &gt; Accesories\"}},\"items_limit\":\"5\",\"module_type\":\"bestsellers\",\"link\":{\"menu_type\":\"custom\",\"url\":\"\"},\"new_window\":\"0\",\"random_from\":\"all\",\"filter_category\":\"1\"},{\"is_open\":true,\"section_title\":{\"value\":{\"1\":\"Beauty\",\"2\":\"\"}},\"section_type\":\"category\",\"status\":\"1\",\"default_section\":\"0\",\"sort_order\":\"\",\"products\":[],\"category\":{\"data\":{\"id\":\"109\",\"name\":\"Fashion &gt; Beauty\"}},\"items_limit\":\"5\",\"module_type\":\"bestsellers\",\"link\":{\"menu_type\":\"custom\",\"url\":\"\"},\"new_window\":\"0\",\"random_from\":\"all\",\"filter_category\":\"1\"},{\"is_open\":true,\"section_title\":{\"value\":{\"1\":\"Shoes\",\"2\":\"\"}},\"section_type\":\"category\",\"status\":\"1\",\"default_section\":\"0\",\"sort_order\":\"\",\"products\":[],\"category\":{\"data\":{\"id\":\"111\",\"name\":\"Fashion &gt; Shoes\"}},\"items_limit\":\"5\",\"module_type\":\"featured\",\"link\":{\"menu_type\":\"custom\",\"url\":\"\"},\"new_window\":\"0\",\"random_from\":\"all\",\"filter_category\":\"1\"},{\"is_open\":true,\"section_title\":{\"value\":{\"1\":\"Tops\",\"2\":\"\"}},\"section_type\":\"category\",\"status\":\"1\",\"default_section\":\"0\",\"sort_order\":\"\",\"products\":[],\"category\":{\"data\":{\"id\":\"108\",\"name\":\"Tops\"}},\"items_limit\":\"5\",\"module_type\":\"featured\",\"link\":{\"menu_type\":\"custom\",\"url\":\"\"},\"new_window\":\"0\",\"random_from\":\"all\",\"filter_category\":\"1\"},{\"is_open\":true,\"section_title\":{\"value\":{\"1\":\"Custom\",\"2\":\"\"}},\"section_type\":\"custom\",\"status\":\"1\",\"default_section\":\"0\",\"sort_order\":\"\",\"products\":[{\"data\":{\"id\":\"67\",\"name\":\"Floral Top\"}},{\"data\":{\"id\":\"84\",\"name\":\"London Tweed Coat\"}},{\"data\":{\"id\":\"75\",\"name\":\"Jeweled Strapless Dress\"}},{\"data\":{\"id\":\"73\",\"name\":\"Midi Black Dress\"}},{\"data\":{\"id\":\"66\",\"name\":\"Mixed Pearls Necklace\"}}],\"category\":\"\",\"items_limit\":5,\"module_type\":\"featured\",\"link\":{\"menu_type\":\"category\",\"url\":\"\",\"menu_item\":{\"id\":\"59\",\"name\":\"Fashion\"}},\"new_window\":\"0\",\"random_from\":\"all\",\"filter_category\":\"1\"},{\"is_open\":true,\"section_title\":{\"value\":{\"1\":\"View All...\",\"2\":\"\"}},\"section_type\":\"link\",\"status\":\"1\",\"default_section\":\"0\",\"sort_order\":\"\",\"products\":[],\"category\":\"\",\"items_limit\":5,\"module_type\":\"featured\",\"link\":{\"menu_type\":\"category\",\"url\":\"\",\"menu_item\":{\"id\":\"59\",\"name\":\"Fashion\"}},\"new_window\":\"0\",\"random_from\":\"all\",\"filter_category\":\"1\"}],\"category_sections\":[],\"manufacturer_sections\":[],\"general_is_open\":true,\"top_bottom_is_open\":true,\"margin\":\"none\"}'),(37,'journal2_product_tabs','{\"module_name\":\"Video\",\"name\":{\"value\":{\"1\":\"Responsive Video\",\"2\":\"\"}},\"icon_status\":\"0\",\"icon\":{\"options\":{\"font_size\":\"16px\"}},\"icon_border\":{\"value\":{\"border_rounded\":\"px\"}},\"icon_bg_color\":\"\",\"icon_width\":\"\",\"icon_height\":\"\",\"content\":[null,\"<div class=\\\"responsive-video\\\"><iframe allowfullscreen=\\\"\\\" frameborder=\\\"0\\\" height=\\\"315\\\" src=\\\"\\/\\/www.youtube.com\\/embed\\/5CdgftzjMSA\\\" width=\\\"560\\\"><\\/iframe><\\/div>\\n\",\"\"],\"global\":1,\"products\":[],\"status\":1,\"sort_order\":\"\",\"position\":\"tab\",\"option_position\":\"top\"}'),(73,'journal2_product_tabs','{\"module_name\":\"Tabs\",\"name\":{\"value\":{\"1\":\"Custom Tab\",\"2\":\"\"}},\"content\":{\"1\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam iaculis egestas laoreet. Etiam faucibus massa sed risus lacinia in vulputate dolor imperdiet. Curabitur pharetra, purus a commodo dignissim, sapien nulla tempus nisi, et varius nulla urna at arcu.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam iaculis egestas laoreet. Etiam faucibus massa sed risus lacinia in vulputate dolor imperdiet. Curabitur pharetra, purus a commodo dignissim, sapien nulla tempus nisi, et varius nulla urna at arcuLorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam iaculis egestas laoreet. Etiam faucibus massa sed risus lacinia in vulputate dolor imperdiet. Curabitur pharetra, purus a commodo dignissim, sapien nulla tempus nisi, et varius nulla urna at arcu.&nbsp;<\\/p>\\n\"},\"global\":1,\"products\":[],\"status\":1,\"sort_order\":\"\",\"position\":\"tab\",\"option_position\":\"top\"}'),(95,'journal2_headline_rotator','{\"module_name\":\"Shop by Category\",\"transition_delay\":\"4000\",\"headline_rotator_height\":\"\",\"pause_on_hover\":\"1\",\"text_font\":{\"value\":{\"font_type\":\"google\",\"font_size\":\"30px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"Playfair Display\",\"font_weight\":\"italic\",\"font_style\":\"italic\",\"letter_spacing\":\"\",\"text_transform\":\"none\",\"font_subset\":[\"latin\"]}},\"text_background\":{\"value\":{\"bgimage_attach\":\"scroll\",\"bgimage_repeat\":\"repeat\",\"bgimage_position\":\"center top\",\"use_gradient\":0,\"bgimage_size\":\"auto\"}},\"text_align\":\"center\",\"bullets\":\"0\",\"bullets_position\":\"center\",\"top_bottom_placement\":0,\"background\":{\"value\":{\"bgimage_attach\":\"scroll\",\"use_gradient\":0,\"bgimage_size\":\"auto\",\"bgimage_position\":\"center top\"}},\"fullwidth\":\"0\",\"margin_top\":\"20\",\"margin_bottom\":\"\",\"sections\":[{\"is_open\":true,\"name\":\"\",\"text\":{\"value\":{\"1\":\"Shop by Category\",\"2\":\"\"}},\"icon\":{\"options\":{\"font_size\":\"16px\"}},\"cta\":\"0\",\"cta_link\":{\"menu_type\":\"custom\",\"menu_item\":[]},\"cta_icon\":{\"options\":{\"font_size\":\"16px\"}},\"cta_icon_position\":\"right\",\"cta_new_window\":\"0\",\"cta_text\":{\"value\":{\"1\":\"\",\"2\":\"\",\"4\":\"\"}},\"cta_position\":\"center\",\"cta_offset_top\":\"\",\"cta_offset_left\":\"\",\"status\":\"1\",\"sort_order\":\"\"}],\"enable_on_phone\":\"1\",\"enable_on_tablet\":\"1\",\"enable_on_desktop\":\"1\",\"general_is_open\":true,\"top_bottom_is_open\":true,\"disable_mobile\":\"1\"}'),(74,'journal2_product_tabs','{\"module_name\":\"Image\",\"name\":{\"value\":{\"1\":\"Custom Blocks\",\"2\":\"\"}},\"icon_status\":\"0\",\"icon\":{\"options\":{\"font_size\":\"16px\"}},\"icon_border\":{\"value\":{\"border_rounded\":\"px\"}},\"icon_bg_color\":\"\",\"icon_width\":\"\",\"icon_height\":\"\",\"content\":{\"1\":\"<p>Create unlimited custom blocks with any HTML content. You can add blocks to ALL products at once or individually on just the ones you need.<\\/p>\\n\"},\"global\":1,\"products\":[],\"status\":1,\"sort_order\":\"\",\"position\":\"image\",\"option_position\":\"bottom\"}'),(112,'journal2_simple_slider','{\"module_name\":\"side-banner\",\"height\":\"320\",\"transition\":\"coverflow\",\"transition_speed\":\"700\",\"autoplay\":\"1\",\"pause_on_hover\":\"1\",\"transition_delay\":3000,\"touch_drag\":\"1\",\"preload_images\":\"1\",\"arrows\":\"0\",\"bullets\":\"1\",\"show_on_hover\":\"1\",\"background\":{\"value\":{\"bgimage_attach\":\"scroll\",\"use_gradient\":0,\"bgimage_size\":\"auto\",\"bgimage_position\":\"center top\"}},\"margin_top\":\"\",\"margin_bottom\":\"\",\"slides\":[{\"is_open\":true,\"slide_name\":\"\",\"image\":{\"1\":\"data\\/journal2\\/banners\\/side-1.jpg\"},\"link\":{\"menu_type\":\"custom\",\"menu_item\":[]},\"link_new_window\":\"0\",\"status\":1,\"sort_order\":\"\"},{\"is_open\":true,\"slide_name\":\"\",\"image\":{\"1\":\"data\\/journal2\\/banners\\/side-2.jpg\"},\"link\":{\"menu_type\":\"custom\",\"menu_item\":[]},\"link_new_window\":\"0\",\"status\":1,\"sort_order\":\"\"}],\"enable_on_phone\":\"1\",\"enable_on_tablet\":\"1\",\"enable_on_desktop\":\"1\",\"general_is_open\":true,\"navigation_is_open\":true,\"hideonmobile\":\"0\"}'),(79,'journal2_static_banners','{\"module_name\":\"Demo 4 - Mid\",\"module_title\":{\"value\":{\"1\":\"\",\"2\":\"\"}},\"items_per_row\":{\"range\":\"1,8\",\"step\":\"1\",\"value\":{\"mobile\":{\"value\":\"1\",\"range\":\"1,8\",\"step\":\"1\"},\"mobile1\":{\"value\":\"1\",\"range\":\"1,8\",\"step\":\"1\"},\"tablet\":{\"value\":\"1\",\"range\":\"1,8\",\"step\":\"1\"},\"tablet1\":{\"value\":\"1\",\"range\":\"1,8\",\"step\":\"1\"},\"tablet2\":{\"value\":\"1\",\"range\":\"1,8\",\"step\":\"1\"},\"desktop\":{\"value\":\"1\",\"range\":\"1,8\",\"step\":\"1\"},\"desktop1\":{\"value\":\"1\",\"range\":\"1,8\",\"step\":\"1\"},\"desktop2\":{\"value\":\"1\",\"range\":\"1,8\",\"step\":\"1\"},\"large_desktop\":{\"value\":\"1\",\"range\":\"1,8\",\"step\":\"1\"},\"large_desktop1\":{\"value\":\"1\",\"range\":\"1,8\",\"step\":\"1\"},\"large_desktop2\":{\"value\":\"1\",\"range\":\"1,8\",\"step\":\"1\"}}},\"background\":{\"value\":{\"bgimage_attach\":\"scroll\"}},\"bgcolor\":{\"value\":{\"color\":\"rgba(0, 0, 0, 0.4)\"}},\"icon\":{\"options\":{\"font_size\":\"35px\",\"color\":{\"value\":{\"color\":\"rgb(255, 255, 255)\"}}},\"icon_type\":\"icon\",\"icon\":{\"icon\":\"&#xe648;\",\"class\":\"link\"}},\"disable_mobile\":\"0\",\"fullwidth\":\"0\",\"margin_top\":\"\",\"margin_bottom\":\"\",\"image_border\":{\"value\":{\"border_rounded\":\"px\"}},\"sections\":[{\"is_open\":true,\"image\":\"data\\/journal2\\/misc\\/med.jpg\",\"link\":{\"menu_type\":\"category\",\"menu_item\":{\"id\":\"59\",\"name\":\"Fashion\"}},\"link_new_window\":\"0\",\"status\":\"1\",\"sort_order\":\"\"}],\"general_is_open\":true,\"top_bottom_is_open\":true}'),(105,'journal2_static_banners','{\"module_name\":\"Left 1\",\"module_title\":{\"value\":{\"1\":\"\",\"2\":\"\"}},\"items_per_row\":{\"range\":\"1,10\",\"step\":\"1\",\"value\":{\"mobile\":{\"value\":\"1\",\"range\":\"1,10\",\"step\":\"1\"},\"mobile1\":{\"value\":\"1\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet\":{\"value\":\"1\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet1\":{\"value\":\"1\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet2\":{\"value\":\"1\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop\":{\"value\":\"1\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop1\":{\"value\":\"1\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop2\":{\"value\":\"1\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop\":{\"value\":\"1\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop1\":{\"value\":\"1\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop2\":{\"value\":\"1\",\"range\":\"1,10\",\"step\":\"1\"}}},\"background\":{\"value\":{\"bgimage_attach\":\"scroll\"}},\"bgcolor\":{\"value\":{\"color\":\"rgba(0, 0, 0, 0.4)\"}},\"icon\":{\"options\":{\"font_size\":\"30px\",\"color\":{\"value\":{\"color\":\"rgb(255, 255, 255)\"}}},\"icon_type\":\"icon\",\"icon\":{\"icon\":\"&#xe094;\",\"class\":\"circle-arrow-right2\"}},\"disable_mobile\":\"0\",\"fullwidth\":\"0\",\"margin_top\":\"\",\"margin_bottom\":\"\",\"image_border\":{\"value\":{\"border_rounded\":\"px\"}},\"sections\":[{\"is_open\":true,\"image\":\"data\\/journal2\\/misc\\/bl-1.jpg\",\"link\":{\"menu_type\":\"category\",\"menu_item\":{\"id\":\"105\",\"name\":\"Fashion &gt; Accesories\"}},\"link_new_window\":\"0\",\"status\":\"1\",\"sort_order\":\"\"}],\"general_is_open\":true,\"top_bottom_is_open\":true}'),(116,'journal2_static_banners','{\"module_name\":\"Right\",\"module_title\":{\"value\":{\"1\":\"\",\"2\":\"\"}},\"items_per_row\":{\"range\":\"1,10\",\"step\":\"1\",\"value\":{\"mobile\":{\"value\":\"1\",\"range\":\"1,10\",\"step\":\"1\"},\"mobile1\":{\"value\":\"1\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet\":{\"value\":\"1\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet1\":{\"value\":\"1\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet2\":{\"value\":\"1\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop\":{\"value\":\"1\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop1\":{\"value\":\"1\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop2\":{\"value\":\"1\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop\":{\"value\":\"1\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop1\":{\"value\":\"1\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop2\":{\"value\":\"1\",\"range\":\"1,10\",\"step\":\"1\"}}},\"background\":{\"value\":{\"bgimage_attach\":\"scroll\"}},\"bgcolor\":{\"value\":{\"color\":\"rgba(0, 0, 0, 0.4)\"}},\"icon\":{\"options\":{\"font_size\":\"40px\",\"color\":{\"value\":{\"color\":\"rgb(255, 255, 255)\"}}},\"icon_type\":\"icon\",\"icon\":{\"icon\":\"&#xe094;\",\"class\":\"circle-arrow-right2\"}},\"disable_mobile\":\"0\",\"fullwidth\":\"0\",\"margin_top\":\"\",\"margin_bottom\":\"\",\"image_border\":{\"value\":{\"border_rounded\":\"px\"}},\"sections\":[{\"is_open\":true,\"image\":\"data\\/journal2\\/misc\\/br.jpg\",\"link\":{\"menu_type\":\"custom\",\"menu_item\":{\"url\":\"#\"}},\"link_new_window\":\"0\",\"status\":\"1\",\"sort_order\":\"\"}],\"general_is_open\":true,\"top_bottom_is_open\":true}'),(225,'journal2_carousel','{\"module_name\":\"New Arrivals\",\"module_type\":\"product\",\"items_per_row\":{\"range\":\"1,10\",\"step\":\"1\",\"value\":{\"mobile\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"mobile1\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet\":{\"value\":\"3\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet1\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet2\":{\"value\":\"1\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop\":{\"value\":\"4\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop1\":{\"value\":\"3\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop2\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop\":{\"value\":\"5\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop1\":{\"value\":\"4\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop2\":{\"value\":\"4\",\"range\":\"1,10\",\"step\":\"1\"}}},\"module_background\":{\"value\":{\"bgimage_attach\":\"scroll\",\"use_gradient\":0,\"bgimage_size\":\"auto\",\"bgimage_position\":\"center top\"}},\"module_padding\":\"0\",\"arrows\":\"top\",\"bullets\":1,\"top_bottom_placement\":0,\"background\":{\"value\":{\"bgimage_attach\":\"scroll\",\"use_gradient\":0,\"bgimage_size\":\"auto\",\"bgimage_position\":\"center top\"}},\"fullwidth\":\"0\",\"margin_top\":\"\",\"margin_bottom\":\"\",\"spacing\":\"\",\"show_title\":\"1\",\"brand_name\":\"1\",\"autoplay\":\"0\",\"pause_on_hover\":\"1\",\"transition_speed\":\"400\",\"transition_delay\":\"3000\",\"touch_drag\":\"0\",\"image_border\":{\"value\":{\"border_rounded\":\"px\"}},\"image_bgcolor\":\"\",\"image_width\":\"\",\"image_height\":\"\",\"image_type\":\"fit\",\"product_sections\":[{\"is_open\":true,\"section_title\":{\"value\":{\"1\":\"New Arrivals\",\"2\":\"\"}},\"section_type\":\"module\",\"status\":\"1\",\"default_section\":\"0\",\"sort_order\":\"\",\"products\":[],\"category\":\"\",\"items_limit\":\"6\",\"module_type\":\"latest\",\"filter_category\":\"0\",\"link\":{\"menu_type\":\"custom\",\"url\":\"\",\"menu_item\":[]},\"new_window\":\"0\",\"random_from\":\"all\"}],\"category_sections\":[],\"manufacturer_sections\":[],\"enable_on_phone\":\"1\",\"enable_on_tablet\":\"1\",\"enable_on_desktop\":\"1\",\"general_is_open\":true,\"top_bottom_is_open\":true,\"disable_mobile\":\"0\"}'),(111,'journal2_carousel','{\"module_name\":\"Related Products\",\"module_type\":\"product\",\"items_per_row\":{\"range\":\"1,10\",\"step\":\"1\",\"value\":{\"mobile\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"mobile1\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet\":{\"value\":\"3\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet1\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet2\":{\"value\":\"1\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop\":{\"value\":\"4\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop1\":{\"value\":\"3\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop2\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop\":{\"value\":\"5\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop1\":{\"value\":\"4\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop2\":{\"value\":\"4\",\"range\":\"1,10\",\"step\":\"1\"}}},\"module_background\":{\"value\":{\"bgimage_attach\":\"scroll\",\"use_gradient\":0,\"bgimage_size\":\"auto\",\"bgimage_position\":\"center top\"}},\"module_padding\":\"0\",\"arrows\":\"top\",\"bullets\":1,\"top_bottom_placement\":0,\"background\":{\"value\":{\"bgimage_attach\":\"scroll\",\"use_gradient\":0,\"bgimage_size\":\"auto\",\"bgimage_position\":\"center top\"}},\"fullwidth\":\"0\",\"margin_top\":\"10\",\"margin_bottom\":\"\",\"spacing\":\"\",\"show_title\":\"1\",\"brand_name\":\"1\",\"autoplay\":\"1\",\"pause_on_hover\":\"1\",\"transition_speed\":\"400\",\"transition_delay\":\"3000\",\"touch_drag\":\"1\",\"image_border\":{\"value\":{\"border_rounded\":\"px\"}},\"image_bgcolor\":\"\",\"image_width\":\"\",\"image_height\":\"\",\"image_type\":\"fit\",\"product_sections\":[{\"is_open\":true,\"section_title\":{\"value\":{\"1\":\"Related Products\",\"2\":\"\"}},\"section_type\":\"module\",\"status\":\"1\",\"default_section\":\"0\",\"sort_order\":\"\",\"products\":[],\"category\":{\"data\":{\"id\":\"111\",\"name\":\"Fashion &gt; Shoes\"}},\"items_limit\":\"10\",\"module_type\":\"related\",\"link\":{\"menu_type\":\"custom\",\"url\":\"\",\"menu_item\":[]},\"new_window\":\"0\",\"random_from\":\"all\",\"filter_category\":\"1\"}],\"category_sections\":[],\"manufacturer_sections\":[],\"enable_on_phone\":\"1\",\"enable_on_tablet\":\"1\",\"enable_on_desktop\":\"1\",\"general_is_open\":true,\"top_bottom_is_open\":true,\"disable_mobile\":\"0\"}'),(211,'journal2_product_tabs','{\"module_name\":\"Options 3\",\"name\":{\"value\":{\"1\":\"Unlimited Blocks\",\"2\":\"\"}},\"icon_status\":\"1\",\"icon\":{\"options\":{\"font_size\":\"22px\",\"color\":{\"value\":{\"color\":\"rgb(255, 255, 255)\"}}},\"icon_type\":\"icon\",\"icon\":{\"icon\":\"&#xe07d;\",\"class\":\"trophy2\"}},\"icon_border\":{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"%\",\"border\":{\"value\":\"\"},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":\"\"},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":{\"text\":\"50\"}},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"}}},\"icon_bg_color\":{\"value\":{\"color\":\"rgb(176, 158, 102)\"}},\"icon_width\":\"40\",\"icon_height\":\"40\",\"content\":{\"1\":\"<p>There&#39;s no limit to how many blocks you can create.<\\/p>\\n\"},\"global\":1,\"products\":[],\"status\":1,\"sort_order\":\"3\",\"position\":\"desc\",\"option_position\":\"top\"}'),(100,'journal2_product_tabs','{\"module_name\":\"Coupon\",\"name\":{\"value\":{\"1\":\"\",\"2\":\"\"}},\"icon_status\":\"1\",\"icon\":{\"options\":{\"font_size\":\"22px\",\"color\":{\"value\":{\"color\":\"rgb(255, 255, 255)\"}},\"top\":\"-1\",\"left\":\"\"},\"icon_type\":\"icon\",\"icon\":{\"icon\":\"&#xe64e;\",\"class\":\"dollar\"}},\"icon_border\":{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"%\",\"border\":{\"value\":\"\"},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":\"\"},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":{\"text\":\"50\"}},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"}}},\"icon_bg_color\":{\"value\":{\"color\":\"rgb(51, 153, 101)\"}},\"icon_width\":\"40\",\"icon_height\":\"40\",\"content\":{\"1\":\"<h3>Additional Savings<\\/h3>\\n\\n<p>Enjoy an additional 30% off. Use code <strong>JOURNAL30<\\/strong>&nbsp;at checkout.<\\/p>\\n\"},\"global\":\"1\",\"products\":[],\"status\":\"0\",\"sort_order\":\"2\",\"position\":\"desc\",\"option_position\":\"top\"}'),(115,'journal2_advanced_grid','{\"module_name\":\"4 piece - skin4\",\"height\":\"250\",\"module_background\":{\"value\":{\"bgimage_attach\":\"scroll\",\"use_gradient\":0,\"bgimage_size\":\"auto\",\"bgimage_position\":\"center top\"}},\"module_padding\":\"0\",\"background\":{\"value\":{\"bgimage_attach\":\"scroll\",\"bgimage_repeat\":\"repeat\",\"bgimage_position\":\"center top\",\"bgcolor\":{\"value\":{\"color\":\"\"}},\"use_gradient\":0,\"bgimage_size\":\"auto\"}},\"fullwidth\":\"0\",\"margin_top\":\"20\",\"margin_bottom\":\"20\",\"grid_dimensions\":\"1\",\"module_spacing\":\"20\",\"columns\":[{\"is_open\":false,\"width\":\"25\",\"status\":1,\"sort_order\":\"\",\"modules\":[{\"is_open\":true,\"height\":\"50\",\"module_id\":\"105\",\"status\":1,\"sort_order\":\"\",\"enable_on_phone\":\"1\",\"enable_on_tablet\":\"1\",\"enable_on_desktop\":\"1\",\"disable_mobile\":\"1\"},{\"is_open\":true,\"height\":\"50\",\"module_id\":\"121\",\"status\":1,\"sort_order\":\"\",\"enable_on_phone\":\"1\",\"enable_on_tablet\":\"1\",\"enable_on_desktop\":\"1\",\"disable_mobile\":\"1\"}]},{\"is_open\":false,\"width\":\"50\",\"status\":1,\"sort_order\":\"\",\"modules\":[{\"is_open\":true,\"height\":\"100\",\"module_id\":\"79\",\"status\":1,\"sort_order\":\"\",\"enable_on_phone\":\"1\",\"enable_on_tablet\":\"1\",\"enable_on_desktop\":\"1\",\"disable_mobile\":\"0\"}]},{\"is_open\":false,\"width\":\"25\",\"status\":1,\"sort_order\":\"\",\"modules\":[{\"is_open\":true,\"height\":\"100\",\"module_id\":\"116\",\"status\":1,\"sort_order\":\"\",\"enable_on_phone\":\"1\",\"enable_on_tablet\":\"1\",\"enable_on_desktop\":\"1\",\"disable_mobile\":\"1\"}]}],\"enable_on_phone\":\"0\",\"enable_on_tablet\":\"1\",\"enable_on_desktop\":\"1\",\"general_is_open\":false,\"top_bottom_is_open\":true,\"disable_mobile\":\"0\",\"close_others\":true}'),(237,'journal2_photo_gallery','{\"module_name\":\"Photo Gallery\",\"gallery_name\":{\"value\":{\"1\":\"\",\"2\":\"\"}},\"thumbs_limit\":\"9\",\"thumbs_width\":\"\",\"thumbs_height\":\"\",\"thumbs_type\":\"crop\",\"items_per_row\":{\"range\":\"1,10\",\"step\":\"1\",\"value\":{\"mobile\":{\"value\":\"3\",\"range\":\"1,10\",\"step\":\"1\"},\"mobile1\":{\"value\":\"3\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet\":{\"value\":\"5\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet1\":{\"value\":\"5\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet2\":{\"value\":\"4\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop\":{\"value\":\"7\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop1\":{\"value\":\"7\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop2\":{\"value\":\"5\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop\":{\"value\":\"7\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop1\":{\"value\":\"7\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop2\":{\"value\":\"5\",\"range\":\"1,10\",\"step\":\"1\"}}},\"carousel\":\"1\",\"carousel_arrows\":\"side\",\"carousel_buttons\":1,\"top_bottom_placement\":0,\"background\":{\"value\":{\"bgimage_attach\":\"scroll\",\"bgimage_repeat\":\"repeat\",\"bgimage_position\":\"center top\",\"bgcolor\":{\"value\":{\"color\":\"\"}},\"use_gradient\":0,\"bgimage_size\":\"auto\"}},\"autoplay\":\"1\",\"pause_on_hover\":\"1\",\"transition_speed\":\"400\",\"transition_delay\":\"3000\",\"touch_drag\":\"1\",\"fullwidth\":\"0\",\"margin_top\":\"20\",\"margin_bottom\":\"20\",\"image_border\":{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"%\",\"border\":{\"value\":\"\"},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":\"\"},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":{\"text\":\"\"}},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"}}},\"images\":[{\"is_open\":false,\"status\":\"1\",\"name\":{\"value\":{\"1\":\"Sample Caption\",\"2\":\"\",\"4\":\"\"}},\"image\":\"data\\/journal2\\/gallery\\/1.jpg\"},{\"is_open\":false,\"status\":\"1\",\"name\":{\"value\":{\"1\":\"Sample Caption\",\"2\":\"\",\"4\":\"\"}},\"image\":\"data\\/journal2\\/gallery\\/10.jpg\"},{\"is_open\":false,\"status\":\"1\",\"name\":{\"value\":{\"1\":\"Sample Caption\",\"2\":\"\",\"4\":\"\"}},\"image\":\"data\\/journal2\\/gallery\\/1sxajip0lis-demetrius-washington.jpg\"},{\"is_open\":false,\"status\":\"1\",\"name\":{\"value\":{\"1\":\"Sample Caption\",\"2\":\"\",\"4\":\"\"}},\"image\":\"data\\/journal2\\/gallery\\/4.jpg\"},{\"is_open\":false,\"status\":\"1\",\"name\":{\"value\":{\"1\":\"Sample Caption\",\"2\":\"\",\"4\":\"\"}},\"image\":\"data\\/journal2\\/gallery\\/5.jpg\"},{\"is_open\":false,\"status\":\"1\",\"name\":{\"value\":{\"1\":\"Sample Caption\",\"2\":\"\",\"4\":\"\"}},\"image\":\"data\\/journal2\\/gallery\\/6.jpg\"},{\"is_open\":false,\"status\":\"1\",\"name\":{\"value\":{\"1\":\"\",\"2\":\"\",\"4\":\"\"}},\"image\":\"data\\/journal2\\/gallery\\/7.jpg\"},{\"is_open\":false,\"status\":\"1\",\"name\":{\"value\":{\"1\":\"\",\"2\":\"\",\"4\":\"\"}},\"image\":\"data\\/journal2\\/gallery\\/9.jpg\"},{\"is_open\":false,\"status\":\"1\",\"name\":{\"value\":{\"1\":\"\",\"2\":\"\",\"4\":\"\"}},\"image\":\"data\\/journal2\\/gallery\\/3.jpg\"},{\"is_open\":false,\"status\":\"1\",\"name\":{\"value\":{\"1\":\"\",\"2\":\"\",\"4\":\"\"}},\"image\":\"data\\/journal2\\/gallery\\/e5imvsjz1da-anna-hamilton.jpg\"}],\"enable_on_phone\":\"1\",\"enable_on_tablet\":\"1\",\"enable_on_desktop\":\"1\",\"general_is_open\":false,\"top_bottom_is_open\":true,\"disable_mobile\":\"0\",\"carousel_bullets\":\"0\",\"close_others\":true}'),(119,'journal2_carousel','{\"module_name\":\"Featured\",\"module_type\":\"product\",\"items_per_row\":{\"range\":\"1,10\",\"step\":\"1\",\"value\":{\"mobile\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"mobile1\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet\":{\"value\":\"4\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet1\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet2\":{\"value\":\"1\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop\":{\"value\":\"5\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop1\":{\"value\":\"3\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop2\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop\":{\"value\":\"6\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop1\":{\"value\":\"4\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop2\":{\"value\":\"4\",\"range\":\"1,10\",\"step\":\"1\"}}},\"module_background\":{\"value\":{\"bgimage_attach\":\"scroll\",\"use_gradient\":0,\"bgimage_size\":\"auto\",\"bgimage_position\":\"center top\"}},\"module_padding\":\"0\",\"arrows\":\"top\",\"bullets\":1,\"top_bottom_placement\":0,\"background\":{\"value\":{\"bgimage_attach\":\"scroll\",\"use_gradient\":0,\"bgimage_size\":\"auto\",\"bgimage_position\":\"center top\"}},\"fullwidth\":\"0\",\"margin_top\":\"\",\"margin_bottom\":\"\",\"spacing\":\"\",\"show_title\":\"1\",\"brand_name\":\"1\",\"autoplay\":\"1\",\"pause_on_hover\":\"1\",\"transition_speed\":\"400\",\"transition_delay\":\"3000\",\"touch_drag\":\"0\",\"image_border\":{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"px\",\"border\":{\"value\":{\"text\":\"\"}},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":\"\"},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":{\"text\":\"\"}},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"},\"border_color\":{\"value\":{\"color\":\"\"}}}},\"image_bgcolor\":{\"value\":{\"color\":\"\"}},\"image_width\":\"\",\"image_height\":\"\",\"image_type\":\"fit\",\"product_sections\":[{\"is_open\":true,\"section_title\":{\"value\":{\"1\":\"Featured Products\",\"2\":\"\"}},\"section_type\":\"custom\",\"status\":\"1\",\"default_section\":\"0\",\"sort_order\":\"\",\"products\":[{\"data\":{\"id\":\"57\",\"name\":\"Beige Prom Dress\"}},{\"data\":{\"id\":\"74\",\"name\":\"Beige Ruffle Dress\"}},{\"data\":{\"id\":\"60\",\"name\":\"Bell Sleeve Dress\"}},{\"data\":{\"id\":\"179\",\"name\":\"Black &amp; White Straw Hat\"}}],\"category\":\"\",\"items_limit\":\"10\",\"module_type\":\"featured\",\"link\":{\"menu_type\":\"custom\",\"url\":\"\",\"menu_item\":[]},\"new_window\":\"0\",\"random_from\":\"all\",\"filter_category\":\"1\",\"todays_specials_only\":\"1\",\"countdown_visibility\":\"1\",\"featured_module_id\":\"1\"}],\"category_sections\":[],\"manufacturer_sections\":[],\"enable_on_phone\":\"1\",\"enable_on_tablet\":\"1\",\"enable_on_desktop\":\"1\",\"general_is_open\":true,\"top_bottom_is_open\":true,\"disable_mobile\":\"0\",\"disable_desktop\":\"0\"}'),(121,'journal2_static_banners','{\"module_name\":\"Left 2\",\"module_title\":{\"value\":{\"1\":\"\",\"2\":\"\"}},\"items_per_row\":{\"range\":\"1,10\",\"step\":\"1\",\"value\":{\"mobile\":{\"value\":\"1\",\"range\":\"1,10\",\"step\":\"1\"},\"mobile1\":{\"value\":\"1\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet\":{\"value\":\"1\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet1\":{\"value\":\"1\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet2\":{\"value\":\"1\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop\":{\"value\":\"1\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop1\":{\"value\":\"1\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop2\":{\"value\":\"1\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop\":{\"value\":\"1\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop1\":{\"value\":\"1\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop2\":{\"value\":\"1\",\"range\":\"1,10\",\"step\":\"1\"}}},\"background\":{\"value\":{\"bgimage_attach\":\"scroll\"}},\"bgcolor\":{\"value\":{\"color\":\"rgba(0, 0, 0, 0.4)\"}},\"icon\":{\"options\":{\"font_size\":\"30px\",\"color\":{\"value\":{\"color\":\"rgb(255, 255, 255)\"}}},\"icon_type\":\"icon\",\"icon\":{\"icon\":\"&#xe094;\",\"class\":\"circle-arrow-right2\"}},\"disable_mobile\":\"0\",\"fullwidth\":\"0\",\"margin_top\":\"\",\"margin_bottom\":\"\",\"image_border\":{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"px\",\"border\":{\"value\":\"\"},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":\"\"},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":\"\"},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"}}},\"sections\":[{\"is_open\":true,\"image\":\"data\\/journal2\\/misc\\/bl-2.jpg\",\"link\":{\"menu_type\":\"custom\",\"menu_item\":{\"url\":\"#\"}},\"link_new_window\":\"0\",\"status\":\"1\",\"sort_order\":\"\"}],\"general_is_open\":true,\"top_bottom_is_open\":true}'),(127,'journal2_cms_blocks','{\"module_name\":\"Map\",\"module_title\":{\"value\":{\"1\":\"\",\"2\":\"\"}},\"items_per_row\":{\"range\":\"1,10\",\"step\":\"1\",\"value\":{\"mobile\":{\"value\":\"1\",\"range\":\"1,10\",\"step\":\"1\"},\"mobile1\":{\"value\":\"1\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet\":{\"value\":\"1\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet1\":{\"value\":\"1\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet2\":{\"value\":\"1\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop\":{\"value\":\"1\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop1\":{\"value\":\"1\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop2\":{\"value\":\"1\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop\":{\"value\":\"1\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop1\":{\"value\":\"1\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop2\":{\"value\":\"1\",\"range\":\"1,10\",\"step\":\"1\"}}},\"disable_mobile\":\"1\",\"background\":{\"value\":{\"bgimage_attach\":\"scroll\"}},\"fullwidth\":\"0\",\"margin_top\":\"\",\"margin_bottom\":\"\",\"sections\":[{\"is_open\":true,\"section_title\":[],\"text\":{\"1\":\"<p><iframe frameborder=\\\"0\\\" height=\\\"200\\\" src=\\\"https:\\/\\/www.google.com\\/maps\\/embed?pb=!1m18!1m12!1m3!1d2624.745754504347!2d2.3350847999999917!3d48.863058399999964!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x47e66e25967267e3%3A0x72b2a53b90685549!2s174+Rue+de+Rivoli!5e0!3m2!1sen!2s!4v1400359491114\\\" style=\\\"border:0\\\" width=\\\"100%\\\"><\\/iframe><\\/p>\\n\"},\"text_align\":\"left\",\"icon_status\":\"0\",\"icon_position\":\"top\",\"icon\":{\"options\":{\"font_size\":\"16px\"}},\"icon_border\":{\"value\":{\"border_rounded\":\"px\"}},\"icon_bg_color\":\"\",\"icon_width\":\"\",\"icon_height\":\"\",\"status\":\"1\",\"sort_order\":\"\"}],\"general_is_open\":true,\"top_bottom_is_open\":true}'),(126,'journal2_headline_rotator','{\"module_name\":\"View Lookbook\",\"transition_delay\":\"4000\",\"headline_rotator_height\":\"\",\"pause_on_hover\":\"1\",\"text_font\":{\"value\":{\"font_type\":\"google\",\"font_size\":\"30px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"Playfair Display\",\"font_weight\":\"regular\",\"font_style\":\"italic\",\"letter_spacing\":\"\",\"text_transform\":\"none\",\"font_subset\":[\"latin\"]}},\"text_background\":{\"value\":{\"bgimage_attach\":\"scroll\",\"use_gradient\":0,\"bgimage_size\":\"auto\",\"bgimage_position\":\"center top\"}},\"text_align\":\"center\",\"bullets\":\"0\",\"bullets_position\":\"center\",\"top_bottom_placement\":0,\"background\":{\"value\":{\"bgimage_attach\":\"scroll\",\"use_gradient\":0,\"bgimage_size\":\"auto\",\"bgimage_position\":\"center top\"}},\"fullwidth\":\"0\",\"margin_top\":\"10\",\"margin_bottom\":\"\",\"sections\":[{\"is_open\":true,\"name\":\"\",\"text\":{\"value\":{\"1\":\"View our Lookbook\",\"2\":\"\"}},\"icon\":{\"options\":{\"font_size\":\"16px\"}},\"cta\":\"0\",\"cta_link\":{\"menu_type\":\"custom\",\"menu_item\":[]},\"cta_icon\":{\"options\":{\"font_size\":\"16px\"}},\"cta_icon_position\":\"right\",\"cta_new_window\":\"0\",\"cta_text\":{\"value\":{\"1\":\"\",\"2\":\"\",\"4\":\"\"}},\"cta_position\":\"center\",\"cta_offset_top\":\"\",\"cta_offset_left\":\"\",\"status\":\"1\",\"sort_order\":\"\"}],\"enable_on_phone\":\"1\",\"enable_on_tablet\":\"1\",\"enable_on_desktop\":\"1\",\"general_is_open\":true,\"top_bottom_is_open\":true,\"disable_mobile\":\"0\"}'),(133,'journal2_newsletter','{\"module_name\":\"Newsletter-footer\",\"module_title\":{\"value\":{\"1\":\"\",\"2\":\"\"}},\"module_text\":{\"value\":{\"1\":\"Stay up to date with news and promotions by signing up for our weekly newsletter.\",\"2\":\"\"}},\"module_text_font\":{\"value\":{\"font_type\":\"google\",\"font_size\":\"15px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"Playfair Display\",\"font_weight\":\"regular\",\"font_style\":\"normal\",\"letter_spacing\":\"\",\"text_transform\":\"none\",\"font_subset\":[\"latin\"],\"color\":{\"value\":{\"color\":\"rgb(56, 56, 56)\"}}}},\"module_background\":{\"value\":{\"bgimage_attach\":\"scroll\",\"bgimage_repeat\":\"repeat\",\"bgimage_position\":\"center top\",\"bgimage\":{\"value\":{\"image\":\"\"}},\"bgcolor\":{\"value\":{\"color\":\"\"}},\"use_gradient\":0,\"bgimage_size\":\"auto\"}},\"module_border\":{\"value\":{\"border_rounded\":\"px\"}},\"module_padding_top\":\"\",\"module_padding_right\":\"\",\"module_padding_bottom\":\"\",\"module_padding_left\":\"\",\"text_position\":\"top\",\"input_height\":\"39\",\"input_placeholder\":{\"value\":{\"1\":\"Email Address...\",\"2\":\"\"}},\"input_bg_color\":[],\"input_font\":{\"value\":{\"font_type\":\"none\",\"font_size\":\"\",\"font_size_mobile\":\"---\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"ABeeZee\",\"font_weight\":\"\",\"font_style\":\"\",\"font_subset\":[\"latin\"],\"letter_spacing\":\"\",\"text_transform\":\"\"}},\"input_border\":{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"px\",\"border\":{\"value\":{\"text\":\"1\"}},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":\"\"},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":{\"text\":\"\"}},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"},\"border_color\":{\"value\":{\"color\":\"rgb(204, 204, 204)\"}}}},\"button_text\":{\"value\":{\"1\":\"Go\",\"2\":\"\"}},\"button_font\":{\"value\":{\"font_type\":\"none\",\"font_size\":\"\",\"font_size_mobile\":\"---\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"ABeeZee\",\"font_weight\":\"\",\"font_style\":\"\",\"font_subset\":[\"latin\"],\"letter_spacing\":\"\",\"text_transform\":\"\"}},\"button_icon\":{\"options\":{\"font_size\":\"16px\",\"color\":{\"value\":{\"color\":\"rgb(255, 255, 255)\"}}},\"icon_type\":\"none\",\"icon\":{\"icon\":\"&#xe67b;\",\"class\":\"envelope\"}},\"button_border\":{\"value\":{\"border_rounded\":\"px\"}},\"button_offset_top\":\"4\",\"button_offset_left\":\"4\",\"button_shadow\":{\"value\":{\"inner_shadow\":\"0\"}},\"button_shadow_hover\":{\"value\":{\"inner_shadow\":\"0\"}},\"button_shadow_active\":{\"value\":{\"inner_shadow\":\"0\"}},\"button_bg_image\":{\"value\":{\"bgimage_attach\":\"scroll\",\"use_gradient\":0,\"bgimage_size\":\"auto\",\"bgimage_position\":\"center top\",\"bgcolor\":{\"value\":{\"color\":\"rgb(176, 158, 102)\"}}}},\"button_bg_image_hover\":{\"value\":{\"bgimage_attach\":\"scroll\",\"use_gradient\":0,\"bgimage_size\":\"auto\",\"bgimage_position\":\"center top\",\"bgcolor\":{\"value\":{\"color\":\"rgb(56, 56, 56)\"}}}},\"background\":{\"value\":{\"bgimage_attach\":\"scroll\",\"use_gradient\":0,\"bgimage_size\":\"auto\",\"bgimage_position\":\"center top\"}},\"fullwidth\":\"0\",\"margin_top\":\"\",\"margin_bottom\":\"\",\"enable_on_phone\":\"1\",\"enable_on_tablet\":\"1\",\"enable_on_desktop\":\"1\",\"general_is_open\":true,\"input_shadow\":{\"value\":{\"inner_shadow\":\"0\"}},\"top_bottom_is_open\":true,\"module_padding\":\"\",\"disable_mobile\":\"0\"}'),(163,'journal2_side_blocks','{\"module_name\":\"G+\",\"module_type\":\"button\",\"icon\":{\"options\":{\"font_size\":\"24px\",\"color\":{\"value\":{\"color\":\"rgb(255, 255, 255)\"}}},\"icon_type\":\"icon\",\"icon\":{\"icon\":\"&#xe635;\",\"class\":\"google-plus\"}},\"icon_bg_color\":\"rgb(218, 39, 19)\",\"icon_border\":{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"%\",\"border\":{\"value\":\"\"},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":\"\"},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":{\"text\":\"50\"}},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"}}},\"icon_bg_hover_color\":\"rgb(155, 89, 182)\",\"content_bg_color\":\"rgb(255, 255, 255)\",\"alignment\":\"right\",\"position\":\"fixed\",\"icon_width\":\"50\",\"icon_height\":\"50\",\"offset_top\":\"435\",\"offset_side\":\"15\",\"content_width\":\"\",\"content_padding\":\"\",\"content\":[],\"link\":{\"menu_type\":\"custom\",\"url\":\"\",\"menu_item\":{\"url\":\"https:\\/\\/plus.google.com\"}},\"new_window\":\"1\"}'),(170,'journal2_product_tabs','{\"module_name\":\"Image 2\",\"name\":{\"value\":{\"1\":\"Another Block\",\"2\":\"\"}},\"icon_status\":\"0\",\"icon\":{\"options\":{\"font_size\":\"16px\"}},\"icon_border\":{\"value\":{\"border_rounded\":\"px\"}},\"icon_bg_color\":\"\",\"icon_width\":\"\",\"icon_height\":\"\",\"content\":{\"1\":\"<p>Another custom block. There&#39;s no limit to how many blocks you can add. There are 4 positions available within the product page alone.<\\/p>\\n\"},\"global\":1,\"products\":[],\"status\":\"0\",\"sort_order\":\"\",\"position\":\"image\",\"option_position\":\"top\"}'),(175,'journal2_side_products','{\"module_name\":\"Specials\",\"section_title\":{\"value\":{\"1\":\"On Sale\",\"2\":\"\"}},\"section_type\":\"module\",\"products\":[],\"category\":\"\",\"items_limit\":\"5\",\"module_type\":\"specials\",\"filter_category\":\"0\",\"random_from\":\"all\"}'),(179,'journal2_side_blocks','{\"module_name\":\"CMS Block\",\"module_type\":\"block\",\"icon\":{\"options\":{\"font_size\":\"28px\",\"color\":{\"value\":{\"color\":\"rgb(255, 255, 255)\"}}},\"icon_type\":\"icon\",\"icon\":{\"icon\":\"&#xe62a;\",\"class\":\"question-sign\"}},\"icon_bg_color\":\"rgb(123, 205, 237)\",\"icon_border\":{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"px\",\"border\":{\"value\":\"\"},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":\"\"},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":\"\"},\"border_radius_top\":{\"value\":{\"text\":\"\"}},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":{\"text\":\"\"}},\"border_radius_bottom\":{\"value\":{\"text\":\"\"}}}},\"icon_bg_hover_color\":\"\",\"content_bg_color\":\"rgb(244, 244, 244)\",\"alignment\":\"right\",\"position\":\"fixed\",\"icon_width\":\"50\",\"icon_height\":\"50\",\"offset_top\":\"460\",\"offset_side\":\"\",\"content_width\":\"275\",\"content_padding\":\"15\",\"content\":{\"1\":\"<h3>Multi Purpose Side Blocks<\\/h3>\\n\\n<p><img alt=\\\"\\\" src=\\\"http:\\/\\/127.0.0.1:8080\\/journal2\\/image\\/data\\/journal2\\/misc\\/button-up.jpg\\\" style=\\\"width: 290px; height: 80px; margin-bottom: 10px;\\\" \\/>Put anything in these HTML blocks. Social widgets, images, videos, whatever you want. Create <strong>unlimited blocks<\\/strong>&nbsp;and position them globally on all pages or selectively just on the pages you want.<\\/p>\\n\"},\"link\":{\"menu_type\":\"custom\",\"url\":\"\"},\"new_window\":\"0\"}'),(223,'journal2_carousel','{\"module_name\":\"Also Bought\",\"module_type\":\"product\",\"items_per_row\":{\"range\":\"1,10\",\"step\":\"1\",\"value\":{\"mobile\":{\"value\":\"1\",\"range\":\"1,10\",\"step\":\"1\"},\"mobile1\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet\":{\"value\":\"3\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet1\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet2\":{\"value\":\"1\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop\":{\"value\":\"4\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop1\":{\"value\":\"3\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop2\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop\":{\"value\":\"5\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop1\":{\"value\":\"4\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop2\":{\"value\":\"4\",\"range\":\"1,10\",\"step\":\"1\"}}},\"arrows\":\"top\",\"bullets\":1,\"top_bottom_placement\":0,\"background\":{\"value\":{\"bgimage_attach\":\"scroll\"}},\"fullwidth\":\"0\",\"margin_top\":\"20\",\"margin_bottom\":\"20\",\"show_title\":\"1\",\"brand_name\":\"1\",\"autoplay\":\"0\",\"pause_on_hover\":\"1\",\"transition_speed\":\"400\",\"transition_delay\":\"3000\",\"touch_drag\":\"1\",\"disable_mobile\":\"0\",\"image_border\":{\"value\":{\"border_rounded\":\"px\"}},\"image_bgcolor\":\"\",\"image_width\":\"\",\"image_height\":\"\",\"image_type\":\"fit\",\"product_sections\":[{\"is_open\":true,\"section_title\":{\"value\":{\"1\":\"People Also Bought\",\"2\":\"\"}},\"section_type\":\"module\",\"status\":\"1\",\"default_section\":\"0\",\"sort_order\":\"\",\"products\":[],\"category\":\"\",\"items_limit\":\"6\",\"module_type\":\"people-also-bought\",\"filter_category\":\"0\",\"link\":{\"menu_type\":\"custom\",\"url\":\"\"},\"new_window\":\"0\",\"random_from\":\"all\"}],\"category_sections\":[],\"manufacturer_sections\":[],\"general_is_open\":true,\"top_bottom_is_open\":true}'),(195,'journal2_side_blocks','{\"module_name\":\"FB Block\",\"module_type\":\"block\",\"icon\":{\"options\":{\"font_size\":\"24px\",\"color\":{\"value\":{\"color\":\"rgb(255, 255, 255)\"}}},\"icon_type\":\"icon\",\"icon\":{\"icon\":\"&#xe683;\",\"class\":\"facebook3\"}},\"icon_bg_color\":\"rgb(66, 139, 202)\",\"icon_border\":{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"px\",\"border\":{\"value\":\"\"},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":\"\"},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":\"\"},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"}}},\"icon_bg_hover_color\":\"\",\"content_bg_color\":\"rgb(255, 255, 255)\",\"alignment\":\"right\",\"position\":\"fixed\",\"icon_width\":\"50\",\"icon_height\":\"50\",\"offset_top\":\"360\",\"offset_side\":\"\",\"content_width\":\"300\",\"content_padding\":\"\",\"content\":[null,\"<p><iframe allowtransparency=\\\"true\\\" frameborder=\\\"0\\\" scrolling=\\\"no\\\" src=\\\"\\/\\/www.facebook.com\\/plugins\\/likebox.php?href=https%3A%2F%2Fwww.facebook.com%2FFacebookDevelopers&amp;width=300&amp;height=258&amp;colorscheme=light&amp;show_faces=true&amp;header=false&amp;stream=false&amp;show_border=false&amp;appId=117935585037426\\\" style=\\\"border:none; overflow:hidden; width:300px; height:230px;\\\"><\\/iframe><\\/p>\\n\"],\"link\":{\"menu_type\":\"custom\",\"url\":\"\"},\"new_window\":\"0\"}'),(196,'journal2_side_blocks','{\"module_name\":\"Tweets Block\",\"module_type\":\"block\",\"icon\":{\"options\":{\"font_size\":\"24px\",\"color\":{\"value\":{\"color\":\"rgb(255, 255, 255)\"}}},\"icon_type\":\"icon\",\"icon\":{\"icon\":\"&#xe682;\",\"class\":\"twitter3\"}},\"icon_bg_color\":\"rgb(43, 176, 227)\",\"icon_border\":{\"value\":{\"border_rounded\":\"px\"}},\"icon_bg_hover_color\":\"\",\"content_bg_color\":\"\",\"alignment\":\"right\",\"position\":\"fixed\",\"icon_width\":\"50\",\"icon_height\":\"50\",\"offset_top\":\"410\",\"offset_side\":\"\",\"content_width\":\"300\",\"content_padding\":\"\",\"content\":[null,\"<p><a class=\\\"twitter-timeline\\\" data-widget-id=\\\"342636600209068032\\\" href=\\\"https:\\/\\/twitter.com\\/envato\\\">Tweets by @envato<\\/a> <script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=\\/^http:\\/.test(d.location)?\'http\':\'https\';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+\\\":\\/\\/platform.twitter.com\\/widgets.js\\\";fjs.parentNode.insertBefore(js,fjs);}}(document,\\\"script\\\",\\\"twitter-wjs\\\");<\\/script><\\/p>\\n\"],\"link\":{\"menu_type\":\"custom\",\"url\":\"\"},\"new_window\":\"0\"}'),(203,'journal2_side_products','{\"module_name\":\"Recently Viewed\",\"section_title\":{\"value\":{\"1\":\"Recently Viewed\",\"2\":\"\"}},\"section_type\":\"module\",\"products\":[],\"category\":\"\",\"items_limit\":5,\"module_type\":\"recently-viewed\",\"filter_category\":\"0\",\"random_from\":\"all\",\"featured_module_id\":\"\"}'),(217,'journal2_cms_blocks','{\"module_name\":\"Text Block\",\"module_title\":{\"value\":{\"1\":\"CMS Block\",\"2\":\"\"}},\"items_per_row\":{\"range\":\"1,10\",\"step\":\"1\",\"value\":{\"mobile\":{\"value\":\"1\",\"range\":\"1,10\",\"step\":\"1\"},\"mobile1\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet1\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet2\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop\":{\"value\":\"4\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop1\":{\"value\":\"4\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop2\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop\":{\"value\":\"4\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop1\":{\"value\":\"4\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop2\":{\"value\":\"4\",\"range\":\"1,10\",\"step\":\"1\"}}},\"disable_mobile\":\"0\",\"background\":{\"value\":{\"bgimage_attach\":\"scroll\"}},\"fullwidth\":\"0\",\"margin_top\":\"\",\"margin_bottom\":\"\",\"sections\":[{\"is_open\":true,\"section_title\":[],\"text\":{\"1\":\"<p>You can create unlimited blocks and put them on both side columns or the main center content in any position on any page.<\\/p>\\n\"},\"text_align\":\"left\",\"icon_status\":\"0\",\"icon_position\":\"top\",\"icon\":{\"options\":{\"font_size\":\"16px\"}},\"icon_border\":{\"value\":{\"border_rounded\":\"px\"}},\"icon_bg_color\":\"\",\"icon_width\":\"\",\"icon_height\":\"\",\"status\":\"1\",\"sort_order\":\"\"}],\"general_is_open\":true,\"top_bottom_is_open\":true}'),(228,'journal2_blog_comments','{\"general_is_open\":true,\"close_others\":false,\"module_name\":\"New Module\",\"limit\":5,\"title\":{\"value\":{\"1\":\"Latest Comments\"}}}'),(229,'journal2_blog_search','{\"general_is_open\":true,\"close_others\":false,\"module_name\":\"New Module\",\"title\":{\"value\":{\"1\":\"Blog Search\"}},\"placeholder\":{\"value\":{\"1\":\"Search in Articles\"}}}'),(230,'journal2_blog_tags','{\"general_is_open\":true,\"close_others\":false,\"module_name\":\"New Module\",\"limit\":\"25\",\"title\":{\"value\":{\"1\":\"Article Tags\"}}}'),(231,'journal2_blog_categories','{\"general_is_open\":true,\"close_others\":false,\"module_name\":\"New Module\",\"title\":{\"value\":{\"1\":\"Blog Categories\"}}}'),(232,'journal2_popup','{\"module_name\":\"Blog Style\",\"close_button\":\"1\",\"padding\":\"\",\"title\":{\"value\":{\"1\":\"Did you know you can open custom popups from any link?\"}},\"title_font\":{\"value\":{\"font_type\":\"google\",\"font_size\":\"17px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"Playfair Display\",\"font_weight\":\"700\",\"font_style\":\"normal\",\"letter_spacing\":\"\",\"text_transform\":\"uppercase\",\"font_subset\":[\"latin\"]}},\"title_bg_color\":\"\",\"title_height\":\"50\",\"newsletter\":\"0\",\"newsletter_bg_color\":\"\",\"newsletter_height\":80,\"newsletter_id\":\"\",\"footer_height\":60,\"footer_bg_color\":\"\",\"type\":\"text\",\"text\":[null,\"<p><img alt=\\\"\\\" height=\\\"400\\\" src=\\\"http:\\/\\/digital-cdn.net\\/1\\/image\\/data\\/journal2\\/blog\\/blog-style-popup.jpg\\\" width=\\\"600\\\" \\/><\\/p>\\n\"],\"text_font\":[],\"text_height\":\"\",\"image\":\"no_image.jpg\",\"content_overflow\":\"0\",\"disable_mobile\":\"1\",\"status\":\"1\",\"width\":600,\"height\":\"380\",\"background\":{\"value\":{\"bgimage_attach\":\"scroll\"}},\"button_1\":\"0\",\"button_1_link\":{\"menu_type\":\"custom\"},\"button_1_icon\":{\"options\":{\"font_size\":\"16px\"}},\"button_1_new_window\":\"0\",\"button_1_text\":{\"value\":{\"1\":\"\"}},\"button_1_font\":{\"value\":{\"font_type\":\"none\",\"font_size\":\"13px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"\",\"font_weight\":\"normal\",\"font_style\":\"normal\",\"letter_spacing\":\"\",\"text_transform\":\"none\"}},\"button_1_bgcolor\":\"\",\"button_1_hover_bgcolor\":\"\",\"button_2\":\"0\",\"button_2_link\":{\"menu_type\":\"custom\"},\"button_2_icon\":{\"options\":{\"font_size\":\"16px\"}},\"button_2_new_window\":\"0\",\"button_2_text\":{\"value\":{\"1\":\"\"}},\"button_2_font\":{\"value\":{\"font_type\":\"none\",\"font_size\":\"13px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"\",\"font_weight\":\"normal\",\"font_style\":\"normal\",\"letter_spacing\":\"\",\"text_transform\":\"none\"}},\"button_2_bgcolor\":\"\",\"button_2_hover_bgcolor\":\"\",\"button_submit_icon\":{\"options\":{\"font_size\":\"16px\"}},\"button_submit_text\":{\"value\":{\"1\":\"Send Enquiry\"}},\"button_submit_font\":{\"value\":{\"font_type\":\"none\",\"font_size\":\"13px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"\",\"font_weight\":\"normal\",\"font_style\":\"normal\",\"letter_spacing\":\"\",\"text_transform\":\"none\"}},\"button_submit_bgcolor\":\"\",\"button_submit_hover_bgcolor\":\"\",\"button_submit_position\":\"center\",\"do_not_show_again\":\"1\",\"do_not_show_again_text\":{\"value\":{\"1\":\"\"}},\"do_not_show_again_font\":{\"value\":{\"font_type\":\"none\",\"font_size\":\"13px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"\",\"font_weight\":\"normal\",\"font_style\":\"normal\",\"letter_spacing\":\"\",\"text_transform\":\"none\"}},\"do_not_show_again_cookie\":\"cn0ybpdgqfr\",\"sort_order\":\"\",\"general_is_open\":true,\"header_is_open\":true,\"newsletter_is_open\":true,\"footer_is_open\":true,\"button_submit_icon_position\":\"left\",\"button_1_icon_position\":\"left\",\"button_2_icon_position\":\"left\",\"content_is_open\":true,\"top_bottom_is_open\":true}'),(233,'journal2_popup','{\"module_name\":\"Contact Form\",\"close_button\":\"1\",\"padding\":\"\",\"title\":{\"value\":{\"1\":\"Send Enquiry\"}},\"title_font\":{\"value\":{\"font_type\":\"none\",\"font_size\":\"13px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"\",\"font_weight\":\"normal\",\"font_style\":\"normal\",\"letter_spacing\":\"\",\"text_transform\":\"none\",\"color\":{\"value\":{\"color\":\"rgb(255, 255, 255)\"}}}},\"title_bg_color\":{\"value\":{\"color\":\"rgb(176, 158, 102)\"}},\"title_height\":\"45\",\"newsletter\":\"0\",\"newsletter_bg_color\":\"\",\"newsletter_height\":80,\"newsletter_id\":\"\",\"footer_height\":60,\"footer_bg_color\":\"\",\"type\":\"contact\",\"text\":[],\"text_font\":[],\"text_height\":\"\",\"image\":\"no_image.jpg\",\"content_overflow\":\"1\",\"disable_mobile\":\"1\",\"status\":\"1\",\"width\":600,\"height\":300,\"background\":{\"value\":{\"bgimage_attach\":\"scroll\"}},\"button_1\":\"0\",\"button_1_link\":{\"menu_type\":\"custom\"},\"button_1_icon\":{\"options\":{\"font_size\":\"16px\"}},\"button_1_new_window\":\"0\",\"button_1_text\":{\"value\":{\"1\":\"\"}},\"button_1_font\":{\"value\":{\"font_type\":\"none\",\"font_size\":\"13px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"\",\"font_weight\":\"normal\",\"font_style\":\"normal\",\"letter_spacing\":\"\",\"text_transform\":\"none\"}},\"button_1_bgcolor\":\"\",\"button_1_hover_bgcolor\":\"\",\"button_2\":\"0\",\"button_2_link\":{\"menu_type\":\"custom\"},\"button_2_icon\":{\"options\":{\"font_size\":\"16px\"}},\"button_2_new_window\":\"0\",\"button_2_text\":{\"value\":{\"1\":\"\"}},\"button_2_font\":{\"value\":{\"font_type\":\"none\",\"font_size\":\"13px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"\",\"font_weight\":\"normal\",\"font_style\":\"normal\",\"letter_spacing\":\"\",\"text_transform\":\"none\"}},\"button_2_bgcolor\":\"\",\"button_2_hover_bgcolor\":\"\",\"button_submit_icon\":{\"options\":{\"font_size\":\"16px\"}},\"button_submit_text\":{\"value\":{\"1\":\"Send\"}},\"button_submit_font\":{\"value\":{\"font_type\":\"google\",\"font_size\":\"15px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"Playfair Display\",\"font_weight\":\"700\",\"font_style\":\"normal\",\"letter_spacing\":\"\",\"text_transform\":\"none\",\"font_subset\":[\"latin\"]}},\"button_submit_bgcolor\":\"\",\"button_submit_hover_bgcolor\":\"\",\"button_submit_position\":\"left\",\"do_not_show_again\":\"1\",\"do_not_show_again_text\":{\"value\":{\"1\":\"\"}},\"do_not_show_again_font\":{\"value\":{\"font_type\":\"none\",\"font_size\":\"13px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"\",\"font_weight\":\"normal\",\"font_style\":\"normal\",\"letter_spacing\":\"\",\"text_transform\":\"none\"}},\"do_not_show_again_cookie\":\"wjfkpsexw29\",\"sort_order\":\"\",\"general_is_open\":true,\"header_is_open\":true,\"newsletter_is_open\":true,\"footer_is_open\":true,\"button_submit_icon_position\":\"left\",\"button_1_icon_position\":\"left\",\"button_2_icon_position\":\"left\",\"content_is_open\":true,\"top_bottom_is_open\":true}'),(234,'journal2_product_tabs','{\"module_name\":\"Enquiry\",\"name\":{\"value\":{\"1\":\"Send Enquiry\"}},\"icon_status\":\"0\",\"icon\":{\"options\":{\"font_size\":\"16px\"}},\"icon_border\":{\"value\":{\"border_rounded\":\"px\"}},\"icon_bg_color\":\"\",\"icon_width\":\"\",\"icon_height\":\"\",\"content_type\":\"enquiry\",\"out_of_stock_only\":\"0\",\"content\":[],\"popup\":\"233\",\"global\":\"0\",\"products\":[{\"data\":{\"id\":\"160\",\"name\":\"Diamond Earrings\"}}],\"categories\":[],\"manufacturers\":[],\"store_id\":-1,\"status\":1,\"sort_order\":\"\",\"position\":\"tab\",\"option_position\":\"top\"}'),(235,'journal2_popup','{\"module_name\":\"Site Feedback\",\"close_button\":\"1\",\"padding\":\"\",\"title\":{\"value\":{\"1\":\"Send us your Feedback\"}},\"title_font\":{\"value\":{\"font_type\":\"none\",\"font_size\":\"13px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"ABeeZee\",\"font_weight\":\"regular\",\"font_style\":\"normal\",\"letter_spacing\":\"\",\"text_transform\":\"none\",\"font_subset\":[],\"color\":{\"value\":{\"color\":\"rgb(255, 255, 255)\"}}}},\"title_bg_color\":{\"value\":{\"color\":\"rgb(176, 158, 102)\"}},\"title_height\":\"45\",\"newsletter\":\"0\",\"newsletter_bg_color\":\"\",\"newsletter_height\":80,\"newsletter_id\":\"\",\"footer_height\":\"65\",\"footer_bg_color\":{\"value\":{\"color\":\"rgb(238, 238, 238)\"}},\"type\":\"contact\",\"text\":[],\"text_font\":[],\"text_height\":\"\",\"image\":\"no_image.jpg\",\"content_overflow\":\"0\",\"disable_mobile\":\"0\",\"status\":\"1\",\"width\":600,\"height\":300,\"background\":{\"value\":{\"bgimage_attach\":\"scroll\"}},\"button_1\":\"0\",\"button_1_link\":{\"menu_type\":\"custom\"},\"button_1_icon\":{\"options\":{\"font_size\":\"16px\"}},\"button_1_new_window\":\"0\",\"button_1_text\":{\"value\":{\"1\":\"\"}},\"button_1_font\":{\"value\":{\"font_type\":\"none\",\"font_size\":\"13px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"\",\"font_weight\":\"normal\",\"font_style\":\"normal\",\"letter_spacing\":\"\",\"text_transform\":\"none\"}},\"button_1_bgcolor\":\"\",\"button_1_hover_bgcolor\":\"\",\"button_2\":\"0\",\"button_2_link\":{\"menu_type\":\"custom\"},\"button_2_icon\":{\"options\":{\"font_size\":\"16px\"}},\"button_2_new_window\":\"0\",\"button_2_text\":{\"value\":{\"1\":\"\"}},\"button_2_font\":{\"value\":{\"font_type\":\"none\",\"font_size\":\"13px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"\",\"font_weight\":\"normal\",\"font_style\":\"normal\",\"letter_spacing\":\"\",\"text_transform\":\"none\"}},\"button_2_bgcolor\":\"\",\"button_2_hover_bgcolor\":\"\",\"button_submit_icon\":{\"options\":{\"font_size\":\"16px\"}},\"button_submit_text\":{\"value\":{\"1\":\"Send Feedback\"}},\"button_submit_font\":{\"value\":{\"font_type\":\"none\",\"font_size\":\"13px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"\",\"font_weight\":\"normal\",\"font_style\":\"normal\",\"letter_spacing\":\"\",\"text_transform\":\"none\"}},\"button_submit_bgcolor\":\"\",\"button_submit_hover_bgcolor\":\"\",\"button_submit_position\":\"left\",\"do_not_show_again\":\"1\",\"do_not_show_again_text\":{\"value\":{\"1\":\"\"}},\"do_not_show_again_font\":{\"value\":{\"font_type\":\"none\",\"font_size\":\"13px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"\",\"font_weight\":\"normal\",\"font_style\":\"normal\",\"letter_spacing\":\"\",\"text_transform\":\"none\"}},\"do_not_show_again_cookie\":\"3zztojkbj4i\",\"sort_order\":\"\",\"general_is_open\":true,\"header_is_open\":true,\"newsletter_is_open\":true,\"footer_is_open\":true,\"button_submit_icon_position\":\"left\",\"button_1_icon_position\":\"left\",\"button_2_icon_position\":\"left\",\"content_is_open\":true,\"top_bottom_is_open\":true}'),(238,'journal2_side_products','{\"module_name\":\"Also Bought\",\"section_title\":{\"value\":{\"1\":\"People Also Bought\",\"4\":\"\"}},\"section_type\":\"module\",\"products\":[],\"category\":\"\",\"items_limit\":5,\"module_type\":\"people-also-bought\",\"filter_category\":\"0\",\"featured_module_id\":\"\"}'),(239,'journal2_carousel','{\"module_name\":\"New Module\",\"module_type\":\"product\",\"items_per_row\":{\"range\":\"1,10\",\"step\":\"1\",\"value\":{\"mobile\":{\"value\":\"1\",\"range\":\"1,10\",\"step\":\"1\"},\"mobile1\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet\":{\"value\":\"3\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet1\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet2\":{\"value\":\"1\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop\":{\"value\":\"4\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop1\":{\"value\":\"3\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop2\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop\":{\"value\":\"5\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop1\":{\"value\":\"4\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop2\":{\"value\":\"4\",\"range\":\"1,10\",\"step\":\"1\"}}},\"module_background\":{\"value\":{\"bgimage_attach\":\"scroll\",\"use_gradient\":0,\"bgimage_size\":\"auto\",\"bgimage_position\":\"center top\"}},\"module_padding\":\"0\",\"arrows\":\"top\",\"bullets\":1,\"top_bottom_placement\":0,\"background\":{\"value\":{\"bgimage_attach\":\"scroll\",\"use_gradient\":0,\"bgimage_size\":\"auto\",\"bgimage_position\":\"center top\"}},\"fullwidth\":\"0\",\"margin_top\":\"\",\"margin_bottom\":\"\",\"spacing\":\"\",\"show_title\":\"1\",\"brand_name\":\"1\",\"autoplay\":\"0\",\"pause_on_hover\":\"1\",\"transition_speed\":\"400\",\"transition_delay\":\"3000\",\"touch_drag\":\"0\",\"image_border\":{\"value\":{\"border_rounded\":\"px\"}},\"image_bgcolor\":\"\",\"image_width\":\"\",\"image_height\":\"\",\"image_type\":\"fit\",\"product_sections\":[{\"is_open\":true,\"section_title\":{\"value\":{\"1\":\"Recently Viewed\"}},\"section_type\":\"module\",\"status\":\"1\",\"default_section\":\"0\",\"sort_order\":\"\",\"products\":[],\"category\":\"\",\"items_limit\":5,\"module_type\":\"recently-viewed\",\"todays_specials_only\":\"0\",\"countdown_visibility\":\"0\",\"filter_category\":\"0\",\"link\":{\"menu_type\":\"custom\",\"url\":\"\",\"menu_item\":[]},\"new_window\":\"0\"}],\"category_sections\":[],\"manufacturer_sections\":[],\"enable_on_phone\":\"1\",\"enable_on_tablet\":\"1\",\"enable_on_desktop\":\"1\"}');
/*!40000 ALTER TABLE `lk_journal2_modules` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_journal2_settings`
--

DROP TABLE IF EXISTS `lk_journal2_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_journal2_settings` (
  `theme_id` int(11) NOT NULL DEFAULT 0,
  `key` varchar(64) NOT NULL,
  `category` varchar(64) NOT NULL,
  `value` mediumtext NOT NULL,
  `serialized` tinyint(1) NOT NULL,
  PRIMARY KEY (`key`,`theme_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_journal2_settings`
--

LOCK TABLES `lk_journal2_settings` WRITE;
/*!40000 ALTER TABLE `lk_journal2_settings` DISABLE KEYS */;
INSERT INTO `lk_journal2_settings` VALUES (4,'header_bg_default','header','{\"value\":{\"bgimage_attach\":\"scroll\",\"use_gradient\":0,\"bgimage_size\":\"auto\",\"bgimage_position\":\"center top\"}}',1),(4,'cart_icon_hover','header','{\"value\":{\"color\":\"rgb(42, 43, 46)\"}}',1),(4,'header_cart_checkout_button_bg_color_image','header','{\"value\":{\"bgimage_attach\":\"scroll\",\"use_gradient\":0,\"bgimage_size\":\"auto\",\"bgimage_position\":\"center top\"}}',1),(4,'header_cart_checkout_button_bg_color_image_hover','header','{\"value\":{\"bgimage_attach\":\"scroll\",\"use_gradient\":0,\"bgimage_size\":\"auto\",\"bgimage_position\":\"center top\"}}',1),(4,'center_logo_bg_image','header','{\"value\":{\"bgimage_attach\":\"scroll\",\"use_gradient\":0,\"bgimage_size\":\"auto\",\"bgimage_position\":\"center top\"}}',1),(4,'top_bar_shadow','header','{\"value\":{\"inner_shadow\":\"0\"}}',1),(4,'header_bg_pages','header','{\"value\":{\"bgimage_attach\":\"scroll\",\"use_gradient\":0,\"bgimage_size\":\"auto\",\"bgimage_position\":\"center top\"}}',1),(4,'logo_bg_image','header','{\"value\":{\"bgimage_attach\":\"scroll\",\"use_gradient\":0,\"bgimage_size\":\"auto\",\"bgimage_position\":\"center top\"}}',1),(4,'cart_button_bg_color_image','header','{\"value\":{\"bgimage_attach\":\"scroll\",\"use_gradient\":0,\"bgimage_size\":\"auto\",\"bgimage_position\":\"center top\"}}',1),(4,'sticky_header_box_shadow','header','{\"value\":{\"inner_shadow\":\"0\"}}',1),(4,'cart_header_shadow_custom','header','{\"value\":{\"inner_shadow\":\"0\"}}',1),(4,'cart_content_shadow_custom','header','{\"value\":{\"inner_shadow\":\"0\"}}',1),(4,'header_box_shadow','header','{\"value\":{\"inner_shadow\":\"0\",\"x_offset\":{\"value\":\"\"},\"y_offset\":{\"value\":{\"text\":\"1\"}},\"blur\":{\"value\":{\"text\":\"12\"}},\"spread\":{\"value\":\"\"},\"color\":{\"value\":{\"color\":\"rgba(0, 0, 0, 0.1)\"}}}}',1),(4,'header_bg_sticky','header','{\"value\":{\"bgimage_attach\":\"scroll\",\"use_gradient\":0,\"bgimage_size\":\"auto\",\"bgimage_position\":\"center top\"}}',1),(4,'menu_bg_image_sticky','header','{\"value\":{\"bgimage_attach\":\"scroll\",\"use_gradient\":0,\"bgimage_size\":\"auto\",\"bgimage_position\":\"center top\"}}',1),(4,'header_cart_button_shadow','header','{\"value\":{\"inner_shadow\":\"0\"}}',1),(4,'cart_button_border','header','{\"value\":{\"border_rounded\":\"px\"}}',1),(4,'header_cart_checkout_button_border','header','{\"value\":{\"border_rounded\":\"px\"}}',1),(4,'cart_button_bg_color_image_hover','header','{\"value\":{\"bgimage_attach\":\"scroll\",\"use_gradient\":0,\"bgimage_size\":\"auto\",\"bgimage_position\":\"center top\"}}',1),(4,'search_shadow_custom','header','{\"value\":{\"inner_shadow\":\"0\"}}',1),(4,'header_cart_button_shadow_hover','header','{\"value\":{\"inner_shadow\":\"0\"}}',1),(4,'currency_display','header','symbol',0),(4,'search_autosuggest_shadow_custom','header','{\"value\":{\"inner_shadow\":\"0\"}}',1),(4,'top_bar_shadow_type','header','none',0),(4,'header_cart_button_shadow_active','header','{\"value\":{\"inner_shadow\":\"0\"}}',1),(4,'lang_bg','header','{\"value\":{\"color\":\"\"}}',1),(4,'curr_font','header','{\"value\":{\"font_type\":\"none\",\"font_size\":\"---\",\"font_size_mobile\":\"---\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"ABeeZee\",\"font_weight\":\"\",\"font_style\":\"\",\"font_subset\":[\"latin\"],\"letter_spacing\":\"\",\"text_transform\":\"\",\"v\":\"2\",\"color\":{\"value\":{\"color\":\"rgb(68, 67, 73)\"}}}}',1),(4,'header_box_shadow_type','header','custom',0),(4,'retina_logo','header','{\"value\":{\"image\":\"catalog\\/journal2\\/logo4_2x.png\"}}',1),(4,'sticky_header_style','header','menu',0),(4,'autosuggest_price_status','header','block',0),(4,'autosuggest_product_image_type','header','fit',0),(4,'search_autocomplete_include_description','header','1',0),(4,'autosuggest_view_more_text','header','{\"value\":{\"1\":\"View More\"}}',1),(4,'autosuggest_limit','header','{\"value\":{\"text\":\"5\"}}',1),(4,'autosuggest_product_image','header','block',0),(4,'top_bar_divider_type','header','solid',0),(4,'drop_lang_divider_type','header','solid',0),(4,'center_top_menu_border','header','{\"value\":{\"color\":\"\"}}',1),(4,'lang_shadow','header','none',0),(4,'header_height','header','normal',0),(4,'cart_button_bg_color','header','{\"value\":{\"color\":\"rgb(176, 158, 102)\"}}',1),(4,'cart_button_bg_hover_color','header','{\"value\":{\"color\":\"rgb(169, 184, 192)\"}}',1),(4,'cart_button_color_hover','header','{\"value\":{\"color\":\"\"}}',1),(4,'cart_button_color','header','{\"value\":{\"color\":\"\"}}',1),(4,'search_bg_center','header','{\"value\":{\"color\":\"\"}}',1),(4,'search_bg_mobile','header','{\"value\":{\"color\":\"rgb(255, 255, 255)\"}}',1),(4,'search_bg_hover','header','{\"value\":{\"color\":\"\"}}',1),(4,'cart_heading_bg_hover','header','{\"value\":{\"color\":\"\"}}',1),(4,'cart_heading_bg_mobile','header','{\"value\":{\"color\":\"rgb(250, 250, 250)\"}}',1),(4,'cart_heading_bg_center','header','{\"value\":{\"color\":\"\"}}',1),(4,'boxed_bottom_spacing','header','{\"value\":{\"text\":\"\"}}',1),(4,'boxed_top_spacing','header','{\"value\":{\"text\":\"\"}}',1),(4,'search_placeholder_text','header','{\"value\":{\"1\":\"Search our entire store...\",\"2\":\"\"}}',1),(4,'cart_header_shadow','header','none',0),(4,'lang_divider','header','{\"value\":{\"color\":\"rgb(244, 244, 244)\"}}',1),(4,'curr_bg','header','{\"value\":{\"color\":\"rgb(176, 158, 102)\"}}',1),(4,'lang_drop_bg_hover','header','{\"value\":{\"color\":\"rgb(212, 211, 178)\"}}',1),(4,'lang_drop_color_hover','header','{\"value\":{\"color\":\"rgb(255, 255, 255)\"}}',1),(4,'lang_drop_bg','header','{\"value\":{\"color\":\"rgb(244, 244, 244)\"}}',1),(4,'lang_drop_color','header','{\"value\":{\"color\":\"\"}}',1),(4,'autosuggest_hover','header','{\"value\":{\"color\":\"rgb(80, 80, 80)\"}}',1),(4,'autosuggest_divider','header','{\"value\":{\"color\":\"rgb(80, 80, 80)\"}}',1),(4,'autosuggest_bg','header','{\"value\":{\"color\":\"rgb(68, 67, 73)\"}}',1),(4,'search_divider','header','{\"value\":{\"color\":\"rgb(244, 244, 244)\"}}',1),(4,'search_button_bg_hover','header','{\"value\":{\"color\":\"\"}}',1),(4,'search_icon_hover','header','{\"value\":{\"color\":\"\"}}',1),(4,'search_button_bg','header','{\"value\":{\"color\":\"rgb(176, 158, 102)\"}}',1),(4,'autosuggest_divider_type','header','solid',0),(4,'search_bg','header','{\"value\":{\"color\":\"rgb(255, 255, 255)\"}}',1),(4,'search_placeholder_color','header','{\"value\":{\"color\":\"rgb(51, 55, 69)\"}}',1),(4,'cart_total_bg','header','{\"value\":{\"color\":\"rgb(233, 232, 211)\"}}',1),(4,'cart_content_divider_color','header','{\"value\":{\"color\":\"rgb(80, 80, 80)\"}}',1),(4,'cart_content_delete_icon_hover','header','{\"value\":{\"color\":\"rgb(221, 0, 23)\"}}',1),(4,'cart_content_delete_icon_color','header','{\"value\":{\"color\":\"rgb(176, 158, 102)\"}}',1),(4,'cart_content_bg','header','{\"value\":{\"color\":\"rgb(68, 67, 73)\"}}',1),(4,'top_bar_bg_color','header','{\"value\":{\"color\":\"rgb(255, 255, 255)\"}}',1),(4,'drop_radius','header','{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"px\",\"border\":{\"value\":\"\"},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":\"\"},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":{\"text\":\"\"}},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"}}}',1),(4,'cart_icon_divider','header','{\"value\":{\"color\":\"rgb(244, 244, 244)\"}}',1),(4,'cart_heading_icon_bg','header','{\"value\":{\"color\":\"rgb(176, 158, 102)\"}}',1),(4,'cart_heading_bg','header','{\"value\":{\"color\":\"rgb(234, 35, 73)\"}}',1),(4,'logo_bg_color','header','{\"value\":{\"color\":\"rgb(255, 255, 255)\"}}',1),(4,'header_bg_color','header','{\"value\":{\"color\":\"rgb(244, 244, 244)\"}}',1),(4,'search_icon','header','{\"value\":{\"options\":{\"font_size\":\"20px\",\"color\":{\"value\":{\"color\":\"rgb(255, 255, 255)\"}},\"top\":\"\",\"left\":\"\"},\"icon_type\":\"icon\",\"icon\":{\"icon\":\"&#xe697;\",\"class\":\"search\"}}}',1),(4,'cart_heading_icon','header','{\"value\":{\"options\":{\"font_size\":\"22px\",\"color\":{\"value\":{\"color\":\"rgb(255, 255, 255)\"}},\"top\":\"\",\"left\":\"1\"},\"icon_type\":\"icon\",\"icon\":{\"icon\":\"&#xe69a;\",\"class\":\"myFont3\"}}}',1),(4,'curr_radius','header','{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"px\",\"border\":{\"value\":\"\"},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":\"\"},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":{\"text\":\"15\"}},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"}}}',1),(4,'autosuggest_image_border','header','{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"px\",\"border\":{\"value\":\"\"},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":\"\"},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":{\"text\":\"\"}},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"}}}',1),(4,'lang_divider_type','header','solid',0),(4,'search_button_radius','header','{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"px\",\"border\":{\"value\":\"\"},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":\"\"},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":{\"text\":\"50\"}},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"}}}',1),(4,'autosuggest_height','header','{\"value\":{\"text\":\"402\"}}',1),(4,'autosuggest_border','header','{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"px\",\"border\":{\"value\":\"\"},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":\"\"},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":{\"text\":\"\"}},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"}}}',1),(4,'autosuggest_price_font','header','{\"value\":{\"font_type\":\"none\",\"font_size\":\"13px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"\",\"font_weight\":\"normal\",\"font_style\":\"normal\",\"text_transform\":\"none\",\"color\":{\"value\":{\"color\":\"rgb(255, 255, 255)\"}}}}',1),(4,'search_autocomplete','header','1',0),(4,'autosuggest_name_font','header','{\"value\":{\"font_type\":\"none\",\"font_size\":\"13px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"\",\"font_weight\":\"normal\",\"font_style\":\"normal\",\"text_transform\":\"none\",\"color\":{\"value\":{\"color\":\"rgb(244, 244, 244)\"}}}}',1),(4,'search_divider_type','header','solid',0),(4,'search_font','header','{\"value\":{\"font_type\":\"system\",\"font_size\":\"14px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"Playfair Display\",\"font_weight\":\"normal\",\"font_style\":\"normal\",\"text_transform\":\"none\",\"font_subset\":[\"latin\"]}}',1),(4,'search_radius','header','{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"px\",\"border\":{\"value\":\"\"},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":\"\"},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":{\"text\":\"\"}},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"}}}',1),(4,'cart_content_height','header','{\"value\":{\"text\":\"352\"}}',1),(4,'cart_total_font','header','{\"value\":{\"font_type\":\"none\",\"font_size\":\"13px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"\",\"font_weight\":\"bold\",\"font_style\":\"normal\",\"text_transform\":\"none\",\"color\":{\"value\":{\"color\":\"rgb(52, 73, 94)\"}}}}',1),(4,'cart_content_image_border','header','{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"px\",\"border\":{\"value\":{\"text\":\"\"}},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":\"\"},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":{\"text\":\"\"}},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"},\"border_color\":{\"value\":{\"color\":\"\"}}}}',1),(4,'cart_heading_font','header','{\"value\":{\"font_type\":\"system\",\"font_size\":\"14px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"Playfair Display\",\"font_weight\":\"normal\",\"font_style\":\"normal\",\"text_transform\":\"none\",\"color\":{\"value\":{\"color\":\"rgb(42, 43, 46)\"}},\"font_subset\":[\"latin\"]}}',1),(4,'cart_heading_border','header','{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"px\",\"border\":{\"value\":\"\"},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":\"\"},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":{\"text\":\"\"}},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"}}}',1),(4,'cart_heading_content_border','header','{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"px\",\"border\":{\"value\":\"\"},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":\"\"},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":{\"text\":\"\"}},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"}}}',1),(4,'cart_content_font','header','{\"value\":{\"font_type\":\"none\",\"font_size\":\"13px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"\",\"font_weight\":\"normal\",\"font_style\":\"normal\",\"text_transform\":\"none\",\"color\":{\"value\":{\"color\":\"rgb(255, 255, 255)\"}}}}',1),(4,'cart_heading_icon_border','header','{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"%\",\"border\":{\"value\":\"\"},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":\"\"},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":{\"text\":\"50\"}},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"}}}',1),(4,'cart_content_shadow','header','none',0),(4,'cart_content_divider_type','header','solid',0),(4,'cart_icon_divider_type','header','solid',0),(4,'sticky_header','header','1',0),(4,'header_type','header','center',0),(4,'boxed_header','header','0',0),(4,'product_page_cloud_zoom','productpage','1',0),(4,'menu_bar_shadow','headermenus','{\"value\":{\"inner_shadow\":\"0\"}}',1),(4,'mega_menu_shadow_custom','headermenus','{\"value\":{\"inner_shadow\":\"0\"}}',1),(4,'hide_menus_on_phone','headermenus','off',0),(4,'main_menu_bg_full_image','headermenus','{\"value\":{\"bgimage_attach\":\"scroll\",\"use_gradient\":0,\"bgimage_size\":\"auto\",\"bgimage_position\":\"center top\"}}',1),(4,'mega_menu_bg_image','headermenus','{\"value\":{\"bgimage_attach\":\"scroll\",\"use_gradient\":0,\"bgimage_size\":\"auto\",\"bgimage_position\":\"center top\"}}',1),(4,'mixed_cms_padding_bottom','headermenus','{\"value\":{\"text\":\"\"}}',1),(4,'mixed_cms_block_bg','headermenus','{\"value\":{\"color\":\"\"}}',1),(4,'mixed_cms_heading_padding','headermenus','{\"value\":{\"text\":\"5\"}}',1),(4,'mobile_menu_cart_display','headermenus','off',0),(4,'main_menu_bg_image','headermenus','{\"value\":{\"bgimage_attach\":\"scroll\",\"use_gradient\":0,\"bgimage_size\":\"auto\",\"bgimage_position\":\"center top\"}}',1),(4,'mobile_menu_on','headermenus','tablet',0),(4,'view_more_font','headermenus','{\"value\":{\"font_type\":\"system\",\"font_size\":\"11px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"\",\"font_weight\":\"normal\",\"font_style\":\"normal\",\"letter_spacing\":\"\",\"text_transform\":\"none\"}}',1),(4,'mixed_cms_padding_left','headermenus','{\"value\":{\"text\":\"\"}}',1),(4,'mixed_cms_font','headermenus','{\"value\":{\"font_type\":\"none\",\"font_size\":\"13px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"\",\"font_weight\":\"normal\",\"font_style\":\"normal\",\"letter_spacing\":\"\",\"text_transform\":\"none\",\"color\":{\"value\":{\"color\":\"rgb(56, 56, 56)\"}}}}',1),(4,'mixed_cms_padding_right','headermenus','{\"value\":{\"text\":\"\"}}',1),(4,'mixed_cms_title_font','headermenus','{\"value\":{\"font_type\":\"google\",\"font_size\":\"14px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"Playfair Display\",\"font_weight\":\"regular\",\"font_style\":\"normal\",\"letter_spacing\":\"\",\"text_transform\":\"uppercase\",\"font_subset\":[\"latin\"],\"color\":{\"value\":{\"color\":\"rgb(0, 0, 0)\"}}}}',1),(4,'mixed_cms_margin_bottom','headermenus','{\"value\":{\"text\":\"10\"}}',1),(4,'mixed_cms_padding_top','headermenus','{\"value\":{\"text\":\"\"}}',1),(4,'mixed_cms_title_padding_bottom','headermenus','{\"value\":{\"text\":\"5\"}}',1),(4,'mixed_cms_title_border','headermenus','{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"px\",\"border\":{\"value\":\"\"},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":{\"text\":\"1\"}},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":\"\"},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"},\"border_color\":{\"value\":{\"color\":\"rgb(205, 204, 182)\"}}}}',1),(4,'menu_product_grid_item_border','headermenus','{\"value\":{\"border_rounded\":\"px\"}}',1),(4,'view_more_text','headermenus','{\"value\":[null,\"View More\"]}',1),(4,'menu_html_padding_right','headermenus','{\"value\":{\"text\":\"8\"}}',1),(4,'menu_html_padding_top','headermenus','{\"value\":{\"text\":\"5\"}}',1),(4,'menu_product_grid_price_font','headermenus','{\"value\":{\"font_type\":\"none\",\"font_size\":\"13px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"\",\"font_weight\":\"normal\",\"font_style\":\"normal\",\"letter_spacing\":\"\",\"text_transform\":\"none\",\"color\":{\"value\":{\"color\":\"rgb(56, 56, 56)\"}}}}',1),(4,'menu_divider_hover','headermenus','{\"value\":{\"color\":\"\"}}',1),(4,'dropdown_shadow','headermenus','none',0),(4,'menu_html_padding_left','headermenus','{\"value\":{\"text\":\"10\"}}',1),(4,'menu_categories_link_bottom_margin','headermenus','{\"value\":{\"text\":\"3\"}}',1),(4,'menu_html_padding_bottom','headermenus','{\"value\":{\"text\":\"8\"}}',1),(4,'menu_product_grid_name_font','headermenus','{\"value\":{\"font_type\":\"none\",\"font_size\":\"13px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"\",\"font_weight\":\"normal\",\"font_style\":\"normal\",\"letter_spacing\":\"\",\"text_transform\":\"none\",\"color\":{\"value\":{\"color\":\"\"}}}}',1),(4,'menu_html_title_padding_left','headermenus','{\"value\":{\"text\":\"10\"}}',1),(4,'menu_html_title_padding_top','headermenus','{\"value\":{\"text\":\"5\"}}',1),(4,'menu_categories_link_padding','headermenus','{\"value\":{\"text\":\"0\"}}',1),(4,'menu_html_title_padding_bottom','headermenus','{\"value\":{\"text\":\"5\"}}',1),(4,'menu_product_grid_button_border','headermenus','{\"value\":{\"border_rounded\":\"px\"}}',1),(4,'menu_categories_title_padding_bottom','headermenus','{\"value\":{\"text\":\"5\"}}',1),(4,'main_menu_border','headermenus','{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"px\",\"border\":{\"value\":{\"text\":\"\"}},\"border_top\":{\"value\":{\"text\":\"\"}},\"border_right\":{\"value\":{\"text\":\"\"}},\"border_bottom\":{\"value\":\"\"},\"border_left\":{\"value\":{\"text\":\"\"}},\"border_radius\":{\"value\":\"\"},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"},\"border_color\":{\"value\":{\"color\":\"\"}}}}',1),(4,'menu_categories_item_margin','headermenus','{\"value\":{\"text\":\"15\"}}',1),(4,'mega_menu_padding','headermenus','{\"value\":{\"text\":\"15\"}}',1),(4,'menu_categories_title_padding_right','headermenus','{\"value\":{\"text\":\"\"}}',1),(4,'menu_product_grid_price_border','headermenus','{\"value\":{\"border_rounded\":\"px\"}}',1),(4,'menu_categories_title_padding_left','headermenus','{\"value\":{\"text\":\"\"}}',1),(4,'main_menu_mobile_bg_color','headermenus','{\"value\":{\"color\":\"rgb(42, 43, 46)\"}}',1),(4,'menu_categories_title_padding_top','headermenus','{\"value\":{\"text\":\"\"}}',1),(4,'menu_categories_link_font_hover','headermenus','{\"value\":{\"color\":\"rgb(176, 158, 102)\"}}',1),(4,'secondary_menu_bg_color','headermenus','{\"value\":{\"color\":\"\"}}',1),(4,'dropdown_icon_hover','headermenus','{\"value\":{\"color\":\"\"}}',1),(4,'dropdown_divider','headermenus','{\"value\":{\"color\":\"rgb(80, 80, 80)\"}}',1),(4,'dropdown_bg_hover','headermenus','{\"value\":{\"color\":\"rgb(233, 232, 211)\"}}',1),(4,'dropdown_font_hover','headermenus','{\"value\":{\"color\":\"rgb(68, 67, 73)\"}}',1),(4,'dropdown_bg','headermenus','{\"value\":{\"color\":\"rgb(68, 67, 73)\"}}',1),(4,'menu_brands_title_bg','headermenus','{\"value\":{\"color\":\"\"}}',1),(4,'menu_categories_title_bg','headermenus','{\"value\":{\"color\":\"\"}}',1),(4,'menu_categories_title_bg_hover','headermenus','{\"value\":{\"color\":\"\"}}',1),(4,'menu_categories_title_border_hover','headermenus','{\"value\":{\"color\":\"\"}}',1),(4,'menu_html_title_bg','headermenus','{\"value\":{\"color\":\"rgb(255, 255, 255)\"}}',1),(4,'menu_html_bg','headermenus','{\"value\":{\"color\":\"rgb(255, 255, 255)\"}}',1),(4,'menu_brands_bg','headermenus','{\"value\":{\"color\":\"\"}}',1),(4,'menu_brands_title_font_hover','headermenus','{\"value\":{\"color\":\"\"}}',1),(4,'menu_categories_bg','headermenus','{\"value\":{\"color\":\"\"}}',1),(4,'menu_categories_title_font_hover','headermenus','{\"value\":{\"color\":\"rgb(176, 158, 102)\"}}',1),(4,'secondary_menu_link_hover_color','headermenus','{\"value\":{\"color\":\"rgb(176, 158, 102)\"}}',1),(4,'menu_divider','headermenus','{\"value\":{\"color\":\"rgb(250, 250, 250)\"}}',1),(4,'mega_menu_bg','headermenus','{\"value\":{\"color\":\"rgb(244, 243, 223)\"}}',1),(4,'menu_font_hover','headermenus','{\"value\":{\"color\":\"\"}}',1),(4,'menu_bg_hover','headermenus','{\"value\":{\"color\":\"rgb(244, 243, 223)\"}}',1),(4,'main_menu_bg_full_color','headermenus','{\"value\":{\"color\":\"rgb(255, 255, 255)\"}}',1),(4,'main_menu_bg_color','headermenus','{\"value\":{\"color\":\"rgb(255, 255, 255)\"}}',1),(4,'top_menu_link_hover_color','headermenus','{\"value\":{\"color\":\"rgb(176, 158, 102)\"}}',1),(4,'top_menu_border_color','headermenus','{\"value\":{\"color\":\"rgb(228, 228, 228)\"}}',1),(4,'top_menu_bg_color','headermenus','{\"value\":{\"color\":\"rgb(244, 244, 244)\"}}',1),(4,'top_menu_link_hover_bg_color','headermenus','{\"value\":{\"color\":\"rgb(228, 228, 228)\"}}',1),(4,'mobile_text_font','headermenus','{\"value\":{\"font_type\":\"google\",\"font_size\":\"16px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"Abril Fatface\",\"font_weight\":\"regular\",\"font_style\":\"normal\",\"text_transform\":\"uppercase\",\"color\":{\"value\":{\"color\":\"rgb(228, 228, 228)\"}},\"font_subset\":[\"latin\"],\"v\":\"2\",\"font_size_mobile\":\"---\"}}',1),(4,'mobile_plus_color','headermenus','{\"value\":{\"color\":\"rgb(255, 255, 255)\"}}',1),(4,'mobile_plus_bg','headermenus','{\"value\":{\"color\":\"rgb(80, 80, 80)\"}}',1),(4,'dropdown_icon','headermenus','{\"value\":{\"options\":{\"font_size\":\"10px\",\"color\":{\"value\":{\"color\":\"\"}},\"top\":\"-3\"},\"icon_type\":\"icon\",\"icon\":{\"icon\":\"&#xe620;\",\"class\":\"play4\"}}}',1),(4,'menu_categories_link_icon','headermenus','{\"value\":{\"options\":{\"font_size\":\"18px\"},\"icon_type\":\"none\",\"icon\":{\"icon\":\"&#xe094;\",\"class\":\"circle-arrow-right2\"}}}',1),(4,'mega_menu_border','headermenus','{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"px\",\"border\":{\"value\":\"\"},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":{\"text\":\"\"}},\"border_bottom\":{\"value\":{\"text\":\"\"}},\"border_left\":{\"value\":{\"text\":\"\"}},\"border_radius\":{\"value\":\"\"},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"},\"border_color\":{\"value\":{\"color\":\"\"}}}}',1),(4,'mobile_menu_text','headermenus','{\"value\":{\"1\":\"MENU\",\"2\":\"\"}}',1),(4,'mobile_menu_icon','headermenus','{\"value\":{\"options\":{\"font_size\":\"20px\",\"top\":\"-1\",\"color\":{\"value\":{\"color\":\"rgb(228, 228, 228)\"}}},\"icon_type\":\"icon\",\"icon\":{\"icon\":\"&#xe618;\",\"class\":\"reorder\"}}}',1),(4,'dropdown_link_icon','headermenus','{\"value\":{\"options\":{\"font_size\":\"10px\"},\"icon_type\":\"none\",\"icon\":{\"icon\":\"&#xe60e;\",\"class\":\"chevron-right\"}}}',1),(4,'menu_html_title_border','headermenus','{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"px\",\"border\":{\"value\":\"\"},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":\"\"},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":\"\"},\"border_radius_top\":{\"value\":{\"text\":\"\"}},\"border_radius_right\":{\"value\":{\"text\":\"\"}},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"}}}',1),(4,'menu_html_border','headermenus','{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"px\",\"border\":{\"value\":\"\"},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":\"\"},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":{\"text\":\"\"}},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":{\"text\":\"\"}},\"border_radius_left\":{\"value\":{\"text\":\"\"}},\"border_radius_bottom\":{\"value\":{\"text\":\"\"}}}}',1),(4,'menu_categories_image_border','headermenus','{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"px\",\"border\":{\"value\":{\"text\":\"\"}},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":\"\"},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":{\"text\":\"\"}},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"},\"border_color\":{\"value\":{\"color\":\"\"}}}}',1),(4,'menu_brands_border','headermenus','{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"px\",\"border\":{\"value\":\"\"},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":\"\"},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":{\"text\":\"\"}},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"}}}',1),(4,'menu_brands_title_border','headermenus','{\"value\":{\"border_rounded\":\"px\"}}',1),(4,'menu_brands_image_border','headermenus','{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"%\",\"border\":{\"value\":\"\"},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":\"\"},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":{\"text\":\"\"}},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"}}}',1),(4,'menu_html_title_align','headermenus','left',0),(4,'menu_categories_padding','headermenus','{\"value\":{\"text\":\"\"}}',1),(4,'menu_brands_padding','headermenus','{\"value\":{\"text\":\"\"}}',1),(4,'menu_line_height','headermenus','{\"value\":{\"text\":\"\"}}',1),(4,'menu_categories_border','headermenus','{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"px\",\"border\":{\"value\":\"\"},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":\"\"},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":{\"text\":\"\"}},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"}}}',1),(4,'menu_categories_title_border','headermenus','{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"px\",\"border\":{\"value\":\"\"},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":{\"text\":\"1\"}},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":\"\"},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"},\"border_color\":{\"value\":{\"color\":\"rgb(205, 204, 182)\"}}}}',1),(4,'menu_brands_title_align','headermenus','left',0),(4,'menu_categories_title_align','headermenus','left',0),(4,'dropdown_divider_type','headermenus','solid',0),(4,'menu_divider_type','headermenus','solid',0),(4,'main_menu_font','headermenus','{\"value\":{\"font_type\":\"google\",\"font_size\":\"15px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"Playfair Display\",\"font_weight\":\"700\",\"font_style\":\"normal\",\"text_transform\":\"uppercase\",\"font_subset\":[\"latin\"],\"color\":{\"value\":{\"color\":\"rgb(68, 67, 73)\"}}}}',1),(4,'menu_html_font','headermenus','{\"value\":{\"font_type\":\"none\",\"font_size\":\"13px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"\",\"font_weight\":\"normal\",\"font_style\":\"normal\",\"text_transform\":\"none\",\"color\":{\"value\":{\"color\":\"rgb(51, 55, 69)\"}}}}',1),(4,'menu_categories_link_font','headermenus','{\"value\":{\"font_type\":\"none\",\"font_size\":\"13px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"\",\"font_weight\":\"normal\",\"font_style\":\"normal\",\"text_transform\":\"none\",\"color\":{\"value\":{\"color\":\"rgb(0, 0, 0)\"}}}}',1),(4,'menu_brands_title_font','headermenus','{\"value\":{\"font_type\":\"none\",\"font_size\":\"13px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"Oswald\",\"font_weight\":\"regular\",\"font_style\":\"normal\",\"text_transform\":\"uppercase\",\"font_subset\":[\"latin\"],\"color\":{\"value\":{\"color\":\"rgb(255, 255, 255)\"}}}}',1),(4,'menu_html_title_font','headermenus','{\"value\":{\"font_type\":\"none\",\"font_size\":\"13px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"Oswald\",\"font_weight\":\"300\",\"font_style\":\"normal\",\"text_transform\":\"uppercase\",\"font_subset\":[\"latin\"],\"color\":{\"value\":{\"color\":\"\"}}}}',1),(4,'secondary_menu_link_font','headermenus','{\"value\":{\"font_type\":\"none\",\"font_size\":\"13px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"\",\"font_weight\":\"normal\",\"font_style\":\"normal\",\"text_transform\":\"none\",\"color\":{\"value\":{\"color\":\"rgb(68, 67, 73)\"}}}}',1),(4,'secondary_menu_text_font','headermenus','{\"value\":{\"font_type\":\"none\",\"font_size\":\"13px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"\",\"font_weight\":\"normal\",\"font_style\":\"normal\",\"text_transform\":\"none\",\"color\":{\"value\":{\"color\":\"rgb(68, 67, 73)\"}}}}',1),(4,'dropdown_font','headermenus','{\"value\":{\"font_type\":\"none\",\"font_size\":\"13px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"\",\"font_weight\":\"normal\",\"font_style\":\"normal\",\"text_transform\":\"none\",\"color\":{\"value\":{\"color\":\"rgb(255, 255, 255)\"}}}}',1),(4,'menu_categories_title_font','headermenus','{\"value\":{\"font_type\":\"google\",\"font_size\":\"14px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"Playfair Display\",\"font_weight\":\"regular\",\"font_style\":\"normal\",\"text_transform\":\"uppercase\",\"font_subset\":[\"latin\"],\"color\":{\"value\":{\"color\":\"rgb(0, 0, 0)\"}}}}',1),(4,'top_menu_link_font','headermenus','{\"value\":{\"font_type\":\"none\",\"font_size\":\"13px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"\",\"font_weight\":\"normal\",\"font_style\":\"normal\",\"text_transform\":\"none\",\"color\":{\"value\":{\"color\":\"rgb(68, 67, 73)\"}}}}',1),(4,'filter_mobile_text','modulesuperfilter','{\"value\":{\"1\":\"Open Product Filters\"}}',1),(4,'filter_price_apply_text','modulesuperfilter','{\"value\":[]}',1),(4,'filter_cat_image_size','modulesuperfilter','20',0),(4,'filter_availability_text','modulesuperfilter','{\"value\":[null,\"Availability\"]}',1),(4,'filter_availability_yes_text','modulesuperfilter','{\"value\":[null,\"In Stock\"]}',1),(4,'filter_availability_no_text','modulesuperfilter','{\"value\":[null,\"Sold Out\"]}',1),(4,'filter_image_size','modulesuperfilter','16.666666',0),(4,'filter_brand_image_size','modulesuperfilter','25',0),(4,'filter_tags_text','modulesuperfilter','{\"value\":[null,\"Shop by Tags\"]}',1),(4,'filter_price_tooltip_radius','modulesuperfilter','{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"px\",\"border\":{\"value\":\"\"},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":\"\"},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":{\"text\":\"2\"}},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"}}}',1),(4,'filter_item_divider','modulesuperfilter','{\"value\":{\"color\":\"rgb(255, 255, 255)\"}}',1),(4,'filter_heading_height','modulesuperfilter','{\"value\":{\"text\":\"\"}}',1),(4,'filter_section_padding_from_title','modulesuperfilter','{\"value\":{\"text\":\"5\"}}',1),(4,'filter_font','modulesuperfilter','{\"value\":{\"font_type\":\"none\",\"font_size\":\"13px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"\",\"font_weight\":\"normal\",\"font_style\":\"normal\",\"letter_spacing\":\"\",\"text_transform\":\"none\",\"color\":{\"value\":{\"color\":\"\"}}}}',1),(4,'filter_price_text','modulesuperfilter','{\"value\":[null,\"Shop by Price\"]}',1),(4,'filter_brands_text','modulesuperfilter','{\"value\":[null,\"Shop by Brand\"]}',1),(4,'filter_categories_text','modulesuperfilter','{\"value\":[null,\"Shop by Category\"]}',1),(4,'filter_height','modulesuperfilter','{\"value\":{\"text\":\"300\"}}',1),(4,'filter_heading_font','modulesuperfilter','{\"value\":{\"font_type\":\"none\",\"font_size\":\"15px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"Playfair Display\",\"font_weight\":\"700\",\"font_style\":\"normal\",\"letter_spacing\":\"\",\"text_transform\":\"uppercase\",\"font_subset\":[\"latin\"],\"color\":{\"value\":{\"color\":\"\"}}}}',1),(4,'filter_heading_border','modulesuperfilter','{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"px\",\"border\":{\"value\":\"\"},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":\"\"},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":\"\"},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"}}}',1),(4,'filter_item_divider_type','modulesuperfilter','solid',0),(4,'filter_price_bar_height','modulesuperfilter','{\"value\":{\"text\":\"1\"}}',1),(4,'filter_price_button_radius','modulesuperfilter','{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"%\",\"border\":{\"value\":\"\"},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":\"\"},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":{\"text\":\"50\"}},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"}}}',1),(4,'filter_price_tip_radius','modulesuperfilter','{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"px\",\"border\":{\"value\":\"\"},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":\"\"},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":{\"text\":\"2\"}},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"}}}',1),(4,'filter_price_padding_right','modulesuperfilter','{\"value\":{\"text\":\"20\"}}',1),(4,'filter_price_padding_top','modulesuperfilter','{\"value\":{\"text\":\"20\"}}',1),(4,'filter_price_padding_bottom','modulesuperfilter','{\"value\":{\"text\":\"35\"}}',1),(4,'filter_image_section_margin_right','modulesuperfilter','{\"value\":{\"text\":\"7\"}}',1),(4,'filter_price_bar_static_color','modulesuperfilter','{\"value\":{\"color\":\"rgb(176, 158, 102)\"}}',1),(4,'filter_price_button_height','modulesuperfilter','{\"value\":{\"text\":\"15\"}}',1),(4,'filter_price_bar_offset','modulesuperfilter','{\"value\":{\"text\":\"-7\"}}',1),(4,'filter_image_section_margin_bottom','modulesuperfilter','{\"value\":{\"text\":\"7\"}}',1),(4,'filter_image_section_padding_right','modulesuperfilter','{\"value\":{\"text\":\"\"}}',1),(4,'filter_image_section_padding_top','modulesuperfilter','{\"value\":{\"text\":\"5\"}}',1),(4,'filter_price_button_width','modulesuperfilter','{\"value\":{\"text\":\"15\"}}',1),(4,'filter_section_padding_top','modulesuperfilter','{\"value\":{\"text\":\"3\"}}',1),(4,'filter_section_padding_bottom','modulesuperfilter','{\"value\":{\"text\":\"1\"}}',1),(4,'filter_section_padding_left','modulesuperfilter','{\"value\":{\"text\":\"\"}}',1),(4,'filter_price_padding_left','modulesuperfilter','{\"value\":{\"text\":\"17\"}}',1),(4,'filter_section_spacing','modulesuperfilter','{\"value\":{\"text\":\"15\"}}',1),(4,'filter_show_box','modulesuperfilter','1',0),(4,'filter_section_padding_right','modulesuperfilter','{\"value\":{\"text\":\"\"}}',1),(4,'filter_border','modulesuperfilter','{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"%\",\"border\":{\"value\":{\"text\":\"2\"}},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":\"\"},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":{\"text\":\"\"}},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"},\"border_color\":{\"value\":{\"color\":\"rgb(244, 244, 244)\"}}}}',1),(4,'filter_reset_display','modulesuperfilter','icon',0),(4,'filter_reset_text','modulesuperfilter','{\"value\":{\"1\":\"Reset Filters\",\"2\":\"\"}}',1),(4,'filter_loading_text','modulesuperfilter','{\"value\":{\"1\":\"Loading...\",\"2\":\"Loading...\"}}',1),(4,'filter_active_text','modulesuperfilter','{\"value\":{\"color\":\"rgb(176, 158, 102)\"}}',1),(4,'filter_price_button_hover','modulesuperfilter','{\"value\":{\"color\":\"rgb(176, 158, 102)\"}}',1),(4,'filter_price_button','modulesuperfilter','{\"value\":{\"color\":\"rgb(52, 73, 94)\"}}',1),(4,'filter_active_border','modulesuperfilter','{\"value\":{\"color\":\"rgb(176, 158, 102)\"}}',1),(4,'reset_icon','modulesuperfilter','{\"value\":{\"options\":{\"font_size\":\"16px\",\"color\":{\"value\":{\"color\":\"\"}}},\"icon_type\":\"icon\",\"icon\":{\"icon\":\"&#xe602;\",\"class\":\"remove\"}}}',1),(4,'filter_price_tip','modulesuperfilter','{\"value\":{\"color\":\"rgb(52, 73, 94)\"}}',1),(4,'reset_color','modulesuperfilter','{\"value\":{\"color\":\"rgb(42, 43, 46)\"}}',1),(4,'filter_price_color','modulesuperfilter','{\"value\":{\"color\":\"rgb(255, 255, 255)\"}}',1),(4,'filter_price_bar','modulesuperfilter','{\"value\":{\"color\":\"rgb(52, 73, 94)\"}}',1),(4,'reset_hover','modulesuperfilter','{\"value\":{\"color\":\"rgb(176, 158, 102)\"}}',1),(4,'reset_tip_text','modulesuperfilter','{\"value\":{\"color\":\"rgb(244, 244, 244)\"}}',1),(4,'reset_tip_bg','modulesuperfilter','{\"value\":{\"color\":\"rgb(176, 158, 102)\"}}',1),(4,'top_menu_text_font','headermenus','{\"value\":{\"font_type\":\"none\",\"font_size\":\"13px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"\",\"font_weight\":\"normal\",\"font_style\":\"normal\",\"text_transform\":\"none\",\"color\":{\"value\":{\"color\":\"rgb(68, 67, 73)\"}}}}',1),(4,'product_view','category','grid',0),(4,'hide_category_image','category','0',0),(4,'category_description_font','category','{\"value\":{\"font_type\":\"none\",\"font_size\":\"13px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"\",\"font_weight\":\"normal\",\"font_style\":\"normal\",\"text_transform\":\"none\"}}',1),(4,'refine_category','category','carousel',0),(4,'refine_image_font','category','{\"value\":{\"font_type\":\"system\",\"font_size\":\"13px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"Roboto Slab\",\"font_weight\":\"bold\",\"font_style\":\"normal\",\"text_transform\":\"none\",\"color\":{\"value\":{\"color\":\"rgb(68, 67, 73)\"}},\"font_subset\":[\"latin\"]}}',1),(4,'refine_link_divider','category','{\"value\":\"\"}',1),(4,'refine_bar_radius','category','{\"value\":{\"border_rounded\":\"px\"}}',1),(4,'refine_image_border_radius','category','{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"px\",\"border\":{\"value\":\"\"},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":\"\"},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":{\"text\":\"\"}},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"}}}',1),(4,'refine_image_border','category','{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"px\",\"border\":{\"value\":\"\"},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":\"\"},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":{\"text\":\"\"}},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"}}}',1),(4,'product_compare_link_status','category','1',0),(4,'product_filter_radius','category','{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"px\",\"border\":{\"value\":\"\"},\"border_top\":{\"value\":{\"text\":\"\"}},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":{\"text\":\"\"}},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":{\"text\":\"\"}},\"border_radius_top\":{\"value\":{\"text\":\"\"}},\"border_radius_right\":{\"value\":{\"text\":\"\"}},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"},\"border_color\":{\"value\":{\"color\":\"\"}}}}',1),(4,'product_filter_font','category','{\"value\":{\"font_type\":\"system\",\"font_size\":\"13px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"\",\"font_weight\":\"bold\",\"font_style\":\"normal\",\"text_transform\":\"none\",\"color\":{\"value\":{\"color\":\"rgb(42, 43, 46)\"}}}}',1),(4,'pagination_link_hover_color','category','{\"value\":{\"color\":\"rgb(255, 255, 255)\"}}',1),(4,'category_grid_view_icon','category','{\"value\":{\"options\":{\"font_size\":\"32px\",\"color\":{\"value\":{\"color\":\"rgb(68, 67, 73)\"}},\"top\":\"1\"},\"icon_type\":\"icon\",\"icon\":{\"icon\":\"&#xe689;\",\"class\":\"grid\"}}}',1),(4,'category_list_view_icon','category','{\"value\":{\"options\":{\"font_size\":\"32px\",\"color\":{\"value\":{\"color\":\"rgb(68, 67, 73)\"}},\"top\":\"1\"},\"icon_type\":\"icon\",\"icon\":{\"icon\":\"&#xe68c;\",\"class\":\"list3\"}}}',1),(4,'category_page_products_per_row','category','{\"value\":{\"mobile\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"mobile1\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet\":{\"value\":\"3\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet1\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet2\":{\"value\":\"1\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop\":{\"value\":\"4\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop1\":{\"value\":\"3\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop2\":{\"value\":\"2\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop\":{\"value\":\"5\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop1\":{\"value\":\"4\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop2\":{\"value\":\"3\",\"range\":\"1,10\",\"step\":\"1\"}},\"step\":\"1\",\"range\":\"1,10\"}',1),(4,'refine_image_font_hover','category','{\"value\":{\"color\":\"rgb(176, 158, 102)\"}}',1),(4,'refine_image_bg','category','{\"value\":{\"color\":\"\"}}',1),(4,'refine_image_bg_hover','category','{\"value\":{\"color\":\"\"}}',1),(4,'refine_category_images_per_row','category','{\"value\":{\"mobile\":{\"value\":\"3\",\"range\":\"1,10\",\"step\":\"1\"},\"mobile1\":{\"value\":\"4\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet\":{\"value\":\"6\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet1\":{\"value\":\"4\",\"range\":\"1,10\",\"step\":\"1\"},\"tablet2\":{\"value\":\"3\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop\":{\"value\":\"7\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop1\":{\"value\":\"6\",\"range\":\"1,10\",\"step\":\"1\"},\"desktop2\":{\"value\":\"4\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop\":{\"value\":\"8\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop1\":{\"value\":\"7\",\"range\":\"1,10\",\"step\":\"1\"},\"large_desktop2\":{\"value\":\"5\",\"range\":\"1,10\",\"step\":\"1\"}},\"step\":\"1\",\"range\":\"1,10\"}',1),(4,'pagination_bar_border','category','{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"px\",\"border\":{\"value\":\"\"},\"border_top\":{\"value\":{\"text\":\"1\"}},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":\"\"},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":{\"text\":\"\"}},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"},\"border_color\":{\"value\":{\"color\":\"rgb(244, 244, 244)\"}}}}',1),(4,'category_view_icon_hover','category','{\"value\":{\"color\":\"rgb(176, 158, 102)\"}}',1),(4,'product_filter_bg','category','{\"value\":{\"color\":\"rgb(244, 244, 244)\"}}',1),(4,'product_compare_hover_color','category','{\"value\":{\"color\":\"rgb(176, 158, 102)\"}}',1),(4,'pagination_radius','category','{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"%\",\"border\":{\"value\":\"\"},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":\"\"},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":{\"text\":\"50\"}},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"}}}',1),(4,'pagination_link_bg','category','{\"value\":{\"color\":\"rgb(255, 255, 255)\"}}',1),(4,'pagination_link_hover_bg_color','category','{\"value\":{\"color\":\"rgb(176, 158, 102)\"}}',1),(4,'refine_link_divider_color','category','{\"value\":{\"color\":\"rgb(228, 228, 228)\"}}',1),(4,'refine_bar_bg','category','{\"value\":{\"color\":\"rgb(51, 55, 69)\"}}',1),(4,'pagination_bar_bg','category','{\"value\":{\"color\":\"\"}}',1),(4,'pagination_soft_shadow','category','none',0),(4,'pagination_text_font','category','{\"value\":{\"font_type\":\"none\",\"font_size\":\"13px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"\",\"font_weight\":\"bold\",\"font_style\":\"normal\",\"text_transform\":\"none\",\"color\":{\"value\":{\"color\":\"\"}}}}',1),(4,'pagination_link_font_new','category','{\"value\":{\"font_type\":\"none\",\"font_size\":\"13px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"\",\"font_weight\":\"normal\",\"font_style\":\"normal\",\"text_transform\":\"none\",\"color\":{\"value\":{\"color\":\"rgb(51, 55, 69)\"}}}}',1),(4,'refine_image_padding','category','{\"value\":{\"text\":\"0\"}}',1),(4,'main_category_image_border','category','{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"px\",\"border\":{\"value\":\"\"},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":\"\"},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":{\"text\":\"\"}},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"}}}',1),(4,'category_description_bg','category','{\"value\":{\"bgimage_attach\":\"scroll\",\"use_gradient\":0,\"bgimage_size\":\"auto\",\"bgimage_position\":\"center top\"}}',1),(4,'category_page_title_border','category','{\"value\":{\"border_rounded\":\"px\"}}',1),(4,'infinite_button_border','category','{\"value\":{\"border_rounded\":\"px\"}}',1),(4,'infinite_msg_border','category','{\"value\":{\"border_rounded\":\"px\"}}',1),(4,'infinite_scroll_load_more_items_text','category','{\"value\":[]}',1),(4,'infinite_scroll_loading_text','category','{\"value\":[]}',1),(4,'infinite_scroll_no_more_items_text','category','{\"value\":[]}',1),(4,'refine_text','category','{\"value\":[]}',1),(4,'product_compare_icon','category','{\"value\":{\"options\":{\"font_size\":\"---\"}}}',1),(4,'button_shadow','general','{\"value\":{\"inner_shadow\":\"0\"}}',1),(4,'button_shadow_hover','general','{\"value\":{\"inner_shadow\":\"0\"}}',1),(4,'button_shadow_active','general','{\"value\":{\"inner_shadow\":\"0\"}}',1),(4,'old_browser_message','general','{\"value\":[]}',1),(4,'general_button_bg_image','general','{\"value\":{\"bgimage_attach\":\"scroll\",\"use_gradient\":0,\"bgimage_size\":\"auto\",\"bgimage_position\":\"center top\"}}',1),(4,'general_button_bg_image_hover','general','{\"value\":{\"bgimage_attach\":\"scroll\",\"use_gradient\":0,\"bgimage_size\":\"auto\",\"bgimage_position\":\"center top\"}}',1),(4,'container_shadow','general','{\"value\":{\"inner_shadow\":\"0\"}}',1),(4,'product_grid_item_spacing_mobile','general','{\"value\":{\"text\":\"10\"}}',1),(4,'breadcrumb_status','general','block',0),(4,'scroll_to_top','general','0',0),(4,'body_bg_image_home','general','{\"value\":{\"bgimage_attach\":\"scroll\",\"use_gradient\":0,\"bgimage_size\":\"auto\",\"bgimage_position\":\"center top\"}}',1),(4,'extended_layout_bg_image_home','general','{\"value\":{\"bgimage_attach\":\"scroll\",\"use_gradient\":0,\"bgimage_size\":\"auto\",\"bgimage_position\":\"center top\"}}',1),(4,'content_bg_image_home','general','{\"value\":{\"bgimage_attach\":\"scroll\",\"use_gradient\":0,\"bgimage_size\":\"auto\",\"bgimage_position\":\"center top\"}}',1),(4,'main_title_padding_left','general','{\"value\":{\"text\":\"\"}}',1),(4,'extended_layout_bg_color','general','{\"value\":{\"color\":\"\"}}',1),(4,'breadcrumb_border','general','{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"px\",\"border\":{\"value\":\"\"},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":\"\"},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":\"\"},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":{\"text\":\"\"}},\"border_radius_bottom\":{\"value\":{\"text\":\"\"}}}}',1),(4,'breadcrumb_bg_color','general','{\"value\":{\"color\":\"rgb(244, 244, 244)\"}}',1),(4,'ajax_loader','general','{\"value\":{\"image\":\"data\\/journal2\\/loader.gif\"}}',1),(4,'scroll_top_icon_hover','general','{\"value\":{\"color\":\"rgb(176, 158, 102)\"}}',1),(4,'general_button_border_hover','general','{\"value\":{\"color\":\"\"}}',1),(4,'breadcrumb_hover','general','{\"value\":{\"color\":\"rgb(176, 158, 102)\"}}',1),(4,'general_button_bg_hover','general','{\"value\":{\"color\":\"rgb(176, 158, 102)\"}}',1),(4,'general_button_bg','general','{\"value\":{\"color\":\"rgb(68, 67, 73)\"}}',1),(4,'general_button_font_hover','general','{\"value\":{\"color\":\"rgb(255, 255, 255)\"}}',1),(4,'main_title_bg','general','{\"value\":{\"color\":\"\"}}',1),(4,'secondary_title_bg','general','{\"value\":{\"color\":\"\"}}',1),(4,'general_links_hover','general','{\"value\":{\"color\":\"rgb(176, 158, 102)\"}}',1),(4,'site_width','general','{\"value\":\"1220\",\"range\":\"1024,1920\",\"step\":\"2\"}',1),(4,'body_bg_color','general','{\"value\":{\"color\":\"rgb(244, 244, 244)\"}}',1),(4,'content_bg_color','general','{\"value\":{\"color\":\"rgb(255, 255, 255)\"}}',1),(4,'general_links_color','general','{\"value\":{\"color\":\"rgb(69, 115, 143)\"}}',1),(4,'content_bg_image','general','{\"value\":{\"bgimage_attach\":\"scroll\",\"bgimage_repeat\":\"repeat\",\"bgimage_position\":\"center top\",\"use_gradient\":0,\"bgimage_size\":\"auto\"}}',1),(4,'extended_layout_bg_image','general','{\"value\":{\"bgimage_attach\":\"scroll\",\"bgimage_repeat\":\"repeat\",\"bgimage_position\":\"center top\",\"bgimage\":{\"value\":{\"image\":\"\"}},\"use_gradient\":0,\"bgimage_size\":\"auto\"}}',1),(4,'scroll_top','general','0',0),(4,'scroll_top_icon','general','{\"value\":{\"options\":{\"font_size\":\"45px\",\"color\":{\"value\":{\"color\":\"rgb(63, 87, 101)\"}}},\"icon_type\":\"icon\",\"icon\":{\"icon\":\"&#xe021;\",\"class\":\"upload\"}}}',1),(4,'breadcrumb_align','general','center',0),(4,'breadcrumb_font','general','{\"value\":{\"font_type\":\"system\",\"font_size\":\"12px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"Playfair Display\",\"font_weight\":\"bold\",\"font_style\":\"normal\",\"text_transform\":\"none\",\"color\":{\"value\":{\"color\":\"\"}},\"font_subset\":[\"latin\"]}}',1),(4,'general_button_width','general','{\"value\":{\"text\":\"12\"}}',1),(4,'general_button_height','general','{\"value\":{\"text\":\"30\"}}',1),(4,'body_bg_image','general','{\"value\":{\"bgimage_attach\":\"scroll\",\"bgimage_repeat\":\"no-repeat\",\"bgimage_position\":\"center top\",\"bgimage\":{\"value\":{\"image\":\"\"}},\"use_gradient\":0,\"bgimage_size\":\"auto\"}}',1),(4,'general_button_border','general','{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"px\",\"border\":{\"value\":{\"text\":\"\"}},\"border_top\":{\"value\":{\"text\":\"\"}},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":{\"text\":\"\"}},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":{\"text\":\"2\"}},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"},\"border_color\":{\"value\":{\"color\":\"\"}}}}',1),(4,'secondary_title_padding_tb','general','{\"value\":{\"text\":\"8\"}}',1),(4,'secondary_title_padding_lr','general','{\"value\":{\"text\":\"\"}}',1),(4,'general_button_font','general','{\"value\":{\"font_type\":\"none\",\"font_size\":\"14px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"Playfair Display\",\"font_weight\":\"regular\",\"font_style\":\"normal\",\"text_transform\":\"none\",\"font_subset\":[\"latin\"],\"color\":{\"value\":{\"color\":\"rgb(255, 255, 255)\"}}}}',1),(4,'secondary_title_border','general','{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"px\",\"border\":{\"value\":\"\"},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":{\"text\":\"1\"}},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":{\"text\":\"\"}},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"},\"border_color\":{\"value\":{\"color\":\"rgb(233, 232, 211)\"}}}}',1),(4,'main_title_line_height','general','{\"value\":{\"text\":\"40\"}}',1),(4,'secondary_title_font','general','{\"value\":{\"font_type\":\"google\",\"font_size\":\"16px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"Playfair Display\",\"font_weight\":\"regular\",\"font_style\":\"normal\",\"text_transform\":\"none\",\"font_subset\":[\"latin\"],\"color\":{\"value\":{\"color\":\"rgb(68, 67, 73)\"}}}}',1),(4,'main_title_border','general','{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"px\",\"border\":{\"value\":\"\"},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":{\"text\":\"1\"}},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":{\"text\":\"\"}},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"},\"border_color\":{\"value\":{\"color\":\"rgb(228, 228, 228)\"}}}}',1),(4,'secondary_title_align','general','left',0),(4,'main_title_font','general','{\"value\":{\"font_type\":\"google\",\"font_size\":\"18px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"Playfair Display\",\"font_weight\":\"700\",\"font_style\":\"normal\",\"text_transform\":\"uppercase\",\"font_subset\":[\"latin\"],\"color\":{\"value\":{\"color\":\"\"}}}}',1),(4,'main_title_align','general','left',0),(4,'body_font','general','{\"value\":{\"font_type\":\"system\",\"font_size\":\"13px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"PT Sans\",\"font_weight\":\"\",\"font_style\":\"\",\"text_transform\":\"\",\"color\":{\"value\":{\"color\":\"rgb(51, 55, 69)\"}},\"font_subset\":[\"latin\"],\"v\":\"2\",\"font_size_mobile\":\"---\"}}',1),(4,'container_border','general','{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"px\",\"border\":{\"value\":\"\"},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":\"\"},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":\"\"},\"border_radius_top\":{\"value\":{\"text\":\"\"}},\"border_radius_right\":{\"value\":{\"text\":\"\"}},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"}}}',1),(4,'responsive_design','general','1',0),(4,'extended_layout','general','0',0),(4,'footer_html_p_font','footer','{\"value\":{\"font_type\":\"none\",\"font_size\":\"---\",\"font_size_mobile\":\"---\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"ABeeZee\",\"font_weight\":\"\",\"font_style\":\"\",\"font_subset\":[\"latin\"],\"letter_spacing\":\"\",\"text_transform\":\"\",\"v\":\"2\",\"color\":{\"value\":{\"color\":\"rgb(68, 67, 73)\"}}}}',1),(4,'footer_boxed_bg_image','footer','{\"value\":{\"bgimage_attach\":\"scroll\",\"use_gradient\":0,\"bgimage_size\":\"auto\",\"bgimage_position\":\"center top\"}}',1),(4,'boxed_footer_shadow','footer','{\"value\":{\"inner_shadow\":\"0\"}}',1),(4,'footer_shadow','footer','{\"value\":{\"inner_shadow\":\"0\"}}',1),(4,'footer_product_image_border','footer','{\"value\":{\"border_rounded\":\"px\"}}',1),(4,'footer_blog_image_border','footer','{\"value\":{\"border_rounded\":\"px\"}}',1),(4,'footer_boxed_bg_color','footer','{\"value\":{\"color\":\"rgb(255, 255, 255)\"}}',1),(4,'footer_post_image_width','footer','{\"value\":{\"text\":\"35\"}}',1),(4,'footer_post_divider_type','footer','solid',0),(4,'footer_post_padding','footer','{\"value\":{\"text\":\"5\"}}',1),(4,'footer_post_image_height','footer','{\"value\":{\"text\":\"35\"}}',1),(4,'footer_post_divider','footer','{\"value\":{\"color\":\"rgb(244, 244, 244)\"}}',1),(4,'contacts_icon_border','footer','{\"value\":{\"border_rounded\":\"px\",\"border\":{\"value\":\"\"},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":\"\"},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":{\"text\":\"50\"}},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"},\"border_radius_unit\":\"%\"}}',1),(4,'footer_product_image_height','footer','{\"value\":{\"text\":\"35\"}}',1),(4,'footer_product_image_width','footer','{\"value\":{\"text\":\"35\"}}',1),(4,'footer_product_name_font_hover','footer','{\"value\":{\"color\":\"rgb(176, 158, 102)\"}}',1),(4,'footer_product_old_price_font','footer','{\"value\":{\"font_type\":\"none\",\"font_size\":\"13px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"Abril Fatface\",\"font_weight\":\"regular\",\"font_style\":\"normal\",\"letter_spacing\":\"\",\"text_transform\":\"none\",\"font_subset\":[\"latin\"],\"color\":{\"value\":{\"color\":\"\"}}}}',1),(4,'footer_product_divider_type','footer','solid',0),(4,'footer_product_padding','footer','{\"value\":{\"text\":\"5\"}}',1),(4,'footer_product_divider','footer','{\"value\":{\"color\":\"rgb(244, 244, 244)\"}}',1),(4,'html_line_height','footer','{\"value\":{\"text\":\"17\"}}',1),(4,'footer_product_name_font','footer','{\"value\":{\"font_type\":\"system\",\"font_size\":\"14px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"Sail\",\"font_weight\":\"normal\",\"font_style\":\"normal\",\"letter_spacing\":\"\",\"text_transform\":\"none\",\"font_subset\":[\"latin\"],\"color\":{\"value\":{\"color\":\"\"}}}}',1),(4,'footer_product_name_overflow','footer','normal',0),(4,'footer_product_price_font','footer','{\"value\":{\"font_type\":\"none\",\"font_size\":\"---\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"\",\"font_weight\":\"\",\"font_style\":\"\",\"letter_spacing\":\"\",\"text_transform\":\"\",\"color\":{\"value\":{\"color\":\"rgb(68, 67, 73)\"}},\"v\":\"2\",\"font_size_mobile\":\"---\"}}',1),(4,'contacts_text_font_hover','footer','{\"value\":{\"color\":\"rgb(176, 158, 102)\"}}',1),(4,'contacts_text_font','footer','{\"value\":{\"font_type\":\"none\",\"font_size\":\"13px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"\",\"font_weight\":\"normal\",\"font_style\":\"normal\",\"letter_spacing\":\"\",\"text_transform\":\"none\",\"color\":{\"value\":{\"color\":\"rgb(255, 255, 255)\"}}}}',1),(4,'footer_bg_image','footer','{\"value\":{\"bgimage_attach\":\"scroll\",\"bgimage_repeat\":\"repeat\",\"bgimage_position\":\"center top\",\"bgimage\":{\"value\":{\"image\":\"\"}},\"use_gradient\":0,\"bgimage_size\":\"auto\"}}',1),(4,'copyright_font_settings','footer','{\"value\":{\"font_type\":\"none\",\"font_size\":\"13px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"\",\"font_weight\":\"normal\",\"font_style\":\"normal\",\"letter_spacing\":\"\",\"text_transform\":\"none\",\"color\":{\"value\":{\"color\":\"\"}}}}',1),(4,'contacts_icon_bg','footer','{\"value\":{\"color\":\"rgb(176, 158, 102)\"}}',1),(4,'contacts_icon_bg_hover','footer','{\"value\":{\"color\":\"rgb(56, 56, 56)\"}}',1),(4,'footer_tooltip_font','footer','{\"value\":{\"color\":\"rgb(255, 255, 255)\"}}',1),(4,'footer_tooltip_bg_color','footer','{\"value\":{\"color\":\"rgb(56, 56, 56)\"}}',1),(4,'bottom_bar_bg','footer','{\"value\":{\"color\":\"\"}}',1),(4,'footer_bg_color','footer','{\"value\":{\"color\":\"\"}}',1),(4,'footer_links_hover','footer','{\"value\":{\"color\":\"rgb(176, 158, 102)\"}}',1),(4,'footer_titles_divider','footer','{\"value\":{\"color\":\"rgb(244, 244, 244)\"}}',1),(4,'contacts_bar_bg','footer','{\"value\":{\"color\":\"rgb(244, 244, 244)\"}}',1),(4,'bottom_bar_shadow','footer','none',0),(4,'boxed_bottom','footer','fullwidth-bar',0),(4,'bottom_bar_border','footer','{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"px\",\"border\":{\"value\":\"\"},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":\"\"},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":\"\"},\"border_radius_top\":{\"value\":{\"text\":\"\"}},\"border_radius_right\":{\"value\":{\"text\":\"\"}},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"}}}',1),(4,'footer_tooltip_border','footer','{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"px\",\"border\":{\"value\":\"\"},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":\"\"},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":{\"text\":\"3\"}},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"}}}',1),(4,'contacts_bar_border','footer','{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"px\",\"border\":{\"value\":{\"text\":\"\"}},\"border_top\":{\"value\":{\"text\":\"\"}},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":{\"text\":\"\"}},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":{\"text\":\"\"}},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"},\"border_color\":{\"value\":{\"color\":\"\"}}}}',1),(4,'contacts_display','footer','on',0),(4,'contacts_bar_shadow','footer','none',0),(4,'product_grid_item_border','productgrid','{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"%\",\"border\":{\"value\":{\"text\":\"\"}},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":\"\"},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":{\"text\":\"\"}},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"},\"border_color\":{\"value\":{\"color\":\"\"}}}}',1),(4,'product_grid_item_padding','productgrid','{\"value\":{\"text\":\"\"}}',1),(4,'product_grid_second_image','productgrid','1',0),(4,'product_grid_image_border','productgrid','{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"%\",\"border\":{\"value\":{\"text\":\"\"}},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":\"\"},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":{\"text\":\"\"}},\"border_radius_top\":{\"value\":{\"text\":\"\"}},\"border_radius_right\":{\"value\":{\"text\":\"\"}},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"},\"border_color\":{\"value\":{\"color\":\"\"}}}}',1),(4,'product_grid_image_overlay_opacity','productgrid','{\"value\":{\"text\":\"\"}}',1),(4,'product_grid_latest_label_status','productgrid','block',0),(4,'product_grid_special_label_status','productgrid','block',0),(4,'product_grid_outofstock_label_status','productgrid','block',0),(4,'product_grid_name_overflow','productgrid','nowrap',0),(4,'product_grid_price_full','productgrid','inline-block',0),(4,'product_grid_details_tip','productgrid','never',0),(4,'product_grid_details_border','productgrid','{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"px\",\"border\":{\"value\":\"\"},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":\"\"},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":\"\"},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"}}}',1),(4,'product_grid_details_margin','productgrid','{\"value\":{\"text\":\"\"}}',1),(4,'product_grid_price_border','productgrid','{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"px\",\"border\":{\"value\":\"\"},\"border_top\":{\"value\":{\"text\":\"1\"}},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":{\"text\":\"\"}},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":{\"text\":\"\"}},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"},\"border_color\":{\"value\":{\"color\":\"rgb(246, 241, 236)\"}}}}',1),(4,'product_grid_price_pt','productgrid','{\"value\":{\"text\":\"7\"}}',1),(4,'product_grid_price_pr','productgrid','{\"value\":{\"text\":\"\"}}',1),(4,'product_grid_price_pb','productgrid','{\"value\":{\"text\":\"\"}}',1),(4,'product_grid_price_pl','productgrid','{\"value\":{\"text\":\"\"}}',1),(4,'product_grid_details_tip_size','productgrid','{\"value\":{\"text\":\"25\"}}',1),(4,'product_grid_details_tip_offset_x','productgrid','{\"value\":{\"text\":\"-14\"}}',1),(4,'product_grid_details_tip_offset_y','productgrid','{\"value\":{\"text\":\"-21\"}}',1),(4,'product_grid_button_block_button','productgrid','block-button',0),(4,'product_grid_button_icon_display','productgrid','text',0),(4,'product_grid_button_icon_position','productgrid','left',0),(4,'product_grid_button_border','productgrid','{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"px\",\"border\":{\"value\":\"\"},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":\"\"},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":{\"text\":\"\"}},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"}}}',1),(4,'product_grid_button_width','productgrid','{\"value\":\"\"}',1),(4,'product_grid_button_height','productgrid','{\"value\":\"\"}',1),(4,'product_grid_button_tooltip_border','productgrid','{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"px\",\"border\":{\"value\":\"\"},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":\"\"},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":{\"text\":\"3\"}},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"}}}',1),(4,'product_grid_quickview_status','productgrid','hover',0),(4,'product_grid_quickview_button_icon_display','productgrid','icon',0),(4,'product_grid_quickview_button_icon_position','productgrid','left',0),(4,'product_grid_quickview_offset_x','productgrid','{\"value\":{\"text\":\"\"}}',1),(4,'product_grid_quickview_offset_y','productgrid','{\"value\":{\"text\":\"\"}}',1),(4,'product_grid_quickview_button_border','productgrid','{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"px\",\"border\":{\"value\":\"\"},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":\"\"},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":{\"text\":\"40\"}},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"}}}',1),(4,'product_grid_quickview_button_width','productgrid','{\"value\":{\"text\":\"14\"}}',1),(4,'product_grid_quickview_button_height','productgrid','{\"value\":{\"text\":\"\"}}',1),(4,'product_grid_quickview_button_tooltip_border','productgrid','{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"px\",\"border\":{\"value\":\"\"},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":\"\"},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":{\"text\":\"\"}},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"}}}',1),(4,'product_grid_wishlist_icon_display','productgrid','icon',0),(4,'product_grid_wishlist_icon_position','productgrid','image',0),(4,'product_grid_wishlist_icon_on_hover','productgrid','on',0),(4,'product_grid_wishlist_icon_border','productgrid','{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"%\",\"border\":{\"value\":\"\"},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":\"\"},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":{\"text\":\"50\"}},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"}}}',1),(4,'product_grid_wishlist_icon_bg_width','productgrid','{\"value\":{\"text\":\"32\"}}',1),(4,'product_grid_wishlist_icon_bg_height','productgrid','{\"value\":{\"text\":\"32\"}}',1),(4,'product_grid_wishlist_icon_tip_border','productgrid','{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"px\",\"border\":{\"value\":\"\"},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":\"\"},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":{\"text\":\"\"}},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"}}}',1),(4,'product_grid_button_icon','productgrid','{\"value\":{\"options\":{\"font_size\":\"24px\",\"color\":{\"value\":{\"color\":\"rgb(255, 255, 255)\"}},\"top\":\"\"},\"icon_type\":\"icon\",\"icon\":{\"icon\":\"&#xe000;\",\"class\":\"icon0\"}}}',1),(4,'product_grid_quickview_button_icon','productgrid','{\"value\":{\"options\":{\"font_size\":\"20px\",\"color\":{\"value\":{\"color\":\"rgb(255, 255, 255)\"}},\"top\":\"\"},\"icon_type\":\"icon\",\"icon\":{\"icon\":\"&#xe660;\",\"class\":\"eye\"}}}',1),(4,'product_grid_wishlist_icon','productgrid','{\"value\":{\"options\":{\"font_size\":\"16px\",\"color\":{\"value\":{\"color\":\"rgb(255, 255, 255)\"}},\"top\":\"1\"},\"icon_type\":\"icon\",\"icon\":{\"icon\":\"&#xe662;\",\"class\":\"heart2\"}}}',1),(4,'product_grid_compare_icon','productgrid','{\"value\":{\"options\":{\"font_size\":\"16px\",\"color\":{\"value\":{\"color\":\"rgb(255, 255, 255)\"}},\"top\":\"\"},\"icon_type\":\"icon\",\"icon\":{\"icon\":\"&#xe025;\",\"class\":\"refresh\"}}}',1),(4,'product_grid_name_font','productgrid','{\"value\":{\"font_type\":\"system\",\"font_size\":\"14px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"Roboto Slab\",\"font_weight\":\"normal\",\"font_style\":\"normal\",\"text_transform\":\"none\",\"color\":{\"value\":{\"color\":\"rgb(51, 55, 69)\"}},\"font_subset\":[\"latin\"]}}',1),(4,'product_grid_price_font','productgrid','{\"value\":{\"font_type\":\"none\",\"font_size\":\"15px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"Abril Fatface\",\"font_weight\":\"regular\",\"font_style\":\"normal\",\"text_transform\":\"none\",\"color\":{\"value\":{\"color\":\"\"}},\"font_subset\":[\"latin\"]}}',1),(4,'product_grid_old_price_font','productgrid','{\"value\":{\"font_type\":\"none\",\"font_size\":\"13px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"\",\"font_weight\":\"normal\",\"font_style\":\"normal\",\"text_transform\":\"none\",\"color\":{\"value\":{\"color\":\"rgb(164, 23, 51)\"}}}}',1),(4,'product_grid_button_font','productgrid','{\"value\":{\"font_type\":\"none\",\"font_size\":\"13px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"\",\"font_weight\":\"normal\",\"font_style\":\"normal\",\"text_transform\":\"none\"}}',1),(4,'product_grid_quickview_button_font','productgrid','{\"value\":{\"font_type\":\"none\",\"font_size\":\"12px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"Roboto Slab\",\"font_weight\":\"regular\",\"font_style\":\"normal\",\"text_transform\":\"uppercase\",\"font_subset\":[\"latin\"],\"color\":{\"value\":{\"color\":\"\"}}}}',1),(4,'product_grid_wishlist_font','productgrid','{\"value\":{\"font_type\":\"system\",\"font_size\":\"11px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"\",\"font_weight\":\"normal\",\"font_style\":\"normal\",\"text_transform\":\"none\",\"color\":{\"value\":{\"color\":\"rgb(51, 55, 69)\"}}}}',1),(4,'product_grid_wishlist_font_hover','productgrid','{\"value\":{\"color\":\"\"}}',1),(4,'product_grid_image_overlay','productgrid','{\"value\":{\"color\":\"\"}}',1),(4,'product_grid_details_bg','productgrid','{\"value\":{\"color\":\"rgb(255, 255, 255)\"}}',1),(4,'product_grid_name_font_hover','productgrid','{\"value\":{\"color\":\"\"}}',1),(4,'product_grid_price_background','productgrid','{\"value\":{\"color\":\"\"}}',1),(4,'product_grid_details_tip_color','productgrid','{\"value\":{\"color\":\"rgb(255, 255, 255)\"}}',1),(4,'product_grid_wishlist_icon_bg','productgrid','{\"value\":{\"color\":\"rgb(176, 158, 102)\"}}',1),(4,'product_grid_wishlist_icon_bg_hover','productgrid','{\"value\":{\"color\":\"rgb(255, 255, 255)\"}}',1),(4,'product_grid_wishlist_icon_tip_font','productgrid','{\"value\":{\"color\":\"rgb(68, 67, 73)\"}}',1),(4,'product_grid_wishlist_icon_tip_bg','productgrid','{\"value\":{\"color\":\"rgb(255, 255, 255)\"}}',1),(4,'product_grid_quickview_button_tooltip_font','productgrid','{\"value\":{\"color\":\"rgb(68, 67, 73)\"}}',1),(4,'product_grid_quickview_button_tooltip_bg_color','productgrid','{\"value\":{\"color\":\"rgb(255, 255, 255)\"}}',1),(4,'product_grid_item_bg','productgrid','{\"value\":{\"color\":\"\"}}',1),(4,'product_grid_button_width_px','productgrid','{\"value\":{\"text\":\"38\"}}',1),(4,'product_grid_button_height_px','productgrid','{\"value\":{\"text\":\"38\"}}',1),(4,'product_grid_quickview_button_width_px','productgrid','{\"value\":{\"text\":\"40\"}}',1),(4,'product_grid_quickview_button_height_px','productgrid','{\"value\":{\"text\":\"40\"}}',1),(4,'product_grid_button_tooltip_font','productgrid','{\"value\":{\"color\":\"rgb(255, 255, 255)\"}}',1),(4,'product_grid_button_tooltip_bg_color','productgrid','{\"value\":{\"color\":\"\"}}',1),(4,'product_grid_soft_shadow','productgrid','none',0),(4,'rating_offset_x','productgrid','{\"value\":{\"text\":\"-47\"}}',1),(4,'rating_offset_y','productgrid','{\"value\":{\"text\":\"-35\"}}',1),(4,'product_grid_hover_border','productgrid','{\"value\":{\"color\":\"\"}}',1),(4,'product_grid_quickview_button_bg','productgrid','{\"value\":{\"color\":\"rgb(176, 158, 102)\"}}',1),(4,'product_grid_quickview_button_border_hover','productgrid','{\"value\":{\"color\":\"\"}}',1),(4,'product_grid_details_bg_hover','productgrid','{\"value\":{\"color\":\"\"}}',1),(4,'product_grid_quickview_button_bg_hover','productgrid','{\"value\":{\"color\":\"rgb(255, 255, 255)\"}}',1),(4,'product_grid_button_bottom_margin','productgrid','{\"value\":{\"text\":\"0\"}}',1),(4,'product_grid_details_padding','productgrid','{\"value\":{\"text\":\"15\"}}',1),(4,'wish_button_icon_hover','productgrid','{\"value\":{\"color\":\"rgb(68, 67, 73)\"}}',1),(4,'quickview_button_icon_hover','productgrid','{\"value\":{\"color\":\"rgb(68, 67, 73)\"}}',1),(4,'product_grid_quickview_button_font_hover','productgrid','{\"value\":{\"color\":\"\"}}',1),(4,'product_grid_shadow_custom','productgrid','{\"value\":{\"inner_shadow\":\"0\"}}',1),(4,'pg_quick_button_shadow','productgrid','{\"value\":{\"inner_shadow\":\"0\"}}',1),(4,'pg_quick_button_shadow_hover','productgrid','{\"value\":{\"inner_shadow\":\"0\"}}',1),(4,'pg_quick_button_shadow_active','productgrid','{\"value\":{\"inner_shadow\":\"0\"}}',1),(4,'product_grid_quickview_button_bg_image','productgrid','{\"value\":{\"bgimage_attach\":\"scroll\",\"use_gradient\":0,\"bgimage_size\":\"auto\",\"bgimage_position\":\"center top\"}}',1),(4,'product_grid_quickview_button_bg_image_hover','productgrid','{\"value\":{\"bgimage_attach\":\"scroll\",\"use_gradient\":0,\"bgimage_size\":\"auto\",\"bgimage_position\":\"center top\"}}',1),(4,'pg_button_shadow','productgrid','{\"value\":{\"inner_shadow\":\"0\"}}',1),(4,'pg_button_shadow_hover','productgrid','{\"value\":{\"inner_shadow\":\"0\"}}',1),(4,'pg_button_shadow_active','productgrid','{\"value\":{\"inner_shadow\":\"0\"}}',1),(4,'product_grid_button_bg_image','productgrid','{\"value\":{\"bgimage_attach\":\"scroll\",\"use_gradient\":0,\"bgimage_size\":\"auto\",\"bgimage_position\":\"center top\"}}',1),(4,'product_grid_button_bg_image_hover','productgrid','{\"value\":{\"bgimage_attach\":\"scroll\",\"use_gradient\":0,\"bgimage_size\":\"auto\",\"bgimage_position\":\"center top\"}}',1),(4,'wc_button_shadow','productgrid','{\"value\":{\"inner_shadow\":\"0\"}}',1),(4,'wc_button_shadow_hover','productgrid','{\"value\":{\"inner_shadow\":\"0\"}}',1),(4,'wc_button_shadow_active','productgrid','{\"value\":{\"inner_shadow\":\"0\"}}',1),(4,'product_grid_wishlist_icon_bg_image','productgrid','{\"value\":{\"bgimage_attach\":\"scroll\",\"use_gradient\":0,\"bgimage_size\":\"auto\",\"bgimage_position\":\"center top\"}}',1),(4,'product_grid_wishlist_icon_bg_image_hover','productgrid','{\"value\":{\"bgimage_attach\":\"scroll\",\"use_gradient\":0,\"bgimage_size\":\"auto\",\"bgimage_position\":\"center top\"}}',1),(4,'main_menu_mobile_bg_image','headermenus','{\"value\":{\"bgimage_attach\":\"scroll\",\"use_gradient\":0,\"bgimage_size\":\"auto\",\"bgimage_position\":\"center top\"}}',1),(4,'dropdown_shadow_custom','headermenus','{\"value\":{\"inner_shadow\":\"0\"}}',1),(4,'main_menu_border_fw','headermenus','{\"value\":{\"border_rounded\":\"px\"}}',1),(4,'mobile_trigger_text_color_cart_same_line','headermenus','{\"value\":{\"color\":\"rgb(68, 67, 73)\"}}',1),(4,'mobile_trigger_icon_color_cart_same_line','headermenus','{\"value\":{\"color\":\"rgb(68, 67, 73)\"}}',1),(4,'footer_titles','footer','{\"value\":{\"font_type\":\"google\",\"font_size\":\"14px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"Playfair Display\",\"font_weight\":\"regular\",\"font_style\":\"normal\",\"text_transform\":\"uppercase\",\"font_subset\":[\"latin\"],\"color\":{\"value\":{\"color\":\"rgb(42, 43, 46)\"}}}}',1),(4,'footer_titles_align','footer','left',0),(4,'footer_links','footer','{\"value\":{\"font_type\":\"none\",\"font_size\":\"13px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"\",\"font_weight\":\"normal\",\"font_style\":\"normal\",\"text_transform\":\"none\",\"color\":{\"value\":{\"color\":\"rgb(90, 105, 129)\"}}}}',1),(4,'footer_titles_divider_type','footer','solid',0),(4,'fullwidth_footer','footer','boxed-footer',0),(4,'footer_top_margin','footer','20',0),(4,'footer_bottom_margin','footer','0',0),(4,'footer_border','footer','{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"px\",\"border\":{\"value\":\"\"},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":\"\"},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":\"\"},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"}}}',1),(4,'footer_post_price_date','footer','{\"value\":{\"font_type\":\"none\",\"font_size\":\"---\",\"font_size_mobile\":\"---\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"ABeeZee\",\"font_weight\":\"\",\"font_style\":\"\",\"font_subset\":[\"latin\"],\"letter_spacing\":\"\",\"text_transform\":\"\",\"v\":\"2\",\"color\":{\"value\":{\"color\":\"rgb(68, 67, 73)\"}}}}',1),(4,'one_page_text_input_border','journalcheckout','{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"px\",\"border\":{\"value\":{\"text\":\"1\"}},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":\"\"},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":\"\"},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"},\"border_color\":{\"value\":{\"color\":\"rgb(228, 228, 228)\"}}}}',1),(4,'one_page_title_padding_left','journalcheckout','{\"value\":\"\"}',1),(4,'one_page_section_font','journalcheckout','{\"value\":{\"font_type\":\"none\",\"font_size\":\"13px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":null,\"font_weight\":\"normal\",\"font_style\":\"normal\",\"letter_spacing\":\"\",\"text_transform\":\"none\",\"font_subset\":[]}}',1),(4,'one_page_title','journalcheckout','{\"value\":{\"1\":\"Quick Checkout\"}}',1),(4,'one_page_title_align','journalcheckout','center',0),(4,'one_page_section_padding','journalcheckout','{\"value\":\"\"}',1),(4,'one_page_title_border','journalcheckout','{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"px\",\"border\":{\"value\":\"\"},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":{\"text\":\"0\"}},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":\"\"},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"}}}',1),(4,'one_page_dividers_style','journalcheckout','solid',0),(4,'one_page_title_padding_right','journalcheckout','{\"value\":\"\"}',1),(4,'one_page_text_input_bg','journalcheckout','{\"value\":{\"color\":\"\"}}',1),(4,'one_page_table_footer_font','journalcheckout','{\"value\":{\"font_type\":\"none\",\"font_size\":\"14px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"Playfair Display\",\"font_weight\":\"700\",\"font_style\":\"normal\",\"letter_spacing\":\"\",\"text_transform\":\"none\",\"font_subset\":[\"latin\"]}}',1),(4,'one_page_title_font','journalcheckout','{\"value\":{\"font_type\":\"google\",\"font_size\":\"30px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"Playfair Display\",\"font_weight\":\"700\",\"font_style\":\"normal\",\"letter_spacing\":\"\",\"text_transform\":\"none\",\"font_subset\":[\"latin\"]}}',1),(4,'one_page_lang_ship_address','journalcheckout','{\"value\":{\"1\":\"\"}}',1),(4,'one_page_status','journalcheckout','one-page',0),(4,'one_page_auto_save','journalcheckout','0',0),(4,'one_page_table_header_font','journalcheckout','{\"value\":{\"font_type\":\"google\",\"font_size\":\"15px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"Playfair Display\",\"font_weight\":\"regular\",\"font_style\":\"normal\",\"letter_spacing\":\"\",\"text_transform\":\"none\",\"font_subset\":[\"latin\"]}}',1),(4,'one_page_lang_coupon_button','journalcheckout','{\"value\":{\"1\":\"\"}}',1),(4,'one_page_table_height','journalcheckout','{\"value\":{\"text\":\"373\"}}',1),(4,'one_page_title_line_height','journalcheckout','{\"value\":\"\"}',1),(4,'one_page_lang_voucher_button','journalcheckout','{\"value\":{\"1\":\"\"}}',1),(4,'one_page_lang_coupon_placeholder','journalcheckout','{\"value\":{\"1\":\"\"}}',1),(4,'one_page_table_product_name_font','journalcheckout','{\"value\":{\"font_type\":\"none\",\"font_size\":\"13px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"\",\"font_weight\":\"normal\",\"font_style\":\"normal\",\"letter_spacing\":\"\",\"text_transform\":\"none\"}}',1),(4,'one_page_table_style','journalcheckout','solid',0),(4,'one_page_lang_returning','journalcheckout','{\"value\":{\"1\":\"\"}}',1),(4,'one_page_lang_ship_method','journalcheckout','{\"value\":{\"1\":\"\"}}',1),(4,'one_page_lang_payment_method','journalcheckout','{\"value\":{\"1\":\"\"}}',1),(4,'one_page_lang_voucher_placeholder','journalcheckout','{\"value\":{\"1\":\"\"}}',1),(4,'one_page_lang_your_pass','journalcheckout','{\"value\":{\"1\":\"\"}}',1),(4,'one_page_lang_your_address','journalcheckout','{\"value\":{\"1\":\"\"}}',1),(4,'one_page_lang_register_selector','journalcheckout','{\"value\":{\"1\":\"\"}}',1),(4,'one_page_section_bg','journalcheckout','{\"value\":{\"color\":\"rgb(255, 255, 255)\"}}',1),(4,'one_page_dividers_color','journalcheckout','{\"value\":{\"color\":\"rgb(233, 232, 211)\"}}',1),(4,'one_page_section_border_settings','journalcheckout','{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"px\",\"border\":{\"value\":{\"text\":\"1\"}},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":\"\"},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":\"\"},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"},\"border_color\":{\"value\":{\"color\":\"rgb(233, 232, 211)\"}}}}',1),(4,'one_page_lang_confirm_order','journalcheckout','{\"value\":{\"1\":\"Place your Order\"}}',1),(4,'one_page_lang_shop_cart','journalcheckout','{\"value\":{\"1\":\"\"}}',1),(4,'one_page_lang_comments','journalcheckout','{\"value\":{\"1\":\"\"}}',1),(4,'one_page_confirm_button_width','journalcheckout','{\"value\":{\"text\":\"\"}}',1),(4,'one_page_text_product_image_border','journalcheckout','{\"value\":{\"border_rounded\":\"px\"}}',1),(4,'one_page_lang_pers_details','journalcheckout','{\"value\":{\"1\":\"\"}}',1),(4,'one_page_confirm_button_align','journalcheckout','left',0),(4,'one_page_confirm_button_border','journalcheckout','{\"value\":{\"border_rounded\":\"px\"}}',1),(4,'one_page_lang_coupon_voucher','journalcheckout','{\"value\":{\"1\":\"\"}}',1),(4,'one_page_confirm_button_height','journalcheckout','{\"value\":{\"text\":\"\"}}',1),(4,'one_page_table_border','journalcheckout','{\"value\":{\"color\":\"rgb(233, 232, 211)\"}}',1),(4,'one_page_confirm_button_font','journalcheckout','{\"value\":{\"font_type\":\"none\",\"font_size\":\"18px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"Playfair Display\",\"font_weight\":\"700\",\"font_style\":\"normal\",\"letter_spacing\":\"\",\"text_transform\":\"none\",\"font_subset\":[\"latin\"]}}',1),(4,'one_page_text_input_color','journalcheckout','{\"value\":{\"color\":\"\"}}',1),(4,'one_page_section_title_align','journalcheckout','left',0),(4,'one_page_section_title_border','journalcheckout','{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"px\",\"border\":{\"value\":\"\"},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":{\"text\":\"0\"}},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":\"\"},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"}}}',1),(4,'one_page_section_title_bg','journalcheckout','{\"value\":{\"color\":\"rgb(243, 242, 228)\"}}',1),(4,'one_page_lang_bill_address','journalcheckout','{\"value\":[]}',1),(4,'one_page_section_title_font','journalcheckout','{\"value\":{\"font_type\":\"google\",\"font_size\":\"17px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"Playfair Display\",\"font_weight\":\"700\",\"font_style\":\"normal\",\"letter_spacing\":\"\",\"text_transform\":\"none\",\"color\":{\"value\":{\"color\":\"rgb(55, 41, 30)\"}},\"font_subset\":[\"latin\"]}}',1),(4,'one_page_section_padding_l','journalcheckout','{\"value\":{\"text\":\"10\"}}',1),(4,'one_page_voucher_status','journalcheckout','on',0),(4,'one_page_lang_payment_details','journalcheckout','{\"value\":[]}',1),(4,'one_page_show_company','journalcheckout','block',0),(4,'one_page_show_address_2','journalcheckout','block',0),(4,'one_page_coupon_status','journalcheckout','on',0),(4,'one_page_show_fax','journalcheckout','block',0),(4,'one_page_default_auth','journalcheckout','register',0),(4,'one_page_hide_shipping_option_label','journalcheckout','none',0),(4,'one_page_coupon_voucher_button_border','journalcheckout','{\"value\":{\"border_rounded\":\"px\"}}',1),(4,'one_page_table_header_bg','journalcheckout','{\"value\":{\"color\":\"rgb(255, 255, 255)\"}}',1),(4,'one_page_coupon_voucher_button_bg_image','journalcheckout','{\"value\":{\"bgimage_attach\":\"scroll\",\"use_gradient\":0,\"bgimage_size\":\"auto\",\"bgimage_position\":\"center top\"}}',1),(4,'one_page_coupon_voucher_button_bg_image_hover','journalcheckout','{\"value\":{\"bgimage_attach\":\"scroll\",\"use_gradient\":0,\"bgimage_size\":\"auto\",\"bgimage_position\":\"center top\"}}',1),(4,'cv_button_shadow','journalcheckout','{\"value\":{\"inner_shadow\":\"0\"}}',1),(4,'cv_button_shadow_hover','journalcheckout','{\"value\":{\"inner_shadow\":\"0\"}}',1),(4,'cv_button_shadow_active','journalcheckout','{\"value\":{\"inner_shadow\":\"0\"}}',1),(4,'one_page_lang_reward_button','journalcheckout','{\"value\":[]}',1),(4,'one_page_lang_reward_placeholder','journalcheckout','{\"value\":[]}',1),(4,'one_page_lang_loading_text','journalcheckout','{\"value\":[]}',1),(4,'one_page_confirm_button_bg_image','journalcheckout','{\"value\":{\"bgimage_attach\":\"scroll\",\"use_gradient\":0,\"bgimage_size\":\"auto\",\"bgimage_position\":\"center top\"}}',1),(4,'one_page_confirm_button_bg_image_hover','journalcheckout','{\"value\":{\"bgimage_attach\":\"scroll\",\"use_gradient\":0,\"bgimage_size\":\"auto\",\"bgimage_position\":\"center top\"}}',1),(4,'qc_button_shadow','journalcheckout','{\"value\":{\"inner_shadow\":\"0\"}}',1),(4,'qc_button_shadow_hover','journalcheckout','{\"value\":{\"inner_shadow\":\"0\"}}',1),(4,'qc_button_shadow_active','journalcheckout','{\"value\":{\"inner_shadow\":\"0\"}}',1),(4,'filter_mobile_icon','modulesuperfilter','{\"value\":{\"options\":{\"font_size\":\"---\"}}}',1),(4,'filter_mobile_bg','modulesuperfilter','{\"value\":{\"color\":\"rgb(176, 158, 102)\"}}',1),(10,'product_page_cloud_zoom','productpage','1',0),(10,'product_page_gallery','productpage','1',0),(10,'product_page_gallery_carousel','productpage','1',0),(10,'product_page_gallery_carousel_arrows','productpage','always',0),(10,'product_page_image_border','productpage','{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"px\",\"border\":{\"value\":{\"text\":\"\"}},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":\"\"},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":{\"text\":\"\"}},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"},\"border_color\":{\"value\":{\"color\":\"\"}}}}',1),(10,'product_page_additional_border','productpage','{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"dotted\",\"border_radius_unit\":\"px\",\"border\":{\"value\":{\"text\":\"\"}},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":{\"text\":\"\"}},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":{\"text\":\"\"}},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"},\"border_color\":{\"value\":{\"color\":\"\"}}}}',1),(10,'product_page_additional_width','productpage','{\"value\":\"5\",\"range\":\"1,8\",\"step\":\"1\"}',1),(10,'product_page_additional_spacing','productpage','{\"value\":{\"text\":\"10\"}}',1),(10,'product_page_gallery_text','productpage','{\"value\":{\"1\":\"Click Image for Gallery\",\"2\":\"\"}}',1),(10,'product_page_gallery_text_font','productpage','{\"value\":{\"font_type\":\"none\",\"font_size\":\"13px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"ABeeZee\",\"font_weight\":\"regular\",\"font_style\":\"normal\",\"text_transform\":\"none\",\"color\":{\"value\":{\"color\":\"\"}},\"font_subset\":[\"latin\"]}}',1),(10,'product_page_latest_label_status','productpage','block',0),(10,'product_page_special_label_status','productpage','block',0),(10,'product_page_outofstock_label_status','productpage','block',0),(10,'product_page_options_font','productpage','{\"value\":{\"font_type\":\"none\",\"font_size\":\"---\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":null,\"font_weight\":\"\",\"font_style\":\"\",\"text_transform\":\"\",\"color\":{\"value\":{\"color\":\"\"}},\"letter_spacing\":\"\",\"v\":\"2\",\"font_size_mobile\":\"---\",\"font_subset\":[]}}',1),(10,'product_page_options_links','productpage','{\"value\":{\"font_type\":\"none\",\"font_size\":\"13px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"\",\"font_weight\":\"normal\",\"font_style\":\"normal\",\"text_transform\":\"none\"}}',1),(10,'product_page_options_border','productpage','{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"px\",\"border\":{\"value\":{\"text\":\"\"}},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":\"\"},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":\"\"},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"},\"border_color\":{\"value\":{\"color\":\"\"}}}}',1),(10,'product_page_options_item_border','productpage','{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"px\",\"border\":{\"value\":\"\"},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":\"\"},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":{\"text\":\"\"}},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"}}}',1),(10,'product_page_options_margin','productpage','{\"value\":{\"text\":\"1\"}}',1),(10,'product_page_options_views','productpage','1',0),(10,'product_page_options_views_text','productpage','{\"value\":{\"1\":\"Views\",\"text\":\"Views\"}}',1),(10,'product_page_options_instock_font','productpage','{\"value\":{\"font_type\":\"none\",\"font_size\":\"---\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"\",\"font_weight\":\"bold\",\"font_style\":\"\",\"text_transform\":\"\",\"color\":{\"value\":{\"color\":\"rgb(51, 153, 101)\"}},\"v\":\"2\",\"font_size_mobile\":\"---\"}}',1),(10,'product_page_options_outstock_font','productpage','{\"value\":{\"font_type\":\"none\",\"font_size\":\"---\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"\",\"font_weight\":\"bold\",\"font_style\":\"\",\"text_transform\":\"\",\"color\":{\"value\":{\"color\":\"rgb(234, 35, 73)\"}},\"v\":\"2\",\"font_size_mobile\":\"---\"}}',1),(10,'product_page_options_price_font','productpage','{\"value\":{\"font_type\":\"none\",\"font_size\":\"35px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"Roboto Slab\",\"font_weight\":\"\",\"font_style\":\"\",\"text_transform\":\"\",\"font_subset\":[\"latin\"],\"color\":{\"value\":{\"color\":\"rgb(51, 55, 69)\"}},\"v\":\"2\",\"font_size_mobile\":\"---\"}}',1),(10,'product_page_options_old_price_font','productpage','{\"value\":{\"font_type\":\"none\",\"font_size\":\"20px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"Roboto Slab\",\"font_weight\":\"\",\"font_style\":\"\",\"text_transform\":\"\",\"color\":{\"value\":{\"color\":\"rgb(255, 255, 255)\"}},\"font_subset\":[\"latin\"],\"v\":\"2\",\"font_size_mobile\":\"---\"}}',1),(10,'product_page_options_old_price_border','productpage','{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"px\",\"border\":{\"value\":\"\"},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":\"\"},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":{\"text\":\"\"}},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"}}}',1),(10,'product_page_options_push_select','productpage','1',0),(10,'product_page_options_push_shadow','productpage','inset 0 0 8px rgba(0, 0, 0, 0.7)',0),(10,'product_page_options_title','productpage','{\"value\":{\"font_type\":\"none\",\"font_size\":\"---\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"\",\"font_weight\":\"\",\"font_style\":\"\",\"text_transform\":\"\",\"color\":{\"value\":{\"color\":\"rgb(255, 255, 255)\"}},\"letter_spacing\":\"\",\"v\":\"2\",\"font_size_mobile\":\"---\"}}',1),(10,'product_page_options_push_select_font','productpage','{\"value\":{\"font_type\":\"none\",\"font_size\":\"---\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"\",\"font_weight\":\"\",\"font_style\":\"\",\"text_transform\":\"\",\"color\":{\"value\":{\"color\":\"rgb(255, 255, 255)\"}},\"letter_spacing\":\"\",\"v\":\"2\",\"font_size_mobile\":\"---\"}}',1),(10,'product_page_qty_border','productpage','{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"px\",\"border\":{\"value\":\"\"},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":\"\"},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":{\"text\":\"\"}},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"}}}',1),(10,'product_page_button_icon_position','productpage','left',0),(10,'product_page_button_font','productpage','{\"value\":{\"font_type\":\"none\",\"font_size\":\"16px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"Roboto Slab\",\"font_weight\":\"\",\"font_style\":\"\",\"text_transform\":\"uppercase\",\"font_subset\":[\"latin\"],\"color\":{\"value\":{\"color\":\"rgb(255, 255, 255)\"}},\"v\":\"2\",\"font_size_mobile\":\"---\"}}',1),(10,'product_page_button_border','productpage','{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"px\",\"border\":{\"value\":{\"text\":\"\"}},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":\"\"},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":{\"text\":\"\"}},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"},\"border_color\":{\"value\":{\"color\":\"\"}}}}',1),(10,'product_page_wishlist_font','productpage','{\"value\":{\"font_type\":\"none\",\"font_size\":\"14px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"\",\"font_weight\":\"\",\"font_style\":\"\",\"text_transform\":\"\",\"color\":{\"value\":{\"color\":\"rgb(255, 255, 255)\"}},\"v\":\"2\",\"font_size_mobile\":\"---\"}}',1),(10,'share_buttons_status','productpage','1',0),(10,'share_buttons_position','productpage','right',0),(10,'share_buttons_account_key','productpage','{\"value\":\"\"}',1),(10,'product_page_tabs_font','productpage','{\"value\":{\"font_type\":\"none\",\"font_size\":\"14px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"Roboto Slab\",\"font_weight\":\"\",\"font_style\":\"\",\"text_transform\":\"uppercase\",\"font_subset\":[\"latin\"],\"color\":{\"value\":{\"color\":\"rgb(255, 255, 255)\"}},\"v\":\"2\",\"font_size_mobile\":\"---\"}}',1),(10,'product_page_tabs_border','productpage','{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"px\",\"border\":{\"value\":\"\"},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":\"\"},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":\"\"},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"}}}',1),(10,'product_page_tabs_content_font','productpage','{\"value\":{\"font_type\":\"none\",\"font_size\":\"---\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"\",\"font_weight\":\"\",\"font_style\":\"\",\"text_transform\":\"\",\"letter_spacing\":\"\",\"v\":\"2\",\"font_size_mobile\":\"---\"}}',1),(10,'product_page_tabs_content_ul_font','productpage','{\"value\":{\"font_type\":\"none\",\"font_size\":\"---\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"\",\"font_weight\":\"\",\"font_style\":\"\",\"text_transform\":\"\",\"letter_spacing\":\"\",\"v\":\"2\",\"font_size_mobile\":\"---\"}}',1),(10,'product_page_tabs_content_border','productpage','{\"value\":{\"border_rounded\":\"px\",\"border\":{\"value\":\"\"},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":\"\"},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":\"\"},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"}}}',1),(10,'product_page_tabs_content_padding','productpage','{\"value\":{\"text\":\"\"}}',1),(10,'product_page_tabs_content_image_title_font','productpage','{\"value\":{\"font_type\":\"none\",\"font_size\":\"15px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"Roboto Slab\",\"font_weight\":\"\",\"font_style\":\"\",\"text_transform\":\"\",\"font_subset\":[\"latin\"],\"v\":\"2\",\"font_size_mobile\":\"---\"}}',1),(10,'product_page_tabs_content_image_font','productpage','{\"value\":{\"font_type\":\"none\",\"font_size\":\"---\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"\",\"font_weight\":\"\",\"font_style\":\"\",\"text_transform\":\"\",\"letter_spacing\":\"\",\"v\":\"2\",\"font_size_mobile\":\"---\"}}',1),(10,'product_page_tabs_content_image_border','productpage','{\"value\":{\"border_rounded\":\"px\"}}',1),(10,'product_page_tabs_content_option_title_font','productpage','{\"value\":{\"font_type\":\"none\",\"font_size\":\"15px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"Roboto Slab\",\"font_weight\":\"\",\"font_style\":\"\",\"text_transform\":\"\",\"font_subset\":[\"latin\"],\"v\":\"2\",\"font_size_mobile\":\"---\"}}',1),(10,'product_page_tabs_content_option_font','productpage','{\"value\":{\"font_type\":\"none\",\"font_size\":\"13px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"\",\"font_weight\":\"normal\",\"font_style\":\"normal\",\"text_transform\":\"none\"}}',1),(10,'product_page_tabs_content_option_border','productpage','{\"value\":{\"border_rounded\":\"px\"}}',1),(10,'related_products_status','productpage','1',0),(10,'related_products_carousel','productpage','1',0),(10,'related_products_carousel_arrows','productpage','top',0),(10,'related_products_carousel_bullets','productpage','1',0),(10,'product_page_gallery_text_icon','productpage','{\"value\":{\"options\":{\"font_size\":\"16px\",\"color\":{\"value\":{\"color\":\"\"}}},\"icon_type\":\"icon\",\"icon\":{\"icon\":\"&#xe015;\",\"class\":\"zoom-in2\"}}}',1),(10,'product_page_gallery_carousel_icon_left','productpage','{\"value\":{\"options\":{\"font_size\":\"18px\",\"color\":{\"value\":{\"color\":\"rgb(255, 255, 255)\"}},\"left\":\"\",\"top\":\"\"},\"icon_type\":\"icon\",\"icon\":{\"icon\":\"&#xe62b;\",\"class\":\"angle-left\"}}}',1),(10,'product_page_gallery_carousel_icon_right','productpage','{\"value\":{\"options\":{\"font_size\":\"18px\",\"color\":{\"value\":{\"color\":\"rgb(255, 255, 255)\"}},\"left\":\"\",\"top\":\"\"},\"icon_type\":\"icon\",\"icon\":{\"icon\":\"&#xe62c;\",\"class\":\"angle-right\"}}}',1),(10,'product_page_button_icon','productpage','{\"value\":{\"options\":{\"font_size\":\"20px\",\"color\":{\"value\":{\"color\":\"rgb(255, 255, 255)\"}},\"top\":\"2\"},\"icon_type\":\"icon\",\"icon\":{\"icon\":\"&#xe180;\",\"class\":\"cart2\"}}}',1),(10,'product_page_wishlist_icon','productpage','{\"value\":{\"options\":{\"font_size\":\"16px\"},\"icon_type\":\"icon\",\"icon\":{\"icon\":\"&#xe662;\",\"class\":\"heart2\"}}}',1),(10,'product_page_compare_icon','productpage','{\"value\":{\"options\":{\"font_size\":\"16px\"},\"icon_type\":\"icon\",\"icon\":{\"icon\":\"&#xe025;\",\"class\":\"refresh\"}}}',1),(10,'product_page_options_links_hover','productpage','{\"value\":{\"color\":\"\"}}',1),(10,'product_page_options_item_bg','productpage','{\"value\":{\"color\":\"rgb(244, 244, 244)\"}}',1),(10,'product_page_options_old_price_bg','productpage','{\"value\":{\"color\":\"rgb(235, 88, 88)\"}}',1),(10,'product_page_options_title_bg','productpage','{\"value\":{\"color\":\"rgb(169, 184, 192)\"}}',1),(10,'product_page_options_divider','productpage','{\"value\":{\"color\":\"rgb(189, 195, 199)\"}}',1),(10,'product_page_options_push_select_bg','productpage','{\"value\":{\"color\":\"rgb(69, 115, 143)\"}}',1),(10,'product_page_options_push_select_font_active','productpage','{\"value\":{\"color\":\"rgb(255, 255, 255)\"}}',1),(10,'product_page_options_push_select_bg_active','productpage','{\"value\":{\"color\":\"rgb(235, 88, 88)\"}}',1),(10,'product_page_qty_color','productpage','{\"value\":{\"color\":\"rgb(255, 255, 255)\"}}',1),(10,'product_page_qty_hover_color','productpage','{\"value\":{\"color\":\"rgb(255, 255, 255)\"}}',1),(10,'product_page_qty_bg_color','productpage','{\"value\":{\"color\":\"rgb(169, 184, 192)\"}}',1),(10,'product_page_qty_bg_hover_color','productpage','{\"value\":{\"color\":\"rgb(51, 55, 69)\"}}',1),(10,'product_page_button_font_hover','productpage','{\"value\":{\"color\":\"rgb(255, 255, 255)\"}}',1),(10,'product_page_button_bg','productpage','{\"value\":{\"color\":\"\"}}',1),(10,'product_page_button_bg_hover','productpage','{\"value\":{\"color\":\"\"}}',1),(10,'product_page_wishlist_font_hover','productpage','{\"value\":{\"color\":\"rgb(51, 55, 69)\"}}',1),(10,'product_page_wishlist_bg','productpage','{\"value\":{\"color\":\"rgb(169, 184, 192)\"}}',1),(10,'share_buttons','productpage','[{\"id\":\"st_li_facebook\"},{\"id\":\"st_li_twitter\"},{\"id\":\"st_li_googleplus\"},{\"id\":\"st_li_sharethis\"},{\"id\":\"st_li_youtube\"},{\"id\":\"st_li_instapaper\"},{\"id\":\"st_li_instagram\"},{\"id\":\"st_li_delicious\"}]',1),(10,'product_page_tabs_font_hover','productpage','{\"value\":{\"color\":\"rgb(255, 255, 255)\"}}',1),(10,'product_page_tabs_bg','productpage','{\"value\":{\"color\":\"rgb(51, 55, 69)\"}}',1),(10,'product_page_tabs_bg_hover','productpage','{\"value\":{\"color\":\"rgb(235, 88, 88)\"}}',1),(10,'related_products_items_per_row','productpage','{\"value\":{\"mobile\":{\"value\":\"2\",\"range\":\"1,8\",\"step\":\"1\"},\"mobile1\":{\"value\":\"3\",\"range\":\"1,8\",\"step\":\"1\"},\"tablet\":{\"value\":\"4\",\"range\":\"1,8\",\"step\":\"1\"},\"tablet1\":{\"value\":\"3\",\"range\":\"1,8\",\"step\":\"1\"},\"tablet2\":{\"value\":1,\"range\":\"1,8\",\"step\":\"1\"},\"desktop\":{\"value\":\"5\",\"range\":\"1,8\",\"step\":\"1\"},\"desktop1\":{\"value\":\"4\",\"range\":\"1,8\",\"step\":\"1\"},\"desktop2\":{\"value\":\"2\",\"range\":\"1,8\",\"step\":\"1\"},\"large_desktop\":{\"value\":\"6\",\"range\":\"1,8\",\"step\":\"1\"},\"large_desktop1\":{\"value\":\"5\",\"range\":\"1,8\",\"step\":\"1\"},\"large_desktop2\":{\"value\":\"3\",\"range\":\"1,8\",\"step\":\"1\"}},\"step\":\"1\",\"range\":\"1,8\"}',1),(10,'product_page_tabs_content_bg','productpage','{\"value\":{\"color\":\"rgb(244, 244, 244)\"}}',1),(10,'product_page_tabs_content_image_bg','productpage','{\"value\":{\"color\":\"rgb(244, 244, 244)\"}}',1),(10,'product_page_tabs_content_option_bg','productpage','{\"value\":{\"color\":\"\"}}',1),(10,'product_page_button_border_hover','productpage','{\"value\":{\"color\":\"\"}}',1),(10,'related_products_carousel_touch_drag','productpage','1',0),(10,'related_products_carousel_pause_on_hover','productpage','1',0),(10,'related_products_carousel_autoplay','productpage','1',0),(10,'product_page_gallery_carousel_touch_drag','productpage','1',0),(10,'product_page_gallery_carousel_autoplay','productpage','0',0),(10,'tags_bg','productpage','{\"value\":{\"color\":\"rgb(235, 88, 88)\"}}',1),(10,'tags_title_bg','productpage','{\"value\":{\"color\":\"rgb(51, 55, 69)\"}}',1),(10,'tags_title_font','productpage','{\"value\":{\"font_type\":\"none\",\"font_size\":\"---\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"\",\"font_weight\":\"\",\"font_style\":\"\",\"text_transform\":\"\",\"color\":{\"value\":{\"color\":\"rgb(255, 255, 255)\"}},\"letter_spacing\":\"\",\"v\":\"2\",\"font_size_mobile\":\"---\"}}',1),(10,'tags_align','productpage','left',0),(10,'tags_border','productpage','{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"px\",\"border\":{\"value\":\"\"},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":\"\"},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":{\"text\":\"15\"}},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"}}}',1),(10,'product_page_gallery_carousel_pause_on_hover','productpage','1',0),(10,'tags_hover_bg','productpage','{\"value\":{\"color\":\"rgb(105, 185, 207)\"}}',1),(10,'tags_hover_font','productpage','{\"value\":{\"color\":\"rgb(255, 255, 255)\"}}',1),(10,'tags_font','productpage','{\"value\":{\"font_type\":\"none\",\"font_size\":\"13px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"\",\"font_weight\":\"normal\",\"font_style\":\"normal\",\"text_transform\":\"none\"}}',1),(10,'split_ratio','productpage','split-50-50',0),(10,'related_products_carousel_transition_speed','productpage','{\"value\":{\"text\":\"400\"}}',1),(10,'related_products_carousel_transition_delay','productpage','{\"value\":{\"text\":\"3000\"}}',1),(10,'product_page_gallery_carousel_transition_speed','productpage','{\"value\":{\"text\":\"400\"}}',1),(10,'share_buttons_disable_on_mobile','productpage','1',0),(10,'product_page_options_push_border','productpage','{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"px\",\"border\":{\"value\":\"\"},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":\"\"},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":{\"text\":\"\"}},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"}}}',1),(10,'product_page_options_padding_left','productpage','{\"value\":{\"text\":\"10\"}}',1),(10,'product_page_gallery_carousel_icon_width','productpage','{\"value\":{\"text\":\"22\"}}',1),(10,'product_page_gallery_carousel_icon_height','productpage','{\"value\":{\"text\":\"22\"}}',1),(10,'product_page_options_padding_top','productpage','{\"value\":{\"text\":\"10\"}}',1),(10,'product_page_options_padding_right','productpage','{\"value\":{\"text\":\"10\"}}',1),(10,'product_page_options_padding_bottom','productpage','{\"value\":{\"text\":\"10\"}}',1),(10,'product_page_gallery_carousel_icon_hover','productpage','{\"value\":{\"color\":\"rgb(255, 255, 255)\"}}',1),(10,'product_page_gallery_carousel_icon_bg','productpage','{\"value\":{\"color\":\"rgb(235, 88, 88)\"}}',1),(10,'product_page_gallery_carousel_icon_border','productpage','{\"value\":{\"border_rounded\":\"px\"}}',1),(10,'product_page_gallery_carousel_icon_bg_hover','productpage','{\"value\":{\"color\":\"rgb(69, 115, 143)\"}}',1),(10,'product_page_option_font','productpage','{\"value\":{\"font_type\":\"none\",\"font_size\":\"13px\",\"font_family\":\"Georgia, serif\",\"font_name\":\"ABeeZee\",\"font_weight\":\"bold\",\"font_style\":\"\",\"letter_spacing\":\"\",\"text_transform\":\"\",\"color\":{\"value\":{\"color\":\"\"}},\"font_subset\":[],\"v\":\"2\",\"font_size_mobile\":\"---\"}}',1),(10,'product_page_gallery_carousel_icon_offset','productpage','{\"value\":{\"text\":\"\"}}',1),(10,'share_buttons_style','productpage',' ',0),(10,'product_page_tabs_shadow','productpage','none',0),(10,'product_page_tabs_content_image_padding_right','productpage','{\"value\":{\"text\":\"10\"}}',1),(10,'product_page_tabs_content_image_padding_bottom','productpage','{\"value\":{\"text\":\"10\"}}',1),(10,'product_page_tabs_content_image_padding_left','productpage','{\"value\":{\"text\":\"10\"}}',1),(10,'product_page_tabs_content_image_padding_top','productpage','{\"value\":{\"text\":\"10\"}}',1),(10,'product_page_auto_update_price','productpage','1',0),(10,'product_page_cloud_zoom_inner','productpage','1',0),(10,'manufacturer_image','productpage','0',0),(10,'manufacturer_image_additional_text','productpage','none',0),(10,'product_page_spec_align','productpage','left',0),(10,'manufacturer_image_custom_text','productpage','{\"value\":[]}',1),(10,'product_page_options_brand_image_border','productpage','{\"value\":{\"border_rounded\":\"px\"}}',1),(10,'product_page_push_image_border','productpage','{\"value\":{\"border_rounded\":\"px\"}}',1),(10,'product_page_options_sold_text','productpage','{\"value\":{\"1\":\"\"}}',1),(10,'product_page_title_status','productpage','1',0),(10,'product_page_options_sold','productpage','1',0),(10,'product_page_options_sold_text_font','productpage','{\"value\":{\"font_type\":\"none\",\"font_size\":\"15px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"Roboto Slab\",\"font_weight\":\"\",\"font_style\":\"\",\"letter_spacing\":\"\",\"text_transform\":\"\",\"font_subset\":[\"latin\"],\"v\":\"2\",\"font_size_mobile\":\"---\"}}',1),(10,'product_page_title_align','productpage','left',0),(10,'product_page_options_push_image','productpage','1',0),(10,'product_page_options_push_checkbox','productpage','1',0),(10,'product_page_options_push_radio','productpage','1',0),(10,'product_page_title_border','productpage','{\"value\":{\"border_rounded\":\"px\"}}',1),(10,'product_page_title_overflow','productpage','on',0),(10,'product_page_tabs_position','productpage','off',0),(10,'product_page_title_position','productpage','right',0),(10,'product_page_qty_status','productpage','on',0),(10,'product_page_spec_title_align','productpage','left',0),(10,'product_page_option_label','productpage','{\"value\":{\"font_type\":\"none\",\"font_size\":\"---\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"\",\"font_weight\":\"\",\"font_style\":\"\",\"letter_spacing\":\"\",\"text_transform\":\"\",\"color\":{\"value\":{\"color\":\"rgb(51, 153, 101)\"}},\"v\":\"2\",\"font_size_mobile\":\"---\"}}',1),(10,'upload_button_border','productpage','{\"value\":{\"border_rounded\":\"px\"}}',1),(10,'product_page_tabs_content_option_padding_bottom','productpage','{\"value\":\"\"}',1),(10,'product_page_button_line_height','productpage','{\"value\":\"\"}',1),(10,'product_page_tabs_content_option_padding_top','productpage','{\"value\":\"\"}',1),(10,'product_page_quantity_symbol_size','productpage','{\"value\":\"\"}',1),(10,'pp_gallery_arrows_bg_border','productpage','{\"value\":{\"border_rounded\":\"px\"}}',1),(10,'pp_gallery_image_border','productpage','{\"value\":{\"border_rounded\":\"px\"}}',1),(10,'pp_gallery_caption_bar_bg_image','productpage','{\"value\":{\"bgimage_attach\":\"scroll\",\"use_gradient\":0,\"bgimage_size\":\"auto\",\"bgimage_position\":\"center top\"}}',1),(10,'product_page_title_line_height','productpage','{\"value\":\"\"}',1),(10,'pp_gallery_thumbs_width','productpage','{\"value\":\"\"}',1),(10,'pp_gallery_thumbs_height','productpage','{\"value\":\"\"}',1),(10,'pp_gallery_thumbs_border','productpage','{\"value\":{\"border_rounded\":\"px\"}}',1),(10,'product_page_gallery_carousel_transition_delay','productpage','{\"value\":\"\"}',1),(10,'product_page_title_padding_right','productpage','{\"value\":\"\"}',1),(10,'product_page_title_padding_left','productpage','{\"value\":\"\"}',1),(10,'pp_hide_gallery_bars_after','productpage','{\"value\":\"\"}',1),(10,'pp_gallery_thumbs_spacing','productpage','{\"value\":\"\"}',1),(10,'manufacturer_image_height','productpage','{\"value\":\"\"}',1),(10,'product_page_stats_padding','productpage','{\"value\":\"\"}',1),(10,'product_page_price_padding','productpage','{\"value\":\"\"}',1),(10,'product_page_options_sold_count_padding_left','productpage','{\"value\":\"\"}',1),(10,'product_page_options_sold_count_padding_right','productpage','{\"value\":\"\"}',1),(10,'product_page_options_sold_count_padding_bottom','productpage','{\"value\":\"\"}',1),(10,'product_page_options_sold_count_padding_top','productpage','{\"value\":\"\"}',1),(10,'manufacturer_image_width','productpage','{\"value\":\"\"}',1),(10,'product_page_options_sold_count_max_width','productpage','{\"value\":\"\"}',1),(10,'product_page_cart_padding','productpage','{\"value\":\"\"}',1),(10,'product_page_tabs_line_height','productpage','{\"value\":\"\"}',1),(10,'product_page_option_padding','productpage','{\"value\":\"\"}',1),(10,'product_page_options_push_image_width','productpage','{\"value\":\"\"}',1),(10,'product_page_options_push_image_height','productpage','{\"value\":\"\"}',1),(10,'product_page_tab_image_line_height','productpage','{\"value\":\"\"}',1),(10,'product_page_tabs_content_option_padding_right','productpage','{\"value\":\"\"}',1),(10,'product_page_tabs_content_option_padding_left','productpage','{\"value\":\"\"}',1),(10,'product_page_tab_options_line_height','productpage','{\"value\":\"\"}',1),(10,'product_page_button_bg_image','productpage','{\"value\":{\"bgimage_attach\":\"scroll\",\"use_gradient\":0,\"bgimage_size\":\"auto\",\"bgimage_position\":\"center top\"}}',1),(10,'product_page_button_bg_image_hover','productpage','{\"value\":{\"bgimage_attach\":\"scroll\",\"use_gradient\":0,\"bgimage_size\":\"auto\",\"bgimage_position\":\"center top\"}}',1),(10,'pp_button_shadow','productpage','{\"value\":{\"inner_shadow\":\"0\"}}',1),(10,'pp_button_shadow_hover','productpage','{\"value\":{\"inner_shadow\":\"0\"}}',1),(10,'pp_button_shadow_active','productpage','{\"value\":{\"inner_shadow\":\"0\"}}',1),(10,'product_page_tabs_group_radius','productpage','{\"value\":{\"border_rounded\":\"px\"}}',1),(10,'pp_gallery_caption_bar_bg_image_2','productpage','{\"value\":{\"bgimage_attach\":\"scroll\",\"use_gradient\":0,\"bgimage_size\":\"auto\",\"bgimage_position\":\"center top\"}}',1),(10,'review_buttons_border','productpage','{\"value\":{\"border_rounded\":\"px\"}}',1),(4,'product_page_gallery','productpage','1',0),(4,'product_page_gallery_carousel','productpage','1',0),(4,'product_page_gallery_carousel_arrows','productpage','always',0),(4,'product_page_image_border','productpage','{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"px\",\"border\":{\"value\":{\"text\":\"\"}},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":\"\"},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":{\"text\":\"\"}},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"},\"border_color\":{\"value\":{\"color\":\"\"}}}}',1),(4,'product_page_additional_border','productpage','{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"px\",\"border\":{\"value\":{\"text\":\"\"}},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":\"\"},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":{\"text\":\"\"}},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"},\"border_color\":{\"value\":{\"color\":\"\"}}}}',1),(4,'product_page_additional_width','productpage','{\"value\":\"4\",\"range\":\"1,8\",\"step\":\"1\"}',1),(4,'product_page_additional_spacing','productpage','{\"value\":{\"text\":\"15\"}}',1),(4,'product_page_gallery_text','productpage','{\"value\":{\"1\":\"Click Image for Gallery\",\"2\":\"\"}}',1),(4,'product_page_gallery_text_font','productpage','{\"value\":{\"font_type\":\"none\",\"font_size\":\"13px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"\",\"font_weight\":\"normal\",\"font_style\":\"normal\",\"text_transform\":\"none\",\"color\":{\"value\":{\"color\":\"\"}}}}',1),(4,'product_page_latest_label_status','productpage','block',0),(4,'product_page_special_label_status','productpage','block',0),(4,'product_page_outofstock_label_status','productpage','block',0),(4,'product_page_options_font','productpage','{\"value\":{\"font_type\":\"none\",\"font_size\":\"13px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"\",\"font_weight\":\"normal\",\"font_style\":\"normal\",\"text_transform\":\"none\",\"color\":{\"value\":{\"color\":\"\"}}}}',1),(4,'product_page_options_links','productpage','{\"value\":{\"font_type\":\"none\",\"font_size\":\"13px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"\",\"font_weight\":\"normal\",\"font_style\":\"normal\",\"text_transform\":\"none\"}}',1),(4,'product_page_options_border','productpage','{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"px\",\"border\":{\"value\":{\"text\":\"\"}},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":{\"text\":\"\"}},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":{\"text\":\"\"}},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"},\"border_color\":{\"value\":{\"color\":\"\"}}}}',1),(4,'product_page_options_item_border','productpage','{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"px\",\"border\":{\"value\":\"\"},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":{\"text\":\"1\"}},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":{\"text\":\"\"}},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"},\"border_color\":{\"value\":{\"color\":\"rgb(228, 228, 228)\"}}}}',1),(4,'product_page_options_margin','productpage','{\"value\":{\"text\":\"13\"}}',1),(4,'product_page_options_views','productpage','1',0),(4,'product_page_options_views_text','productpage','{\"value\":{\"1\":\"Views\",\"2\":\"Views\",\"text\":\"Views\"}}',1),(4,'product_page_options_instock_font','productpage','{\"value\":{\"font_type\":\"none\",\"font_size\":\"13px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"\",\"font_weight\":\"bold\",\"font_style\":\"normal\",\"text_transform\":\"none\",\"color\":{\"value\":{\"color\":\"rgb(51, 153, 101)\"}}}}',1),(4,'product_page_options_outstock_font','productpage','{\"value\":{\"font_type\":\"none\",\"font_size\":\"13px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"\",\"font_weight\":\"bold\",\"font_style\":\"normal\",\"text_transform\":\"none\",\"color\":{\"value\":{\"color\":\"rgb(234, 35, 73)\"}}}}',1),(4,'product_page_options_price_font','productpage','{\"value\":{\"font_type\":\"google\",\"font_size\":\"35px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"Roboto Slab\",\"font_weight\":\"regular\",\"font_style\":\"normal\",\"text_transform\":\"none\",\"font_subset\":[\"latin\"],\"color\":{\"value\":{\"color\":\"\"}}}}',1),(4,'product_page_options_old_price_font','productpage','{\"value\":{\"font_type\":\"google\",\"font_size\":\"20px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"Roboto Slab\",\"font_weight\":\"regular\",\"font_style\":\"normal\",\"text_transform\":\"none\",\"color\":{\"value\":{\"color\":\"rgb(255, 255, 255)\"}},\"font_subset\":[\"latin\"]}}',1),(4,'product_page_options_old_price_border','productpage','{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"px\",\"border\":{\"value\":\"\"},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":\"\"},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":{\"text\":\"\"}},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"}}}',1),(4,'product_page_options_push_select','productpage','1',0),(4,'product_page_options_push_shadow','productpage','inset 0 0 8px rgba(0, 0, 0, 0.7)',0),(4,'product_page_options_title','productpage','{\"value\":{\"font_type\":\"none\",\"font_size\":\"13px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"\",\"font_weight\":\"normal\",\"font_style\":\"normal\",\"text_transform\":\"none\",\"color\":{\"value\":{\"color\":\"\"}}}}',1),(4,'product_page_options_push_select_font','productpage','{\"value\":{\"font_type\":\"none\",\"font_size\":\"13px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"\",\"font_weight\":\"normal\",\"font_style\":\"normal\",\"text_transform\":\"none\",\"color\":{\"value\":{\"color\":\"rgb(255, 255, 255)\"}}}}',1),(4,'product_page_qty_border','productpage','{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"px\",\"border\":{\"value\":\"\"},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":\"\"},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":{\"text\":\"\"}},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"}}}',1),(4,'product_page_button_icon_position','productpage','left',0),(4,'product_page_button_font','productpage','{\"value\":{\"font_type\":\"system\",\"font_size\":\"15px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"Playfair Display\",\"font_weight\":\"bold\",\"font_style\":\"normal\",\"text_transform\":\"uppercase\",\"font_subset\":[\"latin\"],\"color\":{\"value\":{\"color\":\"rgb(255, 255, 255)\"}}}}',1),(4,'product_page_button_border','productpage','{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"px\",\"border\":{\"value\":{\"text\":\"\"}},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":\"\"},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":{\"text\":\"\"}},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"},\"border_color\":{\"value\":{\"color\":\"\"}}}}',1),(4,'product_page_wishlist_font','productpage','{\"value\":{\"font_type\":\"system\",\"font_size\":\"14px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"Roboto\",\"font_weight\":\"normal\",\"font_style\":\"normal\",\"text_transform\":\"none\",\"color\":{\"value\":{\"color\":\"rgb(51, 55, 69)\"}},\"font_subset\":[\"latin\"]}}',1),(4,'share_buttons_status','productpage','1',0),(4,'share_buttons_position','productpage','right',0),(4,'share_buttons_account_key','productpage','{\"value\":\"\"}',1),(4,'product_page_tabs_font','productpage','{\"value\":{\"font_type\":\"system\",\"font_size\":\"14px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"Playfair Display\",\"font_weight\":\"bold\",\"font_style\":\"normal\",\"text_transform\":\"none\",\"font_subset\":[\"latin\"],\"color\":{\"value\":{\"color\":\"rgb(255, 255, 255)\"}}}}',1),(4,'product_page_tabs_border','productpage','{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"px\",\"border\":{\"value\":\"\"},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":\"\"},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":{\"text\":\"\"}},\"border_radius_top\":{\"value\":{\"text\":\"\"}},\"border_radius_right\":{\"value\":{\"text\":\"\"}},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"}}}',1),(4,'product_page_tabs_content_font','productpage','{\"value\":{\"font_type\":\"none\",\"font_size\":\"13px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"\",\"font_weight\":\"normal\",\"font_style\":\"normal\",\"text_transform\":\"none\"}}',1),(4,'product_page_tabs_content_ul_font','productpage','{\"value\":{\"font_type\":\"none\",\"font_size\":\"13px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"\",\"font_weight\":\"normal\",\"font_style\":\"normal\",\"text_transform\":\"none\"}}',1),(4,'product_page_tabs_content_border','productpage','{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"px\",\"border\":{\"value\":\"\"},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":\"\"},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":\"\"},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":{\"text\":\"\"}},\"border_radius_left\":{\"value\":{\"text\":\"\"}},\"border_radius_bottom\":{\"value\":{\"text\":\"\"}}}}',1),(4,'product_page_tabs_content_padding','productpage','{\"value\":{\"text\":\"15\"}}',1),(4,'product_page_tabs_content_image_title_font','productpage','{\"value\":{\"font_type\":\"system\",\"font_size\":\"14px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"Playfair Display\",\"font_weight\":\"bold\",\"font_style\":\"normal\",\"text_transform\":\"uppercase\",\"font_subset\":[\"latin\"]}}',1),(4,'product_page_tabs_content_image_font','productpage','{\"value\":{\"font_type\":\"none\",\"font_size\":\"13px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"\",\"font_weight\":\"normal\",\"font_style\":\"normal\",\"text_transform\":\"none\"}}',1),(4,'product_page_tabs_content_image_border','productpage','{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"px\",\"border\":{\"value\":\"\"},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":\"\"},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":{\"text\":\"\"}},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"}}}',1),(4,'product_page_tabs_content_option_title_font','productpage','{\"value\":{\"font_type\":\"system\",\"font_size\":\"14px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"Playfair Display\",\"font_weight\":\"bold\",\"font_style\":\"normal\",\"text_transform\":\"uppercase\",\"font_subset\":[\"latin\"],\"color\":{\"value\":{\"color\":\"\"}}}}',1),(4,'product_page_tabs_content_option_font','productpage','{\"value\":{\"font_type\":\"none\",\"font_size\":\"13px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"\",\"font_weight\":\"normal\",\"font_style\":\"normal\",\"text_transform\":\"none\"}}',1),(4,'product_page_tabs_content_option_border','productpage','{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"px\",\"border\":{\"value\":\"\"},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":\"\"},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":{\"text\":\"\"}},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"}}}',1),(4,'related_products_status','productpage','0',0),(4,'related_products_carousel','productpage','1',0),(4,'related_products_carousel_arrows','productpage','top',0),(4,'related_products_carousel_bullets','productpage','1',0),(4,'product_page_gallery_text_icon','productpage','{\"value\":{\"options\":{\"font_size\":\"16px\",\"color\":{\"value\":{\"color\":\"\"}}},\"icon_type\":\"icon\",\"icon\":{\"icon\":\"&#xe015;\",\"class\":\"zoom-in2\"}}}',1),(4,'product_page_gallery_carousel_icon_left','productpage','{\"value\":{\"options\":{\"font_size\":\"20px\",\"color\":{\"value\":{\"color\":\"rgb(176, 158, 102)\"}},\"top\":\"\"},\"icon_type\":\"icon\",\"icon\":{\"icon\":\"&#xe60f;\",\"class\":\"chevron-left\"}}}',1),(4,'product_page_gallery_carousel_icon_right','productpage','{\"value\":{\"options\":{\"font_size\":\"20px\",\"color\":{\"value\":{\"color\":\"rgb(176, 158, 102)\"}},\"top\":\"\",\"left\":\"\"},\"icon_type\":\"icon\",\"icon\":{\"icon\":\"&#xe60e;\",\"class\":\"chevron-right\"}}}',1),(4,'product_page_button_icon','productpage','{\"value\":{\"options\":{\"font_size\":\"27px\",\"color\":{\"value\":{\"color\":\"rgb(255, 255, 255)\"}},\"top\":\"5\",\"left\":\"1\"},\"icon_type\":\"none\",\"icon\":{\"icon\":\"&#xe000;\",\"class\":\"icon0\"}}}',1),(4,'product_page_wishlist_icon','productpage','{\"value\":{\"options\":{\"font_size\":\"14px\"},\"icon_type\":\"icon\",\"icon\":{\"icon\":\"&#xe662;\",\"class\":\"heart2\"}}}',1),(4,'product_page_compare_icon','productpage','{\"value\":{\"options\":{\"font_size\":\"14px\"},\"icon_type\":\"icon\",\"icon\":{\"icon\":\"&#xe025;\",\"class\":\"refresh\"}}}',1),(4,'product_page_options_links_hover','productpage','{\"value\":{\"color\":\"\"}}',1),(4,'product_page_options_item_bg','productpage','{\"value\":{\"color\":\"\"}}',1),(4,'product_page_options_old_price_bg','productpage','{\"value\":{\"color\":\"rgb(176, 158, 102)\"}}',1),(4,'product_page_options_title_bg','productpage','{\"value\":{\"color\":\"\"}}',1),(4,'product_page_options_divider','productpage','{\"value\":{\"color\":\"rgb(255, 255, 255)\"}}',1),(4,'product_page_options_push_select_bg','productpage','{\"value\":{\"color\":\"rgb(52, 73, 94)\"}}',1),(4,'product_page_options_push_select_font_active','productpage','{\"value\":{\"color\":\"rgb(255, 255, 255)\"}}',1),(4,'product_page_options_push_select_bg_active','productpage','{\"value\":{\"color\":\"rgb(176, 158, 102)\"}}',1),(4,'product_page_qty_color','productpage','{\"value\":{\"color\":\"rgb(255, 255, 255)\"}}',1),(4,'product_page_qty_hover_color','productpage','{\"value\":{\"color\":\"rgb(255, 255, 255)\"}}',1),(4,'product_page_qty_bg_color','productpage','{\"value\":{\"color\":\"rgb(68, 67, 73)\"}}',1),(4,'product_page_qty_bg_hover_color','productpage','{\"value\":{\"color\":\"rgb(176, 158, 102)\"}}',1),(4,'product_page_button_font_hover','productpage','{\"value\":{\"color\":\"\"}}',1),(4,'product_page_button_bg','productpage','{\"value\":{\"color\":\"rgb(68, 67, 73)\"}}',1),(4,'product_page_button_bg_hover','productpage','{\"value\":{\"color\":\"rgb(176, 158, 102)\"}}',1),(4,'product_page_wishlist_font_hover','productpage','{\"value\":{\"color\":\"rgb(176, 158, 102)\"}}',1),(4,'product_page_wishlist_bg','productpage','{\"value\":{\"color\":\"rgb(244, 244, 244)\"}}',1),(4,'share_buttons','productpage','[{\"id\":\"st_li_fblike\"},{\"id\":\"st_li_twitter\"},{\"id\":\"st_li_sharethis\"}]',1),(4,'product_page_tabs_font_hover','productpage','{\"value\":{\"color\":\"rgb(255, 255, 255)\"}}',1),(4,'product_page_tabs_bg','productpage','{\"value\":{\"color\":\"rgb(68, 67, 73)\"}}',1),(4,'product_page_tabs_bg_hover','productpage','{\"value\":{\"color\":\"rgb(176, 158, 102)\"}}',1),(4,'related_products_items_per_row','productpage','{\"value\":{\"mobile\":{\"value\":\"2\",\"range\":\"1,8\",\"step\":\"1\"},\"mobile1\":{\"value\":\"3\",\"range\":\"1,8\",\"step\":\"1\"},\"tablet\":{\"value\":\"4\",\"range\":\"1,8\",\"step\":\"1\"},\"tablet1\":{\"value\":\"3\",\"range\":\"1,8\",\"step\":\"1\"},\"tablet2\":{\"value\":\"1\",\"range\":\"1,8\",\"step\":\"1\"},\"desktop\":{\"value\":\"5\",\"range\":\"1,8\",\"step\":\"1\"},\"desktop1\":{\"value\":\"4\",\"range\":\"1,8\",\"step\":\"1\"},\"desktop2\":{\"value\":\"2\",\"range\":\"1,8\",\"step\":\"1\"},\"large_desktop\":{\"value\":\"6\",\"range\":\"1,8\",\"step\":\"1\"},\"large_desktop1\":{\"value\":\"5\",\"range\":\"1,8\",\"step\":\"1\"},\"large_desktop2\":{\"value\":\"3\",\"range\":\"1,8\",\"step\":\"1\"}},\"step\":\"1\",\"range\":\"1,8\"}',1),(4,'product_page_tabs_content_bg','productpage','{\"value\":{\"color\":\"rgb(244, 244, 244)\"}}',1),(4,'product_page_tabs_content_image_bg','productpage','{\"value\":{\"color\":\"\"}}',1),(4,'product_page_tabs_content_option_bg','productpage','{\"value\":{\"color\":\"\"}}',1),(4,'product_page_gallery_carousel_autoplay','productpage','1',0),(4,'tags_align','productpage','left',0),(4,'related_products_carousel_touch_drag','productpage','1',0),(4,'related_products_carousel_pause_on_hover','productpage','1',0),(4,'product_page_gallery_carousel_pause_on_hover','productpage','1',0),(4,'product_page_gallery_carousel_touch_drag','productpage','1',0),(4,'related_products_carousel_autoplay','productpage','1',0),(4,'tags_border','productpage','{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"px\",\"border\":{\"value\":\"\"},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":\"\"},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":{\"text\":\"15\"}},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"}}}',1),(4,'tags_title_bg','productpage','{\"value\":{\"color\":\"rgb(52, 73, 94)\"}}',1),(4,'tags_title_font','productpage','{\"value\":{\"font_type\":\"none\",\"font_size\":\"13px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"\",\"font_weight\":\"normal\",\"font_style\":\"normal\",\"text_transform\":\"none\",\"color\":{\"value\":{\"color\":\"rgb(255, 255, 255)\"}}}}',1),(4,'tags_font','productpage','{\"value\":{\"font_type\":\"none\",\"font_size\":\"13px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"\",\"font_weight\":\"normal\",\"font_style\":\"normal\",\"text_transform\":\"none\"}}',1),(4,'tags_bg','productpage','{\"value\":{\"color\":\"rgb(244, 244, 244)\"}}',1),(4,'tags_hover_font','productpage','{\"value\":{\"color\":\"rgb(255, 255, 255)\"}}',1),(4,'tags_hover_bg','productpage','{\"value\":{\"color\":\"rgb(176, 158, 102)\"}}',1),(4,'split_ratio','productpage','split-50-50',0),(4,'product_page_gallery_carousel_transition_delay','productpage','{\"value\":{\"text\":\"3000\"}}',1),(4,'related_products_carousel_transition_delay','productpage','{\"value\":{\"text\":\"3000\"}}',1),(4,'related_products_carousel_transition_speed','productpage','{\"value\":{\"text\":\"400\"}}',1),(4,'product_page_gallery_carousel_transition_speed','productpage','{\"value\":{\"text\":\"300\"}}',1),(4,'share_buttons_disable_on_mobile','productpage','1',0),(4,'product_page_gallery_carousel_icon_border','productpage','{\"value\":{\"border_rounded\":\"px\",\"border_type\":\"solid\",\"border_radius_unit\":\"%\",\"border\":{\"value\":\"\"},\"border_top\":{\"value\":\"\"},\"border_right\":{\"value\":\"\"},\"border_bottom\":{\"value\":\"\"},\"border_left\":{\"value\":\"\"},\"border_radius\":{\"value\":{\"text\":\"50\"}},\"border_radius_top\":{\"value\":\"\"},\"border_radius_right\":{\"value\":\"\"},\"border_radius_left\":{\"value\":\"\"},\"border_radius_bottom\":{\"value\":\"\"}}}',1),(4,'product_page_options_padding_left','productpage','{\"value\":{\"text\":\"\"}}',1),(4,'product_page_options_padding_right','productpage','{\"value\":{\"text\":\"\"}}',1),(4,'product_page_options_padding_bottom','productpage','{\"value\":{\"text\":\"13\"}}',1),(4,'product_page_options_padding_top','productpage','{\"value\":{\"text\":\"\"}}',1),(4,'product_page_options_push_border','productpage','{\"value\":{\"border_rounded\":\"px\"}}',1),(4,'product_page_option_font','productpage','{\"value\":{\"font_type\":\"google\",\"font_size\":\"14px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"Roboto Slab\",\"font_weight\":\"regular\",\"font_style\":\"normal\",\"letter_spacing\":\"\",\"text_transform\":\"none\",\"font_subset\":[\"latin\"]}}',1),(4,'product_page_gallery_carousel_icon_offset','productpage','{\"value\":{\"text\":\"-8\"}}',1),(4,'product_page_option_label_hover','productpage','{\"value\":{\"color\":\"rgb(176, 158, 102)\"}}',1),(4,'share_buttons_bg','productpage','{\"value\":{\"color\":\"rgb(255, 255, 255)\"}}',1),(4,'product_page_gallery_carousel_icon_hover','productpage','{\"value\":{\"color\":\"rgb(176, 158, 102)\"}}',1),(4,'product_page_option_label','productpage','{\"value\":{\"font_type\":\"none\",\"font_size\":\"13px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"\",\"font_weight\":\"normal\",\"font_style\":\"normal\",\"letter_spacing\":\"\",\"text_transform\":\"none\",\"color\":{\"value\":{\"color\":\"rgb(66, 139, 202)\"}}}}',1),(4,'product_page_gallery_carousel_icon_height','productpage','{\"value\":{\"text\":\"25\"}}',1),(4,'product_page_gallery_carousel_icon_bg','productpage','{\"value\":{\"color\":\"\"}}',1),(4,'product_page_button_line_height','productpage','{\"value\":{\"text\":\"\"}}',1),(4,'product_page_gallery_carousel_icon_width','productpage','{\"value\":{\"text\":\"25\"}}',1),(4,'product_page_gallery_carousel_icon_bg_hover','productpage','{\"value\":{\"color\":\"\"}}',1),(4,'share_buttons_style','productpage','_hcount',0),(4,'product_page_tabs_shadow','productpage','inset 0 -3px 6px -2px rgba(0, 0, 0, 0.5)',0),(4,'product_page_tabs_content_option_padding_left','productpage','{\"value\":{\"text\":\"\"}}',1),(4,'product_page_tabs_content_option_padding_bottom','productpage','{\"value\":{\"text\":\"\"}}',1),(4,'product_page_tabs_content_option_padding_top','productpage','{\"value\":{\"text\":\"\"}}',1),(4,'product_page_auto_update_price','productpage','1',0),(4,'product_page_tabs_line_height','productpage','{\"value\":{\"text\":\"17\"}}',1),(4,'product_page_cloud_zoom_inner','productpage','1',0),(4,'manufacturer_image','productpage','0',0),(4,'manufacturer_image_additional_text','productpage','none',0),(4,'product_page_spec_align','productpage','left',0),(4,'manufacturer_image_custom_text','productpage','{\"value\":[]}',1),(4,'product_page_options_brand_image_border','productpage','{\"value\":{\"border_rounded\":\"px\"}}',1),(4,'product_page_options_sold_count_bg','productpage','{\"value\":{\"color\":\"rgb(238, 238, 238)\"}}',1),(4,'product_page_options_sold_count_padding_left','productpage','{\"value\":{\"text\":\"5\"}}',1),(4,'product_page_options_sold_text_font','productpage','{\"value\":{\"font_type\":\"system\",\"font_size\":\"14px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"Playfair Display\",\"font_weight\":\"bold\",\"font_style\":\"normal\",\"letter_spacing\":\"\",\"text_transform\":\"none\",\"font_subset\":[\"latin\"],\"color\":{\"value\":{\"color\":\"\"}}}}',1),(4,'product_page_title_status','productpage','0',0),(4,'product_page_push_image_border','productpage','{\"value\":{\"border_rounded\":\"px\"}}',1),(4,'product_page_options_sold_count_padding_top','productpage','{\"value\":{\"text\":\"5\"}}',1),(4,'product_page_options_sold_text','productpage','{\"value\":{\"1\":\"\"}}',1),(4,'product_page_options_sold_count_max_width','productpage','{\"value\":{\"text\":\"250\"}}',1),(4,'product_page_options_sold_count_font','productpage','{\"value\":{\"font_type\":\"none\",\"font_size\":\"18px\",\"font_family\":\"Helvetica, Arial, sans-serif\",\"font_name\":\"Playfair Display\",\"font_weight\":\"regular\",\"font_style\":\"normal\",\"letter_spacing\":\"\",\"text_transform\":\"none\",\"font_subset\":[\"latin\"],\"color\":{\"value\":{\"color\":\"\"}}}}',1),(4,'product_page_options_sold_count_padding_bottom','productpage','{\"value\":{\"text\":\"5\"}}',1),(4,'product_page_options_sold_count_padding_right','productpage','{\"value\":{\"text\":\"5\"}}',1),(4,'product_page_options_sold','productpage','0',0),(4,'product_page_options_push_checkbox','productpage','1',0),(4,'product_page_options_push_image','productpage','1',0),(4,'product_page_title_align','productpage','left',0),(4,'product_page_options_push_radio','productpage','1',0),(4,'product_page_title_border','productpage','{\"value\":{\"border_rounded\":\"px\"}}',1),(4,'product_page_title_overflow','productpage','on',0),(4,'product_page_tabs_position','productpage','off',0),(4,'product_page_title_position','productpage','top',0),(4,'product_page_qty_status','productpage','on',0),(4,'product_page_spec_title_align','productpage','left',0),(4,'pp_gallery_thumbs_border','productpage','{\"value\":{\"border_rounded\":\"px\"}}',1),(4,'pp_gallery_arrows_bg_border','productpage','{\"value\":{\"border_rounded\":\"px\"}}',1),(4,'pp_gallery_image_border','productpage','{\"value\":{\"border_rounded\":\"px\"}}',1),(4,'pp_gallery_caption_bar_bg_image','productpage','{\"value\":{\"bgimage_attach\":\"scroll\",\"use_gradient\":0,\"bgimage_size\":\"auto\",\"bgimage_position\":\"center top\"}}',1),(4,'pp_gallery_caption_bar_bg_image_2','productpage','{\"value\":{\"bgimage_attach\":\"scroll\",\"use_gradient\":0,\"bgimage_size\":\"auto\",\"bgimage_position\":\"center top\"}}',1),(4,'upload_button_border','productpage','{\"value\":{\"border_rounded\":\"px\"}}',1),(4,'product_page_button_bg_image','productpage','{\"value\":{\"bgimage_attach\":\"scroll\",\"use_gradient\":0,\"bgimage_size\":\"auto\",\"bgimage_position\":\"center top\"}}',1),(4,'product_page_button_bg_image_hover','productpage','{\"value\":{\"bgimage_attach\":\"scroll\",\"use_gradient\":0,\"bgimage_size\":\"auto\",\"bgimage_position\":\"center top\"}}',1),(4,'pp_button_shadow','productpage','{\"value\":{\"inner_shadow\":\"0\"}}',1),(4,'pp_button_shadow_hover','productpage','{\"value\":{\"inner_shadow\":\"0\"}}',1),(4,'pp_button_shadow_active','productpage','{\"value\":{\"inner_shadow\":\"0\"}}',1),(4,'review_buttons_border','productpage','{\"value\":{\"border_rounded\":\"px\"}}',1),(4,'product_page_tabs_group_radius','productpage','{\"value\":{\"border_rounded\":\"px\"}}',1);
/*!40000 ALTER TABLE `lk_journal2_settings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_journal2_skins`
--

DROP TABLE IF EXISTS `lk_journal2_skins`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_journal2_skins` (
  `skin_id` int(11) NOT NULL AUTO_INCREMENT,
  `skin_name` varchar(64) NOT NULL,
  `parent_id` int(11) NOT NULL,
  PRIMARY KEY (`skin_id`)
) ENGINE=MyISAM AUTO_INCREMENT=100 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_journal2_skins`
--

LOCK TABLES `lk_journal2_skins` WRITE;
/*!40000 ALTER TABLE `lk_journal2_skins` DISABLE KEYS */;
/*!40000 ALTER TABLE `lk_journal2_skins` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_language`
--

DROP TABLE IF EXISTS `lk_language`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_language` (
  `language_id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(32) NOT NULL,
  `code` varchar(5) NOT NULL,
  `locale` varchar(255) NOT NULL,
  `image` varchar(64) NOT NULL,
  `directory` varchar(32) NOT NULL,
  `sort_order` int(3) NOT NULL DEFAULT 0,
  `status` tinyint(1) NOT NULL,
  PRIMARY KEY (`language_id`),
  KEY `name` (`name`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_language`
--

LOCK TABLES `lk_language` WRITE;
/*!40000 ALTER TABLE `lk_language` DISABLE KEYS */;
INSERT INTO `lk_language` VALUES (1,'English','en-gb','en-US,en_US.UTF-8,en_US,en-gb,english','gb.png','english',1,1);
/*!40000 ALTER TABLE `lk_language` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_layout`
--

DROP TABLE IF EXISTS `lk_layout`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_layout` (
  `layout_id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(64) NOT NULL,
  PRIMARY KEY (`layout_id`)
) ENGINE=MyISAM AUTO_INCREMENT=16 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_layout`
--

LOCK TABLES `lk_layout` WRITE;
/*!40000 ALTER TABLE `lk_layout` DISABLE KEYS */;
INSERT INTO `lk_layout` VALUES (1,'Home'),(2,'Product'),(3,'Category'),(4,'Default'),(5,'Manufacturer'),(6,'Account'),(7,'Checkout'),(8,'Contact'),(9,'Sitemap'),(10,'Affiliate'),(11,'Information'),(12,'Compare'),(13,'Search'),(14,'Journal Blog'),(15,'Journal Blog Post');
/*!40000 ALTER TABLE `lk_layout` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_layout_module`
--

DROP TABLE IF EXISTS `lk_layout_module`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_layout_module` (
  `layout_module_id` int(11) NOT NULL AUTO_INCREMENT,
  `layout_id` int(11) NOT NULL,
  `code` varchar(64) NOT NULL,
  `position` varchar(14) NOT NULL,
  `sort_order` int(3) NOT NULL,
  PRIMARY KEY (`layout_module_id`)
) ENGINE=MyISAM AUTO_INCREMENT=139 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_layout_module`
--

LOCK TABLES `lk_layout_module` WRITE;
/*!40000 ALTER TABLE `lk_layout_module` DISABLE KEYS */;
INSERT INTO `lk_layout_module` VALUES (2,4,'0','content_top',0),(3,4,'0','content_top',1),(20,5,'0','column_left',2),(69,10,'affiliate','column_right',1),(137,6,'account','column_right',0),(67,1,'carousel.29','content_top',3),(66,1,'slideshow.27','content_top',1),(65,1,'featured.28','content_top',2),(72,3,'category','column_left',1),(73,3,'banner.30','column_left',2),(74,1,'journal2_carousel_grid.224','bottom',0),(75,1,'journal2_advanced_grid.115','top',-5),(76,1,'journal2_advanced_grid.128','content_top',5),(77,1,'journal2_advanced_grid.141','bottom',22),(78,1,'journal2_advanced_grid.142','bottom',23),(79,1,'journal2_advanced_grid.153','bottom',5),(80,1,'journal2_advanced_grid.164','bottom',2),(81,1,'journal2_advanced_grid.182','bottom',1),(82,1,'journal2_advanced_grid.197','top',-10),(83,1,'journal2_advanced_grid.215','content_top',5),(84,1,'journal2_advanced_grid.219','content_bottom',50),(85,1,'journal2_headline_rotator.33','top',-10),(86,1,'journal2_headline_rotator.95','bottom',6),(87,1,'journal2_headline_rotator.126','bottom',20),(88,1,'journal2_side_blocks.52','footer',1),(89,1,'journal2_side_blocks.94','footer',2),(90,1,'journal2_side_blocks.163','footer',3),(91,1,'journal2_side_blocks.179','footer',1),(92,1,'journal2_side_blocks.195','footer',3),(93,1,'journal2_side_blocks.196','footer',2),(94,15,'journal2_simple_slider.227','content_top',0),(95,2,'journal2_simple_slider.112','column_right',6),(96,1,'journal2_cms_blocks.113','column_left',5),(97,8,'journal2_cms_blocks.127','content_top',0),(98,2,'journal2_cms_blocks.217','column_right',50),(99,2,'journal2_side_products.238','column_right',1),(100,1,'journal2_side_products.203','column_left',1),(101,1,'journal2_side_products.175','column_left',20),(102,1,'journal2_custom_sections.61','bottom',7),(103,1,'journal2_carousel.125','content_top',20),(104,1,'journal2_carousel.225','content_top',12),(105,2,'journal2_carousel.111','bottom',0),(106,1,'journal2_carousel.119','content_top',5),(107,2,'journal2_carousel.149','column_right',0),(108,2,'journal2_carousel.223','column_right',0),(109,1,'journal2_carousel.194','bottom',4),(110,1,'journal2_static_banners.90','top',-5),(111,1,'journal2_static_banners.80','content_top',2),(112,1,'journal2_static_banners.139','top',-5),(113,1,'journal2_static_banners.152','column_left',0),(114,1,'journal2_static_banners.162','top',2),(115,1,'journal2_static_banners.218','top',-5),(116,1,'journal2_slider.66','top',-20),(117,-1,'journal2_header_notice.236','header',0),(118,1,'journal2_side_category.9','column_left',0),(119,3,'journal2_side_category.9','column_left',-10),(120,1,'journal2_text_rotator.24','bottom',0),(121,1,'journal2_photo_gallery.237','bottom',20),(122,-1,'journal2_fullscreen_slider.25','footer',1),(123,1,'journal2_fullscreen_slider.122','footer',0),(124,15,'journal2_blog_side_posts.226','column_right',2),(125,16,'journal2_blog_side_posts.226','column_right',2),(126,15,'journal2_blog_comments.228','column_right',3),(127,16,'journal2_blog_comments.228','column_right',3),(128,15,'journal2_blog_search.229','column_right',0),(129,16,'journal2_blog_search.229','column_right',0),(130,15,'journal2_blog_tags.230','column_right',9),(131,16,'journal2_blog_tags.230','column_right',9),(132,15,'journal2_blog_categories.231','column_right',20),(133,16,'journal2_blog_categories.231','column_right',20),(134,5,'journal2_super_filter.54','column_left',0),(135,3,'journal2_super_filter.54','column_left',1),(136,17,'journal2_super_filter.54','column_right',0),(138,6,'marketplace','column_right',1);
/*!40000 ALTER TABLE `lk_layout_module` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_layout_route`
--

DROP TABLE IF EXISTS `lk_layout_route`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_layout_route` (
  `layout_route_id` int(11) NOT NULL AUTO_INCREMENT,
  `layout_id` int(11) NOT NULL,
  `store_id` int(11) NOT NULL,
  `route` varchar(64) NOT NULL,
  PRIMARY KEY (`layout_route_id`)
) ENGINE=MyISAM AUTO_INCREMENT=57 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_layout_route`
--

LOCK TABLES `lk_layout_route` WRITE;
/*!40000 ALTER TABLE `lk_layout_route` DISABLE KEYS */;
INSERT INTO `lk_layout_route` VALUES (56,6,0,'account/%'),(17,10,0,'affiliate/%'),(44,3,0,'product/category'),(42,1,0,'common/home'),(20,2,0,'product/product'),(24,11,0,'information/information'),(23,7,0,'checkout/%'),(31,8,0,'information/contact'),(32,9,0,'information/sitemap'),(34,4,0,''),(45,5,0,'product/manufacturer'),(52,12,0,'product/compare'),(53,13,0,'product/search'),(54,14,0,'journal2/blog'),(55,15,0,'journal2/blog/post');
/*!40000 ALTER TABLE `lk_layout_route` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_length_class`
--

DROP TABLE IF EXISTS `lk_length_class`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_length_class` (
  `length_class_id` int(11) NOT NULL AUTO_INCREMENT,
  `value` decimal(15,8) NOT NULL,
  PRIMARY KEY (`length_class_id`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_length_class`
--

LOCK TABLES `lk_length_class` WRITE;
/*!40000 ALTER TABLE `lk_length_class` DISABLE KEYS */;
INSERT INTO `lk_length_class` VALUES (1,1.00000000),(2,10.00000000),(3,0.39370000);
/*!40000 ALTER TABLE `lk_length_class` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_length_class_description`
--

DROP TABLE IF EXISTS `lk_length_class_description`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_length_class_description` (
  `length_class_id` int(11) NOT NULL,
  `language_id` int(11) NOT NULL,
  `title` varchar(32) NOT NULL,
  `unit` varchar(4) NOT NULL,
  PRIMARY KEY (`length_class_id`,`language_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_length_class_description`
--

LOCK TABLES `lk_length_class_description` WRITE;
/*!40000 ALTER TABLE `lk_length_class_description` DISABLE KEYS */;
INSERT INTO `lk_length_class_description` VALUES (1,1,'Centimeter','cm'),(2,1,'Millimeter','mm'),(3,1,'Inch','in');
/*!40000 ALTER TABLE `lk_length_class_description` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_location`
--

DROP TABLE IF EXISTS `lk_location`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_location` (
  `location_id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(32) NOT NULL,
  `address` text NOT NULL,
  `telephone` varchar(32) NOT NULL,
  `fax` varchar(32) NOT NULL,
  `geocode` varchar(32) NOT NULL,
  `image` varchar(255) DEFAULT NULL,
  `open` text NOT NULL,
  `comment` text NOT NULL,
  PRIMARY KEY (`location_id`),
  KEY `name` (`name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_location`
--

LOCK TABLES `lk_location` WRITE;
/*!40000 ALTER TABLE `lk_location` DISABLE KEYS */;
/*!40000 ALTER TABLE `lk_location` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_manufacturer`
--

DROP TABLE IF EXISTS `lk_manufacturer`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_manufacturer` (
  `manufacturer_id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(64) NOT NULL,
  `image` varchar(255) DEFAULT NULL,
  `sort_order` int(3) NOT NULL,
  PRIMARY KEY (`manufacturer_id`)
) ENGINE=MyISAM AUTO_INCREMENT=11 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_manufacturer`
--

LOCK TABLES `lk_manufacturer` WRITE;
/*!40000 ALTER TABLE `lk_manufacturer` DISABLE KEYS */;
INSERT INTO `lk_manufacturer` VALUES (5,'HTC','catalog/demo/htc_logo.jpg',0),(6,'Palm','catalog/demo/palm_logo.jpg',0),(7,'Hewlett-Packard','catalog/demo/hp_logo.jpg',0),(8,'Apple','catalog/demo/apple_logo.jpg',0),(9,'Canon','catalog/demo/canon_logo.jpg',0),(10,'Sony','catalog/demo/sony_logo.jpg',0);
/*!40000 ALTER TABLE `lk_manufacturer` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_manufacturer_to_store`
--

DROP TABLE IF EXISTS `lk_manufacturer_to_store`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_manufacturer_to_store` (
  `manufacturer_id` int(11) NOT NULL,
  `store_id` int(11) NOT NULL,
  PRIMARY KEY (`manufacturer_id`,`store_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_manufacturer_to_store`
--

LOCK TABLES `lk_manufacturer_to_store` WRITE;
/*!40000 ALTER TABLE `lk_manufacturer_to_store` DISABLE KEYS */;
INSERT INTO `lk_manufacturer_to_store` VALUES (5,0),(6,0),(7,0),(8,0),(9,0),(10,0);
/*!40000 ALTER TABLE `lk_manufacturer_to_store` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_marketing`
--

DROP TABLE IF EXISTS `lk_marketing`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_marketing` (
  `marketing_id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(32) NOT NULL,
  `description` text NOT NULL,
  `code` varchar(64) NOT NULL,
  `clicks` int(5) NOT NULL DEFAULT 0,
  `date_added` datetime NOT NULL,
  PRIMARY KEY (`marketing_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_marketing`
--

LOCK TABLES `lk_marketing` WRITE;
/*!40000 ALTER TABLE `lk_marketing` DISABLE KEYS */;
/*!40000 ALTER TABLE `lk_marketing` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_menu`
--

DROP TABLE IF EXISTS `lk_menu`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_menu` (
  `menu_id` int(11) NOT NULL AUTO_INCREMENT,
  `store_id` int(11) NOT NULL,
  `type` varchar(6) NOT NULL,
  `link` varchar(255) NOT NULL,
  `sort_order` int(3) NOT NULL,
  `status` tinyint(1) NOT NULL,
  PRIMARY KEY (`menu_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_menu`
--

LOCK TABLES `lk_menu` WRITE;
/*!40000 ALTER TABLE `lk_menu` DISABLE KEYS */;
/*!40000 ALTER TABLE `lk_menu` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_menu_description`
--

DROP TABLE IF EXISTS `lk_menu_description`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_menu_description` (
  `menu_id` int(11) NOT NULL,
  `language_id` int(11) NOT NULL,
  `name` varchar(64) NOT NULL,
  PRIMARY KEY (`menu_id`,`language_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_menu_description`
--

LOCK TABLES `lk_menu_description` WRITE;
/*!40000 ALTER TABLE `lk_menu_description` DISABLE KEYS */;
/*!40000 ALTER TABLE `lk_menu_description` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_menu_module`
--

DROP TABLE IF EXISTS `lk_menu_module`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_menu_module` (
  `menu_module_id` int(11) NOT NULL,
  `menu_id` int(11) NOT NULL,
  `code` varchar(64) NOT NULL,
  `sort_order` int(3) NOT NULL,
  PRIMARY KEY (`menu_module_id`),
  KEY `menu_id` (`menu_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_menu_module`
--

LOCK TABLES `lk_menu_module` WRITE;
/*!40000 ALTER TABLE `lk_menu_module` DISABLE KEYS */;
/*!40000 ALTER TABLE `lk_menu_module` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_modification`
--

DROP TABLE IF EXISTS `lk_modification`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_modification` (
  `modification_id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(64) NOT NULL,
  `code` varchar(64) NOT NULL,
  `author` varchar(64) NOT NULL,
  `version` varchar(32) NOT NULL,
  `link` varchar(255) NOT NULL,
  `xml` mediumtext NOT NULL,
  `status` tinyint(1) NOT NULL,
  `date_added` datetime NOT NULL,
  PRIMARY KEY (`modification_id`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_modification`
--

LOCK TABLES `lk_modification` WRITE;
/*!40000 ALTER TABLE `lk_modification` DISABLE KEYS */;
INSERT INTO `lk_modification` VALUES (1,'Marketplace 1','Webkul Marketplace 1','Webkul','2.0.0','http://webkul.com','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<modification>\n        <name>Marketplace 1</name>\n        <version>2.0.0</version>\n        <code>Webkul Marketplace 1</code>\n        <author>Webkul</author>\n        <link>http://webkul.com</link>\n\n        <file path=\"admin/controller/common/column_left.php\">\n                <operation>\n                        <search><![CDATA[\n              // Catalog\n                        ]]></search>\n                        <add position=\"before\"><![CDATA[\n        // marketplace code starts here\n\n            if ($this->config->get(\'marketplace_status\')) {\n\n                $marketplace = array();\n\n                if ($this->user->hasPermission(\'access\', \'customerpartner/partner\')) {\n                    $marketplace[] = array(\n                        \'name\'     => $this->language->get(\'text_partner\'),\n                        \'href\'     => $this->url->link(\'customerpartner/partner\', \'token=\' . $this->session->data[\'token\'], true),\n                        \'children\' => array()\n                    );\n                }\n\n                if ($this->user->hasPermission(\'access\', \'customerpartner/commission\')) {\n                    $marketplace[] = array(\n                        \'name\'     => $this->language->get(\'text_commission\'),\n                        \'href\'     => $this->url->link(\'customerpartner/commission\', \'token=\' . $this->session->data[\'token\'], true),\n                        \'children\' => array()\n                    );\n                }\n\n                if ($this->user->hasPermission(\'access\', \'customerpartner/product\')) {\n                    $marketplace[] = array(\n                        \'name\'     => $this->language->get(\'text_product\'),\n                        \'href\'     => $this->url->link(\'customerpartner/product\', \'token=\' . $this->session->data[\'token\'], true),\n                        \'children\' => array()\n                    );\n                }\n\n                if ($this->user->hasPermission(\'access\', \'customerpartner/category\')) {\n                    $marketplace[] = array(\n                        \'name\'     => $this->language->get(\'text_categories\'),\n                        \'href\'     => $this->url->link(\'customerpartner/category\', \'token=\' . $this->session->data[\'token\'], true),\n                        \'children\' => array()\n                    );\n                }\n\n                if ($this->user->hasPermission(\'access\', \'customerpartner/categorymapping\')) {\n                    $marketplace[] = array(\n                        \'name\'     => $this->language->get(\'text_categories_mapping\'),\n                        \'href\'     => $this->url->link(\'customerpartner/categorymapping\', \'token=\' . $this->session->data[\'token\'], true),\n                        \'children\' => array()\n                    );\n                }\n\n                if ($this->user->hasPermission(\'access\', \'customerpartner/order\')) {\n                    $marketplace[] = array(\n                        \'name\'     => $this->language->get(\'text_order\'),\n                        \'href\'     => $this->url->link(\'customerpartner/order\', \'token=\' . $this->session->data[\'token\'], true),\n                        \'children\' => array()\n                    );\n                }\n\n                if ($this->user->hasPermission(\'access\', \'customerpartner/income\')) {\n                    $marketplace[] = array(\n                        \'name\'     => $this->language->get(\'text_income\'),\n                        \'href\'     => $this->url->link(\'customerpartner/income\', \'token=\' . $this->session->data[\'token\'], true),\n                        \'children\' => array()\n                    );\n                }\n\n                if ($this->user->hasPermission(\'access\', \'customerpartner/transaction\')) {\n                    $marketplace[] = array(\n                        \'name\'     => $this->language->get(\'text_transaction\'),\n                        \'href\'     => $this->url->link(\'customerpartner/transaction\', \'token=\' . $this->session->data[\'token\'], true),\n                        \'children\' => array()\n                    );\n                }\n\n                if ($this->user->hasPermission(\'access\', \'customerpartner/shipping\')) {\n                    $marketplace[] = array(\n                        \'name\'     => $this->language->get(\'text_shipping\'),\n                        \'href\'     => $this->url->link(\'customerpartner/shipping\', \'token=\' . $this->session->data[\'token\'], true),\n                        \'children\' => array()\n                    );\n                }\n\n                if ($this->user->hasPermission(\'access\', \'customerpartner/mails\')) {\n                    $marketplace[] = array(\n                        \'name\'     => $this->language->get(\'text_mail\'),\n                        \'href\'     => $this->url->link(\'customerpartner/mails\', \'token=\' . $this->session->data[\'token\'], true),\n                        \'children\' => array()\n                    );\n                }\n\n                if ($this->user->hasPermission(\'access\', \'customerpartner/review\')) {\n                    $marketplace[] = array(\n                        \'name\'     => $this->language->get(\'text_seller_review\'),\n                        \'href\'     => $this->url->link(\'customerpartner/review\', \'token=\' . $this->session->data[\'token\'], true),\n                        \'children\' => array()\n                    );\n                }\n\n                if ($this->user->hasPermission(\'access\', \'customerpartner/reviewfield\')) {\n    $marketplace[] = array(\n        \'name\'     => $this->language->get(\'text_review_field\'),\n        \'href\'     => $this->url->link(\'customerpartner/reviewfield\', \'token=\' . $this->session->data[\'token\'], true),\n        \'children\' => array()\n    );\n}\n\nif ($this->user->hasPermission(\'access\', \'customerpartner/notification\')) {\n$marketplace[] = array(\n\'name\'     => $this->language->get(\'text_notifications\'),\n\'href\'     => $this->url->link(\'customerpartner/notification\', \'token=\' . $this->session->data[\'token\'], true),\n\'children\' => array()\n);\n}\n\nif ($this->user->hasPermission(\'access\', \'wkcustomfield/wkcustomfield\')) {\n                    $marketplace[] = array(\n                        \'name\'     => $this->language->get(\'text_custom_field\'),\n                        \'href\'     => $this->url->link(\'wkcustomfield/wkcustomfield\', \'token=\' . $this->session->data[\'token\'], true),\n                        \'children\' => array()\n                    );\n                }\n\n                if ($marketplace) {\n                    $data[\'menus\'][] = array(\n                        \'id\'       => \'menu-marketplace\',\n                        \'icon\'     => \'fa-users\',\n                        \'name\'     => $this->language->get(\'text_marketplace\'),\n                        \'href\'     => \'\',\n                        \'children\' => $marketplace\n                    );\n                }\n\n            }\n\n            // marketplace code ends here\n                        ]]></add>\n                </operation>\n        </file>\n\n        <file path=\"admin/language/*/common/column_left.php\">\n                <operation>\n                        <search><![CDATA[\n                $_[\'text_other_status\']\n                        ]]></search>\n                        <add position=\"after\"><![CDATA[\n                // Marketplace code starts\n\n                $_[\'text_marketplace\']               = \'Marketplace\';\n                $_[\'text_partner\']                   = \'Sellers\';\n                $_[\'text_commission\']                = \'Commission\';\n                $_[\'text_product\']                   = \'Products\';\n                $_[\'text_categories\']                = \'Categories\';\n                $_[\'text_categories_mapping\']        = \'Category Attribute Mapping\';\n                $_[\'text_order\']                     = \'Orders\';\n                $_[\'text_income\']                    = \'Income\';\n                $_[\'text_transaction\']               = \'Transaction\';\n                $_[\'text_shipping\']                  = \'Shipping\';\n                $_[\'text_mail\']                      = \'Mail\';\n                $_[\'text_seller_review\']                    = \'Seller Reviews\';\n$_[\'text_review_field\']              = \'Seller Review Fields\';\n$_[\'text_notifications\']              = \'Notifications\';\n                $_[\'text_custom_field\']              = \'Custom Fields\';\n\n                // Marketplace code ends\n                        ]]></add>\n                </operation>\n        </file>\n\n\n\n        <!-- delete product from seller table if admin delete product -->\n        <file path=\"admin/model/catalog/product.php\">\n                <operation>\n                        <search><![CDATA[\n    $this->db->query(\"DELETE FROM \" . DB_PREFIX . \"review WHERE product_id = \'\" . (int)$product_id . \"\'\");\n                        ]]></search>\n                        <add position=\"after\"><![CDATA[\n    $this->db->query(\"DELETE FROM \" . DB_PREFIX . \"customerpartner_to_product WHERE product_id = \'\" . (int)$product_id . \"\'\");\n    //commented because it\'s also important for order\n    //$this->db->query(\"DELETE FROM \" . DB_PREFIX . \"customerpartner_sold_tracking WHERE product_id = \'\" . (int)$product_id . \"\'\");\n                       ]]></add>\n                </operation>\n                <operation>\n                        <search><![CDATA[\n    public function editProduct($product_id, $data) {\n                        ]]></search>\n                        <add position=\"after\"><![CDATA[\n        /**\n         * Marketplace\n         */\n        if ($this->config->get(\'marketplace_status\')) {\n\n            $checkSellerProduct = $query = $this->db->query(\"SELECT * FROM \" . DB_PREFIX . \"customerpartner_to_product WHERE product_id = \'\" . (int)$product_id.\"\' ORDER BY id ASC\")->row;\n\n            if ($checkSellerProduct) {\n\n                $updatePrice = $this->currency->convert($data[\'price\'],$this->config->get(\'config_currency\'),$checkSellerProduct[\'currency_code\']);\n\n                $this->db->query(\"UPDATE \" . DB_PREFIX . \"customerpartner_to_product SET price = \'\".(float)$data[\'price\'].\"\',seller_price = \'\".(float)$updatePrice.\"\'  WHERE product_id = \'\".$product_id.\"\' ORDER BY id ASC\");\n            }\n        }\n\n        /**\n         * Marketplace\n         */\n                       ]]></add>\n                </operation>\n        </file>\n\n    <!--  display seller name with product in order info and after edit   -->\n        <file path=\"admin/controller/sale/order.php\">\n            <operation>\n                    <search><![CDATA[\n                $data[\'products\'][] = array(\n                    ]]></search>\n                    <add position=\"before\"><![CDATA[\n\n    $seller_details = $this->db->query(\"SELECT c.customer_id,CONCAT(c.firstname,\' \',c.lastname) name,c.email FROM \".DB_PREFIX.\"customerpartner_to_product c2p LEFT JOIN \".DB_PREFIX.\"customer c ON (c2p.customer_id = c.customer_id) WHERE c2p.product_id = \'\".(int)$product[\'product_id\'].\"\'\")->row;\n\n    if($seller_details AND isset($seller_details[\'name\']) AND $seller_details[\'name\'])\n      $product[\'name\'] = $product[\'name\'].\'</a> by Seller <a href=\"\'.$this->url->link(\'customerpartner/partner\', \'token=\' . $this->session->data[\'token\'] . \'&view_all=1&filter_email=\' . $seller_details[\'email\'], true).\'\"><b>\'.$seller_details[\'name\'].\'</b></a>\';\n\n                      ]]></add>\n            </operation>\n\n            <operation>\n                    <search><![CDATA[\n                $data[\'order_products\'][] = array(\n                    ]]></search>\n                    <add position=\"before\"><![CDATA[\n\n    $seller_details = $this->db->query(\"SELECT c.customer_id,CONCAT(c.firstname,\' \',c.lastname) name,c.email FROM \".DB_PREFIX.\"customerpartner_to_product c2p LEFT JOIN \".DB_PREFIX.\"customer c ON (c2p.customer_id = c.customer_id) WHERE c2p.product_id = \'\".(int)$product[\'product_id\'].\"\'\")->row;\n\n    if($seller_details AND isset($seller_details[\'name\']) AND $seller_details[\'name\'])\n      $product[\'name\'] = $product[\'name\'].\' by Seller <b>\'.$seller_details[\'name\'].\'</b>\';\n\n                      ]]></add>\n            </operation>\n\n        </file>\n\n    <!-- Sell Link in header -->\n    <file path=\"catalog/controller/common/header.php\">\n            <operation>\n                    <search><![CDATA[\n        $data[\'checkout\'] = $this->url->link(\'checkout/checkout\', \'\', true);\n                    ]]></search>\n                    <add position=\"after\"><![CDATA[\n        $data[\'notification\'] = \'\';\n$data[\'menusell\'] = $this->url->link(\'customerpartner/sell\', \'\', true);\n        $this->language->load(\'extension/module/marketplace\');\n        $data[\'marketplace_status\'] = $this->config->get(\'marketplace_status\');\n        $data[\'text_sell_header\'] = $this->language->get(\'text_sell_header\');\n        $data[\'text_my_profile\'] = $this->language->get(\'text_my_profile\');\n        $data[\'text_addproduct\'] = $this->language->get(\'text_addproduct\');\n        $data[\'text_wkshipping\'] = $this->language->get(\'text_wkshipping\');\n        $data[\'text_productlist\'] = $this->language->get(\'text_productlist\');\n        $data[\'text_dashboard\'] = $this->language->get(\'text_dashboard\');\n        $data[\'text_orderhistory\'] = $this->language->get(\'text_orderhistory\');\n        $data[\'text_becomePartner\'] = $this->language->get(\'text_becomePartner\');\n        $data[\'text_download\'] = $this->language->get(\'text_download\');\n        $data[\'text_transaction\'] = $this->language->get(\'text_transaction\');\n        $data[\'marketplace_allowed_account_menu\'] = $this->config->get(\'marketplace_allowed_account_menu\');\n        $data[\'mp_addproduct\'] = $this->url->link(\'account/customerpartner/addproduct\', \'\', true);\n        $data[\'mp_productlist\'] = $this->url->link(\'account/customerpartner/productlist\', \'\', true);\n        $data[\'mp_dashboard\'] = $this->url->link(\'account/customerpartner/dashboard\', \'\', true);\n        $data[\'mp_add_shipping_mod\'] = $this->url->link(\'account/customerpartner/add_shipping_mod\',\'\', true);\n        $data[\'mp_orderhistory\'] = $this->url->link(\'account/customerpartner/orderlist\',\'\', true);\n        $data[\'mp_download\'] = $this->url->link(\'account/customerpartner/download\',\'\', true);\n        $data[\'mp_profile\'] = $this->url->link(\'account/customerpartner/profile\',\'\',true);\n        $data[\'mp_want_partner\'] = $this->url->link(\'account/customerpartner/become_partner\',\'\',true);\n        $data[\'mp_transaction\'] = $this->url->link(\'account/customerpartner/transaction\',\'\',true);\n        $this->load->model(\'account/customerpartner\');\n        if($this->config->get(\'marketplace_status\')){\n            $data[\'chkIsPartner\'] = $this->model_account_customerpartner->chkIsPartner();\n            $data[\'marketplace_seller_mode\'] = isset($this->session->data[\'marketplace_seller_mode\']) ? $this->session->data[\'marketplace_seller_mode\'] : 1;\nif ($data[\'chkIsPartner\'] && $data[\'marketplace_seller_mode\']) {\n  $data[\'notification\'] = $this->load->controller(\'account/customerpartner/notification/notifications\');\n}\n        }\n                    ]]></add>\n            </operation>\n    </file>\n\n    <file path=\"catalog/view/theme/journal2/template/common/header.tpl\">\n            <operation>\n                    <search><![CDATA[\n        <li class=\"dropdown\"><a href=\"<?php echo $account; ?>\"\n                    ]]></search>\n                    <add position=\"before\"><![CDATA[\n    <?php if(isset($marketplace_status) && $marketplace_status){ ?>\n        <?php if ($logged AND $chkIsPartner && isset($marketplace_seller_mode) && $marketplace_seller_mode) { ?>\n  <li id=\"wk-notify\"><a id=\"notification\" data-toggle=\"modal\" data-target=\"#myModal-notification\"></a></li>\n<?php } ?>\n        <li class=\"dropdown\"><a href=\"<?php echo $menusell; ?>\" title=\"<?php echo $menusell; ?>\" class=\"dropdown-toggle\" data-toggle=\"dropdown\"><i class=\"fa fa-users\"></i> <span class=\"hidden-xs hidden-sm hidden-md\"><?php echo $text_sell_header; ?></span> <span class=\"caret\"></span></a>\n            <ul class=\"dropdown-menu dropdown-menu-right\">\n              <?php if ($logged AND $chkIsPartner && isset($marketplace_seller_mode) && $marketplace_seller_mode) { ?>\n                <?php if(isset($marketplace_allowed_account_menu) && $marketplace_allowed_account_menu && in_array(\'profile\',$marketplace_allowed_account_menu)) { ?>\n                    <li><a href=\"<?php echo $mp_profile; ?>\"><?php echo $text_my_profile; ?></a></li>\n                <?php } ?>\n                <?php if(isset($marketplace_allowed_account_menu) && $marketplace_allowed_account_menu && in_array(\'dashboard\',$marketplace_allowed_account_menu)) { ?>\n                    <li><a href=\"<?php echo $mp_dashboard; ?>\"><?php echo $text_dashboard; ?></a></li>\n                <?php } ?>\n                <?php if(isset($marketplace_allowed_account_menu) && $marketplace_allowed_account_menu && in_array(\'orderhistory\',$marketplace_allowed_account_menu)) { ?>\n                    <li><a href=\"<?php echo $mp_orderhistory; ?>\"><?php echo $text_orderhistory; ?></a></li>\n                <?php } ?>\n                <?php if(isset($marketplace_allowed_account_menu) && $marketplace_allowed_account_menu && in_array(\'transaction\',$marketplace_allowed_account_menu)) { ?>\n                    <li><a href=\"<?php echo $mp_transaction; ?>\"><?php echo $text_transaction; ?></a></li>\n                <?php } ?>\n                <?php if(isset($marketplace_allowed_account_menu) && $marketplace_allowed_account_menu && in_array(\'productlist\',$marketplace_allowed_account_menu)) { ?>\n                    <li><a href=\"<?php echo $mp_productlist; ?>\"><?php echo $text_productlist; ?></a></li>\n                <?php } ?>\n                <?php if(isset($marketplace_allowed_account_menu) && $marketplace_allowed_account_menu && in_array(\'download\',$marketplace_allowed_account_menu)) { ?>\n                    <li><a href=\"<?php echo $mp_download; ?>\"><?php echo $text_download; ?></a></li>\n                <?php } ?>\n                <?php if(isset($marketplace_allowed_account_menu) && $marketplace_allowed_account_menu && in_array(\'manageshipping\',$marketplace_allowed_account_menu)) { ?>\n                    <li><a href=\"<?php echo $mp_add_shipping_mod; ?>\"><?php echo $text_wkshipping; ?></a></li>\n                <?php } ?>\n                <li role=\"presentation\" class=\"divider\"></li>\n              <?php } ?>\n              <?php //}else{ ?>\n                <li><a href=\"<?php echo $menusell; ?>\"><?php echo $text_sell_header; ?></a></li>\n                <!--<li><a href=\"<?php echo $mp_want_partner; ?>\"><?php echo $text_becomePartner; ?></a></li>-->\n            </ul>\n        </li>\n    <?php } ?>\n                         ]]></add>\n            </operation>\n    </file>\n\n    <file path=\"catalog/controller/account/register.php\">\n                <operation>\n                        <search><![CDATA[\n        $data[\'column_left\'] = $this->load->controller(\'common/column_left\');\n                        ]]></search>\n                        <add position=\"before\"><![CDATA[\n        $data[\'marketplace_becomepartnerregistration\'] = false;\n        $data[\'marketplace_status\'] = false;\n        if($this->config->get(\'marketplace_status\') && $this->config->get(\'marketplace_becomepartnerregistration\')){\n            $data[\'marketplace_becomepartnerregistration\'] = $this->config->get(\'marketplace_becomepartnerregistration\');\n            $data[\'marketplace_status\'] = $this->config->get(\'marketplace_status\');\n            $this->language->load(\'account/customerpartner/become_partner\');\n\n            $data[\'text_register_becomePartner\'] = $this->language->get(\'text_register_becomePartner\');\n            $data[\'text_register_douwant\'] = $this->language->get(\'text_register_douwant\');\n            $data[\'text_shop_name\'] = $this->language->get(\'text_shop_name\');\n            $data[\'text_avaiable\'] = $this->language->get(\'text_avaiable\');\n            $data[\'text_no_avaiable\'] = $this->language->get(\'text_no_avaiable\');\n\n            if (isset($this->request->post[\'shoppartner\'])) {\n                $data[\'shoppartner\'] = $this->request->post[\'shoppartner\'];\n            } else {\n                $data[\'shoppartner\'] = \'\';\n            }\n\n            if (isset($this->request->post[\'tobecomepartner\'])) {\n                $data[\'tobecomepartner\'] = $this->request->post[\'tobecomepartner\'];\n            } else {\n                $data[\'tobecomepartner\'] = \'\';\n            }\n\n            if (isset($this->error[\'errshoppartner\'])) {\n                $data[\'error_shoppartner\'] = $this->error[\'errshoppartner\'];\n            } else {\n                $data[\'error_shoppartner\'] = \'\';\n            }\n\n        }\n\n                        ]]></add>\n                </operation>\n\n                <operation>\n                        <search><![CDATA[\n        function validate() {\n                        ]]></search>\n                        <add position=\"after\"><![CDATA[\n\n        if($this->config->get(\'marketplace_becomepartnerregistration\') AND isset($this->request->post[\'tobecomepartner\'])){\n\n            $this->language->load(\'account/customerpartner/become_partner\');\n\n            if(utf8_strlen($this->request->post[\'shoppartner\'])<=3 && $this->request->post[\'tobecomepartner\']==1){\n                $this->error[\'errshoppartner\'] = $this->language->get(\'error_validshop\');\n            }else if(utf8_strlen($this->request->post[\'shoppartner\']) >1 && $this->request->post[\'tobecomepartner\']==1){\n                $this->load->model(\'customerpartner/master\');\n                if($this->model_customerpartner_master->getShopData($this->request->post[\'shoppartner\'])){\n                  $this->error[\'errshoppartner\'] = $this->language->get(\'error_noshop\');\n                }\n            }\n\n            $this->language->load(\'account/register\');\n        }\n                        ]]></add>\n                </operation>\n\n                <operation>\n                        <search><![CDATA[\n        unset($this->session->data[\'guest\']);\n                        ]]></search>\n                        <add position=\"before\"><![CDATA[\n            if($this->config->get(\'marketplace_becomepartnerregistration\')){\n                if ($this->request->post[\'tobecomepartner\']==\'1\' && $this->request->post[\'shoppartner\']) {\n                    $this->load->model(\'account/customerpartner\');\n                    $this->model_account_customerpartner->becomePartner($this->request->post[\'shoppartner\'],$this->request->post[\'country_id\'],$customer_id);\n                }\n            }\n\n                       ]]></add>\n                </operation>\n\n        </file>\n\n        <file path=\"catalog/view/theme/default/template/account/register.tpl\">\n                <operation>\n                        <search><![CDATA[\n                    <?php if ($text_agree) { ?>\n                        ]]></search>\n                        <add position=\"before\"><![CDATA[\n    <?php if($marketplace_status && $marketplace_becomepartnerregistration){ ?>\n\n        <fieldset>\n          <legend><?php echo $text_register_becomePartner; ?></legend>\n          <div class=\"form-group\">\n            <label class=\"col-sm-2 control-label\"><?php echo $text_register_douwant; ?></label>\n            <div class=\"col-sm-10\">\n              <?php if ($tobecomepartner) { ?>\n              <label class=\"radio-inline\">\n                <input type=\"radio\" name=\"tobecomepartner\" value=\"1\" checked=\"checked\" />\n                <?php echo $text_yes; ?></label>\n              <label class=\"radio-inline\">\n                <input type=\"radio\" name=\"tobecomepartner\" value=\"0\" />\n                <?php echo $text_no; ?></label>\n              <?php } else { ?>\n              <label class=\"radio-inline\">\n                <input type=\"radio\" name=\"tobecomepartner\" value=\"1\" />\n                <?php echo $text_yes; ?></label>\n              <label class=\"radio-inline\">\n                <input type=\"radio\" name=\"tobecomepartner\" value=\"0\" checked=\"checked\" />\n                <?php echo $text_no; ?></label>\n              <?php } ?>\n            </div>\n          </div>\n\n          <div class=\"form-group required hide\" id=\"fg-shoppartner\">\n            <label class=\"col-sm-2 control-label\" for=\"input-shop\"><?php echo $text_shop_name; ?></label>\n            <div class=\"col-sm-10\">\n              <div class=\"input-group\">\n                <span class=\"input-group-addon\"><i class=\"fa fa-search\"></i></span>\n                <input type=\"text\" name=\"shoppartner\" value=\"<?php echo $shoppartner; ?>\" placeholder=\"<?php echo $text_shop_name; ?>\" id=\"input-shop\" class=\"form-control\" />\n              </div>\n              <?php if ($error_shoppartner) { ?>\n              <div class=\"text-danger\"><?php echo $error_shoppartner; ?></div>\n              <?php } ?>\n            </div>\n          </div>\n\n        </fieldset>\n\n        <script>\n\n          $(\'input[name=\\\'tobecomepartner\\\']\').on(\'change\', function() {\n            if ($(this).val() == 1) {\n              $(\'#fg-shoppartner\').removeClass(\'hide\');\n            } else {\n              $(\'#fg-shoppartner\').addClass(\'hide\');\n            }\n          });\n\n            $( \"#input-shop\" ).change(function() {\n              thisshop = this;\n              shop = $(thisshop).val();\n\n              if(shop){\n\n                jQuery(thisshop).prev().html(\'<i class=\"fa fa-spinner fa-spin\"></i>\');\n\n                $.ajax({\n                       type: \'POST\',\n                       data: ({shop: shop}),\n                       dataType: \'json\',\n                       url: \'index.php?route=customerpartner/sell/wkmpregistation\',\n                       success: function(data){\n\n                          if(data[\'success\']){\n                            jQuery(thisshop).prev().html(\'<span data-toggle=\"tooltip\" class=\"text-success\" title=\"<?php echo $text_avaiable; ?>\"><i class=\"fa fa-thumbs-o-up\"></i></span>\');\n                          }else if(data[\'error\']){\n                            jQuery(thisshop).prev().html(\'<span data-toggle=\"tooltip\" class=\"text-danger\" title=\"<?php echo $text_no_avaiable; ?>\"><i class=\"fa fa-thumbs-o-down\"></i></span>\');\n                          }\n\n                        }\n                    });\n              }\n            });\n        </script>\n    <?php } ?>\n                              ]]></add>\n                </operation>\n        </file>\n\n<!-- code addition for journal2 theme -->\n        <file path=\"catalog/view/theme/journal2/template/account/register.tpl\">\n                <operation>\n                        <search><![CDATA[\n                    <?php if ($text_agree) { ?>\n                        ]]></search>\n                        <add position=\"before\"><![CDATA[\n    <?php if($marketplace_status && $marketplace_becomepartnerregistration){ ?>\n\n        <fieldset>\n          <h2 class=\"secondary-title\"><?php echo $text_register_becomePartner; ?></h2>\n          <div class=\"form-group\">\n            <label class=\"col-sm-2 control-label\"><?php echo $text_register_douwant; ?></label>\n            <div class=\"col-sm-10\">\n              <?php if ($tobecomepartner) { ?>\n              <label class=\"radio-inline\">\n                <input type=\"radio\" name=\"tobecomepartner\" value=\"1\" checked=\"checked\" />\n                <?php echo $text_yes; ?></label>\n              <label class=\"radio-inline\">\n                <input type=\"radio\" name=\"tobecomepartner\" value=\"0\" />\n                <?php echo $text_no; ?></label>\n              <?php } else { ?>\n              <label class=\"radio-inline\">\n                <input type=\"radio\" name=\"tobecomepartner\" value=\"1\" />\n                <?php echo $text_yes; ?></label>\n              <label class=\"radio-inline\">\n                <input type=\"radio\" name=\"tobecomepartner\" value=\"0\" checked=\"checked\" />\n                <?php echo $text_no; ?></label>\n              <?php } ?>\n            </div>\n          </div>\n\n          <div class=\"form-group required hide\" id=\"fg-shoppartner\">\n            <label class=\"col-sm-2 control-label\" for=\"input-shop\"><?php echo $text_shop_name; ?></label>\n            <div class=\"col-sm-10\">\n              <div class=\"input-group\">\n                <span class=\"input-group-addon\"><i class=\"fa fa-search button\"></i></span>\n                <input type=\"text\" name=\"shoppartner\" value=\"<?php echo $shoppartner; ?>\" placeholder=\"<?php echo $text_shop_name; ?>\" id=\"input-shop\" class=\"form-control\" style=\"width:auto;\"  />\n              </div>\n              <?php if ($error_shoppartner) { ?>\n              <div class=\"text-danger\"><?php echo $error_shoppartner; ?></div>\n              <?php } ?>\n            </div>\n          </div>\n\n        </fieldset>\n\n        <script>\n\n          $(\'input[name=\\\'tobecomepartner\\\']\').on(\'change\', function() {\n            if ($(this).val() == 1) {\n              $(\'#fg-shoppartner\').removeClass(\'hide\');\n            } else {\n              $(\'#fg-shoppartner\').addClass(\'hide\');\n            }\n          });\n\n            $( \"#input-shop\" ).change(function() {\n              thisshop = this;\n              shop = $(thisshop).val();\n\n              if(shop){\n\n                jQuery(thisshop).prev().html(\'<i class=\"fa fa-spinner fa-spin\"></i>\');\n\n                $.ajax({\n                       type: \'POST\',\n                       data: ({shop: shop}),\n                       dataType: \'json\',\n                       url: \'index.php?route=customerpartner/sell/wkmpregistation\',\n                       success: function(data){\n\n                          if(data[\'success\']){\n                            jQuery(thisshop).prev().html(\'<span data-toggle=\"tooltip\" class=\"text-success\" title=\"<?php echo $text_avaiable; ?>\"><i class=\"fa fa-thumbs-o-up\"></i></span>\');\n                          }else if(data[\'error\']){\n                            jQuery(thisshop).prev().html(\'<span data-toggle=\"tooltip\" class=\"text-danger\" title=\"<?php echo $text_no_avaiable; ?>\"><i class=\"fa fa-thumbs-o-down\"></i></span>\');\n                          }\n\n                        }\n                    });\n              }\n            });\n        </script>\n    <?php } ?>\n                              ]]></add>\n                </operation>\n        </file>\n\n        <!-- code for unset session variable on logout for pop-up modal with information -->\n        <file path=\"system/library/cart/customer.php\">\n            <operation>\n                <search><![CDATA[\n                    unset($this->session->data[\'customer_id\']);\n                ]]></search>\n                <add position=\"after\"><![CDATA[\n                    unset($this->session->data[\'openModal\']);\n                ]]></add>\n            </operation>\n        </file>\n\n        <!-- send mail to seller after product sold -->\n        <file path=\"catalog/model/checkout/order.php\">\n\n          <operation>\n            <search><![CDATA[\n        // Admin Alert Mail\n            ]]></search>\n            <add position=\"before\"><![CDATA[\n                //for Marketplace management\n                if ($this->config->get(\'marketplace_status\')){\n                   $this->load->model(\'account/customerpartnerorder\');\n                   $this->model_account_customerpartnerorder->customerpartner($order_info,$order_status, $comment);\n                }\n            ]]></add>\n           </operation>\n\n           <operation>\n            <search><![CDATA[\n            $customer_info = $this->model_account_customer->getCustomer($order_info[\'customer_id\']);\n            ]]></search>\n            <add position=\"before\"><![CDATA[\n            $toAdmin = false;\n            if(isset($comment) && $comment) {\n                $get_comment = explode(\'___\',$comment);\n                if($get_comment[0] == \'wk_admin_comment\' ) {\n                    $comment = ($get_comment[1]);\n                    $toAdmin = true;\n                    $this->config->set(\'config_email\',$this->customer->getEmail());\n                    if($this->config->get(\'marketplaceadminmail\')) {\n                        $order_info[\'email\'] = $this->config->get(\'marketplace_adminmail\');\n                    } else {\n                        $order_info[\'email\'] = $this->config->get(\'config_email\');\n                    }\n                }\n            }\n            ]]></add>\n           </operation>\n\n           <operation>\n            <search><![CDATA[\n            $message .= $language->get(\'text_update_order_status\') . \"\\n\\n\";\n            ]]></search>\n            <add position=\"replace\"><![CDATA[\n                    if(isset($toAdmin) && $toAdmin) {\n                        $message .= $language->get(\'text_update_order_status_admin\') . \"\\n\\n\";\n                    } else {\n                        $message .= $language->get(\'text_update_order_status\') . \"\\n\\n\";\n                    }\n            ]]></add>\n           </operation>\n            <operation>\n            <search><![CDATA[\n            $message .= $language->get(\'text_update_comment\') . \"\\n\\n\";\n            ]]></search>\n            <add position=\"replace\"><![CDATA[\n                    if(isset($toAdmin) && $toAdmin) {\n                        $message .= $language->get(\'text_update_comment_admin\') . \"\\n\\n\";\n                    } else {\n                        $message .= $language->get(\'text_update_comment\') . \"\\n\\n\";\n                    }\n            ]]></add>\n           </operation>\n            <operation>\n            <search><![CDATA[\n            $message .= $language->get(\'text_update_link\') . \"\\n\";\n            ]]></search>\n            <add position=\"before\"><![CDATA[\n                    if(isset($toAdmin) && !$toAdmin) {\n            ]]></add>\n           </operation>\n           <operation>\n            <search><![CDATA[\n            $message .= $language->get(\'text_update_link\') . \"\\n\";\n            ]]></search>\n            <add position=\"after\" offset=\"1\"><![CDATA[\n                    }\n            ]]></add>\n           </operation>\n            <operation>\n                <search><![CDATA[\n                    $this->db->query(\"DELETE FROM `\" . DB_PREFIX . \"order`\n                ]]></search>\n            <add position=\"before\"><![CDATA[\n              $str = \'%order_id_:\' . $order_id . \'_\';\n\n              $this->db->query(\"DELETE FROM \".DB_PREFIX.\"customer_activity WHERE data LIKE \'\" . $str . \"\'\");\n\n              if($this->config->get(\'marketplace_status\')) {\n\n              $transaction = $this->db->query(\"SELECT * FROM \" . DB_PREFIX . \"customerpartner_to_transaction\")->rows;\n\n              if ($transaction) {\n                foreach ($transaction as $key => $value) {\n\n                  $order_ids = explode(\',\',$value[\'order_id\']);\n\n                  if ($order_ids && in_array($order_id,$order_ids)) {\n\n                    $paid_amount = $this->db->query(\"SELECT SUM(customer) AS paid_amount FROM \" . DB_PREFIX . \"customerpartner_to_order WHERE order_id = \" . (int)$order_id . \" AND customer_id = \". $value[\'customer_id\'])->row;\n\n                    if (isset($paid_amount[\'paid_amount\']) && $paid_amount[\'paid_amount\']) {\n                      if ($paid_amount[\'paid_amount\'] == $value[\'amount\']) {\n                        $this->db->query(\"DELETE FROM \".DB_PREFIX.\"customerpartner_to_transaction WHERE id = \'\".(int)$value[\'id\'].\"\' \");\n                      } else {\n                        $amount = $value[\'amount\'] - $paid_amount[\'paid_amount\'];\n\n                        $text = substr($value[\'text\'],0,1) . $amount;\n\n                        $this->db->query(\"UPDATE \".DB_PREFIX.\"customerpartner_to_transaction SET amount = \" . $amount . \", text = \'\" . $text . \"\' WHERE id = \'\".(int)$value[\'id\'].\"\' \");\n                      }\n                    }\n                  }\n                }\n              }\n\n                $this->db->query(\"DELETE FROM \".DB_PREFIX.\"mp_customer_activity WHERE data LIKE \'\" . $str . \"\'\");\n\n                $this->db->query(\"DELETE FROM \".DB_PREFIX.\"customerpartner_to_order WHERE order_id = \'\".(int)$order_id.\"\' \");\n             $this->db->query(\"DELETE FROM \".DB_PREFIX.\"customerpartner_to_order_status WHERE order_id = \'\".(int)$order_id.\"\' \");\n             $this->db->query(\"DELETE FROM \".DB_PREFIX.\"customerpartner_sold_tracking WHERE order_id = \'\".(int)$order_id.\"\' \");\n        }\n            ]]></add>\n            </operation>\n\n        </file>\n\n        <file path=\"catalog/language/*/mail/order.php\">\n            <operation>\n                <search><![CDATA[\n                $_[\'text_update_footer\']        = \'Please reply to this email if you have any questions.\';\n                ]]></search>\n                <add position=\"after\"><![CDATA[\n$_[\'text_update_order_status_admin\']  = \'Order has been updated to the following status:\';\n$_[\'text_update_comment_admin\']       = \'The comments for above order are:\';\n                ]]></add>\n            </operation>\n        </file>\n\n        <!-- code for custom field -->\n        <file path=\"admin/view/template/catalog/product_form.tpl\">\n                <operation>\n                        <search><![CDATA[\n                        <li><a href=\"#tab-design\" data-toggle=\"tab\"><?php echo $tab_design; ?></a></li>\n                        ]]></search>\n                        <add position=\"before\"><![CDATA[\n                            <!-- Marketplace customfield -->\n                            <li><a href=\"#tab-custom-field\" data-toggle=\"tab\"><?php echo \"Custom field\"; ?></a></li>\n                            <!-- Marketplace customfield -->\n                              ]]></add>\n                </operation>\n                <operation>\n                        <search><![CDATA[\n                        <div class=\"tab-pane\" id=\"tab-design\">\n                        ]]></search>\n                        <add position=\"before\"><![CDATA[\n            <!--Marketplace Customfield -->\n            <div class=\"tab-pane\" id=\"tab-custom-field\">\n              <div class=\"row\">\n                <div class=\"col-sm-3\">\n                  <ul class=\"nav nav-pills nav-stacked\" id=\"vtab-option\">\n                      <?php  $tabCount = 0; $wkcustom_option_row = 0;?>\n                        <?php if(!empty($wkPreCustomFields)) { ?>\n                          <?php foreach($wkPreCustomFields as $tabs) { ?>\n                            <li>\n                              <a href=\"#wktab-option-<?php echo $tabCount; ?>\" data-toggle=\"tab\" id=\"wkoption-<?php echo $tabCount; ?>\" field-id = \"wkoption-<?php echo $tabs[\'fieldId\'];?>\"><i class=\"fa fa-minus-circle\" onclick=\"$(\'#wkoption-<?php echo $tabCount; ?>\').remove(); $(\'#wktab-option-<?php echo $tabCount; ?>\').remove(); $(\'#vtab-option li a:first\').trigger(\'click\'); return false;\"></i><?php echo $tabs[\"fieldName\"]; ?></a>\n                            </li>\n                          <?php $tabCount++; ?>\n                        <?php } ?>\n                      <?php } ?>\n                      <li id=\"optionSelector\">\n                        <select name=\"wkcustomfield\" class=\"form-control\">\n                          <?php if(!empty($wkcustomFields)){ ?>\n                            <option value=\"\"></option>\n                              <?php  foreach($wkcustomFields as $field) { ?>\n                                <option value=\"<?php echo $field[\'id\']; ?>\" data-type = \"<?php echo $field[\'fieldType\']; ?>\" data-name=\"<?php echo $field[\'fieldName\']; ?>\" data-des=\"<?php echo $field[\'fieldDescription\']; ?>\" title=\"<?php echo $field[\'fieldDescription\']; ?>\" data-isRequired = \"<?php echo $field[\'isRequired\']; ?>\">\n                                  <?php echo $field[\'fieldName\']; ?>\n                                </option>\n                              <?php\n                              }\n                            }\n                          ?>\n                        </select>\n                      </li>\n                  </ul>\n                </div>\n\n                <div class=\"col-sm-9\">\n                  <div class=\"tab-content\" id=\"wk_customfieldcontent\">\n                  <?php  $tabCount = 0; $wkcustom_option_row = 0;\n                  if(!empty($wkPreCustomFields)) {\n                    foreach($wkPreCustomFields as $tabs) { ?>\n                      <div id=\"wktab-option-<?php echo $tabCount; ?>\" class=\"tab-pane\">\n                        <div class=\"alert alert-info\">\n                          <i class=\"fa fa-info-circle\"></i>\n                          <?php  echo $tabs[\'fieldDes\']; ?>\n                        </div>\n                        <?php if(isset($error) && $error == $tabs[\'fieldId\']) { ?>\n                            <div class=\"alert alert-danger\">\n                              <i class=\"fa fa-exclamation-circle\"></i>\n                              <?php echo $error_warning_mandetory; ?>\n                            </div>\n                        <?php } ?>\n                        <input type=\"hidden\" name=\"product_custom_field[<?php echo $wkcustom_option_row; ?>][custom_field_name]\" value=\"<?php echo $tabs[\'fieldName\']; ?>\">\n                        <input type=\"hidden\" name=\"product_custom_field[<?php echo $wkcustom_option_row; ?>][custom_field_type]\" value=\"<?php echo $tabs[\'fieldType\']; ?>\">\n                        <input type=\"hidden\" name=\"product_custom_field[<?php echo $wkcustom_option_row; ?>][custom_field_id]\" value=\"<?php echo $tabs[\'fieldId\']; ?>\">\n                        <input type=\"hidden\" name=\"product_custom_field[<?php echo $wkcustom_option_row; ?>][custom_field_des]\" value=\"<?php echo $tabs[\'fieldDes\']; ?>\">\n                        <input type=\"hidden\" name=\"product_custom_field[<?php echo $wkcustom_option_row; ?>][custom_field_is_required]\" value=\"<?php echo $tabs[\'isRequired\']; ?>\">\n\n                            <?php if($tabs[\'fieldType\'] == \'select\') { ?>\n                              <div class=\"form-group <?php if($tabs[\'isRequired\'] == \'yes\') echo \'required\'; ?>\">\n                                <label class=\"col-sm-3 control-label\">Select option:</label>\n                                <div class=\"col-sm-9\">\n                                  <select class=\"form-control\" name=\"product_custom_field[<?php echo $wkcustom_option_row; ?>][custom_field_value][]\" >\n                                    <?php  foreach($tabs[\'preFieldOptions\'] as $options) { ?>\n                                      <option value=\"<?php echo $options[\'optionId\']; ?>\" <?php if(!empty($tabs[\'fieldOptions\'])) { foreach($tabs[\'fieldOptions\'] as $option) { if($option[\'optionId\'] == $options[\'optionId\']) echo \"selected\"; } } ?> >\n                                        <?php echo $options[\'optionValue\']; ?>\n                                      </option>\n                                    <?php\n                                    }  ?>\n                                  </select>\n                                </div>\n                               </div>\n                              <?php\n\n                              }else if($tabs[\'fieldType\'] == \'checkbox\' || $tabs[\'fieldType\'] == \'radio\' ) { ?>\n                                <div class=\"form-group  <?php if($tabs[\'isRequired\'] == \'yes\') echo \'required\'; ?>\">\n                                <label class=\"control-label col-sm-3\">Select option:</label>\n                                <div class=\"col-sm-9\">\n                              <?php  foreach($tabs[\'preFieldOptions\'] as $options) { ?>\n\n                                  <div class=\"radio checkbox\">\n                                    <label for=\"<?php echo $wkcustom_option_row.$options[\'optionId\']; ?>\">\n                                      <input type=\'<?php echo $tabs[\'fieldType\']; ?>\' id=\"<?php echo $wkcustom_option_row.$options[\'optionId\']; ?>\" value=\"<?php echo $options[\'optionId\']; ?>\" name=\"product_custom_field[<?php echo $wkcustom_option_row; ?>][custom_field_value][]\" <?php if(!empty($tabs[\'fieldOptions\'])) { foreach($tabs[\'fieldOptions\'] as $option) { if($option[\'optionId\'] == $options[\'optionId\']) echo \"checked\"; } } ?> />\n                                      <?php echo $options[\'optionValue\']; ?>\n                                    </label>\n                                  </div>\n\n                              <?php }  ?>\n                               </div>\n                              </div>\n                              <?php }else if($tabs[\'fieldType\'] == \'text\') { ?>\n                                <div class=\"form-group <?php if($tabs[\'isRequired\'] == \'yes\') echo \'required\'; ?>\">\n                                  <label class=\"col-sm-3 control-label\">Enter Text:</label>\n                                  <div class=\"col-sm-9\">\n                                    <input class=\"form-control\" type=\"text\" name=\"product_custom_field[<?php echo $wkcustom_option_row; ?>][custom_field_value][]\" value=\"<?php if(isset($tabs[\'fieldOptions\'][\'option_id\'])) echo $tabs[\'fieldOptions\'][\'option_id\']; ?>\" />\n                                  </div>\n                                </div>\n                                <?php\n                                }else if($tabs[\'fieldType\'] == \'textarea\') { ?>\n                                  <div class=\"form-group <?php if($tabs[\'isRequired\'] == \'yes\') echo \'required\'; ?>\">\n                                    <label class=\"col-sm-3 control-label\">Enter Text:</label>\n                                    <div class=\"col-sm-9\">\n                                      <textarea class=\"form-control\" name=\"product_custom_field[<?php echo $wkcustom_option_row; ?>][custom_field_value][]\" rows=\"7\" >\n                                      <?php if(isset($tabs[\'fieldOptions\'][\'option_id\'])) echo $tabs[\'fieldOptions\'][\'option_id\']; ?>\n                                    </textarea>\n                                    </div>\n                                  </div>\n                                <?php\n                                }else if($tabs[\'fieldType\'] == \'date\') { ?>\n                                  <div class=\"form-group <?php if($tabs[\'isRequired\'] == \'yes\') echo \'required\'; ?>\">\n                                    <label class=\"col-sm-3 control-label\">Select Date:</label>\n                                    <div class=\"col-sm-6\">\n                                      <div class=\"input-group date\">\n                                        <input type=\"text\" name=\"product_custom_field[<?php echo $wkcustom_option_row; ?>][custom_field_value][]\" value=\"<?php if(isset($tabs[\'fieldOptions\'][\'option_id\'])) echo $tabs[\'fieldOptions\'][\'option_id\']; ?>\" class=\"form-control\">\n                                        <span class=\"input-group-btn\">\n                                          <button type=\"button\" class=\"btn btn-default\">\n                                            <i class=\"fa fa-calendar\"></i>\n                                          </button>\n                                        </span>\n                                      </div>\n                                    </div>\n                                  </div>\n                                <?php\n                                }else if($tabs[\'fieldType\'] == \'time\') { ?>\n                                  <div class=\"form-group <?php if($tabs[\'isRequired\'] == \'yes\') echo \'required\'; ?>\">\n                                    <label class=\"col-sm-3 control-label\">Enter Text:</label>\n                                    <div class=\"col-sm-6\">\n                                      <div class=\"input-group time\">\n                                         <input class=\"form-control\" type=\"text\" name=\"product_custom_field[<?php echo $wkcustom_option_row; ?>][custom_field_value][]\" value=\"<?php if(isset($tabs[\'fieldOptions\'][\'option_id\'])) echo $tabs[\'fieldOptions\'][\'option_id\']; ?>\" >\n                                        <span class=\"input-group-btn\">\n                                          <button type=\"button\" class=\"btn btn-default\">\n                                            <i class=\"fa fa-clock-o\"></i>\n                                          </button>\n                                        </span>\n                                      </div>\n                                    </div>\n                                  </div>\n                                  <?php\n                                  }else if($tabs[\'fieldType\'] == \'datetime\') { ?>\n                                    <div class=\"form-group  <?php if($tabs[\'isRequired\'] == \'yes\') echo \'required\'; ?>\">\n                                      <label class=\"col-sm-3 control-label\">Select date-time:</label>\n                                      <div class=\"col-sm-6\">\n                                        <div class=\"input-group datetime\">\n                                          <input type=\"text\" name=\"product_custom_field[<?php echo $wkcustom_option_row; ?>][custom_field_value][]\" value=\"<?php if(isset($tabs[\'fieldOptions\'][\'option_id\'])) echo $tabs[\'fieldOptions\'][\'option_id\']; ?>\" class=\"form-control\">\n                                          <span class=\"input-group-btn\">\n                                            <button type=\"button\" class=\"btn btn-default\">\n                                              <i class=\"fa fa-clock-o\"></i>\n                                            </button>\n                                          </span>\n                                        </div>\n                                      </div>\n                                    </div>\n                                  <?php\n                                  } ?>\n                            </div>\n                          <?php $tabCount++; $wkcustom_option_row++;\n                        }\n                      } ?>\n                  </div>\n                </div>\n\n              </div>\n            </div>\n            <script type=\"text/javascript\">\n\n            $(\'#vtab-option a:first\').tab(\'show\');\n              tabCount = \'<?php echo $tabCount; ?>\';\n              wkcustom_option_row = \'<?php echo $wkcustom_option_row; ?>\';\n              $(\'select[name=\"wkcustomfield\"]\').on(\'change\',function(){\n                value = $(this).val();\n                if(value == \'\'){\n                  return;\n                }\n\n                if($(\'body\').find(\'[field-id = wkoption-\'+value+\']\').length){\n                  return;\n                }\n              fieldType = $(\'option:selected\', this).attr(\'data-type\');\n              fieldName = $(\'option:selected\', this).attr(\'data-name\');\n              fieldDes = $(\'option:selected\', this).attr(\'data-des\');\n              fieldIsRequired = $(\'option:selected\', this).attr(\'data-isRequired\');\n              tab = \'<li><a href=\"#wktab-option-\'+tabCount+\'\" data-toggle=\"tab\" id=\"wkoption-\'+tabCount+\'\" field-id = \"wkoption-\'+value+\'\"><i class=\"fa fa-minus-circle\" onclick=\"$(\\\'#wkoption-\' + tabCount + \'\\\').remove(); $(\\\'#wktab-option-\' + tabCount + \'\\\').remove(); $(\\\'#vtab-option a:first\\\').trigger(\\\'click\\\'); return false;\" /></i>&nbsp;\'+fieldName+\'</a></li>\';\n              $(\'#optionSelector\').before(tab);\n              html  = \'\';\n              html += \'<input type=\"hidden\" name=\"product_custom_field[\'+wkcustom_option_row+\'][custom_field_name]\" value=\"\'+fieldName+\'\">\';\n              html += \'<input type=\"hidden\" name=\"product_custom_field[\'+wkcustom_option_row+\'][custom_field_type]\" value=\"\'+fieldType+\'\">\';\n              html += \'<input type=\"hidden\" name=\"product_custom_field[\'+wkcustom_option_row+\'][custom_field_id]\" value=\"\'+value+\'\">\';\n              html += \'<input type=\"hidden\" name=\"product_custom_field[\'+wkcustom_option_row+\'][custom_field_des]\" value=\"\'+fieldDes+\'\">\';\n              html += \'<input type=\"hidden\" name=\"product_custom_field[\'+wkcustom_option_row+\'][custom_field_is_required]\" value=\"\'+fieldIsRequired+\'\">\';\n              if(fieldIsRequired == \'yes\'){\n                required = \'required\';\n              }else{\n                required = \'\';\n              }\n              if(fieldType == \"textarea\"){\n\n                html += \'<div class=\"form-group \'+required+\' \"><label class=\"col-sm-3 control-label\"><?php echo $entry_enter_text; ?></label>\';\n                html += \'<div class=\"col-sm-9\"><textarea class=\"form-control\" id=\"\" value=\"\" name=\"product_custom_field[\'+wkcustom_option_row+\'][custom_field_value][]\" row=\"7\"></textarea></div></div>\';\n                addtoBody(html);\n\n              }else if(fieldType == \"text\"){\n\n                html += \'<div class=\"form-group \'+required+\'\"><label class=\"col-sm-3 control-label\"><?php echo $entry_enter_text; ?></label>\';\n                html += \'<div class=\"col-sm-9\"><input type=\"text\" class=\"form-control\" name=\"product_custom_field[\'+wkcustom_option_row+\'][custom_field_value][]\" /></div></div>\';\n                addtoBody(html);\n\n              }else if(fieldType == \"time\"){\n\n                html += \'<div class=\"form-group \'+required+\'\"><label class=\"col-sm-3 control-label\"><?php echo $entry_select_time; ?></label>\';\n                html += \'<div class=\"col-sm-6\"><div class=\"input-group time\"><input type=\"text\" name=\"product_custom_field[\'+wkcustom_option_row+\'][custom_field_value][]\" class=\"form-control\" /><span class=\"input-group-btn\"><button class=\"btn btn-default\" type=\"button\"><i class=\"fa fa-clock-o\"></i></button</span></div</div></div>\';\n\n                addtoBody(html);\n\n              }else if(fieldType == \"datetime\"){\n\n                html += \'<div class=\"form-group \'+required+\'\"><label class=\"col-sm-3 control-label\"><?php echo $entry_select_datetime; ?></label>\';\n                html += \'<div class=\"col-sm-6\"><div class=\"input-group datetime\"><input type=\"text\" name=\"product_custom_field[\'+wkcustom_option_row+\'][custom_field_value][]\" class=\"form-control\" /><span class=\"input-group-btn\"><button class=\"btn btn-default\" type=\"button\"><i class=\"fa fa-calendar\"></i></button</span></div</div></div>\';\n\n                addtoBody(html);\n\n              }else if(fieldType == \"date\"){\n\n                html += \'<div class=\"form-group \'+required+\'\">\';\n                html += \'<label class=\"col-sm-3 control-label\"><?php echo $entry_select_date; ?></label>\';\n                html += \'<div class=\"col-sm-6\"><div class=\"input-group date\">\';\n                html += \'<input type=\"text\" name=\"product_custom_field[<?php echo $wkcustom_option_row; ?>][custom_field_value][]\" class=\"form-control\">\';\n                html += \'<span class=\"input-group-btn\"><button type=\"button\" class=\"btn btn-default\"><i class=\"fa fa-calendar\"></i></button></span></div></div></div>\';\n\n                addtoBody(html);\n\n              }else{\n                $.ajax({\n                  url:\'index.php?route=wkcustomfield/wkcustomfield/getOptions&token=<?php echo $token; ?>\',\n                  data:\'&value=\'+value,\n                  dataType:\'json\',\n                  type:\'post\',\n                  success:function(data){\n                    innerHtml = \'\';\n                    if(fieldType == \"select\"){\n                      html += \'<div class=\"form-group \'+required+\'\"><label class=\"col-sm-3 control-label\">Options</label><div class=\"col-sm-9\" >\';\n                    }else{\n                      html += \'<div class=\"form-group \'+required+\'\"><label class=\"control-label\">Options</label><div>\';\n                    }\n                    $.each(data, function(key,val){\n                      if(fieldType == \"select\"){\n                        innerHtml += \'<option value=\"\' + val.optionId +\'\">\' + val.optionValue + \'</option>\'\n                      }else if(fieldType == \"checkbox\"){\n\n                        html += \'<div class=\"radio checkbox\"><label for=\"\'+ wkcustom_option_row + val.optionId +\'\"><input type=\'+fieldType+\' id=\"\'+ wkcustom_option_row + val.optionId +\'\" value=\"\'+val.optionId+\'\" name=\"product_custom_field[\'+wkcustom_option_row+\'][custom_field_value][]\">\'+val.optionValue+\'</lable></div>\';\n\n                      }else{\n\n                        html += \'<div class=\"radio checkbox\"><label for=\"\'+ wkcustom_option_row + val.optionId +\'\"><input type=\'+fieldType+\' id=\"\'+ wkcustom_option_row + val.optionId +\'\" value=\"\'+val.optionId+\'\" value=\"\'+val.optionId+\'\" name=\"product_custom_field[\'+wkcustom_option_row+\'][custom_field_value][]\">\'+val.optionValue+\'</lable></div>\';\n\n                      }\n                    });\n                    if(fieldType == \"select\") {\n                      html += \'<select class=\"form-control\" name=\"product_custom_field[\'+wkcustom_option_row+\'][custom_field_value][]\">\'+innerHtml+\'</select>\';\n                    }\n                    addtoBody(html);\n                  }\n                })\n              }\n            });\n\n            function addtoBody(html){\n              html = \'<div id=\"wktab-option-\'+tabCount+\'\" class=\"tab-pane\"><div class=\"alert alert-info\"><i class=\"fa fa-info-circle\"></i> \' + fieldDes + \'</div>\' + html + \'</div></div></div>\';\n              $(\'#wk_customfieldcontent\').append(html);\n              $(\'#wkoption-\' + tabCount).trigger(\'click\');\n              tabCount++;\n              wkcustom_option_row++;\n\n              $(\'.date\').datetimepicker({\n                pickTime: false\n              });\n\n              $(\'.time\').datetimepicker({\n                pickDate: false\n              });\n\n              $(\'.datetime\').datetimepicker({\n                pickDate: true,\n                pickTime: true\n              });\n            }\n          </script>\n          <!--Marketplace Customfield -->\n                              ]]></add>\n                </operation>\n        </file>\n        <file path=\"admin/controller/catalog/product.php\">\n            <operation>\n                <search><![CDATA[\n                        $this->response->setOutput($this->load->view(\'catalog/product_form\', $data));\n                        ]]></search>\n                        <add position=\"before\"><![CDATA[\n\n                            if(isset($this->request->get[\'product_id\'])){\n                                $data[\'product_id_text\'] = \'&product_id=\'.$this->request->get[\'product_id\'];\n                            }else{\n                                $data[\'product_id_text\'] = \'\';\n                            }\n                              ]]></add>\n                </operation>\n                <operation>\n                        <search><![CDATA[\n                        $this->response->redirect($this->url->link(\'catalog/product\', \'token=\' . $this->session->data[\'token\'] . $url, true));\n                        ]]></search>\n                        <add position=\"replace\"><![CDATA[\n                        if (isset($this->request->get[\'mpcheck\'])) {\n                            $this->response->redirect($this->url->link(\'customerpartner/product\', \'token=\' . $this->session->data[\'token\'] . $url, true));\n                        } else {\n                            $this->response->redirect($this->url->link(\'catalog/product\', \'token=\' . $this->session->data[\'token\'] . $url, true));\n                        }\n                              ]]></add>\n                </operation>\n                <operation>\n                        <search><![CDATA[\n                        $data[\'cancel\'] = $this->url->link(\'catalog/product\', \'token=\' . $this->session->data[\'token\'] . $url, true);\n                        ]]></search>\n                        <add position=\"after\"><![CDATA[\n                if (isset($this->request->get[\'mpcheck\'])) {\n                    if (!isset($this->request->get[\'product_id\'])) {\n                        $data[\'action\'] = $this->url->link(\'catalog/product/add\', \'token=\' . $this->session->data[\'token\'] . $url . \'&mpcheck=1\', true);\n                    } else {\n                        $data[\'action\'] = $this->url->link(\'catalog/product/edit\', \'token=\' . $this->session->data[\'token\'] . \'&mpcheck=1&product_id=\' . $this->request->get[\'product_id\'] . $url, true);\n                    }\n\n                    $data[\'cancel\'] = $this->url->link(\'customerpartner/product\', \'token=\' . $this->session->data[\'token\'] . $url, true);\n                } else {\n                    if (!isset($this->request->get[\'product_id\'])) {\n                        $data[\'action\'] = $this->url->link(\'catalog/product/add\', \'token=\' . $this->session->data[\'token\'] . $url, true);\n                    } else {\n                        $data[\'action\'] = $this->url->link(\'catalog/product/edit\', \'token=\' . $this->session->data[\'token\'] . \'&product_id=\' . $this->request->get[\'product_id\'] . $url, true);\n                    }\n\n                    $data[\'cancel\'] = $this->url->link(\'catalog/product\', \'token=\' . $this->session->data[\'token\'] . $url, true);\n                }\n                              ]]></add>\n                </operation>\n                <operation>\n                        <search><![CDATA[\n                        $this->model_catalog_product->editProduct($this->request->get[\'product_id\'], $this->request->post);\n                        ]]></search>\n                        <add position=\"before\"><![CDATA[\n                            if($this->config->get(\'marketplace_status\')) {\n                                    $this->load->model(\"wkcustomfield/wkcustomfield\");\n                                    $wkcustomFields = array();\n                                    if(isset($this->request->post[\'product_custom_field\'])){\n                                        $data = $this->request->post[\'product_custom_field\'];\n                                    }else{\n                                        $data = \'\';\n                                    }\n                                    $this->model_wkcustomfield_wkcustomfield->editCustomFields($data,$this->request->get[\'product_id\']);\n                            }\n                              ]]></add>\n                </operation>\n                <operation>\n                        <search><![CDATA[\n                        $this->model_catalog_product->addProduct($this->request->post);\n                        ]]></search>\n                        <add position=\"replace\"><![CDATA[\n                            if($this->config->get(\'marketplace_status\')) {\n                                    $product_id = $this->model_catalog_product->addProduct($this->request->post);\n                                    $this->load->model(\"wkcustomfield/wkcustomfield\");\n                                    $wkcustomFields = array();\n                                    if(isset($this->request->post[\'product_custom_field\'])){\n                                        $this->model_wkcustomfield_wkcustomfield->addCustomFields($this->request->post[\'product_custom_field\'],$product_id);\n                                    }\n                            }else{\n                                $this->model_catalog_product->addProduct($this->request->post);\n                            }\n                              ]]></add>\n                </operation>\n                <operation>\n                        <search><![CDATA[\n                        $this->load->model(\'design/layout\');\n                        ]]></search>\n                        <add position=\"before\"><![CDATA[\n        /**\n         * customfield\n         */\n        $this->language->load(\"wkcustomfield/wkcustomfield\");\n        $this->load->model(\"wkcustomfield/wkcustomfield\");\n        $wkcustomFields = array();\n        $data[\'wkcustomFields\'] = $this->model_wkcustomfield_wkcustomfield->getOptionList();\n\n        $data[\'text_custom_field\'] = $this->language->get(\'text_custom_field\');\n        $data[\'entry_select_option\'] = $this->language->get(\'entry_select_option\');\n        $data[\'entry_select_date\'] = $this->language->get(\'entry_select_date\');\n        $data[\'entry_select_datetime\'] = $this->language->get(\'entry_select_datetime\');\n        $data[\'entry_select_time\'] = $this->language->get(\'entry_select_time\');\n        $data[\'entry_enter_text\'] = $this->language->get(\'entry_enter_text\');\n\n        if(isset($this->request->get[\'product_id\']) || isset($this->request->post[\'product_custom_field\'])){\n            if(isset($this->request->get[\'product_id\'])){\n                $product_id = $this->request->get[\'product_id\'];\n            } else {\n                $product_id = 0;\n            }\n            $data[\'wkPreCustomFields\'] = array();\n            $wkPreCustomFieldOptions = array();\n            $wkPreCustomFields = $this->model_wkcustomfield_wkcustomfield->getProductFields($product_id);\n            if(isset($this->request->post[\'product_custom_field\'])){\n                foreach ($this->request->post[\'product_custom_field\'] as $key => $value) {\n                    if(!isset($wkPreCustomFields[$key])){\n                        $wkPreCustomFields[] = array(\n                            \'fieldId\' => $value[\'custom_field_id\'],\n                            \'fieldName\' => $value[\'custom_field_name\'],\n                            \'fieldType\' => $value[\'custom_field_type\'],\n                            \'fieldDescription\' => $value[\'custom_field_des\'],\n                            \'id\' => \'\',\n                            \'isRequired\' => $value[\'custom_field_is_required\'],\n                        );\n                    }\n                }\n            }\n            foreach($wkPreCustomFields as $field){\n                $wkPreCustomFieldOptions = $this->model_wkcustomfield_wkcustomfield->getOptions($field[\'fieldId\']);\n                if($field[\'fieldType\'] == \'select\' || $field[\'fieldType\'] == \'checkbox\' || $field[\'fieldType\'] == \'radio\' ){\n                    $wkPreCustomProductFieldOptions = $this->model_wkcustomfield_wkcustomfield->getProductFieldOptions($product_id,$field[\'fieldId\'],$field[\'id\']);\n                } else {\n                    $wkPreCustomProductFieldOptions = $this->model_wkcustomfield_wkcustomfield->getProductFieldOptionValue($product_id,$field[\'fieldId\'],$field[\'id\']);\n                }\n                $data[\'wkPreCustomFields\'][] = array(\n                    \'fieldId\'       => $field[\'fieldId\'],\n                    \'fieldName\'     => $field[\'fieldName\'],\n                    \'fieldType\'     => $field[\'fieldType\'],\n                    \'fieldDes\'      => $field[\'fieldDescription\'],\n                    \'productFieldId\'      => $field[\'id\'],\n                    \'isRequired\'    => $field[\'isRequired\'],\n                    \'fieldOptions\'  => $wkPreCustomProductFieldOptions,\n                    \'preFieldOptions\' => $wkPreCustomFieldOptions,\n                );\n            }\n        }\n\n        if (isset($this->error[\'customFieldError\'])) {\n            $data[\'customFieldError\'] = $this->error[\'customFieldError\'];\n        } else {\n            $data[\'customFieldError\'] = array();\n        }\n\n        /**\n         * customfield\n         */\n                              ]]></add>\n                </operation>\n                <operation>\n                        <search><![CDATA[\n                        if ($this->error && !isset($this->error[\'warning\'])) {\n                        ]]></search>\n                        <add position=\"before\"><![CDATA[\n        /**\n         * customfield\n         */\n        $customfielddata = array();\n        if(isset($this->request->post[\'product_custom_field\'])){\n            $customfielddata = $this->request->post[\'product_custom_field\'];\n        }\n        foreach ($customfielddata as $key => $value) {\n            if(isset($value[\'custom_field_is_required\']) && (($value[\'custom_field_is_required\'] == \'yes\' && isset($value[\'custom_field_value\']) && $value[\'custom_field_value\'][0] == \'\' ) || ($value[\'custom_field_is_required\'] == \'yes\' && !isset($value[\'custom_field_value\'])))) {\n                $this->error[\'customFieldError\'][] = $value[\'custom_field_id\'];\n            }\n        }\n        if(isset($this->error[\'customFieldError\'])) {\n            $this->error[\'warning\'] = $this->language->get(\'error_warning\');\n        }\n\n        /**\n         * customfield\n         */\n                              ]]></add>\n                </operation>\n        </file>\n        <!-- end here -->\n</modification>\n',1,'2017-08-23 23:38:03'),(2,'Marketplace 2','Webkul Marketplace 2','Webkul','2.0.0','http://webkul.com','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<modification>\n        <name>Marketplace 2</name>\n        <version>2.0.0</version>\n        <code>Webkul Marketplace 2</code>\n        <author>Webkul</author>\n        <link>http://webkul.com</link>\n\n        <file path=\"catalog/controller/product/product.php\">\n                <operation>\n                        <search><![CDATA[\n                        $data[\'tags\'] = array();\n                        ]]></search>\n                        <add position=\"before\"><![CDATA[\n                            if($this->config->get(\'marketplace_status\')) {\n\n                                $this->load->model(\'account/customerpartner\');\n\n                                $this->load->language(\'customerpartner/profile\');\n\n                                if ($this->config->get(\'wk_custom_shipping_status\') && isset($this->session->data[\'shipping_address\'][\'postcode\']) && isset($this->request->get[\'product_id\']) && $this->request->get[\'product_id\']) {\n\n                                    $check_seller = $this->model_account_customerpartner->getProductSellerDetails($this->request->get[\'product_id\']);\n\n                                    $seller_id = 0;\n\n                                    if (isset($check_seller[\'customer_id\']) && $check_seller[\'customer_id\']) {\n                                        $seller_id = $check_seller[\'customer_id\'];\n                                    }\n\n                                    $weight = 0;\n\n                                    if (isset($product_info[\'weight\']) && $product_info[\'weight\']) {\n                                        $weight = $product_info[\'weight\'];\n                                    }\n\n                                    $max_days = $this->model_account_customerpartner->getMinDays($seller_id,$this->session->data[\'shipping_address\'][\'postcode\'],$weight);\n\n                                    if (isset($max_days[\'max_days\']) && $max_days[\'max_days\']) {\n                                        $date = new DateTime(date(\'Y-m-d\', strtotime(\"+\".$max_days[\'max_days\'].\" days\")));\n\n                                        $data[\'delivery_date\'] = $date->format(\'Y-m-d\');\n\n                                        $data[\'text_delivery_date\'] = $this->language->get(\'text_delivery_date\');\n                                    }\n                                }\n\n                                    $data[\'showSellerInfo\'] = false;\n                                    $data[\'wk_custome_field_wkcustomfields\'] = true;\n                                    $customFields = array();\n                                    $data[\'customFields\'] = array();\n\n                                    $customFields = $this->model_catalog_product->getProductCustomFields($this->request->get[\'product_id\']);\n\n                                    foreach ($customFields as $key => $value) {\n                                        $customFieldsName = $this->model_catalog_product->getCustomFieldName($value[\'fieldId\']);\n\n                                        $customFieldsOptionId = $this->model_catalog_product->getCustomFieldOptionId($this->request->get[\'product_id\'],$value[\'fieldId\']);\n\n                                        $customFieldValue = \'\';\n                                        foreach ($customFieldsOptionId as $key => $option) {\n                                                if(is_numeric($option[\'option_id\'])){\n                                                    $customFieldValue .= $this->model_catalog_product->getCustomFieldOption($option[\'option_id\']).\", \";\n                                                }else{\n                                                    $customFieldValue = $option[\'option_id\'];\n                                                }\n                                        }\n                                        $data[\'customFields\'][] = array(\n                                            \'fieldName\' =>  $customFieldsName,\n                                            \'fieldValue\'    =>  trim($customFieldValue,\', \'),\n                                        );\n                                    }\n\n                                    $checkSellerOwnProduct = $this->model_account_customerpartner->checkSellerOwnProduct($this->request->get[\'product_id\']);\n\n                                    if ($checkSellerOwnProduct && !$this->config->get(\'marketplace_sellerbuyproduct\')) {\n                                        $data[\'allowedProductBuy\'] = false;\n                                    }else{\n                                        $data[\'allowedProductBuy\'] = true;\n                                    }\n\n                                    /**\n                                     * add seller information on the product page through code end\n                                     */\n\n                                    if (!$this->config->get(\'marketplace_seller_info_by_module\') && !$this->config->get(\'marketplace_seller_info_hide\')) {\n\n                                        $check_seller = $this->model_account_customerpartner->getProductSellerDetails($this->request->get[\'product_id\']);\n\n                                        if ($check_seller) {\n\n                                            $this->load->model(\'customerpartner/master\');\n\n                                            $partner = $this->model_customerpartner_master->getProfile($check_seller[\'customer_id\']);\n\n                                            switch ($this->config->get(\'marketplace_product_name_display\')) {\n                                                case \'sn\':\n                                                    $data[\'info_name\'] = $partner[\'firstname\']. \' \' .$partner[\'lastname\'];\n                                                    break;\n\n                                                case \'cn\':\n                                                    $data[\'info_name\'] = $partner[\'companyname\'];\n                                                    break;\n\n                                                case \'sncn\':\n                                                    $data[\'info_name\'] = $partner[\'firstname\']. \' \' .$partner[\'lastname\'].\' \'.\'And\'.\' \'.$partner[\'companyname\'];\n                                                    break;\n                                            }\n\n                                            switch ($this->config->get(\'marketplace_product_image_display\')) {\n                                                case \'avatar\':\n                                                    if ($partner[\'avatar\'] && file_exists(DIR_IMAGE . $partner[\'avatar\'])) {\n                                                        $data[\'info_image\'] = $this->model_tool_image->resize($partner[\'avatar\'], 80, 80);\n                                                    } else if($this->config->get(\'marketplace_default_image_name\') && file_exists(DIR_IMAGE . $this->config->get(\'marketplace_default_image_name\'))) {\n                                                        if($partner[\'avatar\'] != \'removed\') {\n                                                            $data[\'info_image\'] = $this->model_tool_image->resize($this->config->get(\'marketplace_default_image_name\'), 80, 80);\n                                                        } else {\n                                                            $data[\'info_image\'] = \'\';\n                                                        }\n                                                    }else{\n                                                        $data[\'info_image\'] = $this->model_tool_image->resize($this->config->get(\'config_logo\'), 80, 80);\n                                                    }\n                                                    break;\n\n                                                case \'companylogo\':\n                                                    if ($partner[\'companylogo\'] && file_exists(DIR_IMAGE . $partner[\'companylogo\'])) {\n                                                        $data[\'info_image\'] = $this->model_tool_image->resize($partner[\'companylogo\'], 80, 80);\n                                                    } else if($this->config->get(\'marketplace_default_image_name\') && file_exists(DIR_IMAGE . $this->config->get(\'marketplace_default_image_name\'))) {\n                                                        if($partner[\'companylogo\'] != \'removed\') {\n                                                            $data[\'info_image\'] = $this->model_tool_image->resize($this->config->get(\'marketplace_default_image_name\'), 80, 80);\n                                                        } else {\n                                                            $data[\'info_image\'] = \'\';\n                                                        }\n                                                    }else{\n                                                        $data[\'info_image\'] = $this->model_tool_image->resize($this->config->get(\'config_logo\'), 80, 80);\n                                                    }\n                                                    break;\n\n                                                case \'companybanner\':\n                                                    if ($partner[\'companybanner\'] && file_exists(DIR_IMAGE . $partner[\'companybanner\'])) {\n                                                        $data[\'info_image\'] = $this->model_tool_image->resize($partner[\'companybanner\'], 80, 80);\n                                                    } else if($this->config->get(\'marketplace_default_image_name\') && file_exists(DIR_IMAGE . $this->config->get(\'marketplace_default_image_name\'))) {\n                                                        if($partner[\'companybanner\'] != \'removed\') {\n                                                            $data[\'info_image\'] = $this->model_tool_image->resize($this->config->get(\'marketplace_default_image_name\'), 80, 80);\n                                                        } else {\n                                                            $data[\'info_image\'] = \'\';\n                                                        }\n                                                    }else{\n                                                        $data[\'info_image\'] = $this->model_tool_image->resize($this->config->get(\'config_logo\'), 80, 80);\n                                                    }\n                                                    break;\n                                            }\n\n                                            $data[\'review_fields\'] = $this->model_customerpartner_master->getAllReviewFields();\n\n																						foreach ($data[\'review_fields\'] as $key => $review_field) {\n																							$data[\'review_fields\'][$key][\'field_value\'] = $this->model_customerpartner_master->getAllAverageFeedback($check_seller[\'customer_id\'],$review_field[\'field_id\']);\n																						}\n\n                                            $data[\'info_feedback_total\'] = round($this->model_customerpartner_master->getAverageFeedback($check_seller[\'customer_id\']));\n\n                                            $data[\'info_total_products\'] = $this->model_customerpartner_master->getPartnerCollectionCount($check_seller[\'customer_id\']);\n\n                                            $data[\'info_heading_text\'] = $this->language->get(\'text_seller_info_heading\');\n                                            $data[\'info_price_text\']   = $this->language->get(\'text_seller_info_price\');\n                                            $data[\'info_value_text\']   = $this->language->get(\'text_seller_info_value\');\n                                            $data[\'info_quality_text\'] = $this->language->get(\'text_seller_info_quality\');\n                                            $data[\'info_product_text\'] = $this->language->get(\'text_seller_info_product\');\n                                            $data[\'showSellerRating\']  = $this->config->get(\'text_seller_info_product\');\n                                            $data[\'loadProfile\'] = $this->url->link(\'customerpartner/profile&id=\'.$check_seller[\'customer_id\'],\'\',true);\n\n                                            $data[\'showSellerInfo\'] = true;\n                                        }\n                                    }\n                            }else{\n                                $data[\'wk_custome_field_wkcustomfields\'] = false;\n                                $data[\'allowedProductBuy\'] = true;\n                                $data[\'showSellerInfo\'] = false;\n                            }\n                              ]]></add>\n                </operation>\n        </file>\n\n        <file path=\"catalog/model/catalog/product.php\">\n  <operation>\n      <search><![CDATA[\n          \'price\'            => ($query->row[\'discount\'] ? $query->row[\'discount\'] : $query->row[\'price\']),\n      ]]></search>\n      <add position=\"replace\"><![CDATA[\n          \'price\'            => ($query->row[\'discount\'] ? $query->row[\'discount\'] : $query->row[\'price\'])+$commission_amount,\n      ]]></add>\n  </operation>\n\n  <operation>\n      <search><![CDATA[\n          \'viewed\'           => $query->row[\'viewed\']\n      ]]></search>\n      <add position=\"before\"><![CDATA[\n          \'commission_amount\' => $commission_amount,\n      ]]></add>\n  </operation>\n\n                <operation>\n                    <search><![CDATA[\n                        public function getProduct($product_id) {\n                    ]]></search>\n                    <add position=\"after\"><![CDATA[\n                      $product_status = 1;\n\n$commission_amount = 0;\n\n                        if (($this->config->get(\'marketplace_status\') && isset($this->request->get[\'token\']) && isset($this->session->data[\'token\']) && isset($this->session->data[\'user_id\']) && $this->request->get[\'token\'] == $this->session->data[\'token\']) || ($this->config->get(\'marketplace_status\') && isset($this->request->get[\'product_token\']) && isset($this->session->data[\'product_token\']) && $this->request->get[\'product_token\'] == $this->session->data[\'product_token\'])){\n                            $product_status_array = $this->db->query(\"SELECT status FROM \".DB_PREFIX.\"product WHERE product_id = \" . (int)$product_id)->row;\nif (isset($product_status_array[\'status\'])) {\n  $product_status = $product_status_array[\'status\'];\n}\n                            if (!$product_status) {\n                                $this->db->query(\"UPDATE \".DB_PREFIX.\"product SET status = \'1\' WHERE product_id = \".$product_id);\n                            }\n                        }\n                    ]]></add>\n                </operation>\n\n                <operation>\n                        <search><![CDATA[\n                        class ModelCatalogProduct extends Model {\n                        ]]></search>\n                        <add position=\"after\"><![CDATA[\n                            public function  getCustomFieldOptionId($pro_id,$id){\n                                $result = $this->db->query(\"SELECT option_id FROM \".DB_PREFIX.\"wk_custom_field_product_options WHERE fieldId = \'\".(int)$id.\"\' AND product_id = \'\".(int)$pro_id.\"\' \")->rows;\n                                return $result;\n                            }\n\n                            public function getProductCustomFields($id){\n                                $result = $this->db->query(\"SELECT fieldId FROM \".DB_PREFIX.\"wk_custom_field_product WHERE productId = \'\".(int)$id.\"\' \")->rows;\n                                return $result;\n                            }\n\n                            public function getCustomFieldName($id){\n                                $result = $this->db->query(\"SELECT fieldName FROM \".DB_PREFIX.\"wk_custom_field_description WHERE fieldId = \'\".(int)$id.\"\' AND language_id = \'\".(int)$this->config->get(\'config_language_id\').\"\' \")->row;\n                                if (isset($result[\'fieldName\'])) {\n  return $result[\'fieldName\'];\n}\n                            }\n\n                            public function getCustomFieldOption($id){\n                                $result = $this->db->query(\"SELECT optionValue FROM \".DB_PREFIX.\"wk_custom_field_option_description WHERE optionId = \'\".(int)$id.\"\' AND language_id = \'\".(int)$this->config->get(\'config_language_id\').\"\' \")->row;\n                                if (isset($result[\'optionValue\'])) {\n  return $result[\'optionValue\'];\n}\n                            }\n                              ]]></add>\n                </operation>\n\n              <operation>\n                        <search><![CDATA[\n                        ->get(\'config_language_id\') . \"\' AND p.status = \'1\' AND p.date_available <= NOW() AND p2s.store_id = \'\" . (int)$this->config->get(\'config_store_id\') . \"\'\");\n                        ]]></search>\n                        <add position=\"after\"><![CDATA[\n                                 if ($query->num_rows) {\n                                    $check_seller_product = $this->db->query(\"SELECT * FROM \".DB_PREFIX.\"customerpartner_to_product WHERE product_id = \'\" . (int)$product_id.\"\'\")->row;\n\n                                   if ($check_seller_product) {\n\n  $this->load->model(\'account/customerpartnerorder\');\n  if($query->row[\'special\']) {\n    if ($this->config->get(\'marketplace_commission_tax\')) {\n         $commissions = $this->model_account_customerpartnerorder->calculateCommission(array(\'product_id\'=> $product_id, \'product_total\'=> $this->tax->calculate($query->row[\'special\'], $query->row[\'tax_class_id\'], $this->config->get(\'config_tax\'))),$check_seller_product[\'customer_id\']);\n         $query->row[\'special\'] = $commissions[\'commission\'] + $commissions[\'customer\'];\n    } else {\n          $commissions = $this->model_account_customerpartnerorder->calculateCommission(array(\'product_id\'=>$product_id, \'product_total\'=>$query->row[\'special\']),$check_seller_product[\'customer_id\']);\n          $query->row[\'special\'] = $commissions[\'commission\'] + $commissions[\'customer\'];\n    }\n  }\n  if ($this->config->get(\'marketplace_commission_tax\')) {\n\n    $commission_array = $this->model_account_customerpartnerorder->calculateCommission(array(\'product_id\'=> $product_id, \'product_total\'=> $this->tax->calculate($query->row[\'price\'], $query->row[\'tax_class_id\'], $this->config->get(\'config_tax\'))),$check_seller_product[\'customer_id\']);\n  }else{\n    $commission_array = $this->model_account_customerpartnerorder->calculateCommission(array(\'product_id\'=>$product_id, \'product_total\'=>$query->row[\'price\']),$check_seller_product[\'customer_id\']);\n\n  }\n\n  if($commission_array && isset($commission_array[\'commission\']) && $this->config->get(\'marketplace_commission_unit_price\')){\n        $commission_amount = $commission_array[\'commission\'];\n  }\n\n                                        $check_seller_status = $this->db->query(\"SELECT * FROM \".DB_PREFIX.\"customer WHERE customer_id = \'\" . (int)$check_seller_product[\'customer_id\'].\"\' AND status = \'1\'\")->row;\n\n                                       if ($this->config->get(\'marketplace_status\') && !$this->config->get(\'marketplace_sellerproductshow\') && !$check_seller_status) {\n\n                                             return false;\n                                        }\n                                    }\n\n                                }\n\n                                if (!$product_status) {\n                                    $this->db->query(\"UPDATE \".DB_PREFIX.\"product SET status = \'0\' WHERE product_id = \".$product_id);\n                                }\n                              ]]></add>\n                </operation>\n\n                <operation>\n                        <search><![CDATA[\n                       $product_data[$result[\'product_id\']] = $this->getProduct($result[\'product_id\']);\n                        ]]></search>\n                        <add position=\"after\"><![CDATA[\n                            if (!$product_data[$result[\'product_id\']]) {\n\n                                unset($product_data[$result[\'product_id\']]);\n                            }\n                              ]]></add>\n                </operation>\n        </file>\n\n        <file path=\"catalog/view/theme/default/template/product/product.tpl\">\n\n                <operation>\n                    <search><![CDATA[\n                        <?php if ($price) { ?>\n                    ]]></search>\n                    <add position=\"before\"><![CDATA[\n                        <?php if (isset($delivery_date) && $delivery_date) { ?>\n                            <ul class=\"list-unstyled\">\n                              <li><?php echo $text_delivery_date .\' : \'.$delivery_date; ?> </li>\n                            </ul>\n                        <?php } ?>\n                    ]]></add>\n                </operation>\n\n                <operation>\n                        <search><![CDATA[\n                        <?php echo $text_stock; ?>\n                        ]]></search>\n                        <add position=\"after\"><![CDATA[\n                            <?php if($wk_custome_field_wkcustomfields) { ?>\n                                     <?php if(!empty($customFields)) {\n                                      foreach ($customFields as $key => $value) { ?>\n                                            <li><?php echo $value[\'fieldName\']; ?>:<?php echo $value[\'fieldValue\']; ?></li>\n                                      <?php }\n                                      }\n                            } ?>\n                              ]]></add>\n                </operation>\n                <operation>\n                        <search><![CDATA[\n                        <div class=\"row\"><?php echo $column_left; ?>\n                        ]]></search>\n                        <add position=\"after\"><![CDATA[\n                            <?php if(!$allowedProductBuy) { ?>\n                                <div class=\"alert alert-danger\">\n                                  <i class=\"fa fa-exclamation-circle\"></i>\n                                    Warning: This is your own product, you are not allowed to buy!\n                                </div>\n                              <?php } ?>\n                              ]]></add>\n                </operation>\n                <operation>\n                        <search><![CDATA[\n                        <?php if ($products) { ?>\n                        ]]></search>\n                        <add position=\"before\" offset=\"2\"><![CDATA[\n              <?php if (isset($showSellerInfo) && $showSellerInfo) {?>\n              <style>\n                #wk_seller_info_container{\n                  width: 100%;\n                  margin: 10px 0;\n                  /*padding: 20px;*/\n                  /*background-color: #eee;*/\n                }\n\n                #wk_seller_info_profpic{\n                  margin-right: 20px;\n                  display: inline-block;\n                  width: 80px;\n                  height: 80px;\n                }\n\n                #wk_seller_info_box{\n                  display: inline-block;\n                }\n\n                #wk_seller_info_rating{\n                  position: relative;\n                  cursor: pointer;\n                }\n\n                #wk_seller_info_rating > .fa{\n                  font-size: 10px;\n                }\n\n                #wk_seller_info_rating > .fa > .fa-stack-1x {\n                    color:#3B9911;\n                }\n\n                #wk_seller_info_rating_details{\n                  position: absolute;\n                  min-width: 250px;\n                  height: auto;\n                  background: #FFFFFF;\n                  top: 23px;\n                  padding: 20px;\n                  box-shadow: 0 2px 8px 2px #868282;\n                  display: none;\n                  z-index: 100000;\n                }\n\n                .wk_rating_details_box > .wk_rating_details > .fa{\n                  font-size: 10px;\n                }\n\n                .wk_rating_details_box > .wk_rating_details > .fa > .fa-stack-1x {\n                    color:#3B9911;\n                }\n\n                .wk_rating_details{\n                  padding-left: 5px;\n                }\n\n                @media only screen and (max-width: 700px) {\n\n                    #wk_seller_info_rating_details{\n\n                        min-width: 200px;\n                        /*height: 100px;*/\n                    }\n                }\n\n              </style>\n\n              <div id=\"wk_seller_info_container\">\n                <div style=\"padding: 10px;background-color: #EFEFEF;border-left: 8px solid;\">\n                  <div id=\"wk_seller_info_profpic\">\n                    <img src=\"<?php echo $info_image; ?>\" width=\"100%\" height=\"100%\" style=\"vertical-align:baseline;\">\n                  </div>\n                  <div id=\"wk_seller_info_box\">\n                    <h4 style=\"margin-bottom: 20px;margin-top: 0px;font-size: 13px;\"><b><?php echo $info_heading_text; ?></b></h4>\n                    <a href=\"<?php echo $loadProfile; ?>\"><p style=\"margin:0; line-height: 15px;\"><?php echo $info_name; ?></p></a>\n                    <div id=\"wk_seller_info_rating\">\n                      <?php for ($i = 1; $i <= 5; $i++) { ?>\n                      <?php if ($info_feedback_total < $i) { ?>\n                      <span class=\"fa fa-stack\"><i class=\"fa fa-star-o fa-stack-1x\"></i></span>\n                      <?php } else { ?>\n                      <span class=\"fa fa-stack\"><i class=\"fa fa-star fa-stack-1x\"></i><i class=\"fa fa-star-o fa-stack-1x\"></i></span>\n                      <?php } ?>\n                      <?php } ?>\n\n                      <?php if(isset($review_fields) && $review_fields){ ?>\n                      <div id=\"wk_seller_info_rating_details\">\n                        <i class=\"fa fa-caret-up\" aria-hidden=\"true\" style=\"color: #FFFFFF;position: absolute;top: -14px;font-size: 25px;\"></i>\n                          <?php foreach($review_fields AS $review_field){ ?>\n                            <div class=\"wk_rating_details_box\">\n                              <div style=\"display: inline-block;width: 25%;\"><?php echo $review_field[\'field_name\']; ?></div>\n                              <div class=\"wk_rating_details\" style=\"display: inline-block;font-size: 10px;\">\n                                <?php for ($i = 1; $i <= 5; $i++) { ?>\n                                <?php if ($review_field[\'field_value\'] < $i) { ?>\n                                <span class=\"fa fa-stack\"><i class=\"fa fa-star-o fa-stack-1x\"></i></span>\n                                <?php } else { ?>\n                                <span class=\"fa fa-stack\"><i class=\"fa fa-star fa-stack-1x\"></i><i class=\"fa fa-star-o fa-stack-1x\"></i></span>\n                                <?php } ?>\n                                <?php } ?>\n                                <span>(<?php echo $review_field[\'field_value\'] ? $review_field[\'field_value\'] : 0; ?>/5)</span>\n                              </div>\n                            </div>\n                            <?php } ?>\n                            </div>\n                            <?php } ?>\n                    </div>\n                    <p style=\"margin:0;line-height: 15px;\"><?php echo $info_product_text; ?><span><?php echo $info_total_products; ?></span></p>\n                  </div>\n                </div>\n              </div>\n\n              <script>\n                $(\"#wk_seller_info_rating, #wk_seller_info_rating_details\").on(\'mouseover\', function(){\n                    $(\"#wk_seller_info_rating_details\").show();\n                });\n\n                $(\"#wk_seller_info_rating, #wk_seller_info_rating_details\").on(\'mouseout\', function(){\n                    $(\"#wk_seller_info_rating_details\").hide();\n                });\n              </script>\n              <?php } ?>\n                              ]]></add>\n                </operation>\n        </file>\n\n        <file path=\"catalog/view/theme/journal2/template/product/product.tpl\">\n\n                <operation>\n                    <search><![CDATA[\n                        <?php if ($price) { ?>\n                    ]]></search>\n                    <add position=\"before\"><![CDATA[\n                        <?php if (isset($delivery_date) && $delivery_date) { ?>\n                            <ul class=\"list-unstyled\">\n                              <li><?php echo $text_delivery_date .\' : \'.$delivery_date; ?> </li>\n                            </ul>\n                        <?php } ?>\n                    ]]></add>\n                </operation>\n\n                <operation>\n                        <search><![CDATA[\n                        <?php echo $stock; ?></span></li>\n                        ]]></search>\n                        <add position=\"after\"><![CDATA[\n                            <?php if($wk_custome_field_wkcustomfields) { ?>\n                                     <?php if(!empty($customFields)) {\n                                      foreach ($customFields as $key => $value) { ?>\n                                            <li class=\"p-model\"><?php echo $value[\'fieldName\']; ?>: <span class=\"p-model\" itemprop=\"model\"><?php echo $value[\'fieldValue\']; ?></span></li>\n                                      <?php }\n                                      }\n                            } ?>\n                              ]]></add>\n                </operation>\n\n                 <operation>\n                        <search><![CDATA[\n                         <?php echo $column_left; ?>\n                        ]]></search>\n                        <add position=\"before\"><![CDATA[\n                              <?php if(!$allowedProductBuy) { ?>\n                                <div class=\"alert alert-danger\">\n                                  <i class=\"fa fa-exclamation-circle\"></i>\n                                    Warning: This is your own product, you are not allowed to buy!\n                                </div>\n                              <?php } ?>\n                              ]]></add>\n                </operation>\n                <operation>\n                        <search><![CDATA[\n                            <?php foreach ($this->journal2->settings->get(\'additional_product_description_bottom\', array()) as $tab): ?>\n                        ]]></search>\n                        <add position=\"before\"><![CDATA[\n            <?php if (isset($showSellerInfo) && $showSellerInfo) {?>\n              <style>\n                #wk_seller_info_container{\n                  width: 100%;\n                  margin: 10px 0;\n                  /*padding: 20px;*/\n                  /*background-color: #eee;*/\n                }\n\n                #wk_seller_info_profpic{\n                  margin-right: 20px;\n                  display: inline-block;\n                  width: 80px;\n                  height: 80px;\n                }\n\n                #wk_seller_info_box{\n                  display: inline-block;\n                }\n\n                #wk_seller_info_rating{\n                  position: relative;\n                  cursor: pointer;\n                }\n\n                #wk_seller_info_rating > .fa{\n                  font-size: 10px;\n                }\n\n                #wk_seller_info_rating > .fa > .fa-stack-1x {\n                    color:#3B9911;\n                }\n\n                #wk_seller_info_rating_details{\n                  position: absolute;\n                  min-width: 250px;\n                  height: auto;\n                  background: #FFFFFF;\n                  top: 23px;\n                  padding: 20px;\n                  box-shadow: 0 2px 8px 2px #868282;\n                  display: none;\n                  z-index: 100000;\n                  margin-left : -45%;\n                }\n\n                .wk_rating_details_box > .wk_rating_details > .fa{\n                  font-size: 10px;\n                }\n\n                .wk_rating_details_box > .wk_rating_details > .fa > .fa-stack-1x {\n                    color:#3B9911;\n                }\n\n                .wk_rating_details{\n                  padding-left: 5px;\n                }\n\n                .product-info,.product-info .right .product-options{\n                    overflow: visible;\n                }\n                .product-info .right > div > div, .product-info .right > div > ul{\n                    overflow: visible;\n                }\n\n                @media only screen and (max-width: 700px) {\n\n                    #wk_seller_info_rating_details{\n\n                        min-width: 200px;\n                        /*height: 100px;*/\n                    }\n                }\n\n              </style>\n\n              <div id=\"wk_seller_info_container\">\n                <div style=\"padding: 10px;background-color: #EFEFEF;border-left: 8px solid;\">\n                  <div id=\"wk_seller_info_profpic\">\n                    <img src=\"<?php echo $info_image; ?>\" width=\"100%\" height=\"100%\" style=\"vertical-align:baseline;\">\n                  </div>\n                  <div id=\"wk_seller_info_box\">\n                    <h4 style=\"margin-bottom: 20px;margin-top: 0px;font-size: 13px;\"><b><?php echo $info_heading_text; ?></b></h4>\n                    <a href=\"<?php echo $loadProfile; ?>\"><p style=\"margin:0; line-height: 15px;\"><?php echo $info_name; ?></p></a>\n                    <div id=\"wk_seller_info_rating\">\n                      <?php for ($i = 1; $i <= 5; $i++) { ?>\n                      <?php if ($info_feedback_total < $i) { ?>\n                      <span class=\"fa fa-stack\"><i class=\"fa fa-star-o fa-stack-1x\"></i></span>\n                      <?php } else { ?>\n                      <span class=\"fa fa-stack\"><i class=\"fa fa-star fa-stack-1x\"></i><i class=\"fa fa-star-o fa-stack-1x\"></i></span>\n                      <?php } ?>\n                      <?php } ?>\n\n                      <?php if(isset($review_fields) && $review_fields){ ?>\n                      <div id=\"wk_seller_info_rating_details\">\n                        <i class=\"fa fa-caret-up\" aria-hidden=\"true\" style=\"color: #FFFFFF;position: absolute;top: -14px;font-size: 25px;\"></i>\n                          <?php foreach($review_fields AS $review_field){ ?>\n                            <div class=\"wk_rating_details_box\">\n                              <div style=\"display: inline-block;width: 25%;\"><?php echo $review_field[\'field_name\']; ?></div>\n                              <div class=\"wk_rating_details\" style=\"display: inline-block;font-size: 10px;\">\n                                <?php for ($i = 1; $i <= 5; $i++) { ?>\n                                <?php if ($review_field[\'field_value\'] < $i) { ?>\n                                <span class=\"fa fa-stack\"><i class=\"fa fa-star-o fa-stack-1x\"></i></span>\n                                <?php } else { ?>\n                                <span class=\"fa fa-stack\"><i class=\"fa fa-star fa-stack-1x\"></i><i class=\"fa fa-star-o fa-stack-1x\"></i></span>\n                                <?php } ?>\n                                <?php } ?>\n                                <span>(<?php echo $review_field[\'field_value\'] ? $review_field[\'field_value\'] : 0; ?>/5)</span>\n                              </div>\n                            </div>\n                            <?php } ?>\n                            </div>\n                            <?php } ?>\n                    </div>\n                    <p style=\"margin:0;line-height: 15px;\"><?php echo $info_product_text; ?><span><?php echo $info_total_products; ?></span></p>\n                  </div>\n                </div>\n              </div>\n\n              <script>\n                $(\"#wk_seller_info_rating, #wk_seller_info_rating_details\").on(\'mouseover\', function(){\n                    $(\"#wk_seller_info_rating_details\").show();\n                });\n\n                $(\"#wk_seller_info_rating, #wk_seller_info_rating_details\").on(\'mouseout\', function(){\n                    $(\"#wk_seller_info_rating_details\").hide();\n                });\n              </script>\n              <?php } ?>\n                              ]]></add>\n                </operation>\n        </file>\n        <file path=\"catalog/controller/common/cart.php\">\n                <operation>\n                        <search><![CDATA[\n                        foreach ($this->cart->getProducts() as $product) {\n                        ]]></search>\n                        <add position=\"before\"><![CDATA[\n                              $this->load->model(\'account/customerpartner\');\n                              $data[\'text_bySeller\'] = $this->language->get(\'text_bySeller\');\n                              $data[\'marketplace_seller_name_cart_status\'] = $this->config->get(\'marketplace_seller_name_cart_status\');\n                              $data[\'marketplace_seller_info_hide\'] = $this->config->get(\'marketplace_seller_info_hide\');\n                              $data[\'marketplace_status\'] = $this->config->get(\'marketplace_status\');\n                              ]]></add>\n                </operation>\n                <operation>\n                        <search><![CDATA[\n                        \'total\'     => $total,\n                        ]]></search>\n                        <add position=\"after\"><![CDATA[\n                             \'seller_name\'     => $checkSellerProduct ? $checkSellerProduct[\'firstname\'].\' \'.$checkSellerProduct[\'lastname\']: \'\',\n                             \'seller_href\'      =>$checkSellerProduct ? $this->url->link(\'customerpartner/profile\', \'id=\' . $checkSellerProduct[\'customer_id\']): \'\',\n                              ]]></add>\n                </operation>\n                  <operation>\n                        <search><![CDATA[\n                        $data[\'products\'][] = array(\n                        ]]></search>\n                        <add position=\"before\"><![CDATA[\n                            $checkSellerProduct = $this->model_account_customerpartner->getProductSellerDetails($product[\'product_id\']);\n                              ]]></add>\n                </operation>\n\n                <operation>\n                  <search><![CDATA[\n                    $unit_price = $this->tax->calculate($product[\'price\'], $product[\'tax_class_id\'], $this->config->get(\'config_tax\'));\n                  ]]></search>\n                  <add position=\"before\"><![CDATA[\n                    if(isset($product[\'commission_amount\']) && $product[\'commission_amount\']){\n                      $product[\'price\'] += $product[\'commission_amount\'];\n                    }\n                  ]]></add>\n                </operation>\n        </file>\n\n        <file path=\"catalog/language/*/checkout/cart.php\">\n            <operation>\n                <search><![CDATA[\n                    $_[\'error_stock\']\n                ]]></search>\n                <add position=\"before\"><![CDATA[\n                    $_[\'error_min_cart_value\']     = \'You can not proceed to checkout, minimum cart total should be %s!\';\n$_[\'error_product_quantity_restriction\']     = \'Your product quantity limit(%s) already exceeded for product %s!\';\n                ]]></add>\n            </operation>\n        </file>\n\n        <file path=\"catalog/language/*/common/cart.php\">\n\n            <operation>\n                <search><![CDATA[\n                    $_[\'text_recurring\'] = \'Payment Profile\';\n                ]]></search>\n                <add position=\"after\"><![CDATA[\n                    $_[\'text_bySeller\']  = \'By Seller\';\n                ]]></add>\n            </operation>\n        </file>\n\n        <file path=\"catalog/view/theme/default/template/common/cart.tpl\">\n                <operation>\n                        <search><![CDATA[\n                        <td class=\"text-left\"><a href=\"<?php echo $product[\'href\']; ?>\"><?php echo $product[\'name\']; ?></a>\n                        ]]></search>\n                        <add position=\"replace\"><![CDATA[\n                            <?php if (isset($marketplace_status) && $marketplace_status && $marketplace_seller_name_cart_status && isset($product[\'seller_name\']) && $product[\'seller_name\'] && !$marketplace_seller_info_hide) {?>\n                              <td class=\"text-left\"><a href=\"<?php echo $product[\'href\']; ?>\"><?php echo $product[\'name\'];?></a> <?php echo $text_bySeller;?> <a href=\"<?php echo $product[\'seller_href\']; ?>\" target=\"_blank\"><?php echo $product[\'seller_name\'];?></a>\n                            <?php }else{?>\n                              <td class=\"text-left\"><a href=\"<?php echo $product[\'href\']; ?>\"><?php echo $product[\'name\']; ?></a>\n                            <?php } ?>\n                              ]]></add>\n                </operation>\n        </file>\n\n        <file path=\"catalog/view/theme/journal2/template/common/cart.tpl\">\n                <operation>\n                        <search><![CDATA[\n                        <a href=\"<?php echo $product[\'href\']; ?>\"><?php echo $product[\'name\']; ?></a>\n                        ]]></search>\n                        <add position=\"replace\"><![CDATA[\n                            <?php if (isset($marketplace_status) && $marketplace_status && $marketplace_seller_name_cart_status && isset($product[\'seller_name\']) && $product[\'seller_name\'] && !$marketplace_seller_info_hide) {?>\n                              <a href=\"<?php echo $product[\'href\']; ?>\"><?php echo $product[\'name\'];?></a> <?php echo $text_bySeller;?> <a href=\"<?php echo $product[\'seller_href\']; ?>\" target=\"_blank\"><?php echo $product[\'seller_name\'];?></a>\n                            <?php }else{?>\n                              <a href=\"<?php echo $product[\'href\']; ?>\"><?php echo $product[\'name\']; ?></a>\n                            <?php } ?>\n                              ]]></add>\n                </operation>\n        </file>\n\n         <file path=\"catalog/controller/checkout/checkout.php\">\n\n           <operation>\n               <search><![CDATA[\n                   // Validate minimum quantity requirements.\n               ]]></search>\n               <add position=\"before\"><![CDATA[\n                 $this->load->model(\'account/customerpartner\');\n\n                 if ($this->config->get(\'marketplace_status\') && (((int)$this->config->get(\'marketplace_min_cart_value\') && (int)$this->config->get(\'marketplace_min_cart_value\') > $this->cart->getTotal()) || ($this->model_account_customerpartner->getProductRestriction()))) {\n                   $this->response->redirect($this->url->link(\'checkout/cart\'));\n                 }\n               ]]></add>\n           </operation>\n\n             <operation>\n                        <search><![CDATA[\n                      foreach ($products as $product) {\n                        ]]></search>\n                        <add position=\"before\"><![CDATA[\n                                       if($this->config->get(\'marketplace_status\')) {\n                                            $productName = \'\';\n                                        }\n                              ]]></add>\n                </operation>\n                <operation>\n                        <search><![CDATA[\n                      foreach ($products as $product_2) {\n                        ]]></search>\n                        <add position=\"before\"><![CDATA[\n                                        if($this->config->get(\'marketplace_status\')) {\n\n                                             $this->load->model(\'account/customerpartner\');\n\n                                             $checkSellerOwnProduct = $this->model_account_customerpartner->checkSellerOwnProduct($product[\'product_id\']);\n\n                                            if ($checkSellerOwnProduct && !$this->config->get(\'marketplace_sellerbuyproduct\')) {\n                                                $allowedProductBuy = false;\n                                            }else{\n                                                $allowedProductBuy = true;\n                                            }\n\n                                            if(!$allowedProductBuy) {\n                                                $productName .= $product[\'name\'].\', \';\n                                                $this->session->data[\'sellerProducts\'] = $productName;\n                                                $this->response->redirect($this->url->link(\'checkout/cart\'));\n                                            }\n                                        }\n                              ]]></add>\n                </operation>\n        </file>\n\n         <file path=\"catalog/controller/checkout/cart.php\">\n\n           <operation>\n             <search><![CDATA[\n               $unit_price = $this->tax->calculate($product[\'price\'], $product[\'tax_class_id\'], $this->config->get(\'config_tax\'));\n             ]]></search>\n             <add position=\"before\"><![CDATA[\n               if(isset($product[\'commission_amount\']) && $product[\'commission_amount\']){\n                 $product[\'price\'] += $product[\'commission_amount\'];\n               }\n             ]]></add>\n           </operation>\n\n           <operation>\n               <search><![CDATA[\n                 if ($this->config->get(\'config_customer_price\') && !$this->customer->isLogged()) {\n               ]]></search>\n               <add position=\"before\"><![CDATA[\n                 $this->load->model(\'account/customerpartner\');\n\n$product_quantity_restriction = $this->model_account_customerpartner->getProductRestriction();\nif ($this->config->get(\'marketplace_status\') && $product_quantity_restriction) {\n  $data[\'error_warning\'] = sprintf($this->language->get(\'error_product_quantity_restriction\'),(int)$this->config->get(\'marketplace_product_quantity_restriction\'), $product_quantity_restriction[\'name\']);\n}\n\nif ($this->config->get(\'marketplace_status\') && (int)$this->config->get(\'marketplace_min_cart_value\') && (int)$this->config->get(\'marketplace_min_cart_value\') > $this->cart->getTotal()) {\n                   $data[\'error_warning\'] = sprintf($this->language->get(\'error_min_cart_value\'), $this->currency->format($this->config->get(\'marketplace_min_cart_value\'), $this->session->data[\'currency\']));\n                 }\n               ]]></add>\n           </operation>\n\n                <operation>\n                        <search><![CDATA[\n                      if ($this->cart->hasProducts() || !empty($this->session->data[\'vouchers\'])) {\n                        ]]></search>\n                        <add position=\"before\"><![CDATA[\n                           if($this->config->get(\'marketplace_status\')) {\n                                $data[\'marketplace_status\'] = $this->config->get(\'marketplace_status\');\n                                if(isset($this->session->data[\'sellerProducts\'])) {\n                                    $data[\'error_warning_seller_product\'] = \" Warning: Please remove \".trim($this->session->data[\'sellerProducts\'],\', \').\" from cart to checkout!\";\n                                    unset($this->session->data[\'sellerProducts\']);\n                                } else {\n                                    $data[\'error_warning_seller_product\'] = false;\n                                }\n                            }\n                              ]]></add>\n                </operation>\n        </file>\n\n         <file path=\"catalog/view/theme/journal2/template/checkout/cart.tpl\">\n                <operation>\n                        <search><![CDATA[\n                      <?php if ($error_warning) { ?>\n                        ]]></search>\n                        <add position=\"before\"><![CDATA[\n                           <?php if(isset($marketplace_status) && $marketplace_status) { ?>\n                            <?php if ($error_warning_seller_product) { ?>\n                              <div class=\"alert alert-danger\"><i class=\"fa fa-exclamation-circle\"></i> <?php echo $error_warning_seller_product; ?>\n                                  <button type=\"button\" class=\"close\" data-dismiss=\"alert\">&times;</button>\n                                </div>\n                            <?php } ?>\n                          <?php } ?>\n\n                              ]]></add>\n                </operation>\n        </file>\n\n        <file path=\"catalog/view/theme/journal2/template/checkout/cart.tpl\">\n                <operation>\n                        <search><![CDATA[\n                      <?php if ($error_warning) { ?>\n                        ]]></search>\n                        <add position=\"before\"><![CDATA[\n                           <?php if(isset($marketplace_status) && $marketplace_status) { ?>\n                            <?php if ($error_warning_seller_product) { ?>\n                              <div class=\"alert alert-danger\"><i class=\"fa fa-exclamation-circle\"></i> <?php echo $error_warning_seller_product; ?>\n                                  <button type=\"button\" class=\"close\" data-dismiss=\"alert\">&times;</button>\n                                </div>\n                            <?php } ?>\n                          <?php } ?>\n\n                              ]]></add>\n                </operation>\n        </file>\n                <file path=\"admin/controller/customer/customer.php\">\n            <operation>\n                    <search><![CDATA[\n                  $this->model_customer_customer->addCustomer($this->request->post);\n                    ]]></search>\n                    <add position=\"before\"><![CDATA[\n            // Marketplace Code Starts Here\n            if (isset($this->request->get[\'create_seller\'])) {\n                $this->model_customer_customer->addCustomer($this->request->post, $create_seller = 1);\n\n                $this->session->data[\'success\'] = $this->language->get(\'text_success\');\n\n                $url = \'\';\n\n                if (isset($this->request->get[\'filter_name\'])) {\n                    $url .= \'&filter_name=\' . urlencode(html_entity_decode($this->request->get[\'filter_name\'], ENT_QUOTES, \'UTF-8\'));\n                }\n\n                if (isset($this->request->get[\'filter_email\'])) {\n                    $url .= \'&filter_email=\' . urlencode(html_entity_decode($this->request->get[\'filter_email\'], ENT_QUOTES, \'UTF-8\'));\n                }\n\n                if (isset($this->request->get[\'filter_customer_group_id\'])) {\n                    $url .= \'&filter_customer_group_id=\' . $this->request->get[\'filter_customer_group_id\'];\n                }\n\n                if (isset($this->request->get[\'filter_status\'])) {\n                    $url .= \'&filter_status=\' . $this->request->get[\'filter_status\'];\n                }\n\n                if (isset($this->request->get[\'filter_approved\'])) {\n                    $url .= \'&filter_approved=\' . $this->request->get[\'filter_approved\'];\n                }\n\n                if (isset($this->request->get[\'filter_ip\'])) {\n                    $url .= \'&filter_ip=\' . $this->request->get[\'filter_ip\'];\n                }\n\n                if (isset($this->request->get[\'filter_date_added\'])) {\n                    $url .= \'&filter_date_added=\' . $this->request->get[\'filter_date_added\'];\n                }\n\n                if (isset($this->request->get[\'sort\'])) {\n                    $url .= \'&sort=\' . $this->request->get[\'sort\'];\n                }\n\n                if (isset($this->request->get[\'order\'])) {\n                    $url .= \'&order=\' . $this->request->get[\'order\'];\n                }\n\n                if (isset($this->request->get[\'page\'])) {\n                    $url .= \'&page=\' . $this->request->get[\'page\'];\n                }\n\n                if (isset($this->request->get[\'view_all\'])) {\n                    $url .= \'&view_all=\' . $this->request->get[\'view_all\'];\n                }\n\n                $this->response->redirect($this->url->link(\'customerpartner/partner\', \'token=\' . $this->session->data[\'token\'] . $url, true));\n\n            }else{ // Marketplace Code Ends Here\n\n                          ]]></add>\n            </operation>\n            <operation>\n                    <search><![CDATA[\n                  $this->model_customer_customer->addCustomer($this->request->post);\n                    ]]></search>\n                    <add position=\"after\"><![CDATA[\n            // Marketplace Code Starts Here\n            }\n            // Marketplace Code Ends Here\n\n                          ]]></add>\n            </operation>\n            <operation>\n                    <search><![CDATA[\n                   $data[\'action\'] = $this->url->link(\'customer/customer/add\',\n                    ]]></search>\n                    <add position=\"before\"><![CDATA[\n            // Marketplace Code Starts Here\n            if (isset($this->request->get[\'create_seller\'])) {\n\n                if (isset($this->request->get[\'filter_name\'])) {\n                    $url .= \'&filter_name=\' . urlencode(html_entity_decode($this->request->get[\'filter_name\'], ENT_QUOTES, \'UTF-8\'));\n                }\n\n                if (isset($this->request->get[\'filter_email\'])) {\n                    $url .= \'&filter_email=\' . urlencode(html_entity_decode($this->request->get[\'filter_email\'], ENT_QUOTES, \'UTF-8\'));\n                }\n\n                if (isset($this->request->get[\'filter_customer_group_id\'])) {\n                    $url .= \'&filter_customer_group_id=\' . $this->request->get[\'filter_customer_group_id\'];\n                }\n\n                if (isset($this->request->get[\'filter_status\'])) {\n                    $url .= \'&filter_status=\' . $this->request->get[\'filter_status\'];\n                }\n\n                if (isset($this->request->get[\'filter_approved\'])) {\n                    $url .= \'&filter_approved=\' . $this->request->get[\'filter_approved\'];\n                }\n\n                if (isset($this->request->get[\'filter_ip\'])) {\n                    $url .= \'&filter_ip=\' . $this->request->get[\'filter_ip\'];\n                }\n\n                if (isset($this->request->get[\'filter_date_added\'])) {\n                    $url .= \'&filter_date_added=\' . $this->request->get[\'filter_date_added\'];\n                }\n\n                if (isset($this->request->get[\'sort\'])) {\n                    $url .= \'&sort=\' . $this->request->get[\'sort\'];\n                }\n\n                if (isset($this->request->get[\'order\'])) {\n                    $url .= \'&order=\' . $this->request->get[\'order\'];\n                }\n\n                if (isset($this->request->get[\'page\'])) {\n                    $url .= \'&page=\' . $this->request->get[\'page\'];\n                }\n\n                if (isset($this->request->get[\'view_all\'])) {\n                    $url .= \'&view_all=\' . $this->request->get[\'view_all\'];\n                }\n\n                $data[\'action\'] = $this->url->link(\'customer/customer/add\', \'token=\' . $this->session->data[\'token\'] . $url. \'&create_seller\', true);\n            }else{  // Marketplace Code Ends Here\n\n                          ]]></add>\n            </operation>\n            <operation>\n                    <search><![CDATA[\n                  $data[\'action\'] = $this->url->link(\'customer/customer/add\', \'token=\' . $this->session->data[\'token\'] . $url, true);\n                    ]]></search>\n                    <add position=\"after\"><![CDATA[\n            // Marketplace Code Starts Here\n            }\n            // Marketplace Code Ends Here\n\n                    ]]></add>\n            </operation>\n        </file>\n\n         <file path=\"admin/model/customer/customer.php\">\n                <operation>\n                        <search><![CDATA[\n                      public function deleteCustomer($customer_id) {\n                        ]]></search>\n                        <add position=\"after\"><![CDATA[\n                           /**\n                             * Marketplace\n                             */\n                            if ($this->config->get(\'marketplace_status\')) {\n\n                                $this->load->model(\'customerpartner/partner\');\n                                $this->model_customerpartner_partner->deleteCustomer($customer_id);\n                            }\n                             /**\n                             * Marketplace\n                             */\n\n                              ]]></add>\n                </operation>\n        </file>\n                 <file path=\"admin/model/customer/customer.php\">\n                <operation>\n                        <search><![CDATA[\n                      public function deleteCustomer($customer_id) {\n                        ]]></search>\n                        <add position=\"after\"><![CDATA[\n                           /**\n                             * Marketplace\n                             */\n                            if ($this->config->get(\'marketplace_status\')) {\n\n                                $this->load->model(\'customerpartner/partner\');\n                                $this->model_customerpartner_partner->deleteCustomer($customer_id);\n                            }\n                             /**\n                             * Marketplace\n                             */\n\n                              ]]></add>\n                </operation>\n                <operation>\n                        <search><![CDATA[\n                      public function addCustomer($data) {\n                        ]]></search>\n                        <add position=\"replace\"><![CDATA[\n                           public function addCustomer($data, $create_seller = \'\') {\n\n                              ]]></add>\n                </operation>\n                 <operation>\n                        <search><![CDATA[\n                      $customer_id = $this->db->getLastId();\n                        ]]></search>\n                        <add position=\"after\"><![CDATA[\n                            if ($create_seller) {\n\n                                $this->load->model(\'customerpartner/partner\');\n                                $this->model_customerpartner_partner->approve($customer_id, $setstatus = 1);\n                            }\n\n                              ]]></add>\n                </operation>\n        </file>\n\n        <file path=\"admin/model/localisation/currency.php\">\n                <operation>\n                        <search><![CDATA[\n                      public function refresh($force = false) {\n                        ]]></search>\n                        <add position=\"after\"><![CDATA[\n                          if ($this->config->get(\'marketplace_status\')) {\n\n                            $query = $this->db->query(\"SELECT * FROM \" . DB_PREFIX . \"customerpartner_to_product ORDER BY product_id ASC\")->rows;\n\n                            if ($query) {\n\n                                foreach ($query as $key => $value) {\n\n                                    if (isset($value[\'currency_code\']) && $value[\'currency_code\']) {\n\n                                        if ($value[\'seller_price\']) {\n\n                                            $update_price = $this->currency->convert($value[\'seller_price\'],$value[\'currency_code\'],$this->config->get(\'config_currency\'));\n\n                                            $this->db->query(\"UPDATE \" . DB_PREFIX . \"product SET price = \'\".$update_price.\"\' WHERE product_id = \'\".$value[\'product_id\'].\"\'\");\n\n                                            $this->db->query(\"UPDATE \" . DB_PREFIX . \"customerpartner_to_product SET price = \'\".$update_price.\"\' WHERE product_id = \'\".$value[\'product_id\'].\"\'\");\n                                        }\n\n                                    }\n\n                                }\n                            }\n                        }\n\n                              ]]></add>\n                </operation>\n        </file>\n\n         <file path=\"catalog/language/*/account/order.php\">\n                <operation>\n                        <search><![CDATA[\n                      $_[\'error_reorder\']\n                        ]]></search>\n                        <add position=\"after\"><![CDATA[\n// marketplace\n$_[\'button_order_detail\']   = \'Track Order\';\n$_[\'text_tracking\']         = \'Product Tracking Details\';\n                              ]]></add>\n                </operation>\n        </file>\n        <file path=\"catalog/controller/account/order.php\">\n                <operation>\n                        <search><![CDATA[\n                      if (isset($this->session->data[\'error\'])) {\n                        ]]></search>\n                        <add position=\"before\"><![CDATA[\n                          // marketplace\n                          $this->load->model(\'account/customerpartner\');\n                          $data[\'button_order_detail\'] = $this->language->get(\'button_order_detail\');\n                          $data[\'text_tracking\'] = $this->language->get(\'text_tracking\');\n                          $data[\'marketplace_status\'] = $this->config->get(\'marketplace_status\');\n                          // marketplace\n                              ]]></add>\n                </operation>\n                 <operation>\n                        <search><![CDATA[\n                      \'reorder\'\n                        ]]></search>\n                        <add position=\"after\"><![CDATA[\n                           // marketplace\n                          \'order_detail\'   => $this->url->link(\'account/customerpartner/order_detail\', \'order_id=\' . $order_info[\'order_id\'] . \'&product_id=\' . $product[\'product_id\'], true),\n                          \'order_id\' => $product[\'order_id\'],\n                          \'product_id\' => $product[\'product_id\'],\n                           // marketplace\n                              ]]></add>\n                </operation>\n        </file>\n        <file path=\"catalog/view/theme/default/template/account/order_info.tpl\">\n                <operation>\n                        <search><![CDATA[\n                     <a href=\"<?php echo $product[\'return\']; ?>\"\n                        ]]></search>\n                        <add position=\"before\"><![CDATA[\n                        <!-- marketplace -->\n                <a onclick = \"getProductOrderStatus(<?php echo $product[\'order_id\'];?>,<?php echo $product[\'product_id\'];?>)\" data-toggle=\"tooltip\" title=\"<?php echo $button_order_detail; ?>\" class=\"btn btn-primary\"><i class=\"fa fa-truck\"></i></a>\n                 <button class=\"hide\" href=\"#orderProductStatusModal\" data-toggle=\"modal\" id=\"statusButton\"></button>\n                              ]]></add>\n                </operation>\n                                 <operation>\n                        <search><![CDATA[\n                    <?php echo $footer; ?>\n                        ]]></search>\n                        <add position=\"before\"><![CDATA[\n<!-- marketplace -->\n<?php if (isset($marketplace_status) && $marketplace_status) {?>\n<div id=\"orderProductStatusModal\" class=\"modal fade bs-example-modal-sm\" tabindex=\"-1\" role=\"dialog\" aria-labelledby=\"mySmallModalLabel\" aria-hidden=\"true\">\n    <div class=\"modal-dialog\">\n      <div class=\"modal-content\">\n        <div class=\"modal-header\">\n            <button type=\"button\" class=\"close\" data-dismiss=\"modal\" aria-hidden=\"true\">×</button>\n            <h3 class=\"modal-title\"><?php echo $text_tracking; ?></h3>\n        </div>\n        <div class=\"modal-body\" id=\"orderProductStatusModalBody\">\n\n        </div>\n        <div class=\"modal-footer\">\n          <button class=\"btn closebtn\" data-dismiss=\"modal\" aria-hidden=\"true\" id=\"closeButton\">Close</button>\n        </div>\n      </div>\n  </div>\n</div>\n<script>\n  function getProductOrderStatus (order_id,product_id) {\n          $.ajax({\n            url: \'index.php?route=account/customerpartner/order_detail&order_id=\'+order_id+\'&product_id=\'+product_id,\n            type: \'get\',\n            methodType: \'html\',\n            success: function(html) {\n              $(\'#orderProductStatusModalBody\').html(html);\n              $(\'#statusButton\').click();\n            }\n          });\n  }\n</script>\n<?php } ?>\n<!-- marketplace -->\n                              ]]></add>\n                </operation>\n        </file>\n        <file path=\"catalog/view/theme/journal2/template/account/order_info.tpl\">\n                <operation>\n                        <search><![CDATA[\n                     <a href=\"<?php echo $product[\'return\']; ?>\"\n                        ]]></search>\n                        <add position=\"before\"><![CDATA[\n                        <!-- marketplace -->\n                 <a onclick = \"getProductOrderStatus(<?php echo $product[\'order_id\'];?>,<?php echo $product[\'product_id\'];?>)\" data-toggle=\"tooltip\" title=\"<?php echo $button_order_detail; ?>\" class=\"btn btn-primary button\"><i class=\"fa fa-truck\"></i></a>\n                 <button type=\"hidden\" href=\"#orderProductStatusModal\" data-toggle=\"modal\" id=\"statusButton\"></button>\n                              ]]></add>\n                </operation>\n                 <operation>\n                        <search><![CDATA[\n                    <?php echo $footer; ?>\n                        ]]></search>\n                        <add position=\"before\"><![CDATA[\n<!-- marketplace -->\n<?php if (isset($marketplace_status) && $marketplace_status) {?>\n<div id=\"orderProductStatusModal\" class=\"modal fade bs-example-modal-sm\" tabindex=\"-1\" role=\"dialog\" aria-labelledby=\"mySmallModalLabel\" aria-hidden=\"true\">\n    <div class=\"modal-dialog\">\n      <div class=\"modal-content\">\n        <div class=\"modal-header\">\n            <button type=\"button\" class=\"close\" data-dismiss=\"modal\" aria-hidden=\"true\">×</button>\n            <h3 class=\"modal-title\"><?php echo $text_tracking; ?></h3>\n        </div>\n        <div class=\"modal-body\" id=\"orderProductStatusModalBody\">\n\n        </div>\n        <div class=\"modal-footer\">\n          <button class=\"btn closebtn\" data-dismiss=\"modal\" aria-hidden=\"true\" id=\"closeButton\">Close</button>\n        </div>\n      </div>\n  </div>\n</div>\n<script>\n  function getProductOrderStatus (order_id,product_id) {\n          $.ajax({\n            url: \'index.php?route=account/customerpartner/order_detail&order_id=\'+order_id+\'&product_id=\'+product_id,\n            type: \'get\',\n            methodType: \'html\',\n            success: function(html) {\n              $(\'#orderProductStatusModalBody\').html(html);\n              $(\'#statusButton\').click();\n            }\n          });\n  }\n</script>\n<?php } ?>\n<!-- marketplace -->\n                              ]]></add>\n                </operation>\n        </file>\n                <file path=\"catalog/view/theme/journal2/template/account/account.tpl\">\n                <operation>\n                        <search><![CDATA[\n                     <?php echo $content_bottom; ?></div>\n                        ]]></search>\n                        <add position=\"before\"><![CDATA[\n                             <!-- Marketplace codes start -->\n                             <?php if(isset($marketplace_status) && $marketplace_status){ ?>\n                              <?php if($chkIsPartner){ ?>\n                                <?php if(isset($marketplace_seller_mode) && $marketplace_seller_mode){ ?>\n                                <h2 class=\"secondary-title\"><?php echo $text_marketplace; ?></h2>\n                                    <div class=\"content my-newsletter\">\n                                      <ul class=\"list-unstyled\">\n                                      <?php if(isset($marketplace_account_menu_sequence)) { ?>\n                                        <?php foreach ($marketplace_account_menu_sequence as $key => $menu_option) { ?>\n                                          <?php if(isset($marketplace_allowed_account_menu) && $marketplace_allowed_account_menu && in_array($key,$marketplace_allowed_account_menu)) { ?>\n                                            <?php if($key == \'asktoadmin\') { ?>\n                                            <li><a id=\"ask-to-admin\" class=\"list-group-item\"  data-toggle=\"modal\" data-target=\"#myModal-seller-mail\"><?php echo $menu_option; ?></a></li>\n                                            <?php }else{?>\n                                            <li><a href=\"<?php echo $account_menu_href[$key]; ?>\"><?php echo $menu_option; ?></a></li>\n                                            <?php } ?>\n                                          <?php } ?>\n                                        <?php } ?>\n                                      <?php } ?>\n                                      </ul>\n                                    </div>\n                                <?php } ?>\n                              <?php }else{?>\n                              <h2 class=\"secondary-title\"><?php echo $text_marketplace; ?></h2>\n                              <div class=\"content my-newsletter\">\n                                <ul class=\"list-unstyled\">\n                                  <li><a href=\"<?php echo $want_partner; ?>\"><?php echo $text_becomePartner; ?></a></li>\n                                </ul>\n                              </div>\n                              <?php } ?>\n                              <?php } ?>\n                              <!-- Marketplace codes start -->\n                              ]]></add>\n                </operation>\n\n                <operation>\n                        <search><![CDATA[\n                     <?php echo $footer; ?>\n                        ]]></search>\n                        <add position=\"before\"><![CDATA[\n                             <!-- Marketplace codes start -->\n                              <div class=\"modal fade\" id=\"myModal-seller-mail\" tabindex=\"-1\" role=\"dialog\" aria-labelledby=\"myModalLabel\" aria-hidden=\"true\">\n                                <div class=\"modal-dialog\">\n                                  <div class=\"modal-content\">\n                                    <div class=\"modal-header\">\n                                      <button type=\"button\" class=\"close\" data-dismiss=\"modal\"><span aria-hidden=\"true\">&times;</span><span class=\"sr-only\"><?php echo $text_close; ?></span></button>\n                                      <h1 class=\"heading-title\"><?php echo $text_ask_question; ?></h1>\n                                    </div>\n                                    <form id=\"seller-mail-form\">\n                                      <div class=\"modal-body\">\n                                        <div class=\"form-group required\" style=\"width:97%;\">\n                                          <label class=\"control-label\" for=\"input-subject\"><?php echo $text_subject; ?></label>\n                                          <input type=\"text\" name=\"subject\" id=\"input-subject\" class=\"form-control\" style=\"width:100%;\" />\n                                          <?php if(isset($partner)){ ?>\n                                            <input type=\"hidden\" name=\"seller\" value=\"<?php echo $seller_id;?>\"/>\n                                          <?php } ?>\n                                      </div>\n                                    <div class=\"form-group required\" style=\"width:97%;\">\n                                          <label class=\"control-label\" for=\"input-message\"><?php echo $text_ask; ?></label>\n                                      <textarea class=\"form-control\" name=\"message\" rows=\"3\" id=\"input-message\" style=\"width:100%;\"></textarea>\n                                      </div>\n                                      <div class=\"error\"></div>\n                                      </div>\n                                  </form>\n                                    <div class=\"modal-footer\">\n                                      <button type=\"button\" class=\"btn btn-default button\" data-dismiss=\"modal\"><?php echo $text_close; ?></button>\n                                      <button type=\"button\" class=\"btn btn-primary button\" id=\"send-mail\"><?php echo $text_send; ?></button>\n                                    </div>\n                                  </div><!-- /.modal-content -->\n                                </div><!-- /.modal-dialog -->\n                              </div><!-- /.modal -->\n                                                            <script>\n                                $(\'#send-mail\').on(\'click\',function(){\n                                  f = 0;\n                                  $(\'.alert\').remove();\n                                  $(\'#myModal-seller-mail input[type=\\\'text\\\'],#myModal-seller-mail textarea\').each(function () {\n                                    if ($(this).val() == \'\') {\n                                      $(this).parent().addClass(\'has-error\');\n                                      f++;\n                                    }else{\n                                      $(this).parent().removeClass(\'has-error\');\n                                    }\n                                  });\n\n                                  if (f > 0) {\n                                    $(\'#myModal-seller-mail .error\').text(\'<?php echo $text_error_mail; ?>\').slideDown(\'slow\').delay(2000).slideUp(\'slow\');\n                                  } else {\n                                    $(\'#send-mail\').addClass(\'disabled\');\n                                    $(\'#myModal-seller-mail\').addClass(\'mail-procss\');\n                                    $(\'#myModal-seller-mail .modal-body\').prepend(\'<div class=\"alert alert-success success\" style=\"width:auto;\"><i class=\"fa fa-check-circle\"></i> <?php echo $text_success_mail; ?><button type=\"button\" class=\"close\" data-dismiss=\"alert\">&times;</button></div>\');\n\n                                    $.ajax({\n                                      url: \'<?php echo $send_mail; ?>\',\n                                      data: $(\'#seller-mail-form\').serialize()+\'<?php echo $mail_for; ?>\',\n                                      type: \'post\',\n                                      dataType: \'json\',\n                                      complete: function () {\n                                        $(\'#send-mail\').removeClass(\'disabled\');\n                                        $(\'#myModal-seller-mail input,#myModal-seller-mail textarea\').each(function () {\n                                        if(this.type != \'hidden\'){\n                                          $(this).val(\'\');\n                                          $(this).text(\'\');\n                                        }\n                                        });\n                                      }\n                                    });\n                                  }\n                                });\n                              </script>\n\n                              <!-- Marketplace codes start -->\n                              ]]></add>\n                </operation>\n        </file>\n\n         <file path=\"catalog/controller/account/account.php\">\n                <operation>\n                        <search><![CDATA[\n                     $data[\'column_left\'] = $this->load->controller(\'common/column_left\');\n                        ]]></search>\n                        <add position=\"before\"><![CDATA[\n        // Marketplace codes start\n        $this->load->model(\'account/customer\');\n        $this->load->model(\'account/customerpartner\');\n        $this->load->language(\'extension/module/marketplace\');\n        $data[\'chkIsPartner\'] = $this->model_account_customerpartner->chkIsPartner();\n\n        $data[\'text_marketplace\'] = $this->language->get(\'text_marketplace\');\n        $data[\'text_becomePartner\'] = $this->language->get(\'text_becomePartner\');\n\n        if($this->config->get(\'marketplace_account_menu_sequence\')) {\n            foreach ($this->config->get(\'marketplace_account_menu_sequence\') as $key => $lang_value) {\n                $mp_language[$key] = $this->language->get(\'text_\'.$key);\n            }\n            $data[\'marketplace_account_menu_sequence\'] = $mp_language;\n        }\n\n        $data[\'isMember\'] = false;\n        if($this->config->get(\'wk_seller_group_status\')) {\n            $data[\'wk_seller_group_status\'] = true;\n            $this->load->model(\'account/customer_group\');\n            $isMember = $this->model_account_customer_group->getSellerMembershipGroup($this->customer->getId());\n            if($isMember) {\n                $allowedAccountMenu = $this->model_account_customer_group->getaccountMenu($isMember[\'gid\']);\n                if($allowedAccountMenu[\'value\']) {\n                    $accountMenu = explode(\',\',$allowedAccountMenu[\'value\']);\n                    foreach ($accountMenu as $key => $menu) {\n                        $aMenu = explode(\':\', $menu);\n                        $data[\'marketplace_allowed_account_menu\'][$aMenu[0]] = $aMenu[1];\n                    }\n                }\n                $data[\'isMember\'] = true;\n            } else {\n                $data[\'isMember\'] = false;\n            }\n        }\n\n        if ($this->model_account_customerpartner->chkIsPartner() && !$data[\'isMember\'] && $this->config->get(\'wk_seller_group_status\')) {\n\n            $data[\'marketplace_allowed_account_menu\'][\'membership\'] = \'membership\';\n        }\n\n        if($this->config->get(\'marketplace_allowed_account_menu\') && !$this->config->get(\'wk_seller_group_status\')) {\n            $data[\'marketplace_allowed_account_menu\'] = $this->config->get(\'marketplace_allowed_account_menu\');\n        }\n\n        $data[\'send_mail\'] = $this->url->link(\'account/customerpartner/sendmail\',\'\',true);\n        $data[\'mail_for\'] = \'&contact_admin=true\';\n        $data[\'want_partner\'] = $this->url->link(\'account/customerpartner/become_partner\',\'\',true);\n        $data[\'account_menu_href\'] = array(\n            \'profile\' => $this->url->link(\'account/customerpartner/profile\', \'\', true),\n            \'dashboard\' => $this->url->link(\'account/customerpartner/dashboard\', \'\', true),\n            \'orderhistory\' => $this->url->link(\'account/customerpartner/orderlist\', \'\', true),\n            \'transaction\' => $this->url->link(\'account/customerpartner/transaction\', \'\', true),\n            \'productlist\' => $this->url->link(\'account/customerpartner/productlist\', \'\', true),\n            \'addproduct\' => $this->url->link(\'account/customerpartner/addproduct\', \'\', true),\n            \'downloads\' => $this->url->link(\'account/customerpartner/download\', \'\', true),\n            \'manageshipping\' => $this->url->link(\'account/customerpartner/add_shipping_mod\', \'\', true),\n            \'asktoadmin\' => $this->url->link(\'account/customerpartner/addproduct\', \'\', true),\n            \'notification\' => $this->url->link(\'account/customerpartner/notification\', \'\', true),\n        );\n\n        /*\n        Membership code\n        add link to existing account menu array\n         */\n        if($this->config->get(\'wk_seller_group_status\')) {\n            $data[\'wk_seller_group_status\'] = true;\n            $data[\'account_menu_href\'][\'membership\'] = $this->url->link(\'account/customerpartner/wk_membership_catalog\',\'\',true);\n        } else {\n            $data[\'wk_seller_group_status\'] = false;\n            if(isset($data[\'account_menu_href\'][\'membership\'])) {\n                unset($data[\'account_menu_href\'][\'membership\']);\n            }\n            if(isset($data[\'marketplace_account_menu_sequence\'][\'membership\'])) {\n                unset($data[\'marketplace_account_menu_sequence\'][\'membership\']);\n            }\n        }\n        /*\n        end here\n         */\n        // Marketplace codes start\n\n                              ]]></add>\n                </operation>\n\n                <operation>\n                        <search><![CDATA[\n                        $this->load->language(\'account/account\');\n                        ]]></search>\n                        <add position=\"after\"><![CDATA[\n                        $data = array_merge($this->language->load(\'extension/module/marketplace\'));\n                              ]]></add>\n                </operation>\n\n        </file>\n\n        <file path=\"catalog/controller/account/account.php\">\n            <operation>\n                <search><![CDATA[\n                    $this->document->setTitle($this->language->get(\'heading_title\'));\n                ]]></search>\n                <add position=\"after\"><![CDATA[\n                    /**\n                    * Marketplace\n                    */\n\n                    $this->load->model(\'account/customerpartner\');\n\n                    $data[\'is_seller\'] = 0;\n\n                    $data[\'marketplace_status\'] = $this->config->get(\'marketplace_status\');\n\n                    $data[\'marketplace_seller_mode\'] = 0;\n\n                    if ($this->config->get(\'marketplace_status\') && $this->model_account_customerpartner->chkIsPartner()) {\n\n                        $data[\'is_seller\'] = 1;\n\n                        $data[\'action\'] = $this->url->link(\'account/account\', \'\', true);\n\n                        if (($this->request->server[\'REQUEST_METHOD\'] == \'POST\')) {\n\n                            if (isset($this->request->post[\'marketplace_seller_mode\']) && $this->request->post[\'marketplace_seller_mode\']) {\n                                $this->session->data[\'marketplace_seller_mode\'] = $this->request->post[\'marketplace_seller_mode\'];\n                            } else {\n                                $this->session->data[\'marketplace_seller_mode\'] = 0;\n                            }\n                        }\n\n                        if(isset($this->session->data[\'marketplace_seller_mode\'])){\n                            $data[\'marketplace_seller_mode\'] = $this->session->data[\'marketplace_seller_mode\'];\n                        } else {\n                            $data[\'marketplace_seller_mode\'] = 1;\n                            $this->session->data[\'marketplace_seller_mode\'] = 1;\n                        }\n\n                        $this->load->language(\'extension/module/marketplace\');\n\n                        $data[\'text_mode_seller\'] = $this->language->get(\'text_mode_seller\');\n\n                        $data[\'text_mode_customer\'] = $this->language->get(\'text_mode_customer\');\n\n                        $this->document->addScript(\"https://gitcdn.github.io/bootstrap-toggle/2.2.2/js/bootstrap-toggle.min.js\");\n\n                        $this->document->addStyle(\"https://gitcdn.github.io/bootstrap-toggle/2.2.2/css/bootstrap-toggle.min.css\");\n                    }\n                    /**\n                    * Marketplace\n                    */\n                ]]></add>\n            </operation>\n        </file>\n\n        <file path=\"catalog/view/theme/*/template/account/account.tpl\">\n            <operation>\n                <search><![CDATA[\n                    <?php echo $header; ?>\n                ]]></search>\n                <add position=\"after\"><![CDATA[\n                    <style type=\"text/css\">\n                      .btn-success{\n                        background-image: linear-gradient(to bottom, #62c462, #51a351);\n                      }\n                    </style>\n                ]]></add>\n            </operation>\n\n            <operation>\n                <search><![CDATA[\n                    <div id=\"content\" class=\"<?php echo $class; ?>\"><?php echo $content_top; ?>\n                ]]></search>\n                <add position=\"after\"><![CDATA[\n                    <?php if(isset($is_seller) && $is_seller){ ?>\n                        <form class=\"form-horizontal\" action=\"<?php echo $action;?>\" method=\"post\" id=\"form-mode\">\n                            <div>\n                              <?php if (isset($marketplace_seller_mode) && $marketplace_seller_mode) { ?>\n                               <input value=\"1\" name=\"marketplace_seller_mode\" data-toggle=\"toggle\" data-on=\"<?php echo $text_mode_seller;?>\" data-off=\"<?php echo $text_mode_customer;?>\" data-onstyle=\"success\" data-offstyle=\"danger\" type=\"checkbox\" class=\"form-control\" checked>\n                              <?php }else{?>\n                               <input value=\"1\" name=\"marketplace_seller_mode\" data-toggle=\"toggle\" data-on=\"<?php echo $text_mode_seller;?>\" data-off=\"<?php echo $text_mode_customer;?>\" data-onstyle=\"success\" data-offstyle=\"danger\" type=\"checkbox\" class=\"form-control\">\n                              <?php } ?>\n                            </div>\n                        </form>\n                        <br/>\n                    <?php } ?>\n                ]]></add>\n            </operation>\n\n            <operation>\n                <search><![CDATA[\n                    <?php echo $footer; ?>\n                ]]></search>\n                <add position=\"before\"><![CDATA[\n                    <script type=\"text/javascript\">\n                      $(\'input[name=\\\'marketplace_seller_mode\\\']\').on(\'change\',function() {\n                        $(\"#form-mode\").submit();\n                      });\n                    </script>\n                ]]></add>\n            </operation>\n        </file>\n        <file path=\"catalog/model/account/activity.php\">\n          <operation>\n            <search><![CDATA[\n              $this->db->query(\"INSERT INTO `\" . DB_PREFIX . \"customer_activity` SET `customer_id` = \'\" . (int)$customer_id . \"\', `key` = \'\" . $this->db->escape($key) . \"\', `data` = \'\" . $this->db->escape(json_encode($data)) . \"\', `ip` = \'\" . $this->db->escape($this->request->server[\'REMOTE_ADDR\']) . \"\', `date_added` = NOW()\");\n            ]]></search>\n            <add position=\"after\"><![CDATA[\n              $this->load->model(\'account/notification\');\n              $this->model_account_notification->addSellerOrderActivity($this->db->getLastId(),$key, $data);\n            ]]></add>\n          </operation>\n        </file>\n\n        <file path=\"admin/controller/common/header.php\">\n          <operation>\n            <search><![CDATA[\n              return $this->load->view(\'common/header\', $data);\n            ]]></search>\n            <add position=\"before\"><![CDATA[\n              if (isset($this->session->data[\'token\'])) {\n    						$data[\'token\'] = $this->session->data[\'token\'];\n                if ($this->user->hasPermission(\'access\', \'customerpartner/notification\')) {\n    							$data[\'notification_access\'] = 1;\n    						}\n    					}\n            ]]></add>\n          </operation>\n        </file>\n\n        <file path=\"admin/view/template/common/header.tpl\">\n          <operation>\n            <search><![CDATA[\n              <ul class=\"nav pull-right\">\n            ]]></search>\n            <add position=\"after\"><![CDATA[\n              <li class=\"dropdown\" id=\"wk-notify\"></li>\n              <?php if(isset($notification_access) && $notification_access){ ?>\n                <script type=\"text/javascript\">\n                  $(document).ready(function () {\n                  function wk_notify(){\n                    $.ajax({\n                      url: \'index.php?route=customerpartner/notification/notifications&token=<?php echo $token; ?>\',\n                      method: \'post\',\n                      dataType: \'json\',\n                      success: function(json) {\n                        $(\'#wk-notify\').html(json);\n                      },\n                    });\n                  }\n                    setInterval(wk_notify, 30000);\n                    wk_notify();\n                  });\n                </script>\n              <?php } ?>\n            ]]></add>\n          </operation>\n        </file>\n\n        <file path=\"catalog/model/catalog/review.php\">\n          <operation>\n            <search><![CDATA[\n              $review_id = $this->db->getLastId();\n            ]]></search>\n            <add position=\"after\"><![CDATA[\n              $this->load->model(\'account/notification\');\n              $this->model_account_notification->productReviewActivity($product_id, $review_id, $data[\'name\']);\n            ]]></add>\n          </operation>\n        </file>\n\n        <file path=\"catalog/model/checkout/order.php\">\n          <operation>\n            <search><![CDATA[\n              $this->db->query(\"UPDATE \" . DB_PREFIX . \"product SET quantity = (quantity - \" . (int)$order_product[\'quantity\'] . \") WHERE product_id = \'\" . (int)$order_product[\'product_id\'] . \"\' AND subtract = \'1\'\");\n            ]]></search>\n            <add position=\"after\"><![CDATA[\n              $this->load->model(\'account/notification\');\n              $this->model_account_notification->productStockActivity($order_product[\'product_id\']);\n            ]]></add>\n          </operation>\n\n          <operation>\n            <search><![CDATA[\n              // If order status is not 0 then send update text email\n            ]]></search>\n            <add position=\"before\"><![CDATA[\n              if ($order_id && $order_status_id && $order_info[\'order_status_id\']) {\n                $this->load->model(\'account/notification\');\n                $activity_data = array(\n                  \'id\' => $order_info[\'customer_id\'],\n                  \'status\'        => $order_status_id,\n                  \'order_id\'    => $order_id\n                );\n\n                $this->model_account_notification->addActivity(\'order_status\', $activity_data);\n              }\n            ]]></add>\n          </operation>\n        </file>\n        <!-- end here -->\n\n</modification>\n',1,'2017-08-23 23:38:14'),(3,'Change-MP-Paths','All SEF urls','Webkul','1.0.0','http://webkul.com','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n\n<modification>\n    <name>Change-MP-Paths</name>\n    <version>1.0.0</version>\n    <code>All SEF urls</code>\n    <author>Webkul</author>\n    <link>http://webkul.com</link>\n\n    <file path=\"catalog/controller/startup/seo_url.php\">\n        <operation>\n            <search><![CDATA[\n                $this->request->get[\'route\'] = \'error/not_found\';\n                ]]></search>\n            <add position=\"before\" offset=\"1\"><![CDATA[\n                }elseif($this->config->get(\'marketplace_useseo\') AND $this->request->get[\'_route_\']==\'Marketplace-Collection\'){\n                    $this->request->get[\'route\'] =  \'customerpartner/profile/collection\';\n                }elseif ($this->config->get(\'marketplace_useseo\') AND is_array($this->config->get(\'marketplace_SefUrlsvalue\')) AND (in_array($this->request->get[\'_route_\'],$this->config->get(\'marketplace_SefUrlsvalue\')) || in_array(current(explode(\'/\',$this->request->get[\'_route_\'])),$this->config->get(\'marketplace_SefUrlsvalue\')) )) {\n                    $_route_ = explode(\'/\',$this->request->get[\'_route_\']);\n\n                    $sefKey = array_search($_route_[0],$this->config->get(\'marketplace_SefUrlsvalue\'));\n\n                    $wkSefUrlspath = $this->config->get(\'marketplace_SefUrlspath\');\n\n                    if(isset($wkSefUrlspath[$sefKey])) {\n\n                        if($wkSefUrlspath[$sefKey]==\'customerpartner/profile\' AND isset($_route_[1])) {\n\n                            $query = $this->db->query(\"SELECT customer_id FROM \" . DB_PREFIX . \"customerpartner_to_customer WHERE `screenname` = \'\" . $this->db->escape($_route_[1]) . \"\'\");\n                            if ($query->num_rows) {\n                                if($query->row[\'customer_id\']){\n                                   $this->request->get[\'id\'] = $query->row[\'customer_id\'];\n                                }\n                            }\n                        $this->request->get[\'route\'] = \'customerpartner/profile\';\n\n                    } elseif($wkSefUrlspath[$sefKey]==\'product/product\' && in_array(\'product/product\',$this->config->get(\'marketplace_SefUrlspath\'))) {\n                    $new_route = str_replace($this->config->get(\'marketplace_product_seo_page_ext\'),\'\',$this->request->get[\'_route_\']);\n                    $product_name = false;\n                    if($this->config->get(\'marketplace_product_seo_format\')) {\n                        if($this->config->get(\'marketplace_product_seo_format\')==\'1\') {\n                            $mpparts = explode(\'/\', $new_route);\n                            if(isset($mpparts[1]) ) {\n                                $product_name = $mpparts[1];\n                            }\n                        } else if($this->config->get(\'marketplace_product_seo_format\')==\'2\') {\n                           $mpparts = explode(\'-\',$new_route,2);\n                            if(isset($mpparts[1]))\n                                $product_name = $mpparts[1];\n                        } else if($this->config->get(\'marketplace_product_seo_format\')==\'3\') {\n                            $mpparts = explode(\'/\',$new_route);\n                            if($mpparts[1])\n                                $product_name = $mpparts[1];\n                        }\n                    }\n                    if ($product_name) {\n                        $query = $this->db->query(\"SELECT * FROM \" . DB_PREFIX . \"url_alias WHERE keyword = \'\" . $this->db->escape($product_name) . \"\'\");\n\n                        if ($query->num_rows) {\n                            $url = explode(\'=\', $query->row[\'query\']);\n\n                            if ($url[0] == \'product_id\') {\n                                $this->request->get[\'product_id\'] = $url[1];\n                            }\n                        }\n\n                        if(!$query->num_rows AND $this->config->get(\'marketplace_product_seo_product_name\')) {\n                            $product_name = str_replace(\'-\', \' \', $product_name);\n                            $query = $this->db->query(\"SELECT pd.product_id FROM \".DB_PREFIX.\"product_description pd WHERE pd.name = \'\".$this->db->escape($product_name).\"\' AND pd.language_id = \'\".$this->config->get(\'config_language_id\').\"\'\");\n\n                            if ($query->num_rows)\n                                $this->request->get[\'product_id\'] = $query->row[\'product_id\'];\n                        }\n\n                        $this->request->get[\'route\'] = \'product/product\';\n\n                    }\n\n                }else{\n                    $this->request->get[\'route\'] =  $wkSefUrlspath[$sefKey];\n                }\n\n            }\n            ]]></add>\n        </operation>\n\n        <operation>\n\n            <search><![CDATA[} elseif ($key == \'path\') {]]></search>\n            <add position=\"before\"><![CDATA[\n\n                }elseif($this->config->get(\'marketplace_useseo\') AND $data[\'route\'] == \'customerpartner/profile/collection\'){\n\n                    $url .= \'/Marketplace-Collection\' ;\n                    unset($data[$key]);\n                }elseif($this->config->get(\'marketplace_useseo\') AND $data[\'route\'] == \'product/product\' AND isset($data[\'product_id\']) AND is_array($this->config->get(\'marketplace_SefUrlspath\')) AND in_array($data[\'route\'],$this->config->get(\'marketplace_SefUrlspath\')) ) {\n                    $sellerDetail = \'\';\n                    $sellerDetails = $this->db->query(\"SELECT c2c.screenname,c2c.companyname,c.firstname as sellername FROM \".DB_PREFIX.\"customerpartner_to_product c2p LEFT JOIN \".DB_PREFIX.\"product p ON (p.product_id=c2p.product_id) LEFT JOIN \".DB_PREFIX.\"customerpartner_to_customer c2c ON (c2p.customer_id=c2c.customer_id) LEFT JOIN \".DB_PREFIX.\"customer c ON (c.customer_id=c2c.customer_id) WHERE c2p.product_id = \'\".$data[\'product_id\'].\"\' \")->row;\n\n                    if(isset($sellerDetails[$this->config->get(\'marketplace_product_seo_name\')]) && $sellerDetails[$this->config->get(\'marketplace_product_seo_name\')] ) {\n                        $sellerDetail = $sellerDetails[$this->config->get(\'marketplace_product_seo_name\')];\n                    } else {\n                        $sellerDetail = $this->config->get(\'marketplace_product_seo_default_name\');\n                    }\n                    $keyword = $this->db->query(\"SELECT keyword FROM \".DB_PREFIX.\"url_alias WHERE query = \'product_id=\" . (int)$data[\'product_id\'] . \"\' \")->row;\n\n                    if(isset($keyword[\'keyword\']) && $keyword[\'keyword\']) {\n                        $keyword = $keyword[\'keyword\'];\n                        unset($data[\'product_id\']);\n                    } else if($this->config->get(\'marketplace_product_seo_name\')) {\n\n                        $key_word = $this->db->query(\"SELECT name FROM \".DB_PREFIX.\"product_description pd WHERE product_id = \'\".$data[\'product_id\'].\"\' AND language_id = \'\".$this->config->get(\'config_language_id\').\"\' \")->row;\n\n                        if(isset($key_word[\'name\'])) {\n                            $keyword = str_replace(\' \',\'-\',$key_word[\'name\']);\n                        } else {\n                            $keyword = \'\';\n                        }\n                    }\n                    $sefKey = array_search($data[\'route\'],$this->config->get(\'marketplace_SefUrlspath\'));\n                    $wkSefUrlsvalue = $this->config->get(\'marketplace_SefUrlsvalue\');\n                    if(isset($wkSefUrlsvalue[$sefKey]) && $wkSefUrlsvalue[$sefKey]) {\n                        $url .= \'/\'.$wkSefUrlsvalue[$sefKey];\n                    } else {\n                        $url .= \'\';\n                    }\n                    if($sellerDetail) {\n                        if($this->config->get(\'marketplace_product_seo_format\') == \'1\') {\n                            $url .= \'/\'.$keyword;\n                        } else if($this->config->get(\'marketplace_product_seo_format\') == \'2\') {\n                            $url .= \'/\'.str_replace(\'-\',\'\',$sellerDetail).\'-\'.$keyword;\n                        } else if ($this->config->get(\'marketplace_product_seo_format\') == \'3\') {\n                            $url .= \'/\'.$keyword.\'/\'.str_replace(\'-\',\'\',$sellerDetail);\n                        }\n                        if($this->config->get(\'marketplace_product_seo_page_ext\')) {\n                            $url .= $this->config->get(\'marketplace_product_seo_page_ext\');\n                        }\n                        unset($data[$key]);\n                    } else {\n\n                        $sefKey = array_search($data[\'route\'],$this->config->get(\'marketplace_SefUrlspath\'));\n                        $wkSefUrlsvalue = $this->config->get(\'marketplace_SefUrlsvalue\');\n\n                        if(isset($wkSefUrlsvalue[$sefKey])){\n                            if($keyword){\n                                $url .=  \'/\'.$keyword;\n                            }\n                            if($this->config->get(\'marketplace_product_seo_page_ext\')) {\n                                $url .= $this->config->get(\'marketplace_product_seo_page_ext\');\n                            }\n                            unset($data[$key]);\n                        }\n                    }\n                    unset($data[\'product_id\']);\n                } elseif ($this->config->get(\'marketplace_useseo\') AND is_array($this->config->get(\'marketplace_SefUrlspath\')) AND in_array($data[\'route\'],$this->config->get(\'marketplace_SefUrlspath\'))) {\n                    $sefKey = array_search($data[\'route\'],$this->config->get(\'marketplace_SefUrlspath\'));\n\n                    $wkSefUrlsvalue = $this->config->get(\'marketplace_SefUrlsvalue\');\n                    if(isset($wkSefUrlsvalue[$sefKey])){\n                        if($data[\'route\']==\'customerpartner/profile\'){\n                            if($key == \'id\'){\n                                $url .=  \'/\'.$wkSefUrlsvalue[$sefKey];\n\n                                $query = $this->db->query(\"SELECT screenname FROM \" . DB_PREFIX . \"customerpartner_to_customer WHERE `customer_id` = \'\" . (int)$data[$key] . \"\'\");\n                                if ($query->num_rows) {\n\n                                   if(trim($query->row[\'screenname\'])){\n                                      $url .= \'/\' . $query->row[\'screenname\'];\n                                    }else{\n                                      $url .= \'\';\n                                    }\n                                    unset($data[$key]);\n                                }\n                            }\n                        }elseif(($data[\'route\'] != \'product/product\') && ($data[\'route\'] != \'customerpartner/profile\')){\n                            $url .=  \'/\'.$wkSefUrlsvalue[$sefKey];\n                            unset($data[$key]);\n                        }\n                    }\n\n            ]]></add>\n        </operation>\n    </file>\n\n    <file path=\"catalog/controller/checkout/confirm.php\">\n        <operation>\n            <search><![CDATA[\n                \'price\'      => $this->currency->format($this->tax->calculate($product[\'price\'], $product[\'tax_class_id\'], $this->config->get(\'config_tax\')), $this->session->data[\'currency\']),\n            ]]></search>\n            <add position=\"replace\"><![CDATA[\n                \'price\'      => $this->currency->format($this->tax->calculate($product[\'price\'], $product[\'tax_class_id\'], $this->config->get(\'config_tax\'))+$product[\'commission_amount\'], $this->session->data[\'currency\']),\n            ]]></add>\n        </operation>\n\n        <operation>\n            <search><![CDATA[\n                \'total\'      => $this->currency->format($this->tax->calculate($product[\'price\'], $product[\'tax_class_id\'], $this->config->get(\'config_tax\')) * $product[\'quantity\'], $this->session->data[\'currency\']),\n            ]]></search>\n            <add position=\"replace\"><![CDATA[\n                \'total\'      => $this->currency->format(($this->tax->calculate($product[\'price\'], $product[\'tax_class_id\'], $this->config->get(\'config_tax\'))+$product[\'commission_amount\']) * $product[\'quantity\'], $this->session->data[\'currency\']),\n            ]]></add>\n        </operation>\n    </file>\n\n    <file path=\"system/library/cart/cart.php\">\n\n      <operation>\n          <search><![CDATA[\n            public function getProducts() {\n          ]]></search>\n          <add position=\"before\"><![CDATA[\n            public function calculateCommission($product,$customer_id) {\n\n              if($product) {\n                $categories_array = $this->db->query(\"SELECT p2c.category_id,c.parent_id FROM \".DB_PREFIX.\"product_to_category p2c LEFT JOIN \".DB_PREFIX.\"category c ON (p2c.category_id = c.category_id) WHERE p2c.product_id = \'\".(int)$product[\'product_id\'].\"\' ORDER BY p2c.product_id \");\n\n                if($this->config->get(\'marketplace_commissionworkedon\'))\n                  $categories = $categories_array->rows;\n                else\n                  $categories = array($categories_array->row);\n\n                //get commission array for priority\n                $commission = $this->config->get(\'marketplace_boxcommission\');\n                $commission_amount = 0;\n                $commission_type = \'\';\n\n                if($commission)\n                  foreach($commission as $various) {\n                    switch ($various) {\n                      case \'category\': //get all parent category according to product and process\n                        if(isset($categories[0]) && $categories[0]){\n\n                          foreach($categories as $category) {\n                            if($category[\'parent_id\']==0){\n                              $category_commission = $query = $this->db->query(\"SELECT * FROM \".DB_PREFIX.\"customerpartner_commission_category WHERE category_id = \'\" . (int)$category[\'category_id\'] . \"\'\")->row;\n                              if($category_commission){\n                                $commission_amount += ( $category_commission[\'percentage\'] ? ($category_commission[\'percentage\']*$product[\'product_total\']/100) : 0 ) + $category_commission[\'fixed\'];\n                              }\n                            }\n                          }\n                          $commission_type = \'Category Based\';\n                          if($commission_amount)\n                            break;\n                        }\n\n                      case \'category_child\': //get all child category according to product and process\n                        if(isset($categories[0]) && $categories[0]){\n\n                          foreach($categories as $category){\n                            if($category[\'parent_id\'] > 0){\n                              $category_commission = $query = $this->db->query(\"SELECT * FROM \".DB_PREFIX.\"customerpartner_commission_category WHERE category_id = \'\" . (int)$category[\'category_id\'] . \"\'\")->row;\n                              if($category_commission){\n                                $commission_amount += ( $category_commission[\'percentage\'] ? ($category_commission[\'percentage\']*$product[\'product_total\']/100) : 0 ) + $category_commission[\'fixed\'];\n                              }\n                            }\n                          }\n\n                          $commission_type = \'Category Child Based\';\n                          if($commission_amount)\n                            break;\n                        }\n\n                      default: //just get all amount and process on that (precentage based)\n                        $customer_commission = $query = $this->db->query(\"SELECT commission FROM \".DB_PREFIX.\"customerpartner_to_customer WHERE customer_id = \'\" . (int)$customer_id . \"\'\")->row;\n                        if($customer_commission) {\n                          $commission_amount += $customer_commission[\'commission\'] ? ($customer_commission[\'commission\']*$product[\'product_total\']/100) : 0;\n                        }\n\n                        $commission_type = \'Partner Fixed Based\';\n                        break;\n                    }\n                    if($commission_amount)\n                      break;\n                  }\n                $return_array = array(\n                  \'commission\' => $commission_amount,\n                  \'customer\' => $product[\'product_total\']- $commission_amount,\n                  \'type\' => $commission_type,\n                );\n                return($return_array);\n              }\n            }\n          ]]></add>\n      </operation>\n\n      <operation>\n          <search><![CDATA[\n            $product_data[] = array(\n          ]]></search>\n          <add position=\"before\"><![CDATA[\n            $commission_amount = 0;\n            if ($this->config->get(\'marketplace_status\')) {\n               $check_seller_product = $this->db->query(\"SELECT * FROM \".DB_PREFIX.\"customerpartner_to_product WHERE product_id = \'\".$product_query->row[\'product_id\'].\"\'\")->row;\n               if ($check_seller_product) {\n                if ($this->config->get(\'marketplace_commission_tax\')) {\n                  $commission_array = $this->calculateCommission(array(\'product_id\'=> $product_query->row[\'product_id\'], \'product_total\'=> $this->tax->calculate(($price + $option_price), $product_query->row[\'tax_class_id\'], $this->config->get(\'config_tax\'))),$check_seller_product[\'customer_id\']);\n                }else{\n                  $commission_array = $this->calculateCommission(array(\'product_id\'=>$product_query->row[\'product_id\'], \'product_total\'=>($price + $option_price)),$check_seller_product[\'customer_id\']);\n                }\n\n                if($commission_array && isset($commission_array[\'commission\']) && $this->config->get(\'marketplace_commission_unit_price\')){\n                      $commission_amount = $commission_array[\'commission\'];\n                }\n              }\n            }\n          ]]></add>\n      </operation>\n\n      <operation>\n          <search><![CDATA[\n            \'price\'           => ($price + $option_price),\n          ]]></search>\n          <add position=\"after\"><![CDATA[\n            \'commission_amount\'  => $commission_amount,\n          ]]></add>\n      </operation>\n\n      <operation>\n          <search><![CDATA[\n            \'total\'           => ($price + $option_price) * $cart[\'quantity\'],\n          ]]></search>\n          <add position=\"replace\"><![CDATA[\n            \'total\'           => ($price + $option_price + $commission_amount) * $cart[\'quantity\'],\n          ]]></add>\n      </operation>\n\n        <operation>\n            <search><![CDATA[\n                $total += $this->tax->calculate($product[\'price\'], $product[\'tax_class_id\'], $this->config->get(\'config_tax\')) * $product[\'quantity\'];\n            ]]></search>\n            <add position=\"replace\"><![CDATA[\n                $total += ($this->tax->calculate($product[\'price\'], $product[\'tax_class_id\'], $this->config->get(\'config_tax\'))+$product[\'commission_amount\']) * $product[\'quantity\'];\n            ]]></add>\n        </operation>\n\n    </file>\n\n    <file path=\"admin/model/sale/order.php\">\n        <operation>\n            <search><![CDATA[\n                public function deleteOrder($order_id) {\n            ]]></search>\n        <add position=\"after\"><![CDATA[\n          $str = \'%order_id_:\' . $order_id . \'_\';\n\n          $this->db->query(\"DELETE FROM \".DB_PREFIX.\"customer_activity WHERE data LIKE \'\" . $str . \"\'\");\n\n          if($this->config->get(\'marketplace_status\')) {\n\n          $transaction = $this->db->query(\"SELECT * FROM \" . DB_PREFIX . \"customerpartner_to_transaction\")->rows;\n\n          if ($transaction) {\n            foreach ($transaction as $key => $value) {\n\n              $order_ids = explode(\',\',$value[\'order_id\']);\n\n              if ($order_ids && in_array($order_id,$order_ids)) {\n\n                $paid_amount = $this->db->query(\"SELECT SUM(customer) AS paid_amount FROM \" . DB_PREFIX . \"customerpartner_to_order WHERE order_id = \" . (int)$order_id . \" AND customer_id = \". $value[\'customer_id\'])->row;\n\n                if (isset($paid_amount[\'paid_amount\']) && $paid_amount[\'paid_amount\']) {\n                  if ($paid_amount[\'paid_amount\'] == $value[\'amount\']) {\n                    $this->db->query(\"DELETE FROM \".DB_PREFIX.\"customerpartner_to_transaction WHERE id = \'\".(int)$value[\'id\'].\"\' \");\n                  } else {\n                    $amount = $value[\'amount\'] - $paid_amount[\'paid_amount\'];\n\n                    $text = substr($value[\'text\'],0,1) . $amount;\n\n                    $this->db->query(\"UPDATE \".DB_PREFIX.\"customerpartner_to_transaction SET amount = \" . $amount . \", text = \'\" . $text . \"\' WHERE id = \'\".(int)$value[\'id\'].\"\' \");\n                  }\n                }\n              }\n            }\n          }\n\n            $this->db->query(\"DELETE FROM \".DB_PREFIX.\"mp_customer_activity WHERE data LIKE \'\" . $str . \"\'\");\n\n            $this->db->query(\"DELETE FROM \".DB_PREFIX.\"customerpartner_to_order WHERE order_id = \'\".(int)$order_id.\"\' \");\n               $this->db->query(\"DELETE FROM \".DB_PREFIX.\"customerpartner_to_order_status WHERE order_id = \'\".(int)$order_id.\"\' \");\n               $this->db->query(\"DELETE FROM \".DB_PREFIX.\"customerpartner_sold_tracking WHERE order_id = \'\".(int)$order_id.\"\' \");\n          }\n        ]]></add>\n        </operation>\n    </file>\n    <file path=\"admin/view/template/catalog/product_form.tpl\">\n        <operation>\n            <search><![CDATA[\n              $(\'input[name=\\\'category\\\']\').val(\'\');\n            ]]></search>\n            <add position=\"before\"><![CDATA[\n              addCategoryAttribute(item);\n            ]]></add>\n        </operation>\n\n        <operation>\n            <search><![CDATA[\n                function addAttribute() {\n            ]]></search>\n            <add position=\"before\"><![CDATA[\n              function addCategoryAttribute(item)  {\n\n                if (item.value) {\n                  $.ajax({\n                    url: \'index.php?route=customerpartner/categorymapping/categoryAttribute&token=<?php echo $token; ?>&category_id=\' + item.value,\n                    dataType: \'json\',\n                    success: function(json) {\n                      $.each(json, function() {\n                          addAttribute();\n                          var category_attribute_row = attribute_row -1;\n                          $(\'input[name=\\\'product_attribute[\' + category_attribute_row + \'][name]\\\']\').val(this.name);\n                          $(\'input[name=\\\'product_attribute[\' + category_attribute_row + \'][attribute_id]\\\']\').val(this.attribute_id);\n                      });\n                    }\n                  });\n                }\n              }\n            ]]></add>\n        </operation>\n    </file>\n    <file path=\"catalog/controller/checkout/shipping_method.php\">\n      <operation>\n        <search><![CDATA[\n          $this->response->setOutput($this->load->view(\'checkout/shipping_method\', $data));\n        ]]></search>\n        <add position=\"before\"><![CDATA[\n          if (isset($data[\'shipping_methods\']) && isset($data[\'shipping_methods\'][\'wk_custom_shipping\']) && isset($this->session->data[\'seller_custom_shipping\']) && $this->session->data[\'seller_custom_shipping\'] && $this->config->get(\'wk_custom_shipping_seller_status\')) {\n            $data[\'seller_custom_shipping\'] = $this->session->data[\'seller_custom_shipping\'];\n            $data[\'text_seller_name\'] = $this->language->get(\'text_seller_name\');\n            $data[\'text_seller_shipping\'] = $this->language->get(\'text_seller_shipping\');\n          }\n        ]]></add>\n        </operation>\n    </file>\n\n    <file path=\"catalog/language/*/checkout/checkout.php\">\n      <operation>\n        <search><![CDATA[\n          // Text\n        ]]></search>\n        <add position=\"after\"><![CDATA[\n          $_[\'text_seller_name\']                      = \'Seller Name\';\n          $_[\'text_seller_shipping\']                      = \'Shipping Applied\';\n        ]]></add>\n        </operation>\n    </file>\n\n    <file path=\"catalog/view/theme/*/template/checkout/shipping_method.tpl\">\n      <operation>\n        <search><![CDATA[\n          <?php echo $quote[\'title\']; ?> - <?php echo $quote[\'text\']; ?></label>\n        ]]></search>\n        <add position=\"after\" offset=\"1\"><![CDATA[\n          <?php if($quote[\'code\'] == \'wk_custom_shipping.wk_custom_shipping\'){ ?>\n            <?php if(isset($seller_custom_shipping) && $seller_custom_shipping){ ?>\n              <div class=\"table-responsive\" style=\"width:50%;\">\n                <table class=\"table table-stripped table-bordered table-hover\">\n                  <thead>\n                    <tr>\n                      <th class=\"text-left\"><?php echo $text_seller_name; ?></th>\n                      <th class=\"text-right\"><?php echo $text_seller_shipping; ?></th>\n                    </tr>\n                  </thead>\n                  <tbody>\n                  <?php foreach ($seller_custom_shipping as $key => $value) { ?>\n                    <tr>\n                        <td class=\"text-left\"><?php echo $key; ?></td>\n                        <td class=\"text-right\"><?php echo $value; ?></td>\n                    </tr>\n                  <?php } ?>\n                  </tbody>\n                </table>\n              </div>\n            <?php } ?>\n          <?php } ?>\n        ]]></add>\n      </operation>\n    </file>\n    <file path=\"catalog/model/journal2/checkout.php\">\n        <operation>\n            <search><![CDATA[\n              if ($product[\'image\']) {\n            ]]></search>\n        <add position=\"before\"><![CDATA[\n          if(isset($product[\'commission_amount\']))\n            $product[\'price\'] = $product[\'price\'] + $product[\'commission_amount\'];\n        ]]></add>\n        </operation>\n\n        <operation>\n            <search><![CDATA[\n              $this->order_data[\'products\'][] = array(\n            ]]></search>\n        <add position=\"before\"><![CDATA[\n          if(isset($product[\'commission_amount\']))\n            $product[\'price\'] = $product[\'price\'] + $product[\'commission_amount\'];\n        ]]></add>\n        </operation>\n    </file>\n</modification>\n',1,'2017-08-23 23:38:28');
/*!40000 ALTER TABLE `lk_modification` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_module`
--

DROP TABLE IF EXISTS `lk_module`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_module` (
  `module_id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(64) NOT NULL,
  `code` varchar(32) NOT NULL,
  `setting` text NOT NULL,
  PRIMARY KEY (`module_id`)
) ENGINE=MyISAM AUTO_INCREMENT=32 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_module`
--

LOCK TABLES `lk_module` WRITE;
/*!40000 ALTER TABLE `lk_module` DISABLE KEYS */;
INSERT INTO `lk_module` VALUES (30,'Category','banner','{\"name\":\"Category\",\"banner_id\":\"6\",\"width\":\"182\",\"height\":\"182\",\"status\":\"1\"}'),(29,'Home Page','carousel','{\"name\":\"Home Page\",\"banner_id\":\"8\",\"width\":\"130\",\"height\":\"100\",\"status\":\"1\"}'),(28,'Home Page','featured','{\"name\":\"Home Page\",\"product\":[\"43\",\"40\",\"42\",\"30\"],\"limit\":\"4\",\"width\":\"200\",\"height\":\"200\",\"status\":\"1\"}'),(27,'Home Page','slideshow','{\"name\":\"Home Page\",\"banner_id\":\"7\",\"width\":\"1140\",\"height\":\"380\",\"status\":\"1\"}'),(31,'Banner 1','banner','{\"name\":\"Banner 1\",\"banner_id\":\"6\",\"width\":\"182\",\"height\":\"182\",\"status\":\"1\"}');
/*!40000 ALTER TABLE `lk_module` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_mp_customer_activity`
--

DROP TABLE IF EXISTS `lk_mp_customer_activity`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_mp_customer_activity` (
  `customer_activity_id` int(11) NOT NULL AUTO_INCREMENT,
  `id` int(11) NOT NULL,
  `key` varchar(64) NOT NULL,
  `data` text NOT NULL,
  `ip` varchar(40) NOT NULL,
  `date_added` datetime NOT NULL,
  PRIMARY KEY (`customer_activity_id`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_mp_customer_activity`
--

LOCK TABLES `lk_mp_customer_activity` WRITE;
/*!40000 ALTER TABLE `lk_mp_customer_activity` DISABLE KEYS */;
INSERT INTO `lk_mp_customer_activity` VALUES (1,2,'order_status','{\"id\":\"2\",\"status\":\"3\",\"order_id\":\"2\"}','203.122.41.218','2017-08-24 00:27:46'),(2,2,'order_status','{\"id\":\"2\",\"status\":\"3\",\"order_id\":\"2\"}','203.122.41.218','2017-08-24 01:11:49'),(3,53,'product_approve','{\"id\":\"53\",\"product_id\":\"53\",\"seller_id\":\"3\",\"product_name\":\"JAM TANGAN DW\"}','139.193.106.192','2017-10-10 07:57:41');
/*!40000 ALTER TABLE `lk_mp_customer_activity` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_option`
--

DROP TABLE IF EXISTS `lk_option`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_option` (
  `option_id` int(11) NOT NULL AUTO_INCREMENT,
  `type` varchar(32) NOT NULL,
  `sort_order` int(3) NOT NULL,
  PRIMARY KEY (`option_id`)
) ENGINE=MyISAM AUTO_INCREMENT=13 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_option`
--

LOCK TABLES `lk_option` WRITE;
/*!40000 ALTER TABLE `lk_option` DISABLE KEYS */;
INSERT INTO `lk_option` VALUES (1,'radio',1),(2,'checkbox',2),(4,'text',3),(5,'select',4),(6,'textarea',5),(7,'file',6),(8,'date',7),(9,'time',8),(10,'datetime',9),(11,'select',10),(12,'date',11);
/*!40000 ALTER TABLE `lk_option` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_option_description`
--

DROP TABLE IF EXISTS `lk_option_description`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_option_description` (
  `option_id` int(11) NOT NULL,
  `language_id` int(11) NOT NULL,
  `name` varchar(128) NOT NULL,
  PRIMARY KEY (`option_id`,`language_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_option_description`
--

LOCK TABLES `lk_option_description` WRITE;
/*!40000 ALTER TABLE `lk_option_description` DISABLE KEYS */;
INSERT INTO `lk_option_description` VALUES (1,1,'Radio'),(2,1,'Checkbox'),(4,1,'Text'),(6,1,'Textarea'),(8,1,'Date'),(7,1,'File'),(5,1,'Select'),(9,1,'Time'),(10,1,'Date &amp; Time'),(12,1,'Delivery Date'),(11,1,'Size');
/*!40000 ALTER TABLE `lk_option_description` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_option_value`
--

DROP TABLE IF EXISTS `lk_option_value`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_option_value` (
  `option_value_id` int(11) NOT NULL AUTO_INCREMENT,
  `option_id` int(11) NOT NULL,
  `image` varchar(255) NOT NULL,
  `sort_order` int(3) NOT NULL,
  PRIMARY KEY (`option_value_id`)
) ENGINE=MyISAM AUTO_INCREMENT=49 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_option_value`
--

LOCK TABLES `lk_option_value` WRITE;
/*!40000 ALTER TABLE `lk_option_value` DISABLE KEYS */;
INSERT INTO `lk_option_value` VALUES (43,1,'',3),(32,1,'',1),(45,2,'',4),(44,2,'',3),(42,5,'',4),(41,5,'',3),(39,5,'',1),(40,5,'',2),(31,1,'',2),(23,2,'',1),(24,2,'',2),(46,11,'',1),(47,11,'',2),(48,11,'',3);
/*!40000 ALTER TABLE `lk_option_value` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_option_value_description`
--

DROP TABLE IF EXISTS `lk_option_value_description`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_option_value_description` (
  `option_value_id` int(11) NOT NULL,
  `language_id` int(11) NOT NULL,
  `option_id` int(11) NOT NULL,
  `name` varchar(128) NOT NULL,
  PRIMARY KEY (`option_value_id`,`language_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_option_value_description`
--

LOCK TABLES `lk_option_value_description` WRITE;
/*!40000 ALTER TABLE `lk_option_value_description` DISABLE KEYS */;
INSERT INTO `lk_option_value_description` VALUES (43,1,1,'Large'),(32,1,1,'Small'),(45,1,2,'Checkbox 4'),(44,1,2,'Checkbox 3'),(31,1,1,'Medium'),(42,1,5,'Yellow'),(41,1,5,'Green'),(39,1,5,'Red'),(40,1,5,'Blue'),(23,1,2,'Checkbox 1'),(24,1,2,'Checkbox 2'),(48,1,11,'Large'),(47,1,11,'Medium'),(46,1,11,'Small');
/*!40000 ALTER TABLE `lk_option_value_description` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_order`
--

DROP TABLE IF EXISTS `lk_order`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_order` (
  `order_id` int(11) NOT NULL AUTO_INCREMENT,
  `invoice_no` int(11) NOT NULL DEFAULT 0,
  `invoice_prefix` varchar(26) NOT NULL,
  `store_id` int(11) NOT NULL DEFAULT 0,
  `store_name` varchar(64) NOT NULL,
  `store_url` varchar(255) NOT NULL,
  `customer_id` int(11) NOT NULL DEFAULT 0,
  `customer_group_id` int(11) NOT NULL DEFAULT 0,
  `firstname` varchar(32) NOT NULL,
  `lastname` varchar(32) NOT NULL,
  `email` varchar(96) NOT NULL,
  `telephone` varchar(32) NOT NULL,
  `fax` varchar(32) NOT NULL,
  `custom_field` text NOT NULL,
  `payment_firstname` varchar(32) NOT NULL,
  `payment_lastname` varchar(32) NOT NULL,
  `payment_company` varchar(60) NOT NULL,
  `payment_address_1` varchar(128) NOT NULL,
  `payment_address_2` varchar(128) NOT NULL,
  `payment_city` varchar(128) NOT NULL,
  `payment_postcode` varchar(10) NOT NULL,
  `payment_country` varchar(128) NOT NULL,
  `payment_country_id` int(11) NOT NULL,
  `payment_zone` varchar(128) NOT NULL,
  `payment_zone_id` int(11) NOT NULL,
  `payment_address_format` text NOT NULL,
  `payment_custom_field` text NOT NULL,
  `payment_method` varchar(128) NOT NULL,
  `payment_code` varchar(128) NOT NULL,
  `shipping_firstname` varchar(32) NOT NULL,
  `shipping_lastname` varchar(32) NOT NULL,
  `shipping_company` varchar(40) NOT NULL,
  `shipping_address_1` varchar(128) NOT NULL,
  `shipping_address_2` varchar(128) NOT NULL,
  `shipping_city` varchar(128) NOT NULL,
  `shipping_postcode` varchar(10) NOT NULL,
  `shipping_country` varchar(128) NOT NULL,
  `shipping_country_id` int(11) NOT NULL,
  `shipping_zone` varchar(128) NOT NULL,
  `shipping_zone_id` int(11) NOT NULL,
  `shipping_address_format` text NOT NULL,
  `shipping_custom_field` text NOT NULL,
  `shipping_method` varchar(128) NOT NULL,
  `shipping_code` varchar(128) NOT NULL,
  `comment` text NOT NULL,
  `total` decimal(15,4) NOT NULL DEFAULT 0.0000,
  `order_status_id` int(11) NOT NULL DEFAULT 0,
  `affiliate_id` int(11) NOT NULL,
  `commission` decimal(15,4) NOT NULL,
  `marketing_id` int(11) NOT NULL,
  `tracking` varchar(64) NOT NULL,
  `language_id` int(11) NOT NULL,
  `currency_id` int(11) NOT NULL,
  `currency_code` varchar(3) NOT NULL,
  `currency_value` decimal(15,8) NOT NULL DEFAULT 1.00000000,
  `ip` varchar(40) NOT NULL,
  `forwarded_ip` varchar(40) NOT NULL,
  `user_agent` varchar(255) NOT NULL,
  `accept_language` varchar(255) NOT NULL,
  `date_added` datetime NOT NULL,
  `date_modified` datetime NOT NULL,
  PRIMARY KEY (`order_id`)
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_order`
--

LOCK TABLES `lk_order` WRITE;
/*!40000 ALTER TABLE `lk_order` DISABLE KEYS */;
INSERT INTO `lk_order` VALUES (1,0,'INV-2013-00',0,'Your Store','http://sandbox.futuremediatrix.com/lokalo/',0,1,'Test','Test','test@test.com','924538612','546255','[]','Test','Test','Webkul','Noida, Noida','Noida','Noida','110092','India',99,'Jammu and Kashmir',1488,'','[]','Cash On Delivery','cod','Test','Test','Webkul','Noida, Noida','Noida','Noida','110092','India',99,'Jammu and Kashmir',1488,'','[]','Flat Shipping Rate','flat.flat','',1025.0000,1,0,0.0000,0,'',1,2,'USD',1.00000000,'203.122.41.218','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36','en-GB,en-US;q=0.8,en;q=0.6','2017-08-24 00:19:19','2017-08-24 00:20:20'),(2,0,'INV-2013-00',0,'Your Store','http://sandbox.futuremediatrix.com/lokalo/',0,1,'Test','Test','testtest@test.com','9515951595','456789','[]','Test','Test','Webkul','Noida, Noida','Noida','Noida','110092','India',99,'Sikkim',1502,'','[]','Cash On Delivery','cod','Test','Test','Webkul','Noida, Noida','Noida','Noida','110092','India',99,'Sikkim',1502,'','[]','Flat Shipping Rate','flat.flat','',3371.0000,3,0,0.0000,0,'',1,2,'USD',1.00000000,'203.122.41.218','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36','en-GB,en-US;q=0.8,en;q=0.6','2017-08-24 00:21:38','2017-08-24 01:11:49'),(3,0,'INV-2013-00',0,'Your Store','http://sandbox.futuremediatrix.com/lokalo/',0,1,'','','','','','\"\"','','','','','','','','',222,'',3563,'','[]','','','','','','','','','','',222,'',3563,'','[]','','','',602.0000,0,0,0.0000,0,'',1,2,'USD',1.00000000,'202.62.17.193','','Mozilla/5.0 (Linux; Android 4.4.2; GT-N7100 Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.107 Mobile Safari/537.36','id-ID,id;q=0.8,en-US;q=0.6,en;q=0.4','2017-08-24 06:22:58','2017-08-24 06:23:04'),(4,0,'INV-2013-00',0,'Your Store','http://sandbox.futuremediatrix.com/lokalo/',3,1,'Henrico','Wijaya','h3nrico_wjy@yahoo.co.id','085228241628','','null','Henrico','Wijaya','','Jalan Dr Susilo IIE nomor 102A','','Jakarta','11450','Indonesia',100,'Jakarta',1513,'','[]','','','Henrico','Wijaya','','Jalan Dr Susilo IIE nomor 102A','','Jakarta','11450','Indonesia',100,'Jakarta',1513,'','null','','','no',500.0000,0,0,0.0000,0,'',1,2,'USD',1.00000000,'111.94.228.159','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36','en-US,en;q=0.8','2017-09-22 10:38:24','2017-09-22 10:39:05');
/*!40000 ALTER TABLE `lk_order` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_order_custom_field`
--

DROP TABLE IF EXISTS `lk_order_custom_field`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_order_custom_field` (
  `order_custom_field_id` int(11) NOT NULL AUTO_INCREMENT,
  `order_id` int(11) NOT NULL,
  `custom_field_id` int(11) NOT NULL,
  `custom_field_value_id` int(11) NOT NULL,
  `name` varchar(255) NOT NULL,
  `value` text NOT NULL,
  `type` varchar(32) NOT NULL,
  `location` varchar(16) NOT NULL,
  PRIMARY KEY (`order_custom_field_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_order_custom_field`
--

LOCK TABLES `lk_order_custom_field` WRITE;
/*!40000 ALTER TABLE `lk_order_custom_field` DISABLE KEYS */;
/*!40000 ALTER TABLE `lk_order_custom_field` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_order_history`
--

DROP TABLE IF EXISTS `lk_order_history`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_order_history` (
  `order_history_id` int(11) NOT NULL AUTO_INCREMENT,
  `order_id` int(11) NOT NULL,
  `order_status_id` int(11) NOT NULL,
  `notify` tinyint(1) NOT NULL DEFAULT 0,
  `comment` text NOT NULL,
  `date_added` datetime NOT NULL,
  PRIMARY KEY (`order_history_id`)
) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_order_history`
--

LOCK TABLES `lk_order_history` WRITE;
/*!40000 ALTER TABLE `lk_order_history` DISABLE KEYS */;
INSERT INTO `lk_order_history` VALUES (1,1,1,0,'','2017-08-24 00:20:20'),(2,2,1,0,'','2017-08-24 00:26:07'),(3,2,3,1,'Product 1 status has been changed to Shipped','2017-08-24 00:27:46'),(4,2,3,1,'Product 1 status has been changed to Shipped','2017-08-24 01:11:49'),(5,2,3,1,'Product - Product 1<br/>Seller Tracking No - 78945<br/>','2017-08-24 01:12:42');
/*!40000 ALTER TABLE `lk_order_history` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_order_option`
--

DROP TABLE IF EXISTS `lk_order_option`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_order_option` (
  `order_option_id` int(11) NOT NULL AUTO_INCREMENT,
  `order_id` int(11) NOT NULL,
  `order_product_id` int(11) NOT NULL,
  `product_option_id` int(11) NOT NULL,
  `product_option_value_id` int(11) NOT NULL DEFAULT 0,
  `name` varchar(255) NOT NULL,
  `value` text NOT NULL,
  `type` varchar(32) NOT NULL,
  PRIMARY KEY (`order_option_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_order_option`
--

LOCK TABLES `lk_order_option` WRITE;
/*!40000 ALTER TABLE `lk_order_option` DISABLE KEYS */;
/*!40000 ALTER TABLE `lk_order_option` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_order_product`
--

DROP TABLE IF EXISTS `lk_order_product`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_order_product` (
  `order_product_id` int(11) NOT NULL AUTO_INCREMENT,
  `order_id` int(11) NOT NULL,
  `product_id` int(11) NOT NULL,
  `name` varchar(255) NOT NULL,
  `model` varchar(64) NOT NULL,
  `quantity` int(4) NOT NULL,
  `price` decimal(15,4) NOT NULL DEFAULT 0.0000,
  `total` decimal(15,4) NOT NULL DEFAULT 0.0000,
  `tax` decimal(15,4) NOT NULL DEFAULT 0.0000,
  `reward` int(8) NOT NULL,
  PRIMARY KEY (`order_product_id`)
) ENGINE=MyISAM AUTO_INCREMENT=218 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_order_product`
--

LOCK TABLES `lk_order_product` WRITE;
/*!40000 ALTER TABLE `lk_order_product` DISABLE KEYS */;
INSERT INTO `lk_order_product` VALUES (60,1,50,'Product 1','Product 1',1,1020.0000,1020.0000,0.0000,0),(171,2,50,'Product 1','Product 1',3,1122.0000,3366.0000,0.0000,0),(186,3,43,'MacBook','Product 16',1,500.0000,500.0000,102.0000,600),(217,4,43,'MacBook','Product 16',1,500.0000,500.0000,0.0000,600);
/*!40000 ALTER TABLE `lk_order_product` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_order_recurring`
--

DROP TABLE IF EXISTS `lk_order_recurring`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_order_recurring` (
  `order_recurring_id` int(11) NOT NULL AUTO_INCREMENT,
  `order_id` int(11) NOT NULL,
  `reference` varchar(255) NOT NULL,
  `product_id` int(11) NOT NULL,
  `product_name` varchar(255) NOT NULL,
  `product_quantity` int(11) NOT NULL,
  `recurring_id` int(11) NOT NULL,
  `recurring_name` varchar(255) NOT NULL,
  `recurring_description` varchar(255) NOT NULL,
  `recurring_frequency` varchar(25) NOT NULL,
  `recurring_cycle` smallint(6) NOT NULL,
  `recurring_duration` smallint(6) NOT NULL,
  `recurring_price` decimal(10,4) NOT NULL,
  `trial` tinyint(1) NOT NULL,
  `trial_frequency` varchar(25) NOT NULL,
  `trial_cycle` smallint(6) NOT NULL,
  `trial_duration` smallint(6) NOT NULL,
  `trial_price` decimal(10,4) NOT NULL,
  `status` tinyint(4) NOT NULL,
  `date_added` datetime NOT NULL,
  PRIMARY KEY (`order_recurring_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_order_recurring`
--

LOCK TABLES `lk_order_recurring` WRITE;
/*!40000 ALTER TABLE `lk_order_recurring` DISABLE KEYS */;
/*!40000 ALTER TABLE `lk_order_recurring` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_order_recurring_transaction`
--

DROP TABLE IF EXISTS `lk_order_recurring_transaction`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_order_recurring_transaction` (
  `order_recurring_transaction_id` int(11) NOT NULL AUTO_INCREMENT,
  `order_recurring_id` int(11) NOT NULL,
  `reference` varchar(255) NOT NULL,
  `type` varchar(255) NOT NULL,
  `amount` decimal(10,4) NOT NULL,
  `date_added` datetime NOT NULL,
  PRIMARY KEY (`order_recurring_transaction_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_order_recurring_transaction`
--

LOCK TABLES `lk_order_recurring_transaction` WRITE;
/*!40000 ALTER TABLE `lk_order_recurring_transaction` DISABLE KEYS */;
/*!40000 ALTER TABLE `lk_order_recurring_transaction` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_order_status`
--

DROP TABLE IF EXISTS `lk_order_status`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_order_status` (
  `order_status_id` int(11) NOT NULL AUTO_INCREMENT,
  `language_id` int(11) NOT NULL,
  `name` varchar(32) NOT NULL,
  PRIMARY KEY (`order_status_id`,`language_id`)
) ENGINE=MyISAM AUTO_INCREMENT=17 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_order_status`
--

LOCK TABLES `lk_order_status` WRITE;
/*!40000 ALTER TABLE `lk_order_status` DISABLE KEYS */;
INSERT INTO `lk_order_status` VALUES (2,1,'Processing'),(3,1,'Shipped'),(7,1,'Canceled'),(5,1,'Complete'),(8,1,'Denied'),(9,1,'Canceled Reversal'),(10,1,'Failed'),(11,1,'Refunded'),(12,1,'Reversed'),(13,1,'Chargeback'),(1,1,'Pending'),(16,1,'Voided'),(15,1,'Processed'),(14,1,'Expired');
/*!40000 ALTER TABLE `lk_order_status` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_order_total`
--

DROP TABLE IF EXISTS `lk_order_total`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_order_total` (
  `order_total_id` int(10) NOT NULL AUTO_INCREMENT,
  `order_id` int(11) NOT NULL,
  `code` varchar(32) NOT NULL,
  `title` varchar(255) NOT NULL,
  `value` decimal(15,4) NOT NULL DEFAULT 0.0000,
  `sort_order` int(3) NOT NULL,
  PRIMARY KEY (`order_total_id`),
  KEY `order_id` (`order_id`)
) ENGINE=MyISAM AUTO_INCREMENT=656 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_order_total`
--

LOCK TABLES `lk_order_total` WRITE;
/*!40000 ALTER TABLE `lk_order_total` DISABLE KEYS */;
INSERT INTO `lk_order_total` VALUES (511,2,'total','Total',3371.0000,9),(510,2,'shipping','Flat Shipping Rate',5.0000,3),(202,1,'total','Total',1025.0000,9),(201,1,'shipping','Flat Shipping Rate',5.0000,3),(200,1,'sub_total','Sub-Total',1020.0000,1),(571,3,'total','Total',602.0000,9),(509,2,'sub_total','Sub-Total',3366.0000,1),(570,3,'tax','VAT (20%)',100.0000,5),(569,3,'tax','Eco Tax (-2.00)',2.0000,5),(568,3,'sub_total','Sub-Total',500.0000,1),(655,4,'total','Total',500.0000,9),(654,4,'sub_total','Sub-Total',500.0000,1);
/*!40000 ALTER TABLE `lk_order_total` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_order_voucher`
--

DROP TABLE IF EXISTS `lk_order_voucher`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_order_voucher` (
  `order_voucher_id` int(11) NOT NULL AUTO_INCREMENT,
  `order_id` int(11) NOT NULL,
  `voucher_id` int(11) NOT NULL,
  `description` varchar(255) NOT NULL,
  `code` varchar(10) NOT NULL,
  `from_name` varchar(64) NOT NULL,
  `from_email` varchar(96) NOT NULL,
  `to_name` varchar(64) NOT NULL,
  `to_email` varchar(96) NOT NULL,
  `voucher_theme_id` int(11) NOT NULL,
  `message` text NOT NULL,
  `amount` decimal(15,4) NOT NULL,
  PRIMARY KEY (`order_voucher_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_order_voucher`
--

LOCK TABLES `lk_order_voucher` WRITE;
/*!40000 ALTER TABLE `lk_order_voucher` DISABLE KEYS */;
/*!40000 ALTER TABLE `lk_order_voucher` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_product`
--

DROP TABLE IF EXISTS `lk_product`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_product` (
  `product_id` int(11) NOT NULL AUTO_INCREMENT,
  `model` varchar(64) NOT NULL,
  `sku` varchar(64) NOT NULL,
  `upc` varchar(12) NOT NULL,
  `ean` varchar(14) NOT NULL,
  `jan` varchar(13) NOT NULL,
  `isbn` varchar(17) NOT NULL,
  `mpn` varchar(64) NOT NULL,
  `location` varchar(128) NOT NULL,
  `quantity` int(4) NOT NULL DEFAULT 0,
  `stock_status_id` int(11) NOT NULL,
  `image` varchar(255) DEFAULT NULL,
  `manufacturer_id` int(11) NOT NULL,
  `shipping` tinyint(1) NOT NULL DEFAULT 1,
  `price` decimal(15,4) NOT NULL DEFAULT 0.0000,
  `points` int(8) NOT NULL DEFAULT 0,
  `tax_class_id` int(11) NOT NULL,
  `date_available` date NOT NULL DEFAULT '0000-00-00',
  `weight` decimal(15,8) NOT NULL DEFAULT 0.00000000,
  `weight_class_id` int(11) NOT NULL DEFAULT 0,
  `length` decimal(15,8) NOT NULL DEFAULT 0.00000000,
  `width` decimal(15,8) NOT NULL DEFAULT 0.00000000,
  `height` decimal(15,8) NOT NULL DEFAULT 0.00000000,
  `length_class_id` int(11) NOT NULL DEFAULT 0,
  `subtract` tinyint(1) NOT NULL DEFAULT 1,
  `minimum` int(11) NOT NULL DEFAULT 1,
  `sort_order` int(11) NOT NULL DEFAULT 0,
  `status` tinyint(1) NOT NULL DEFAULT 0,
  `viewed` int(5) NOT NULL DEFAULT 0,
  `date_added` datetime NOT NULL,
  `date_modified` datetime NOT NULL,
  PRIMARY KEY (`product_id`)
) ENGINE=MyISAM AUTO_INCREMENT=54 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_product`
--

LOCK TABLES `lk_product` WRITE;
/*!40000 ALTER TABLE `lk_product` DISABLE KEYS */;
INSERT INTO `lk_product` VALUES (28,'Product 1','','','','','','','',939,7,'catalog/demo/htc_touch_hd_1.jpg',5,1,100.0000,200,9,'2009-02-03',146.40000000,2,0.00000000,0.00000000,0.00000000,1,1,1,0,1,207,'2009-02-03 16:06:50','2011-09-30 01:05:39'),(29,'Product 2','','','','','','','',999,6,'catalog/demo/palm_treo_pro_1.jpg',6,1,279.9900,0,9,'2009-02-03',133.00000000,2,0.00000000,0.00000000,0.00000000,3,1,1,0,1,639,'2009-02-03 16:42:17','2011-09-30 01:06:08'),(30,'Product 3','','','','','','','',7,6,'catalog/demo/canon_eos_5d_1.jpg',9,1,100.0000,0,9,'2009-02-03',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,0,1,245,'2009-02-03 16:59:00','2011-09-30 01:05:23'),(31,'Product 4','','','','','','','',1000,6,'catalog/demo/nikon_d300_1.jpg',0,1,80.0000,0,9,'2009-02-03',0.00000000,1,0.00000000,0.00000000,0.00000000,3,1,1,0,1,139,'2009-02-03 17:00:10','2011-09-30 01:06:00'),(32,'Product 5','','','','','','','',999,6,'catalog/demo/ipod_touch_1.jpg',8,1,100.0000,0,9,'2009-02-03',5.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,0,1,183,'2009-02-03 17:07:26','2011-09-30 01:07:22'),(33,'Product 6','','','','','','','',1000,6,'catalog/demo/samsung_syncmaster_941bw.jpg',0,1,200.0000,0,9,'2009-02-03',5.00000000,1,0.00000000,0.00000000,0.00000000,2,1,1,0,1,294,'2009-02-03 17:08:31','2011-09-30 01:06:29'),(34,'Product 7','','','','','','','',1000,6,'catalog/demo/ipod_shuffle_1.jpg',8,1,100.0000,0,9,'2009-02-03',5.00000000,1,0.00000000,0.00000000,0.00000000,2,1,1,0,1,839,'2009-02-03 18:07:54','2011-09-30 01:07:17'),(35,'Product 8','','','','','','','',1000,5,'',0,0,100.0000,0,9,'2009-02-03',5.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,0,1,110,'2009-02-03 18:08:31','2011-09-30 01:06:17'),(36,'Product 9','','','','','','','',994,6,'catalog/demo/ipod_nano_1.jpg',8,0,100.0000,100,9,'2009-02-03',5.00000000,1,0.00000000,0.00000000,0.00000000,2,1,1,0,1,204,'2009-02-03 18:09:19','2011-09-30 01:07:12'),(40,'product 11','','','','','','','',970,5,'catalog/demo/iphone_1.jpg',8,1,101.0000,0,9,'2009-02-03',10.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,0,1,276,'2009-02-03 21:07:12','2011-09-30 01:06:53'),(41,'Product 14','','','','','','','',977,5,'catalog/demo/imac_1.jpg',8,1,100.0000,0,9,'2009-02-03',5.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,0,1,180,'2009-02-03 21:07:26','2017-10-09 22:06:00'),(42,'Product 15','','','','','','','',990,5,'catalog/demo/apple_cinema_30.jpg',8,1,100.0000,400,9,'2009-02-04',12.50000000,1,1.00000000,2.00000000,3.00000000,1,1,2,0,1,384,'2009-02-03 21:07:37','2011-09-30 00:46:19'),(43,'Product 16','','','','','','','',929,5,'catalog/demo/macbook_1.jpg',8,0,500.0000,0,9,'2009-02-03',0.00000000,1,0.00000000,0.00000000,0.00000000,2,1,1,0,1,255,'2009-02-03 21:07:49','2011-09-30 01:05:46'),(44,'Product 17','','','','','','','',1000,5,'catalog/demo/macbook_air_1.jpg',8,1,1000.0000,0,9,'2009-02-03',0.00000000,1,0.00000000,0.00000000,0.00000000,2,1,1,0,1,201,'2009-02-03 21:08:00','2011-09-30 01:05:53'),(45,'Product 18','','','','','','','',998,5,'catalog/demo/macbook_pro_1.jpg',8,1,2000.0000,0,100,'2009-02-03',0.00000000,1,0.00000000,0.00000000,0.00000000,2,1,1,0,1,147,'2009-02-03 21:08:17','2011-09-15 22:22:01'),(46,'Product 19','','','','','','','',1000,5,'catalog/demo/sony_vaio_1.jpg',10,1,1000.0000,0,9,'2009-02-03',0.00000000,1,0.00000000,0.00000000,0.00000000,2,1,1,0,1,261,'2009-02-03 21:08:29','2011-09-30 01:06:39'),(47,'Product 21','','','','','','','',1000,5,'catalog/demo/hp_1.jpg',7,1,100.0000,400,9,'2009-02-03',1.00000000,1,0.00000000,0.00000000,0.00000000,1,0,1,0,1,181,'2009-02-03 21:08:40','2011-09-30 01:05:28'),(48,'product 20','test 1','','','','','','test 2',995,5,'catalog/demo/ipod_classic_1.jpg',8,1,100.0000,0,9,'2009-02-08',1.00000000,1,0.00000000,0.00000000,0.00000000,2,1,1,0,1,239,'2009-02-08 17:21:51','2011-09-30 01:07:06'),(49,'SAM1','','','','','','','',0,8,'catalog/demo/samsung_tab_1.jpg',0,1,199.9900,0,9,'2011-04-25',0.00000000,1,0.00000000,0.00000000,0.00000000,1,1,1,1,1,106,'2011-04-26 08:57:34','2011-09-30 01:06:23'),(50,'Product 1','','','','','','','',96,0,NULL,9,1,1020.0000,0,0,'0000-00-00',0.00000000,0,0.00000000,0.00000000,0.00000000,0,1,1,0,1,512,'2017-08-23 23:44:09','2017-08-24 00:18:50'),(51,'Product2','','','','','','','',0,0,NULL,0,1,1246.0000,0,0,'0000-00-00',0.00000000,0,0.00000000,0.00000000,0.00000000,0,1,1,0,1,172,'2017-08-23 23:49:54','0000-00-00 00:00:00'),(52,'Product3','','','','','','','',0,0,NULL,6,1,2463.0000,0,0,'0000-00-00',0.00000000,0,0.00000000,0.00000000,0.00000000,0,1,1,0,1,284,'2017-08-23 23:50:40','0000-00-00 00:00:00'),(53,'JAM DW','','','','','','','',100,0,NULL,8,1,50.0000,0,0,'0000-00-00',0.00000000,0,0.00000000,0.00000000,0.00000000,0,1,1,0,1,371,'2017-10-10 07:08:26','2017-10-10 07:12:25');
/*!40000 ALTER TABLE `lk_product` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_product_attribute`
--

DROP TABLE IF EXISTS `lk_product_attribute`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_product_attribute` (
  `product_id` int(11) NOT NULL,
  `attribute_id` int(11) NOT NULL,
  `language_id` int(11) NOT NULL,
  `text` text NOT NULL,
  PRIMARY KEY (`product_id`,`attribute_id`,`language_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_product_attribute`
--

LOCK TABLES `lk_product_attribute` WRITE;
/*!40000 ALTER TABLE `lk_product_attribute` DISABLE KEYS */;
INSERT INTO `lk_product_attribute` VALUES (43,2,1,'1'),(47,4,1,'16GB'),(43,4,1,'8gb'),(42,3,1,'100mhz'),(47,2,1,'4');
/*!40000 ALTER TABLE `lk_product_attribute` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_product_description`
--

DROP TABLE IF EXISTS `lk_product_description`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_product_description` (
  `product_id` int(11) NOT NULL,
  `language_id` int(11) NOT NULL,
  `name` varchar(255) NOT NULL,
  `description` text NOT NULL,
  `tag` text NOT NULL,
  `meta_title` varchar(255) NOT NULL,
  `meta_description` varchar(255) NOT NULL,
  `meta_keyword` varchar(255) NOT NULL,
  PRIMARY KEY (`product_id`,`language_id`),
  KEY `name` (`name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_product_description`
--

LOCK TABLES `lk_product_description` WRITE;
/*!40000 ALTER TABLE `lk_product_description` DISABLE KEYS */;
INSERT INTO `lk_product_description` VALUES (35,1,'Product 8','&lt;p&gt;\r\n	Product 8&lt;/p&gt;\r\n','','Product 8','',''),(48,1,'iPod Classic','&lt;div class=&quot;cpt_product_description &quot;&gt;\r\n	&lt;div&gt;\r\n		&lt;p&gt;\r\n			&lt;strong&gt;More room to move.&lt;/strong&gt;&lt;/p&gt;\r\n		&lt;p&gt;\r\n			With 80GB or 160GB of storage and up to 40 hours of battery life, the new iPod classic lets you enjoy up to 40,000 songs or up to 200 hours of video or any combination wherever you go.&lt;/p&gt;\r\n		&lt;p&gt;\r\n			&lt;strong&gt;Cover Flow.&lt;/strong&gt;&lt;/p&gt;\r\n		&lt;p&gt;\r\n			Browse through your music collection by flipping through album art. Select an album to turn it over and see the track list.&lt;/p&gt;\r\n		&lt;p&gt;\r\n			&lt;strong&gt;Enhanced interface.&lt;/strong&gt;&lt;/p&gt;\r\n		&lt;p&gt;\r\n			Experience a whole new way to browse and view your music and video.&lt;/p&gt;\r\n		&lt;p&gt;\r\n			&lt;strong&gt;Sleeker design.&lt;/strong&gt;&lt;/p&gt;\r\n		&lt;p&gt;\r\n			Beautiful, durable, and sleeker than ever, iPod classic now features an anodized aluminum and polished stainless steel enclosure with rounded edges.&lt;/p&gt;\r\n	&lt;/div&gt;\r\n&lt;/div&gt;\r\n&lt;!-- cpt_container_end --&gt;','','iPod Classic','',''),(40,1,'iPhone','&lt;p class=&quot;intro&quot;&gt;\r\n	iPhone is a revolutionary new mobile phone that allows you to make a call by simply tapping a name or number in your address book, a favorites list, or a call log. It also automatically syncs all your contacts from a PC, Mac, or Internet service. And it lets you select and listen to voicemail messages in whatever order you want just like email.&lt;/p&gt;\r\n','','iPhone','',''),(28,1,'HTC Touch HD','&lt;p&gt;\r\n	HTC Touch - in High Definition. Watch music videos and streaming content in awe-inspiring high definition clarity for a mobile experience you never thought possible. Seductively sleek, the HTC Touch HD provides the next generation of mobile functionality, all at a simple touch. Fully integrated with Windows Mobile Professional 6.1, ultrafast 3.5G, GPS, 5MP camera, plus lots more - all delivered on a breathtakingly crisp 3.8&amp;quot; WVGA touchscreen - you can take control of your mobile world with the HTC Touch HD.&lt;/p&gt;\r\n&lt;p&gt;\r\n	&lt;strong&gt;Features&lt;/strong&gt;&lt;/p&gt;\r\n&lt;ul&gt;\r\n	&lt;li&gt;\r\n		Processor Qualcomm&amp;reg; MSM 7201A&amp;trade; 528 MHz&lt;/li&gt;\r\n	&lt;li&gt;\r\n		Windows Mobile&amp;reg; 6.1 Professional Operating System&lt;/li&gt;\r\n	&lt;li&gt;\r\n		Memory: 512 MB ROM, 288 MB RAM&lt;/li&gt;\r\n	&lt;li&gt;\r\n		Dimensions: 115 mm x 62.8 mm x 12 mm / 146.4 grams&lt;/li&gt;\r\n	&lt;li&gt;\r\n		3.8-inch TFT-LCD flat touch-sensitive screen with 480 x 800 WVGA resolution&lt;/li&gt;\r\n	&lt;li&gt;\r\n		HSDPA/WCDMA: Europe/Asia: 900/2100 MHz; Up to 2 Mbps up-link and 7.2 Mbps down-link speeds&lt;/li&gt;\r\n	&lt;li&gt;\r\n		Quad-band GSM/GPRS/EDGE: Europe/Asia: 850/900/1800/1900 MHz (Band frequency, HSUPA availability, and data speed are operator dependent.)&lt;/li&gt;\r\n	&lt;li&gt;\r\n		Device Control via HTC TouchFLO&amp;trade; 3D &amp;amp; Touch-sensitive front panel buttons&lt;/li&gt;\r\n	&lt;li&gt;\r\n		GPS and A-GPS ready&lt;/li&gt;\r\n	&lt;li&gt;\r\n		Bluetooth&amp;reg; 2.0 with Enhanced Data Rate and A2DP for wireless stereo headsets&lt;/li&gt;\r\n	&lt;li&gt;\r\n		Wi-Fi&amp;reg;: IEEE 802.11 b/g&lt;/li&gt;\r\n	&lt;li&gt;\r\n		HTC ExtUSB&amp;trade; (11-pin mini-USB 2.0)&lt;/li&gt;\r\n	&lt;li&gt;\r\n		5 megapixel color camera with auto focus&lt;/li&gt;\r\n	&lt;li&gt;\r\n		VGA CMOS color camera&lt;/li&gt;\r\n	&lt;li&gt;\r\n		Built-in 3.5 mm audio jack, microphone, speaker, and FM radio&lt;/li&gt;\r\n	&lt;li&gt;\r\n		Ring tone formats: AAC, AAC+, eAAC+, AMR-NB, AMR-WB, QCP, MP3, WMA, WAV&lt;/li&gt;\r\n	&lt;li&gt;\r\n		40 polyphonic and standard MIDI format 0 and 1 (SMF)/SP MIDI&lt;/li&gt;\r\n	&lt;li&gt;\r\n		Rechargeable Lithium-ion or Lithium-ion polymer 1350 mAh battery&lt;/li&gt;\r\n	&lt;li&gt;\r\n		Expansion Slot: microSD&amp;trade; memory card (SD 2.0 compatible)&lt;/li&gt;\r\n	&lt;li&gt;\r\n		AC Adapter Voltage range/frequency: 100 ~ 240V AC, 50/60 Hz DC output: 5V and 1A&lt;/li&gt;\r\n	&lt;li&gt;\r\n		Special Features: FM Radio, G-Sensor&lt;/li&gt;\r\n&lt;/ul&gt;\r\n','','	 HTC Touch HD','',''),(44,1,'MacBook Air','&lt;div&gt;\r\n	MacBook Air is ultrathin, ultraportable, and ultra unlike anything else. But you don&amp;rsquo;t lose inches and pounds overnight. It&amp;rsquo;s the result of rethinking conventions. Of multiple wireless innovations. And of breakthrough design. With MacBook Air, mobile computing suddenly has a new standard.&lt;/div&gt;\r\n','','MacBook Air','',''),(45,1,'MacBook Pro','&lt;div class=&quot;cpt_product_description &quot;&gt;\r\n	&lt;div&gt;\r\n		&lt;p&gt;\r\n			&lt;b&gt;Latest Intel mobile architecture&lt;/b&gt;&lt;/p&gt;\r\n		&lt;p&gt;\r\n			Powered by the most advanced mobile processors from Intel, the new Core 2 Duo MacBook Pro is over 50% faster than the original Core Duo MacBook Pro and now supports up to 4GB of RAM.&lt;/p&gt;\r\n		&lt;p&gt;\r\n			&lt;b&gt;Leading-edge graphics&lt;/b&gt;&lt;/p&gt;\r\n		&lt;p&gt;\r\n			The NVIDIA GeForce 8600M GT delivers exceptional graphics processing power. For the ultimate creative canvas, you can even configure the 17-inch model with a 1920-by-1200 resolution display.&lt;/p&gt;\r\n		&lt;p&gt;\r\n			&lt;b&gt;Designed for life on the road&lt;/b&gt;&lt;/p&gt;\r\n		&lt;p&gt;\r\n			Innovations such as a magnetic power connection and an illuminated keyboard with ambient light sensor put the MacBook Pro in a class by itself.&lt;/p&gt;\r\n		&lt;p&gt;\r\n			&lt;b&gt;Connect. Create. Communicate.&lt;/b&gt;&lt;/p&gt;\r\n		&lt;p&gt;\r\n			Quickly set up a video conference with the built-in iSight camera. Control presentations and media from up to 30 feet away with the included Apple Remote. Connect to high-bandwidth peripherals with FireWire 800 and DVI.&lt;/p&gt;\r\n		&lt;p&gt;\r\n			&lt;b&gt;Next-generation wireless&lt;/b&gt;&lt;/p&gt;\r\n		&lt;p&gt;\r\n			Featuring 802.11n wireless technology, the MacBook Pro delivers up to five times the performance and up to twice the range of previous-generation technologies.&lt;/p&gt;\r\n	&lt;/div&gt;\r\n&lt;/div&gt;\r\n&lt;!-- cpt_container_end --&gt;','','MacBook Pro','',''),(29,1,'Palm Treo Pro','&lt;p&gt;\r\n	Redefine your workday with the Palm Treo Pro smartphone. Perfectly balanced, you can respond to business and personal email, stay on top of appointments and contacts, and use Wi-Fi or GPS when you&amp;rsquo;re out and about. Then watch a video on YouTube, catch up with news and sports on the web, or listen to a few songs. Balance your work and play the way you like it, with the Palm Treo Pro.&lt;/p&gt;\r\n&lt;p&gt;\r\n	&lt;strong&gt;Features&lt;/strong&gt;&lt;/p&gt;\r\n&lt;ul&gt;\r\n	&lt;li&gt;\r\n		Windows Mobile&amp;reg; 6.1 Professional Edition&lt;/li&gt;\r\n	&lt;li&gt;\r\n		Qualcomm&amp;reg; MSM7201 400MHz Processor&lt;/li&gt;\r\n	&lt;li&gt;\r\n		320x320 transflective colour TFT touchscreen&lt;/li&gt;\r\n	&lt;li&gt;\r\n		HSDPA/UMTS/EDGE/GPRS/GSM radio&lt;/li&gt;\r\n	&lt;li&gt;\r\n		Tri-band UMTS &amp;mdash; 850MHz, 1900MHz, 2100MHz&lt;/li&gt;\r\n	&lt;li&gt;\r\n		Quad-band GSM &amp;mdash; 850/900/1800/1900&lt;/li&gt;\r\n	&lt;li&gt;\r\n		802.11b/g with WPA, WPA2, and 801.1x authentication&lt;/li&gt;\r\n	&lt;li&gt;\r\n		Built-in GPS&lt;/li&gt;\r\n	&lt;li&gt;\r\n		Bluetooth Version: 2.0 + Enhanced Data Rate&lt;/li&gt;\r\n	&lt;li&gt;\r\n		256MB storage (100MB user available), 128MB RAM&lt;/li&gt;\r\n	&lt;li&gt;\r\n		2.0 megapixel camera, up to 8x digital zoom and video capture&lt;/li&gt;\r\n	&lt;li&gt;\r\n		Removable, rechargeable 1500mAh lithium-ion battery&lt;/li&gt;\r\n	&lt;li&gt;\r\n		Up to 5.0 hours talk time and up to 250 hours standby&lt;/li&gt;\r\n	&lt;li&gt;\r\n		MicroSDHC card expansion (up to 32GB supported)&lt;/li&gt;\r\n	&lt;li&gt;\r\n		MicroUSB 2.0 for synchronization and charging&lt;/li&gt;\r\n	&lt;li&gt;\r\n		3.5mm stereo headset jack&lt;/li&gt;\r\n	&lt;li&gt;\r\n		60mm (W) x 114mm (L) x 13.5mm (D) / 133g&lt;/li&gt;\r\n&lt;/ul&gt;\r\n','','Palm Treo Pro','',''),(36,1,'iPod Nano','&lt;div&gt;\r\n	&lt;p&gt;\r\n		&lt;strong&gt;Video in your pocket.&lt;/strong&gt;&lt;/p&gt;\r\n	&lt;p&gt;\r\n		Its the small iPod with one very big idea: video. The worlds most popular music player now lets you enjoy movies, TV shows, and more on a two-inch display thats 65% brighter than before.&lt;/p&gt;\r\n	&lt;p&gt;\r\n		&lt;strong&gt;Cover Flow.&lt;/strong&gt;&lt;/p&gt;\r\n	&lt;p&gt;\r\n		Browse through your music collection by flipping through album art. Select an album to turn it over and see the track list.&lt;strong&gt;&amp;nbsp;&lt;/strong&gt;&lt;/p&gt;\r\n	&lt;p&gt;\r\n		&lt;strong&gt;Enhanced interface.&lt;/strong&gt;&lt;/p&gt;\r\n	&lt;p&gt;\r\n		Experience a whole new way to browse and view your music and video.&lt;/p&gt;\r\n	&lt;p&gt;\r\n		&lt;strong&gt;Sleek and colorful.&lt;/strong&gt;&lt;/p&gt;\r\n	&lt;p&gt;\r\n		With an anodized aluminum and polished stainless steel enclosure and a choice of five colors, iPod nano is dressed to impress.&lt;/p&gt;\r\n	&lt;p&gt;\r\n		&lt;strong&gt;iTunes.&lt;/strong&gt;&lt;/p&gt;\r\n	&lt;p&gt;\r\n		Available as a free download, iTunes makes it easy to browse and buy millions of songs, movies, TV shows, audiobooks, and games and download free podcasts all at the iTunes Store. And you can import your own music, manage your whole media library, and sync your iPod or iPhone with ease.&lt;/p&gt;\r\n&lt;/div&gt;\r\n','','iPod Nano','',''),(46,1,'Sony VAIO','&lt;div&gt;\r\n	Unprecedented power. The next generation of processing technology has arrived. Built into the newest VAIO notebooks lies Intel&amp;#39;s latest, most powerful innovation yet: Intel&amp;reg; Centrino&amp;reg; 2 processor technology. Boasting incredible speed, expanded wireless connectivity, enhanced multimedia support and greater energy efficiency, all the high-performance essentials are seamlessly combined into a single chip.&lt;/div&gt;\r\n','','Sony VAIO','',''),(47,1,'HP LP3065','&lt;p&gt;\r\n	Stop your co-workers in their tracks with the stunning new 30-inch diagonal HP LP3065 Flat Panel Monitor. This flagship monitor features best-in-class performance and presentation features on a huge wide-aspect screen while letting you work as comfortably as possible - you might even forget you&amp;#39;re at the office&lt;/p&gt;\r\n','','HP LP3065','',''),(32,1,'iPod Touch','&lt;p&gt;\r\n	&lt;strong&gt;Revolutionary multi-touch interface.&lt;/strong&gt;&lt;br /&gt;\r\n	iPod touch features the same multi-touch screen technology as iPhone. Pinch to zoom in on a photo. Scroll through your songs and videos with a flick. Flip through your library by album artwork with Cover Flow.&lt;/p&gt;\r\n&lt;p&gt;\r\n	&lt;strong&gt;Gorgeous 3.5-inch widescreen display.&lt;/strong&gt;&lt;br /&gt;\r\n	Watch your movies, TV shows, and photos come alive with bright, vivid color on the 320-by-480-pixel display.&lt;/p&gt;\r\n&lt;p&gt;\r\n	&lt;strong&gt;Music downloads straight from iTunes.&lt;/strong&gt;&lt;br /&gt;\r\n	Shop the iTunes Wi-Fi Music Store from anywhere with Wi-Fi.1 Browse or search to find the music youre looking for, preview it, and buy it with just a tap.&lt;/p&gt;\r\n&lt;p&gt;\r\n	&lt;strong&gt;Surf the web with Wi-Fi.&lt;/strong&gt;&lt;br /&gt;\r\n	Browse the web using Safari and watch YouTube videos on the first iPod with Wi-Fi built in&lt;br /&gt;\r\n	&amp;nbsp;&lt;/p&gt;\r\n','','	 iPod Touch','',''),(41,1,'iMac','&lt;div&gt;\r\n	Just when you thought iMac had everything, now there´s even more. More powerful Intel Core 2 Duo processors. And more memory standard. Combine this with Mac OS X Leopard and iLife ´08, and it´s more all-in-one than ever. iMac packs amazing performance into a stunningly slim space.&lt;/div&gt;\r\n','','iMac','',''),(33,1,'Samsung SyncMaster 941BW','&lt;div&gt;\r\n	Imagine the advantages of going big without slowing down. The big 19&amp;quot; 941BW monitor combines wide aspect ratio with fast pixel response time, for bigger images, more room to work and crisp motion. In addition, the exclusive MagicBright 2, MagicColor and MagicTune technologies help deliver the ideal image in every situation, while sleek, narrow bezels and adjustable stands deliver style just the way you want it. With the Samsung 941BW widescreen analog/digital LCD monitor, it&amp;#39;s not hard to imagine.&lt;/div&gt;\r\n','','Samsung SyncMaster 941BW','',''),(34,1,'iPod Shuffle','&lt;div&gt;\r\n	&lt;strong&gt;Born to be worn.&lt;/strong&gt;\r\n	&lt;p&gt;\r\n		Clip on the worlds most wearable music player and take up to 240 songs with you anywhere. Choose from five colors including four new hues to make your musical fashion statement.&lt;/p&gt;\r\n	&lt;p&gt;\r\n		&lt;strong&gt;Random meets rhythm.&lt;/strong&gt;&lt;/p&gt;\r\n	&lt;p&gt;\r\n		With iTunes autofill, iPod shuffle can deliver a new musical experience every time you sync. For more randomness, you can shuffle songs during playback with the slide of a switch.&lt;/p&gt;\r\n	&lt;strong&gt;Everything is easy.&lt;/strong&gt;\r\n	&lt;p&gt;\r\n		Charge and sync with the included USB dock. Operate the iPod shuffle controls with one hand. Enjoy up to 12 hours straight of skip-free music playback.&lt;/p&gt;\r\n&lt;/div&gt;\r\n','','iPod Shuffle','',''),(43,1,'MacBook','&lt;div&gt;\r\n	&lt;p&gt;\r\n		&lt;b&gt;Intel Core 2 Duo processor&lt;/b&gt;&lt;/p&gt;\r\n	&lt;p&gt;\r\n		Powered by an Intel Core 2 Duo processor at speeds up to 2.16GHz, the new MacBook is the fastest ever.&lt;/p&gt;\r\n	&lt;p&gt;\r\n		&lt;b&gt;1GB memory, larger hard drives&lt;/b&gt;&lt;/p&gt;\r\n	&lt;p&gt;\r\n		The new MacBook now comes with 1GB of memory standard and larger hard drives for the entire line perfect for running more of your favorite applications and storing growing media collections.&lt;/p&gt;\r\n	&lt;p&gt;\r\n		&lt;b&gt;Sleek, 1.08-inch-thin design&lt;/b&gt;&lt;/p&gt;\r\n	&lt;p&gt;\r\n		MacBook makes it easy to hit the road thanks to its tough polycarbonate case, built-in wireless technologies, and innovative MagSafe Power Adapter that releases automatically if someone accidentally trips on the cord.&lt;/p&gt;\r\n	&lt;p&gt;\r\n		&lt;b&gt;Built-in iSight camera&lt;/b&gt;&lt;/p&gt;\r\n	&lt;p&gt;\r\n		Right out of the box, you can have a video chat with friends or family,2 record a video at your desk, or take fun pictures with Photo Booth&lt;/p&gt;\r\n&lt;/div&gt;\r\n','','MacBook','',''),(31,1,'Nikon D300','&lt;div class=&quot;cpt_product_description &quot;&gt;\r\n	&lt;div&gt;\r\n		Engineered with pro-level features and performance, the 12.3-effective-megapixel D300 combines brand new technologies with advanced features inherited from Nikon&amp;#39;s newly announced D3 professional digital SLR camera to offer serious photographers remarkable performance combined with agility.&lt;br /&gt;\r\n		&lt;br /&gt;\r\n		Similar to the D3, the D300 features Nikon&amp;#39;s exclusive EXPEED Image Processing System that is central to driving the speed and processing power needed for many of the camera&amp;#39;s new features. The D300 features a new 51-point autofocus system with Nikon&amp;#39;s 3D Focus Tracking feature and two new LiveView shooting modes that allow users to frame a photograph using the camera&amp;#39;s high-resolution LCD monitor. The D300 shares a similar Scene Recognition System as is found in the D3; it promises to greatly enhance the accuracy of autofocus, autoexposure, and auto white balance by recognizing the subject or scene being photographed and applying this information to the calculations for the three functions.&lt;br /&gt;\r\n		&lt;br /&gt;\r\n		The D300 reacts with lightning speed, powering up in a mere 0.13 seconds and shooting with an imperceptible 45-millisecond shutter release lag time. The D300 is capable of shooting at a rapid six frames per second and can go as fast as eight frames per second when using the optional MB-D10 multi-power battery pack. In continuous bursts, the D300 can shoot up to 100 shots at full 12.3-megapixel resolution. (NORMAL-LARGE image setting, using a SanDisk Extreme IV 1GB CompactFlash card.)&lt;br /&gt;\r\n		&lt;br /&gt;\r\n		The D300 incorporates a range of innovative technologies and features that will significantly improve the accuracy, control, and performance photographers can get from their equipment. Its new Scene Recognition System advances the use of Nikon&amp;#39;s acclaimed 1,005-segment sensor to recognize colors and light patterns that help the camera determine the subject and the type of scene being photographed before a picture is taken. This information is used to improve the accuracy of autofocus, autoexposure, and auto white balance functions in the D300. For example, the camera can track moving subjects better and by identifying them, it can also automatically select focus points faster and with greater accuracy. It can also analyze highlights and more accurately determine exposure, as well as infer light sources to deliver more accurate white balance detection.&lt;/div&gt;\r\n&lt;/div&gt;\r\n&lt;!-- cpt_container_end --&gt;','','Nikon D300','',''),(49,1,'Samsung Galaxy Tab 10.1','&lt;p&gt;\r\n	Samsung Galaxy Tab 10.1, is the world&amp;rsquo;s thinnest tablet, measuring 8.6 mm thickness, running with Android 3.0 Honeycomb OS on a 1GHz dual-core Tegra 2 processor, similar to its younger brother Samsung Galaxy Tab 8.9.&lt;/p&gt;\r\n&lt;p&gt;\r\n	Samsung Galaxy Tab 10.1 gives pure Android 3.0 experience, adding its new TouchWiz UX or TouchWiz 4.0 &amp;ndash; includes a live panel, which lets you to customize with different content, such as your pictures, bookmarks, and social feeds, sporting a 10.1 inches WXGA capacitive touch screen with 1280 x 800 pixels of resolution, equipped with 3 megapixel rear camera with LED flash and a 2 megapixel front camera, HSPA+ connectivity up to 21Mbps, 720p HD video recording capability, 1080p HD playback, DLNA support, Bluetooth 2.1, USB 2.0, gyroscope, Wi-Fi 802.11 a/b/g/n, micro-SD slot, 3.5mm headphone jack, and SIM slot, including the Samsung Stick &amp;ndash; a Bluetooth microphone that can be carried in a pocket like a pen and sound dock with powered subwoofer.&lt;/p&gt;\r\n&lt;p&gt;\r\n	Samsung Galaxy Tab 10.1 will come in 16GB / 32GB / 64GB verities and pre-loaded with Social Hub, Reader&amp;rsquo;s Hub, Music Hub and Samsung Mini Apps Tray &amp;ndash; which gives you access to more commonly used apps to help ease multitasking and it is capable of Adobe Flash Player 10.2, powered by 6860mAh battery that gives you 10hours of video-playback time.&amp;nbsp;&amp;auml;&amp;ouml;&lt;/p&gt;\r\n','','Samsung Galaxy Tab 10.1','',''),(42,1,'Apple Cinema 30&quot;','&lt;p&gt;\r\n	&lt;font face=&quot;helvetica,geneva,arial&quot; size=&quot;2&quot;&gt;&lt;font face=&quot;Helvetica&quot; size=&quot;2&quot;&gt;The 30-inch Apple Cinema HD Display delivers an amazing 2560 x 1600 pixel resolution. Designed specifically for the creative professional, this display provides more space for easier access to all the tools and palettes needed to edit, format and composite your work. Combine this display with a Mac Pro, MacBook Pro, or PowerMac G5 and there\'s no limit to what you can achieve. &lt;br&gt;\r\n	&lt;br&gt;\r\n	&lt;/font&gt;&lt;font face=&quot;Helvetica&quot; size=&quot;2&quot;&gt;The Cinema HD features an active-matrix liquid crystal display that produces flicker-free images that deliver twice the brightness, twice the sharpness and twice the contrast ratio of a typical CRT display. Unlike other flat panels, it\'s designed with a pure digital interface to deliver distortion-free images that never need adjusting. With over 4 million digital pixels, the display is uniquely suited for scientific and technical applications such as visualizing molecular structures or analyzing geological data. &lt;br&gt;\r\n	&lt;br&gt;\r\n	&lt;/font&gt;&lt;font face=&quot;Helvetica&quot; size=&quot;2&quot;&gt;Offering accurate, brilliant color performance, the Cinema HD delivers up to 16.7 million colors across a wide gamut allowing you to see subtle nuances between colors from soft pastels to rich jewel tones. A wide viewing angle ensures uniform color from edge to edge. Apple\'s ColorSync technology allows you to create custom profiles to maintain consistent color onscreen and in print. The result: You can confidently use this display in all your color-critical applications. &lt;br&gt;\r\n	&lt;br&gt;\r\n	&lt;/font&gt;&lt;font face=&quot;Helvetica&quot; size=&quot;2&quot;&gt;Housed in a new aluminum design, the display has a very thin bezel that enhances visual accuracy. Each display features two FireWire 400 ports and two USB 2.0 ports, making attachment of desktop peripherals, such as iSight, iPod, digital and still cameras, hard drives, printers and scanners, even more accessible and convenient. Taking advantage of the much thinner and lighter footprint of an LCD, the new displays support the VESA (Video Electronics Standards Association) mounting interface standard. Customers with the optional Cinema Display VESA Mount Adapter kit gain the flexibility to mount their display in locations most appropriate for their work environment. &lt;br&gt;\r\n	&lt;br&gt;\r\n	&lt;/font&gt;&lt;font face=&quot;Helvetica&quot; size=&quot;2&quot;&gt;The Cinema HD features a single cable design with elegant breakout for the USB 2.0, FireWire 400 and a pure digital connection using the industry standard Digital Video Interface (DVI) interface. The DVI connection allows for a direct pure-digital connection.&lt;br&gt;\r\n	&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;\r\n&lt;h3&gt;\r\n	Features:&lt;/h3&gt;\r\n&lt;p&gt;\r\n	Unrivaled display performance&lt;/p&gt;\r\n&lt;ul&gt;\r\n	&lt;li&gt;\r\n		30-inch (viewable) active-matrix liquid crystal display provides breathtaking image quality and vivid, richly saturated color.&lt;/li&gt;\r\n	&lt;li&gt;\r\n		Support for 2560-by-1600 pixel resolution for display of high definition still and video imagery.&lt;/li&gt;\r\n	&lt;li&gt;\r\n		Wide-format design for simultaneous display of two full pages of text and graphics.&lt;/li&gt;\r\n	&lt;li&gt;\r\n		Industry standard DVI connector for direct attachment to Mac- and Windows-based desktops and notebooks&lt;/li&gt;\r\n	&lt;li&gt;\r\n		Incredibly wide (170 degree) horizontal and vertical viewing angle for maximum visibility and color performance.&lt;/li&gt;\r\n	&lt;li&gt;\r\n		Lightning-fast pixel response for full-motion digital video playback.&lt;/li&gt;\r\n	&lt;li&gt;\r\n		Support for 16.7 million saturated colors, for use in all graphics-intensive applications.&lt;/li&gt;\r\n&lt;/ul&gt;\r\n&lt;p&gt;\r\n	Simple setup and operation&lt;/p&gt;\r\n&lt;ul&gt;\r\n	&lt;li&gt;\r\n		Single cable with elegant breakout for connection to DVI, USB and FireWire ports&lt;/li&gt;\r\n	&lt;li&gt;\r\n		Built-in two-port USB 2.0 hub for easy connection of desktop peripheral devices.&lt;/li&gt;\r\n	&lt;li&gt;\r\n		Two FireWire 400 ports to support iSight and other desktop peripherals&lt;/li&gt;\r\n&lt;/ul&gt;\r\n&lt;p&gt;\r\n	Sleek, elegant design&lt;/p&gt;\r\n&lt;ul&gt;\r\n	&lt;li&gt;\r\n		Huge virtual workspace, very small footprint.&lt;/li&gt;\r\n	&lt;li&gt;\r\n		Narrow Bezel design to minimize visual impact of using dual displays&lt;/li&gt;\r\n	&lt;li&gt;\r\n		Unique hinge design for effortless adjustment&lt;/li&gt;\r\n	&lt;li&gt;\r\n		Support for VESA mounting solutions (Apple Cinema Display VESA Mount Adapter sold separately)&lt;/li&gt;\r\n&lt;/ul&gt;\r\n&lt;h3&gt;\r\n	Technical specifications&lt;/h3&gt;\r\n&lt;p&gt;\r\n	&lt;b&gt;Screen size (diagonal viewable image size)&lt;/b&gt;&lt;/p&gt;\r\n&lt;ul&gt;\r\n	&lt;li&gt;\r\n		Apple Cinema HD Display: 30 inches (29.7-inch viewable)&lt;/li&gt;\r\n&lt;/ul&gt;\r\n&lt;p&gt;\r\n	&lt;b&gt;Screen type&lt;/b&gt;&lt;/p&gt;\r\n&lt;ul&gt;\r\n	&lt;li&gt;\r\n		Thin film transistor (TFT) active-matrix liquid crystal display (AMLCD)&lt;/li&gt;\r\n&lt;/ul&gt;\r\n&lt;p&gt;\r\n	&lt;b&gt;Resolutions&lt;/b&gt;&lt;/p&gt;\r\n&lt;ul&gt;\r\n	&lt;li&gt;\r\n		2560 x 1600 pixels (optimum resolution)&lt;/li&gt;\r\n	&lt;li&gt;\r\n		2048 x 1280&lt;/li&gt;\r\n	&lt;li&gt;\r\n		1920 x 1200&lt;/li&gt;\r\n	&lt;li&gt;\r\n		1280 x 800&lt;/li&gt;\r\n	&lt;li&gt;\r\n		1024 x 640&lt;/li&gt;\r\n&lt;/ul&gt;\r\n&lt;p&gt;\r\n	&lt;b&gt;Display colors (maximum)&lt;/b&gt;&lt;/p&gt;\r\n&lt;ul&gt;\r\n	&lt;li&gt;\r\n		16.7 million&lt;/li&gt;\r\n&lt;/ul&gt;\r\n&lt;p&gt;\r\n	&lt;b&gt;Viewing angle (typical)&lt;/b&gt;&lt;/p&gt;\r\n&lt;ul&gt;\r\n	&lt;li&gt;\r\n		170° horizontal; 170° vertical&lt;/li&gt;\r\n&lt;/ul&gt;\r\n&lt;p&gt;\r\n	&lt;b&gt;Brightness (typical)&lt;/b&gt;&lt;/p&gt;\r\n&lt;ul&gt;\r\n	&lt;li&gt;\r\n		30-inch Cinema HD Display: 400 cd/m2&lt;/li&gt;\r\n&lt;/ul&gt;\r\n&lt;p&gt;\r\n	&lt;b&gt;Contrast ratio (typical)&lt;/b&gt;&lt;/p&gt;\r\n&lt;ul&gt;\r\n	&lt;li&gt;\r\n		700:1&lt;/li&gt;\r\n&lt;/ul&gt;\r\n&lt;p&gt;\r\n	&lt;b&gt;Response time (typical)&lt;/b&gt;&lt;/p&gt;\r\n&lt;ul&gt;\r\n	&lt;li&gt;\r\n		16 ms&lt;/li&gt;\r\n&lt;/ul&gt;\r\n&lt;p&gt;\r\n	&lt;b&gt;Pixel pitch&lt;/b&gt;&lt;/p&gt;\r\n&lt;ul&gt;\r\n	&lt;li&gt;\r\n		30-inch Cinema HD Display: 0.250 mm&lt;/li&gt;\r\n&lt;/ul&gt;\r\n&lt;p&gt;\r\n	&lt;b&gt;Screen treatment&lt;/b&gt;&lt;/p&gt;\r\n&lt;ul&gt;\r\n	&lt;li&gt;\r\n		Antiglare hardcoat&lt;/li&gt;\r\n&lt;/ul&gt;\r\n&lt;p&gt;\r\n	&lt;b&gt;User controls (hardware and software)&lt;/b&gt;&lt;/p&gt;\r\n&lt;ul&gt;\r\n	&lt;li&gt;\r\n		Display Power,&lt;/li&gt;\r\n	&lt;li&gt;\r\n		System sleep, wake&lt;/li&gt;\r\n	&lt;li&gt;\r\n		Brightness&lt;/li&gt;\r\n	&lt;li&gt;\r\n		Monitor tilt&lt;/li&gt;\r\n&lt;/ul&gt;\r\n&lt;p&gt;\r\n	&lt;b&gt;Connectors and cables&lt;/b&gt;&lt;br&gt;\r\n	Cable&lt;/p&gt;\r\n&lt;ul&gt;\r\n	&lt;li&gt;\r\n		DVI (Digital Visual Interface)&lt;/li&gt;\r\n	&lt;li&gt;\r\n		FireWire 400&lt;/li&gt;\r\n	&lt;li&gt;\r\n		USB 2.0&lt;/li&gt;\r\n	&lt;li&gt;\r\n		DC power (24 V)&lt;/li&gt;\r\n&lt;/ul&gt;\r\n&lt;p&gt;\r\n	Connectors&lt;/p&gt;\r\n&lt;ul&gt;\r\n	&lt;li&gt;\r\n		Two-port, self-powered USB 2.0 hub&lt;/li&gt;\r\n	&lt;li&gt;\r\n		Two FireWire 400 ports&lt;/li&gt;\r\n	&lt;li&gt;\r\n		Kensington security port&lt;/li&gt;\r\n&lt;/ul&gt;\r\n&lt;p&gt;\r\n	&lt;b&gt;VESA mount adapter&lt;/b&gt;&lt;br&gt;\r\n	Requires optional Cinema Display VESA Mount Adapter (M9649G/A)&lt;/p&gt;\r\n&lt;ul&gt;\r\n	&lt;li&gt;\r\n		Compatible with VESA FDMI (MIS-D, 100, C) compliant mounting solutions&lt;/li&gt;\r\n&lt;/ul&gt;\r\n&lt;p&gt;\r\n	&lt;b&gt;Electrical requirements&lt;/b&gt;&lt;/p&gt;\r\n&lt;ul&gt;\r\n	&lt;li&gt;\r\n		Input voltage: 100-240 VAC 50-60Hz&lt;/li&gt;\r\n	&lt;li&gt;\r\n		Maximum power when operating: 150W&lt;/li&gt;\r\n	&lt;li&gt;\r\n		Energy saver mode: 3W or less&lt;/li&gt;\r\n&lt;/ul&gt;\r\n&lt;p&gt;\r\n	&lt;b&gt;Environmental requirements&lt;/b&gt;&lt;/p&gt;\r\n&lt;ul&gt;\r\n	&lt;li&gt;\r\n		Operating temperature: 50° to 95° F (10° to 35° C)&lt;/li&gt;\r\n	&lt;li&gt;\r\n		Storage temperature: -40° to 116° F (-40° to 47° C)&lt;/li&gt;\r\n	&lt;li&gt;\r\n		Operating humidity: 20% to 80% noncondensing&lt;/li&gt;\r\n	&lt;li&gt;\r\n		Maximum operating altitude: 10,000 feet&lt;/li&gt;\r\n&lt;/ul&gt;\r\n&lt;p&gt;\r\n	&lt;b&gt;Agency approvals&lt;/b&gt;&lt;/p&gt;\r\n&lt;ul&gt;\r\n	&lt;li&gt;\r\n		FCC Part 15 Class B&lt;/li&gt;\r\n	&lt;li&gt;\r\n		EN55022 Class B&lt;/li&gt;\r\n	&lt;li&gt;\r\n		EN55024&lt;/li&gt;\r\n	&lt;li&gt;\r\n		VCCI Class B&lt;/li&gt;\r\n	&lt;li&gt;\r\n		AS/NZS 3548 Class B&lt;/li&gt;\r\n	&lt;li&gt;\r\n		CNS 13438 Class B&lt;/li&gt;\r\n	&lt;li&gt;\r\n		ICES-003 Class B&lt;/li&gt;\r\n	&lt;li&gt;\r\n		ISO 13406 part 2&lt;/li&gt;\r\n	&lt;li&gt;\r\n		MPR II&lt;/li&gt;\r\n	&lt;li&gt;\r\n		IEC 60950&lt;/li&gt;\r\n	&lt;li&gt;\r\n		UL 60950&lt;/li&gt;\r\n	&lt;li&gt;\r\n		CSA 60950&lt;/li&gt;\r\n	&lt;li&gt;\r\n		EN60950&lt;/li&gt;\r\n	&lt;li&gt;\r\n		ENERGY STAR&lt;/li&gt;\r\n	&lt;li&gt;\r\n		TCO \'03&lt;/li&gt;\r\n&lt;/ul&gt;\r\n&lt;p&gt;\r\n	&lt;b&gt;Size and weight&lt;/b&gt;&lt;br&gt;\r\n	30-inch Apple Cinema HD Display&lt;/p&gt;\r\n&lt;ul&gt;\r\n	&lt;li&gt;\r\n		Height: 21.3 inches (54.3 cm)&lt;/li&gt;\r\n	&lt;li&gt;\r\n		Width: 27.2 inches (68.8 cm)&lt;/li&gt;\r\n	&lt;li&gt;\r\n		Depth: 8.46 inches (21.5 cm)&lt;/li&gt;\r\n	&lt;li&gt;\r\n		Weight: 27.5 pounds (12.5 kg)&lt;/li&gt;\r\n&lt;/ul&gt;\r\n&lt;p&gt;\r\n	&lt;b&gt;System Requirements&lt;/b&gt;&lt;/p&gt;\r\n&lt;ul&gt;\r\n	&lt;li&gt;\r\n		Mac Pro, all graphic options&lt;/li&gt;\r\n	&lt;li&gt;\r\n		MacBook Pro&lt;/li&gt;\r\n	&lt;li&gt;\r\n		Power Mac G5 (PCI-X) with ATI Radeon 9650 or better or NVIDIA GeForce 6800 GT DDL or better&lt;/li&gt;\r\n	&lt;li&gt;\r\n		Power Mac G5 (PCI Express), all graphics options&lt;/li&gt;\r\n	&lt;li&gt;\r\n		PowerBook G4 with dual-link DVI support&lt;/li&gt;\r\n	&lt;li&gt;\r\n		Windows PC and graphics card that supports DVI ports with dual-link digital bandwidth and VESA DDC standard for plug-and-play setup&lt;/li&gt;\r\n&lt;/ul&gt;\r\n','','Apple Cinema 30','',''),(30,1,'Canon EOS 5D','&lt;p&gt;\r\n	Canon\'s press material for the EOS 5D states that it \'defines (a) new D-SLR category\', while we\'re not typically too concerned with marketing talk this particular statement is clearly pretty accurate. The EOS 5D is unlike any previous digital SLR in that it combines a full-frame (35 mm sized) high resolution sensor (12.8 megapixels) with a relatively compact body (slightly larger than the EOS 20D, although in your hand it feels noticeably \'chunkier\'). The EOS 5D is aimed to slot in between the EOS 20D and the EOS-1D professional digital SLR\'s, an important difference when compared to the latter is that the EOS 5D doesn\'t have any environmental seals. While Canon don\'t specifically refer to the EOS 5D as a \'professional\' digital SLR it will have obvious appeal to professionals who want a high quality digital SLR in a body lighter than the EOS-1D. It will also no doubt appeal to current EOS 20D owners (although lets hope they\'ve not bought too many EF-S lenses...) äë&lt;/p&gt;\r\n','','sdf','',''),(50,1,'Product 1','&lt;p&gt;Product 1Product 1Product 1Product 1Product 1&lt;/p&gt;\r\n\n','','Product1','','\n'),(51,1,'Product2','&lt;p&gt;Product2Product2Product2Product2Product2Product2&lt;/p&gt;\r\n\n','','Product2Product2','','\n'),(52,1,'Product3','&lt;p&gt;Product3Product3Product3Product3&lt;/p&gt;\r\n\n','','Product3Product3','','\n'),(53,1,'JAM TANGAN DW','&lt;p&gt;JAM TANGAN BERKUALITAS DAN KEREN&lt;/p&gt;\r\n\n','JAM','JAM','JAM','JAM\r\n\n');
/*!40000 ALTER TABLE `lk_product_description` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_product_discount`
--

DROP TABLE IF EXISTS `lk_product_discount`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_product_discount` (
  `product_discount_id` int(11) NOT NULL AUTO_INCREMENT,
  `product_id` int(11) NOT NULL,
  `customer_group_id` int(11) NOT NULL,
  `quantity` int(4) NOT NULL DEFAULT 0,
  `priority` int(5) NOT NULL DEFAULT 1,
  `price` decimal(15,4) NOT NULL DEFAULT 0.0000,
  `date_start` date NOT NULL DEFAULT '0000-00-00',
  `date_end` date NOT NULL DEFAULT '0000-00-00',
  PRIMARY KEY (`product_discount_id`),
  KEY `product_id` (`product_id`)
) ENGINE=MyISAM AUTO_INCREMENT=441 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_product_discount`
--

LOCK TABLES `lk_product_discount` WRITE;
/*!40000 ALTER TABLE `lk_product_discount` DISABLE KEYS */;
INSERT INTO `lk_product_discount` VALUES (440,42,1,30,1,66.0000,'0000-00-00','0000-00-00'),(439,42,1,20,1,77.0000,'0000-00-00','0000-00-00'),(438,42,1,10,1,88.0000,'0000-00-00','0000-00-00');
/*!40000 ALTER TABLE `lk_product_discount` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_product_filter`
--

DROP TABLE IF EXISTS `lk_product_filter`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_product_filter` (
  `product_id` int(11) NOT NULL,
  `filter_id` int(11) NOT NULL,
  PRIMARY KEY (`product_id`,`filter_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_product_filter`
--

LOCK TABLES `lk_product_filter` WRITE;
/*!40000 ALTER TABLE `lk_product_filter` DISABLE KEYS */;
/*!40000 ALTER TABLE `lk_product_filter` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_product_image`
--

DROP TABLE IF EXISTS `lk_product_image`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_product_image` (
  `product_image_id` int(11) NOT NULL AUTO_INCREMENT,
  `product_id` int(11) NOT NULL,
  `image` varchar(255) DEFAULT NULL,
  `sort_order` int(3) NOT NULL DEFAULT 0,
  PRIMARY KEY (`product_image_id`),
  KEY `product_id` (`product_id`)
) ENGINE=MyISAM AUTO_INCREMENT=2354 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_product_image`
--

LOCK TABLES `lk_product_image` WRITE;
/*!40000 ALTER TABLE `lk_product_image` DISABLE KEYS */;
INSERT INTO `lk_product_image` VALUES (2345,30,'catalog/demo/canon_eos_5d_2.jpg',0),(2321,47,'catalog/demo/hp_3.jpg',0),(2035,28,'catalog/demo/htc_touch_hd_2.jpg',0),(2353,41,'catalog/demo/imac_2.jpg',0),(1982,40,'catalog/demo/iphone_6.jpg',0),(2001,36,'catalog/demo/ipod_nano_5.jpg',0),(2000,36,'catalog/demo/ipod_nano_4.jpg',0),(2005,34,'catalog/demo/ipod_shuffle_5.jpg',0),(2004,34,'catalog/demo/ipod_shuffle_4.jpg',0),(2011,32,'catalog/demo/ipod_touch_7.jpg',0),(2010,32,'catalog/demo/ipod_touch_6.jpg',0),(2009,32,'catalog/demo/ipod_touch_5.jpg',0),(1971,43,'catalog/demo/macbook_5.jpg',0),(1970,43,'catalog/demo/macbook_4.jpg',0),(1974,44,'catalog/demo/macbook_air_4.jpg',0),(1973,44,'catalog/demo/macbook_air_2.jpg',0),(1977,45,'catalog/demo/macbook_pro_2.jpg',0),(1976,45,'catalog/demo/macbook_pro_3.jpg',0),(1986,31,'catalog/demo/nikon_d300_3.jpg',0),(1985,31,'catalog/demo/nikon_d300_2.jpg',0),(1988,29,'catalog/demo/palm_treo_pro_3.jpg',0),(1995,46,'catalog/demo/sony_vaio_5.jpg',0),(1994,46,'catalog/demo/sony_vaio_4.jpg',0),(1991,48,'catalog/demo/ipod_classic_4.jpg',0),(1990,48,'catalog/demo/ipod_classic_3.jpg',0),(1981,40,'catalog/demo/iphone_2.jpg',0),(1980,40,'catalog/demo/iphone_5.jpg',0),(2344,30,'catalog/demo/canon_eos_5d_3.jpg',0),(2320,47,'catalog/demo/hp_2.jpg',0),(2034,28,'catalog/demo/htc_touch_hd_3.jpg',0),(2352,41,'catalog/demo/imac_3.jpg',0),(1979,40,'catalog/demo/iphone_3.jpg',0),(1978,40,'catalog/demo/iphone_4.jpg',0),(1989,48,'catalog/demo/ipod_classic_2.jpg',0),(1999,36,'catalog/demo/ipod_nano_2.jpg',0),(1998,36,'catalog/demo/ipod_nano_3.jpg',0),(2003,34,'catalog/demo/ipod_shuffle_2.jpg',0),(2002,34,'catalog/demo/ipod_shuffle_3.jpg',0),(2008,32,'catalog/demo/ipod_touch_2.jpg',0),(2007,32,'catalog/demo/ipod_touch_3.jpg',0),(2006,32,'catalog/demo/ipod_touch_4.jpg',0),(1969,43,'catalog/demo/macbook_2.jpg',0),(1968,43,'catalog/demo/macbook_3.jpg',0),(1972,44,'catalog/demo/macbook_air_3.jpg',0),(1975,45,'catalog/demo/macbook_pro_4.jpg',0),(1984,31,'catalog/demo/nikon_d300_4.jpg',0),(1983,31,'catalog/demo/nikon_d300_5.jpg',0),(1987,29,'catalog/demo/palm_treo_pro_2.jpg',0),(1993,46,'catalog/demo/sony_vaio_2.jpg',0),(1992,46,'catalog/demo/sony_vaio_3.jpg',0),(2327,49,'catalog/demo/samsung_tab_7.jpg',0),(2326,49,'catalog/demo/samsung_tab_6.jpg',0),(2325,49,'catalog/demo/samsung_tab_5.jpg',0),(2324,49,'catalog/demo/samsung_tab_4.jpg',0),(2323,49,'catalog/demo/samsung_tab_3.jpg',0),(2322,49,'catalog/demo/samsung_tab_2.jpg',0),(2317,42,'catalog/demo/canon_logo.jpg',0),(2316,42,'catalog/demo/hp_1.jpg',0),(2315,42,'catalog/demo/compaq_presario.jpg',0),(2314,42,'catalog/demo/canon_eos_5d_1.jpg',0),(2313,42,'catalog/demo/canon_eos_5d_2.jpg',0);
/*!40000 ALTER TABLE `lk_product_image` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_product_option`
--

DROP TABLE IF EXISTS `lk_product_option`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_product_option` (
  `product_option_id` int(11) NOT NULL AUTO_INCREMENT,
  `product_id` int(11) NOT NULL,
  `option_id` int(11) NOT NULL,
  `value` text NOT NULL,
  `required` tinyint(1) NOT NULL,
  PRIMARY KEY (`product_option_id`)
) ENGINE=MyISAM AUTO_INCREMENT=227 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_product_option`
--

LOCK TABLES `lk_product_option` WRITE;
/*!40000 ALTER TABLE `lk_product_option` DISABLE KEYS */;
INSERT INTO `lk_product_option` VALUES (224,35,11,'',1),(225,47,12,'2011-04-22',1),(223,42,2,'',1),(217,42,5,'',1),(209,42,6,'',1),(218,42,1,'',1),(208,42,4,'test',1),(219,42,8,'2011-02-20',1),(222,42,7,'',1),(221,42,9,'22:25',1),(220,42,10,'2011-02-20 22:25',1),(226,30,5,'',1);
/*!40000 ALTER TABLE `lk_product_option` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_product_option_value`
--

DROP TABLE IF EXISTS `lk_product_option_value`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_product_option_value` (
  `product_option_value_id` int(11) NOT NULL AUTO_INCREMENT,
  `product_option_id` int(11) NOT NULL,
  `product_id` int(11) NOT NULL,
  `option_id` int(11) NOT NULL,
  `option_value_id` int(11) NOT NULL,
  `quantity` int(3) NOT NULL,
  `subtract` tinyint(1) NOT NULL,
  `price` decimal(15,4) NOT NULL,
  `price_prefix` varchar(1) NOT NULL,
  `points` int(8) NOT NULL,
  `points_prefix` varchar(1) NOT NULL,
  `weight` decimal(15,8) NOT NULL,
  `weight_prefix` varchar(1) NOT NULL,
  PRIMARY KEY (`product_option_value_id`)
) ENGINE=MyISAM AUTO_INCREMENT=17 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_product_option_value`
--

LOCK TABLES `lk_product_option_value` WRITE;
/*!40000 ALTER TABLE `lk_product_option_value` DISABLE KEYS */;
INSERT INTO `lk_product_option_value` VALUES (1,217,42,5,41,100,0,1.0000,'+',0,'+',1.00000000,'+'),(6,218,42,1,31,146,1,20.0000,'+',2,'-',20.00000000,'+'),(7,218,42,1,43,300,1,30.0000,'+',3,'+',30.00000000,'+'),(5,218,42,1,32,96,1,10.0000,'+',1,'+',10.00000000,'+'),(4,217,42,5,39,92,1,4.0000,'+',0,'+',4.00000000,'+'),(2,217,42,5,42,200,1,2.0000,'+',0,'+',2.00000000,'+'),(3,217,42,5,40,300,0,3.0000,'+',0,'+',3.00000000,'+'),(8,223,42,2,23,48,1,10.0000,'+',0,'+',10.00000000,'+'),(10,223,42,2,44,2696,1,30.0000,'+',0,'+',30.00000000,'+'),(9,223,42,2,24,194,1,20.0000,'+',0,'+',20.00000000,'+'),(11,223,42,2,45,3998,1,40.0000,'+',0,'+',40.00000000,'+'),(12,224,35,11,46,0,1,5.0000,'+',0,'+',0.00000000,'+'),(13,224,35,11,47,10,1,10.0000,'+',0,'+',0.00000000,'+'),(14,224,35,11,48,15,1,15.0000,'+',0,'+',0.00000000,'+'),(16,226,30,5,40,5,1,0.0000,'+',0,'+',0.00000000,'+'),(15,226,30,5,39,2,1,0.0000,'+',0,'+',0.00000000,'+');
/*!40000 ALTER TABLE `lk_product_option_value` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_product_recurring`
--

DROP TABLE IF EXISTS `lk_product_recurring`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_product_recurring` (
  `product_id` int(11) NOT NULL,
  `recurring_id` int(11) NOT NULL,
  `customer_group_id` int(11) NOT NULL,
  PRIMARY KEY (`product_id`,`recurring_id`,`customer_group_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_product_recurring`
--

LOCK TABLES `lk_product_recurring` WRITE;
/*!40000 ALTER TABLE `lk_product_recurring` DISABLE KEYS */;
/*!40000 ALTER TABLE `lk_product_recurring` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_product_related`
--

DROP TABLE IF EXISTS `lk_product_related`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_product_related` (
  `product_id` int(11) NOT NULL,
  `related_id` int(11) NOT NULL,
  PRIMARY KEY (`product_id`,`related_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_product_related`
--

LOCK TABLES `lk_product_related` WRITE;
/*!40000 ALTER TABLE `lk_product_related` DISABLE KEYS */;
INSERT INTO `lk_product_related` VALUES (40,42),(41,42),(42,40),(42,41);
/*!40000 ALTER TABLE `lk_product_related` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_product_reward`
--

DROP TABLE IF EXISTS `lk_product_reward`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_product_reward` (
  `product_reward_id` int(11) NOT NULL AUTO_INCREMENT,
  `product_id` int(11) NOT NULL DEFAULT 0,
  `customer_group_id` int(11) NOT NULL DEFAULT 0,
  `points` int(8) NOT NULL DEFAULT 0,
  PRIMARY KEY (`product_reward_id`)
) ENGINE=MyISAM AUTO_INCREMENT=546 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_product_reward`
--

LOCK TABLES `lk_product_reward` WRITE;
/*!40000 ALTER TABLE `lk_product_reward` DISABLE KEYS */;
INSERT INTO `lk_product_reward` VALUES (515,42,1,100),(519,47,1,300),(379,28,1,400),(329,43,1,600),(339,29,1,0),(343,48,1,0),(335,40,1,0),(539,30,1,200),(331,44,1,700),(333,45,1,800),(337,31,1,0),(425,35,1,0),(345,33,1,0),(347,46,1,0),(351,36,1,0),(353,34,1,0),(355,32,1,0),(521,49,1,1000);
/*!40000 ALTER TABLE `lk_product_reward` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_product_special`
--

DROP TABLE IF EXISTS `lk_product_special`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_product_special` (
  `product_special_id` int(11) NOT NULL AUTO_INCREMENT,
  `product_id` int(11) NOT NULL,
  `customer_group_id` int(11) NOT NULL,
  `priority` int(5) NOT NULL DEFAULT 1,
  `price` decimal(15,4) NOT NULL DEFAULT 0.0000,
  `date_start` date NOT NULL DEFAULT '0000-00-00',
  `date_end` date NOT NULL DEFAULT '0000-00-00',
  PRIMARY KEY (`product_special_id`),
  KEY `product_id` (`product_id`)
) ENGINE=MyISAM AUTO_INCREMENT=442 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_product_special`
--

LOCK TABLES `lk_product_special` WRITE;
/*!40000 ALTER TABLE `lk_product_special` DISABLE KEYS */;
INSERT INTO `lk_product_special` VALUES (419,42,1,1,90.0000,'0000-00-00','0000-00-00'),(439,30,1,2,90.0000,'0000-00-00','0000-00-00'),(438,30,1,1,80.0000,'0000-00-00','0000-00-00'),(440,41,1,0,30000.0000,'0000-00-00','0000-00-00'),(441,41,1,0,0.0000,'0000-00-00','0000-00-00');
/*!40000 ALTER TABLE `lk_product_special` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_product_to_category`
--

DROP TABLE IF EXISTS `lk_product_to_category`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_product_to_category` (
  `product_id` int(11) NOT NULL,
  `category_id` int(11) NOT NULL,
  PRIMARY KEY (`product_id`,`category_id`),
  KEY `category_id` (`category_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_product_to_category`
--

LOCK TABLES `lk_product_to_category` WRITE;
/*!40000 ALTER TABLE `lk_product_to_category` DISABLE KEYS */;
INSERT INTO `lk_product_to_category` VALUES (28,20),(28,24),(29,20),(29,24),(30,20),(30,33),(31,33),(32,34),(33,20),(33,28),(34,34),(35,20),(36,34),(40,20),(40,24),(41,27),(42,20),(42,28),(43,18),(43,20),(44,18),(44,20),(45,18),(46,18),(46,20),(47,18),(47,20),(48,20),(48,34),(49,57),(50,25),(50,28),(50,35),(51,24),(52,17),(53,33);
/*!40000 ALTER TABLE `lk_product_to_category` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_product_to_download`
--

DROP TABLE IF EXISTS `lk_product_to_download`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_product_to_download` (
  `product_id` int(11) NOT NULL,
  `download_id` int(11) NOT NULL,
  PRIMARY KEY (`product_id`,`download_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_product_to_download`
--

LOCK TABLES `lk_product_to_download` WRITE;
/*!40000 ALTER TABLE `lk_product_to_download` DISABLE KEYS */;
/*!40000 ALTER TABLE `lk_product_to_download` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_product_to_layout`
--

DROP TABLE IF EXISTS `lk_product_to_layout`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_product_to_layout` (
  `product_id` int(11) NOT NULL,
  `store_id` int(11) NOT NULL,
  `layout_id` int(11) NOT NULL,
  PRIMARY KEY (`product_id`,`store_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_product_to_layout`
--

LOCK TABLES `lk_product_to_layout` WRITE;
/*!40000 ALTER TABLE `lk_product_to_layout` DISABLE KEYS */;
INSERT INTO `lk_product_to_layout` VALUES (41,0,0);
/*!40000 ALTER TABLE `lk_product_to_layout` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_product_to_store`
--

DROP TABLE IF EXISTS `lk_product_to_store`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_product_to_store` (
  `product_id` int(11) NOT NULL,
  `store_id` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`product_id`,`store_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_product_to_store`
--

LOCK TABLES `lk_product_to_store` WRITE;
/*!40000 ALTER TABLE `lk_product_to_store` DISABLE KEYS */;
INSERT INTO `lk_product_to_store` VALUES (28,0),(29,0),(30,0),(31,0),(32,0),(33,0),(34,0),(35,0),(36,0),(40,0),(41,0),(42,0),(43,0),(44,0),(45,0),(46,0),(47,0),(48,0),(49,0),(50,0),(51,0),(52,0),(53,0);
/*!40000 ALTER TABLE `lk_product_to_store` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_recurring`
--

DROP TABLE IF EXISTS `lk_recurring`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_recurring` (
  `recurring_id` int(11) NOT NULL AUTO_INCREMENT,
  `price` decimal(10,4) NOT NULL,
  `frequency` enum('day','week','semi_month','month','year') NOT NULL,
  `duration` int(10) unsigned NOT NULL,
  `cycle` int(10) unsigned NOT NULL,
  `trial_status` tinyint(4) NOT NULL,
  `trial_price` decimal(10,4) NOT NULL,
  `trial_frequency` enum('day','week','semi_month','month','year') NOT NULL,
  `trial_duration` int(10) unsigned NOT NULL,
  `trial_cycle` int(10) unsigned NOT NULL,
  `status` tinyint(4) NOT NULL,
  `sort_order` int(11) NOT NULL,
  PRIMARY KEY (`recurring_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_recurring`
--

LOCK TABLES `lk_recurring` WRITE;
/*!40000 ALTER TABLE `lk_recurring` DISABLE KEYS */;
/*!40000 ALTER TABLE `lk_recurring` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_recurring_description`
--

DROP TABLE IF EXISTS `lk_recurring_description`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_recurring_description` (
  `recurring_id` int(11) NOT NULL,
  `language_id` int(11) NOT NULL,
  `name` varchar(255) NOT NULL,
  PRIMARY KEY (`recurring_id`,`language_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_recurring_description`
--

LOCK TABLES `lk_recurring_description` WRITE;
/*!40000 ALTER TABLE `lk_recurring_description` DISABLE KEYS */;
/*!40000 ALTER TABLE `lk_recurring_description` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_return`
--

DROP TABLE IF EXISTS `lk_return`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_return` (
  `return_id` int(11) NOT NULL AUTO_INCREMENT,
  `order_id` int(11) NOT NULL,
  `product_id` int(11) NOT NULL,
  `customer_id` int(11) NOT NULL,
  `firstname` varchar(32) NOT NULL,
  `lastname` varchar(32) NOT NULL,
  `email` varchar(96) NOT NULL,
  `telephone` varchar(32) NOT NULL,
  `product` varchar(255) NOT NULL,
  `model` varchar(64) NOT NULL,
  `quantity` int(4) NOT NULL,
  `opened` tinyint(1) NOT NULL,
  `return_reason_id` int(11) NOT NULL,
  `return_action_id` int(11) NOT NULL,
  `return_status_id` int(11) NOT NULL,
  `comment` text DEFAULT NULL,
  `date_ordered` date NOT NULL DEFAULT '0000-00-00',
  `date_added` datetime NOT NULL,
  `date_modified` datetime NOT NULL,
  PRIMARY KEY (`return_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_return`
--

LOCK TABLES `lk_return` WRITE;
/*!40000 ALTER TABLE `lk_return` DISABLE KEYS */;
/*!40000 ALTER TABLE `lk_return` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_return_action`
--

DROP TABLE IF EXISTS `lk_return_action`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_return_action` (
  `return_action_id` int(11) NOT NULL AUTO_INCREMENT,
  `language_id` int(11) NOT NULL DEFAULT 0,
  `name` varchar(64) NOT NULL,
  PRIMARY KEY (`return_action_id`,`language_id`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_return_action`
--

LOCK TABLES `lk_return_action` WRITE;
/*!40000 ALTER TABLE `lk_return_action` DISABLE KEYS */;
INSERT INTO `lk_return_action` VALUES (1,1,'Refunded'),(2,1,'Credit Issued'),(3,1,'Replacement Sent');
/*!40000 ALTER TABLE `lk_return_action` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_return_history`
--

DROP TABLE IF EXISTS `lk_return_history`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_return_history` (
  `return_history_id` int(11) NOT NULL AUTO_INCREMENT,
  `return_id` int(11) NOT NULL,
  `return_status_id` int(11) NOT NULL,
  `notify` tinyint(1) NOT NULL,
  `comment` text NOT NULL,
  `date_added` datetime NOT NULL,
  PRIMARY KEY (`return_history_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_return_history`
--

LOCK TABLES `lk_return_history` WRITE;
/*!40000 ALTER TABLE `lk_return_history` DISABLE KEYS */;
/*!40000 ALTER TABLE `lk_return_history` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_return_reason`
--

DROP TABLE IF EXISTS `lk_return_reason`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_return_reason` (
  `return_reason_id` int(11) NOT NULL AUTO_INCREMENT,
  `language_id` int(11) NOT NULL DEFAULT 0,
  `name` varchar(128) NOT NULL,
  PRIMARY KEY (`return_reason_id`,`language_id`)
) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_return_reason`
--

LOCK TABLES `lk_return_reason` WRITE;
/*!40000 ALTER TABLE `lk_return_reason` DISABLE KEYS */;
INSERT INTO `lk_return_reason` VALUES (1,1,'Dead On Arrival'),(2,1,'Received Wrong Item'),(3,1,'Order Error'),(4,1,'Faulty, please supply details'),(5,1,'Other, please supply details');
/*!40000 ALTER TABLE `lk_return_reason` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_return_status`
--

DROP TABLE IF EXISTS `lk_return_status`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_return_status` (
  `return_status_id` int(11) NOT NULL AUTO_INCREMENT,
  `language_id` int(11) NOT NULL DEFAULT 0,
  `name` varchar(32) NOT NULL,
  PRIMARY KEY (`return_status_id`,`language_id`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_return_status`
--

LOCK TABLES `lk_return_status` WRITE;
/*!40000 ALTER TABLE `lk_return_status` DISABLE KEYS */;
INSERT INTO `lk_return_status` VALUES (1,1,'Pending'),(3,1,'Complete'),(2,1,'Awaiting Products');
/*!40000 ALTER TABLE `lk_return_status` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_review`
--

DROP TABLE IF EXISTS `lk_review`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_review` (
  `review_id` int(11) NOT NULL AUTO_INCREMENT,
  `product_id` int(11) NOT NULL,
  `customer_id` int(11) NOT NULL,
  `author` varchar(64) NOT NULL,
  `text` text NOT NULL,
  `rating` int(1) NOT NULL,
  `status` tinyint(1) NOT NULL DEFAULT 0,
  `date_added` datetime NOT NULL,
  `date_modified` datetime NOT NULL,
  PRIMARY KEY (`review_id`),
  KEY `product_id` (`product_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_review`
--

LOCK TABLES `lk_review` WRITE;
/*!40000 ALTER TABLE `lk_review` DISABLE KEYS */;
/*!40000 ALTER TABLE `lk_review` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_seller_activity`
--

DROP TABLE IF EXISTS `lk_seller_activity`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_seller_activity` (
  `seller_activity_id` int(11) NOT NULL AUTO_INCREMENT,
  `activity_id` int(11) NOT NULL,
  `seller_id` int(11) NOT NULL,
  PRIMARY KEY (`seller_activity_id`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_seller_activity`
--

LOCK TABLES `lk_seller_activity` WRITE;
/*!40000 ALTER TABLE `lk_seller_activity` DISABLE KEYS */;
INSERT INTO `lk_seller_activity` VALUES (1,1,2),(2,2,2),(3,3,3);
/*!40000 ALTER TABLE `lk_seller_activity` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_setting`
--

DROP TABLE IF EXISTS `lk_setting`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_setting` (
  `setting_id` int(11) NOT NULL AUTO_INCREMENT,
  `store_id` int(11) NOT NULL DEFAULT 0,
  `code` varchar(32) NOT NULL,
  `key` varchar(64) NOT NULL,
  `value` text NOT NULL,
  `serialized` tinyint(1) NOT NULL,
  PRIMARY KEY (`setting_id`)
) ENGINE=MyISAM AUTO_INCREMENT=1170 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_setting`
--

LOCK TABLES `lk_setting` WRITE;
/*!40000 ALTER TABLE `lk_setting` DISABLE KEYS */;
INSERT INTO `lk_setting` VALUES (1167,0,'config','config_error_log','1',0),(1166,0,'config','config_error_display','1',0),(1165,0,'config','config_file_mime_allowed','text/plain\r\nimage/png\r\nimage/jpeg\r\nimage/gif\r\nimage/bmp\r\nimage/tiff\r\nimage/svg+xml\r\napplication/zip\r\n&quot;application/zip&quot;\r\napplication/x-zip\r\n&quot;application/x-zip&quot;\r\napplication/x-zip-compressed\r\n&quot;application/x-zip-compressed&quot;\r\napplication/rar\r\n&quot;application/rar&quot;\r\napplication/x-rar\r\n&quot;application/x-rar&quot;\r\napplication/x-rar-compressed\r\n&quot;application/x-rar-compressed&quot;\r\napplication/octet-stream\r\n&quot;application/octet-stream&quot;\r\naudio/mpeg\r\nvideo/quicktime\r\napplication/pdf',0),(1158,0,'config','config_compression','0',0),(4,0,'voucher','voucher_sort_order','8',0),(5,0,'voucher','voucher_status','1',0),(1159,0,'config','config_secure','0',0),(1160,0,'config','config_password','1',0),(1161,0,'config','config_shared','0',0),(1162,0,'config','config_encryption','CsnpWI7sCM2vGengQ6omZsYknL12fkTGoJEi6CuPtWjFWXnEMAAHrOyAEx6VQGea4T3cRW6NX5i2I1Cdxf7M3sylYNCfsgyNDs7W5mdTyaUvyesME1dTVrOla7xvJJrHn0zl4bXlrsTyLxN16L8GucjPUXPkO7KdSg4on014r2nG7wpCrM6Zx0tcIqZEzfLsfskxKJFgslX1BGt6Ku2ULKsQ8Sfa0AwogdeO1ASmYmOvm5H0Li19u13ma4ijfFGTLQZf7tmc6Ny9lhn88Kz5VOpdaz0NRLkZB7lwNX6EuegrGLqcrN2mo8GQid2q02e9vWmjUSfghSsDb8UMe36TpatI7HwXRvf0oIgYLmK2yNzao3QxrE7UglaboQUAY43cau3uApAdsVhUu0tzEv5z1xp5oYIH6QXonFAdXhwE1TSVwj0ginyKIkMCR50gi0dAgYEPueZUOrsuteDADSmpKjWry1mw3UAAtqaUuQq4miLkLnxQdDTbrlHeiV379ItEwLI1RZGYN0GUW2T99eGtVtFcF1aihUZdL5y07iF6umF2ZfmSMunDCr6ro0qRVwrBGaH2avNpbYoba7SeK83WjXVQrKarlHkLzwW8BawXt8CcQQWgAyxEgDrkvJflv5umErj66YiJr6AVG2vsz3AaxKPkC81gmAoSb6jrM61uiOhlZrn3wAZkyOKfrqlJMYda4jRWWtjFoZfMC2htKOsGoqX6CEMyyE18AAWDGI727UOZepTYCH8d9W0HmAB7XF4ZwJCOoGKZzZiF0IHZSPP5ayHdJrpjaWBbJycdu14FCSp3XPpPPXMxeu4ODMjqrP6LjCTiHWCwOmbCpR8GsvrXHBA8oC41YBgqfuNEgitm8qRyTauwC4mpAMobrWiQZV6xxD0EufylXbXsGGUliKSQkBMu81E3vM4575b2FgJULI388XjAHQF33K7qfGvQkHkFEAVKlmvsbfD5PBP61rnSsk8iTa0mkSQ2aAGFSYAgoNj90iiB36tTdRbQCJIE2jLK',0),(1156,0,'config','config_seo_url','0',0),(1157,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),(1155,0,'config','config_maintenance','0',0),(1154,0,'config','config_mail_alert_email','',0),(1153,0,'config','config_mail_alert','[\"order\"]',1),(1152,0,'config','config_mail_smtp_timeout','5',0),(1151,0,'config','config_mail_smtp_port','25',0),(1150,0,'config','config_mail_smtp_password','',0),(1149,0,'config','config_mail_smtp_username','',0),(1147,0,'config','config_mail_parameter','',0),(1148,0,'config','config_mail_smtp_hostname','',0),(1146,0,'config','config_mail_protocol','mail',0),(1144,0,'config','config_ftp_root','',0),(1145,0,'config','config_ftp_status','0',0),(1143,0,'config','config_ftp_password','',0),(1142,0,'config','config_ftp_username','',0),(1141,0,'config','config_ftp_port','21',0),(1128,0,'config','config_stock_warning','0',0),(1129,0,'config','config_stock_checkout','0',0),(1130,0,'config','config_affiliate_approval','0',0),(1131,0,'config','config_affiliate_auto','0',0),(1132,0,'config','config_affiliate_commission','5',0),(1133,0,'config','config_affiliate_id','4',0),(1134,0,'config','config_return_id','0',0),(1135,0,'config','config_return_status_id','2',0),(1136,0,'config','config_captcha','',0),(1137,0,'config','config_captcha_page','[\"review\",\"return\",\"contact\"]',1),(1138,0,'config','config_logo','catalog/demo/4-01.png',0),(1139,0,'config','config_icon','catalog/cart.png',0),(1140,0,'config','config_ftp_hostname','sandbox.futuremediatrix.com',0),(1127,0,'config','config_stock_display','0',0),(1126,0,'config','config_api_id','1',0),(1125,0,'config','config_fraud_status_id','7',0),(1124,0,'config','config_complete_status','[\"5\",\"3\"]',1),(1123,0,'config','config_processing_status','[\"5\",\"1\",\"2\",\"12\",\"3\"]',1),(1122,0,'config','config_order_status_id','1',0),(1120,0,'config','config_checkout_guest','1',0),(1121,0,'config','config_checkout_id','5',0),(1119,0,'config','config_cart_weight','1',0),(1118,0,'config','config_invoice_prefix','INV-2013-00',0),(1117,0,'config','config_account_id','3',0),(1116,0,'config','config_login_attempts','5',0),(1115,0,'config','config_customer_price','0',0),(95,0,'free_checkout','free_checkout_status','1',0),(96,0,'free_checkout','free_checkout_order_status_id','1',0),(97,0,'shipping','shipping_sort_order','3',0),(98,0,'sub_total','sub_total_sort_order','1',0),(99,0,'sub_total','sub_total_status','1',0),(100,0,'tax','tax_status','1',0),(101,0,'total','total_sort_order','9',0),(102,0,'total','total_status','1',0),(103,0,'tax','tax_sort_order','5',0),(104,0,'free_checkout','free_checkout_sort_order','1',0),(105,0,'cod','cod_sort_order','5',0),(106,0,'cod','cod_total','0.01',0),(107,0,'cod','cod_order_status_id','1',0),(108,0,'cod','cod_geo_zone_id','0',0),(109,0,'cod','cod_status','1',0),(110,0,'shipping','shipping_status','1',0),(111,0,'shipping','shipping_estimator','1',0),(112,0,'coupon','coupon_sort_order','4',0),(113,0,'coupon','coupon_status','1',0),(114,0,'flat','flat_sort_order','1',0),(115,0,'flat','flat_status','1',0),(116,0,'flat','flat_geo_zone_id','0',0),(117,0,'flat','flat_tax_class_id','9',0),(118,0,'flat','flat_cost','5.00',0),(119,0,'credit','credit_sort_order','7',0),(120,0,'credit','credit_status','1',0),(121,0,'reward','reward_sort_order','2',0),(122,0,'reward','reward_status','1',0),(123,0,'category','category_status','1',0),(124,0,'account','account_status','1',0),(125,0,'affiliate','affiliate_status','1',0),(197,0,'theme_default','theme_default_image_cart_width','47',0),(196,0,'theme_default','theme_default_image_wishlist_height','47',0),(195,0,'theme_default','theme_default_image_wishlist_width','47',0),(194,0,'theme_default','theme_default_image_compare_height','90',0),(193,0,'theme_default','theme_default_image_compare_width','90',0),(192,0,'theme_default','theme_default_image_related_height','200',0),(191,0,'theme_default','theme_default_image_related_width','200',0),(190,0,'theme_default','theme_default_image_additional_height','74',0),(189,0,'theme_default','theme_default_image_additional_width','74',0),(188,0,'theme_default','theme_default_image_product_height','228',0),(187,0,'theme_default','theme_default_image_product_width','228',0),(186,0,'theme_default','theme_default_image_popup_height','500',0),(185,0,'theme_default','theme_default_image_popup_width','500',0),(184,0,'theme_default','theme_default_image_thumb_height','228',0),(183,0,'theme_default','theme_default_image_thumb_width','228',0),(182,0,'theme_default','theme_default_image_category_height','80',0),(181,0,'theme_default','theme_default_image_category_width','80',0),(180,0,'theme_default','theme_default_product_description_length','100',0),(179,0,'theme_default','theme_default_product_limit','15',0),(178,0,'theme_default','theme_default_status','1',0),(177,0,'theme_default','theme_default_directory','journal2',0),(150,0,'dashboard_activity','dashboard_activity_status','1',0),(151,0,'dashboard_activity','dashboard_activity_sort_order','7',0),(152,0,'dashboard_sale','dashboard_sale_status','1',0),(153,0,'dashboard_sale','dashboard_sale_width','3',0),(154,0,'dashboard_chart','dashboard_chart_status','1',0),(155,0,'dashboard_chart','dashboard_chart_width','6',0),(156,0,'dashboard_customer','dashboard_customer_status','1',0),(157,0,'dashboard_customer','dashboard_customer_width','3',0),(158,0,'dashboard_map','dashboard_map_status','1',0),(159,0,'dashboard_map','dashboard_map_width','6',0),(160,0,'dashboard_online','dashboard_online_status','1',0),(161,0,'dashboard_online','dashboard_online_width','3',0),(162,0,'dashboard_order','dashboard_order_sort_order','1',0),(163,0,'dashboard_order','dashboard_order_status','1',0),(164,0,'dashboard_order','dashboard_order_width','3',0),(165,0,'dashboard_sale','dashboard_sale_sort_order','2',0),(166,0,'dashboard_customer','dashboard_customer_sort_order','3',0),(167,0,'dashboard_online','dashboard_online_sort_order','4',0),(168,0,'dashboard_map','dashboard_map_sort_order','5',0),(169,0,'dashboard_chart','dashboard_chart_sort_order','6',0),(170,0,'dashboard_recent','dashboard_recent_status','1',0),(171,0,'dashboard_recent','dashboard_recent_sort_order','8',0),(172,0,'dashboard_activity','dashboard_activity_width','4',0),(173,0,'dashboard_recent','dashboard_recent_width','8',0),(1114,0,'config','config_customer_group_display','[\"1\"]',1),(1113,0,'config','config_customer_group_id','1',0),(1112,0,'config','config_customer_search','0',0),(1111,0,'config','config_customer_activity','0',0),(1110,0,'config','config_customer_online','0',0),(1109,0,'config','config_tax_customer','shipping',0),(1108,0,'config','config_tax_default','shipping',0),(1107,0,'config','config_tax','1',0),(1106,0,'config','config_voucher_max','1000',0),(1105,0,'config','config_voucher_min','1',0),(1104,0,'config','config_review_guest','1',0),(1103,0,'config','config_review_status','1',0),(1102,0,'config','config_limit_admin','20',0),(1101,0,'config','config_product_count','1',0),(1100,0,'config','config_weight_class_id','1',0),(1099,0,'config','config_length_class_id','1',0),(1098,0,'config','config_currency_auto','1',0),(1097,0,'config','config_currency','USD',0),(198,0,'theme_default','theme_default_image_cart_height','47',0),(199,0,'theme_default','theme_default_image_location_width','268',0),(200,0,'theme_default','theme_default_image_location_height','50',0),(1096,0,'config','config_admin_language','en-gb',0),(1095,0,'config','config_language','en-gb',0),(203,0,'journal2_carousel_grid','journal2_carousel_grid_74_status','0',0),(204,0,'journal2_advanced_grid','journal2_advanced_grid_75_status','1',0),(205,0,'journal2_advanced_grid','journal2_advanced_grid_76_status','0',0),(206,0,'journal2_advanced_grid','journal2_advanced_grid_77_status','0',0),(207,0,'journal2_advanced_grid','journal2_advanced_grid_78_status','0',0),(208,0,'journal2_advanced_grid','journal2_advanced_grid_79_status','0',0),(209,0,'journal2_advanced_grid','journal2_advanced_grid_80_status','0',0),(210,0,'journal2_advanced_grid','journal2_advanced_grid_81_status','0',0),(211,0,'journal2_advanced_grid','journal2_advanced_grid_82_status','0',0),(212,0,'journal2_advanced_grid','journal2_advanced_grid_83_status','0',0),(213,0,'journal2_advanced_grid','journal2_advanced_grid_84_status','0',0),(214,0,'journal2_headline_rotator','journal2_headline_rotator_85_status','1',0),(215,0,'journal2_headline_rotator','journal2_headline_rotator_86_status','1',0),(216,0,'journal2_headline_rotator','journal2_headline_rotator_87_status','1',0),(217,0,'journal2_side_blocks','journal2_side_blocks_88_status','0',0),(218,0,'journal2_side_blocks','journal2_side_blocks_89_status','0',0),(219,0,'journal2_side_blocks','journal2_side_blocks_90_status','0',0),(220,0,'journal2_side_blocks','journal2_side_blocks_91_status','0',0),(221,0,'journal2_side_blocks','journal2_side_blocks_92_status','0',0),(222,0,'journal2_side_blocks','journal2_side_blocks_93_status','0',0),(223,0,'journal2_simple_slider','journal2_simple_slider_94_status','1',0),(224,0,'journal2_simple_slider','journal2_simple_slider_95_status','1',0),(225,0,'journal2_cms_blocks','journal2_cms_blocks_96_status','1',0),(226,0,'journal2_cms_blocks','journal2_cms_blocks_97_status','1',0),(227,0,'journal2_cms_blocks','journal2_cms_blocks_98_status','1',0),(228,0,'journal2_side_products','journal2_side_products_99_status','1',0),(229,0,'journal2_side_products','journal2_side_products_100_status','1',0),(230,0,'journal2_side_products','journal2_side_products_101_status','1',0),(231,0,'journal2_custom_sections','journal2_custom_sections_102_status','1',0),(232,0,'journal2_carousel','journal2_carousel_103_status','1',0),(233,0,'journal2_carousel','journal2_carousel_104_status','1',0),(234,0,'journal2_carousel','journal2_carousel_105_status','1',0),(235,0,'journal2_carousel','journal2_carousel_106_status','1',0),(236,0,'journal2_carousel','journal2_carousel_107_status','0',0),(237,0,'journal2_carousel','journal2_carousel_108_status','1',0),(238,0,'journal2_carousel','journal2_carousel_109_status','0',0),(239,0,'journal2_static_banners','journal2_static_banners_110_status','0',0),(240,0,'journal2_static_banners','journal2_static_banners_111_status','0',0),(241,0,'journal2_static_banners','journal2_static_banners_112_status','0',0),(242,0,'journal2_static_banners','journal2_static_banners_113_status','0',0),(243,0,'journal2_static_banners','journal2_static_banners_114_status','0',0),(244,0,'journal2_static_banners','journal2_static_banners_115_status','0',0),(245,0,'journal2_slider','journal2_slider_116_status','1',0),(246,0,'journal2_header_notice','journal2_header_notice_117_status','1',0),(247,0,'journal2_side_category','journal2_side_category_118_status','1',0),(248,0,'journal2_side_category','journal2_side_category_119_status','1',0),(249,0,'journal2_text_rotator','journal2_text_rotator_120_status','1',0),(250,0,'journal2_photo_gallery','journal2_photo_gallery_121_status','1',0),(251,0,'journal2_fullscreen_slider','journal2_fullscreen_slider_122_status','0',0),(252,0,'journal2_fullscreen_slider','journal2_fullscreen_slider_123_status','0',0),(253,0,'journal2_blog_side_posts','journal2_blog_side_posts_124_status','1',0),(254,0,'journal2_blog_side_posts','journal2_blog_side_posts_125_status','1',0),(255,0,'journal2_blog_comments','journal2_blog_comments_126_status','1',0),(256,0,'journal2_blog_comments','journal2_blog_comments_127_status','1',0),(257,0,'journal2_blog_search','journal2_blog_search_128_status','1',0),(258,0,'journal2_blog_search','journal2_blog_search_129_status','1',0),(259,0,'journal2_blog_tags','journal2_blog_tags_130_status','1',0),(260,0,'journal2_blog_tags','journal2_blog_tags_131_status','1',0),(261,0,'journal2_blog_categories','journal2_blog_categories_132_status','1',0),(262,0,'journal2_blog_categories','journal2_blog_categories_133_status','1',0),(263,0,'journal2_super_filter','journal2_super_filter_134_status','1',0),(264,0,'journal2_super_filter','journal2_super_filter_135_status','1',0),(265,0,'journal2_super_filter','journal2_super_filter_136_status','1',0),(984,0,'marketplace','marketplace_allowed_categories','[]',1),(983,0,'marketplace','marketplace_paypal_email_subject','',0),(982,0,'marketplace','marketplace_paypal_appid','',0),(981,0,'marketplace','marketplace_paypal_signature','',0),(980,0,'marketplace','marketplace_paypal_password','',0),(979,0,'marketplace','marketplace_paypal_user','',0),(978,0,'marketplace','marketplace_paypal_mode','0',0),(977,0,'marketplace','marketplace_mail_seller_low_stock','',0),(976,0,'marketplace','marketplace_mail_seller_on_edit','',0),(975,0,'marketplace','marketplace_mail_admin_on_edit','',0),(974,0,'marketplace','marketplace_mail_seller_to_admin','',0),(973,0,'marketplace','marketplace_mail_cutomer_to_seller','',0),(972,0,'marketplace','marketplace_mail_order','',0),(971,0,'marketplace','marketplace_mail_transaction','',0),(970,0,'marketplace','marketplace_mail_product_approve','',0),(969,0,'marketplace','marketplace_mail_product_admin','',0),(968,0,'marketplace','marketplace_mail_product_request','',0),(967,0,'marketplace','marketplace_mail_partner_approve','',0),(966,0,'marketplace','marketplace_mail_partner_admin','',0),(963,0,'marketplace','marketplace_seller_info_by_module','0',0),(964,0,'marketplace','marketplace_mail_keywords','{order}\r\n{message}\r\n{subject}\r\n{commission}\r\n{product_name}\r\n{product_quantity}\r\n{customer_name}\r\n{seller_name}\r\n{config_logo}\r\n{config_icon}\r\n{config_currency}\r\n{config_image}\r\n{config_name}\r\n{config_owner}\r\n{config_address}\r\n{config_geocode}\r\n{config_email}\r\n{config_telephone}',0),(965,0,'marketplace','marketplace_mail_partner_request','',0),(962,0,'marketplace','marketplace_product_image_display','avatar',0),(961,0,'marketplace','marketplace_product_show_seller_product','1',0),(954,0,'marketplace','marketplace_profile_email','1',0),(955,0,'marketplace','marketplace_profile_telephone','1',0),(956,0,'marketplace','marketplace_review_only_order','1',0),(957,0,'marketplace','marketplace_seller_info_hide','0',0),(958,0,'marketplace','marketplace_allowed_account_menu','{\"profile\":\"profile\",\"dashboard\":\"dashboard\",\"orderhistory\":\"orderhistory\",\"transaction\":\"transaction\",\"productlist\":\"productlist\",\"addproduct\":\"addproduct\",\"downloads\":\"downloads\",\"manageshipping\":\"manageshipping\",\"asktoadmin\":\"asktoadmin\",\"notification\":\"notification\"}',1),(960,0,'marketplace','marketplace_product_name_display','sn',0),(959,0,'marketplace','marketplace_account_menu_sequence','{\"profile\":\"My Profile\",\"dashboard\":\"Dashboard\",\"orderhistory\":\"Order History\",\"transaction\":\"Transaction\",\"productlist\":\"Product List\",\"addproduct\":\"Add Product\",\"downloads\":\"Downloads\",\"manageshipping\":\"Manage Shipping\",\"asktoadmin\":\"Ask To Admin\",\"notification\":\"Notification\"}',1),(950,0,'marketplace','marketplace_seller_product_list_limit','',0),(951,0,'marketplace','marketplace_tab','{\"heading\":[{\"1\":\"This is the Sell Tab\"}],\"description\":[{\"1\":\"&lt;p&gt;This is the Sell TabThis is the Sell Tab&lt;br&gt;&lt;\\/p&gt;\"}]}',1),(952,0,'marketplace','marketplace_allowedprofilecolumn','{\"gender\":\"gender\",\"shortprofile\":\"shortprofile\",\"avatar\":\"avatar\",\"twitterid\":\"twitterid\",\"paypalid\":\"paypalid\",\"paypalfirstname\":\"paypalfirstname\",\"paypallastname\":\"paypallastname\",\"country\":\"country\",\"facebookid\":\"facebookid\",\"backgroundcolor\":\"backgroundcolor\",\"companybanner\":\"companybanner\",\"companylogo\":\"companylogo\",\"companylocality\":\"companylocality\",\"companyname\":\"companyname\",\"companydescription\":\"companydescription\",\"countrylogo\":\"countrylogo\",\"otherpayment\":\"otherpayment\",\"taxinfo\":\"taxinfo\"}',1),(953,0,'marketplace','marketplace_allowed_public_seller_profile','{\"store\":\"store\",\"collection\":\"collection\",\"review\":\"review\",\"productReview\":\"productReview\",\"location\":\"location\"}',1),(948,0,'marketplace','marketplace_showproducts','1',0),(949,0,'marketplace','marketplace_seller_list_limit','',0),(947,0,'marketplace','marketplace_showpartners','1',0),(946,0,'marketplace','marketplace_sellbuttontitle','{\"1\":\"Listing\"}',1),(945,0,'marketplace','marketplace_sellheader','{\"1\":\"Listing \"}',1),(944,0,'marketplace','marketplace_product_seo_page_ext','',0),(943,0,'marketplace','marketplace_product_seo_default_name','',0),(942,0,'marketplace','marketplace_product_seo_format','1',0),(941,0,'marketplace','marketplace_product_seo_name','sellername',0),(940,0,'marketplace','marketplace_useseo','0',0),(939,0,'marketplace','marketplace_product_quantity_restriction','',0),(938,0,'marketplace','marketplace_min_cart_value','10',0),(937,0,'marketplace','marketplace_allowed_shipping_method','[\"flat.flat\"]',1),(936,0,'marketplace','marketplace_cancel_order_status','7',0),(935,0,'marketplace','marketplace_complete_order_status','Complete',0),(932,0,'marketplace','marketplace_adminnotify','0',0),(933,0,'marketplace','marketplace_available_order_status','[\"7\",\"9\",\"13\",\"5\",\"8\",\"14\",\"10\",\"1\",\"15\",\"2\",\"11\",\"12\",\"3\",\"16\"]',1),(934,0,'marketplace','marketplace_order_status_sequence','{\"7\":{\"order_status_id\":\"7\",\"name\":\"Canceled\"},\"13\":{\"order_status_id\":\"13\",\"name\":\"Chargeback\"},\"5\":{\"order_status_id\":\"5\",\"name\":\"Complete\"},\"8\":{\"order_status_id\":\"8\",\"name\":\"Denied\"},\"9\":{\"order_status_id\":\"9\",\"name\":\"Canceled Reversal\"},\"14\":{\"order_status_id\":\"14\",\"name\":\"Expired\"},\"10\":{\"order_status_id\":\"10\",\"name\":\"Failed\"},\"1\":{\"order_status_id\":\"1\",\"name\":\"Pending\"},\"15\":{\"order_status_id\":\"15\",\"name\":\"Processed\"},\"2\":{\"order_status_id\":\"2\",\"name\":\"Processing\"},\"11\":{\"order_status_id\":\"11\",\"name\":\"Refunded\"},\"12\":{\"order_status_id\":\"12\",\"name\":\"Reversed\"},\"3\":{\"order_status_id\":\"3\",\"name\":\"Shipped\"},\"16\":{\"order_status_id\":\"16\",\"name\":\"Voided\"}}',1),(931,0,'marketplace','marketplace_sellerorderstatus','1',0),(930,0,'marketplace','marketplace_seller_manage_order','1',0),(929,0,'marketplace','marketplace_sellerbuyproduct','0',0),(928,0,'marketplace','marketplace_sellerproductshow','0',0),(927,0,'marketplace','marketplace_sellerproductdelete','0',0),(926,0,'marketplace','marketplace_sellerdeleteproduct','1',0),(925,0,'marketplace','marketplace_product_reapprove','0',0),(924,0,'marketplace','marketplace_productaddemail','1',0),(923,0,'marketplace','marketplace_downloadsize','2000',0),(921,0,'marketplace','marketplace_imagesize','2000',0),(922,0,'marketplace','marketplace_downloadex','zip,jpg,jpeg,png',0),(919,0,'marketplace','marketplace_noofimages','5',0),(920,0,'marketplace','marketplace_imageex','jpg,jpeg,png',0),(918,0,'marketplace','marketplace_allowed_seller_category_type','1',0),(917,0,'marketplace','marketplace_seller_category_required','1',0),(916,0,'marketplace','marketplace_allowedproducttabs','{\"links\":\"links\",\"attribute\":\"attribute\",\"options\":\"options\"}',1),(912,0,'marketplace','marketplace_auto_generate_sku','0',0),(913,0,'marketplace','marketplace_low_stock_notification','0',0),(914,0,'marketplace','marketplace_low_stock_quantity','',0),(915,0,'marketplace','marketplace_allowedproductcolumn','{\"quantity\":\"quantity\",\"price\":\"price\"}',1),(906,0,'marketplace','marketplace_commission_unit_price','1',0),(907,0,'marketplace','marketplace_commission_tax','0',0),(908,0,'marketplace','marketplace_commissionworkedon','1',0),(909,0,'marketplace','marketplace_commission_add','{\"category\":\"category\",\"category_child\":\"category_child\"}',1),(910,0,'marketplace','marketplace_boxcommission','{\"fixed\":\"fixed\",\"category\":\"category\",\"category_child\":\"category_child\"}',1),(911,0,'marketplace','marketplace_seller_product_store','own_store',0),(905,0,'marketplace','marketplace_commission','700',0),(903,0,'marketplace','marketplace_mailadmincustomercontactseller','1',0),(904,0,'marketplace','marketplace_notification_filter','[\"7\",\"9\",\"13\",\"5\",\"8\",\"14\",\"10\",\"1\",\"15\",\"2\",\"11\",\"12\",\"3\",\"16\"]',1),(901,0,'marketplace','marketplace_customercontactseller','1',0),(902,0,'marketplace','marketplace_seller_name_cart_status','1',0),(900,0,'marketplace','marketplace_mailtoseller','1',0),(899,0,'marketplace','marketplace_productapprov','1',0),(898,0,'marketplace','marketplace_partnerapprov','1',0),(896,0,'marketplace','marketplace_default_image_name','catalog/canon_eos_5d_mark_iv_1274706.jpg',0),(897,0,'marketplace','marketplace_becomepartnerregistration','1',0),(895,0,'marketplace','marketplace_adminmail','abc@gmail.com',0),(894,0,'marketplace','marketplace_store','0',0),(893,0,'marketplace','marketplace_status','1',0),(1163,0,'config','config_file_max_size','300000',0),(1164,0,'config','config_file_ext_allowed','zip\r\ntxt\r\npng\r\njpe\r\njpeg\r\njpg\r\ngif\r\nbmp\r\nico\r\ntiff\r\ntif\r\nsvg\r\nsvgz\r\nzip\r\nrar\r\nmsi\r\ncab\r\nmp3\r\nqt\r\nmov\r\npdf\r\npsd\r\nai\r\neps\r\nps\r\ndoc',0),(1094,0,'config','config_zone_id','1513',0),(1091,0,'config','config_open','Hello Buddy',0),(1092,0,'config','config_comment','',0),(1093,0,'config','config_country_id','100',0),(1081,0,'config','config_theme','theme_default',0),(1082,0,'config','config_layout_id','4',0),(1083,0,'config','config_name','Your Store',0),(1084,0,'config','config_owner','Your Name',0),(1085,0,'config','config_address','Address 1',0),(1086,0,'config','config_geocode','',0),(1087,0,'config','config_email','donny@futuremediatrix.com',0),(1088,0,'config','config_telephone','123456789',0),(1089,0,'config','config_fax','',0),(1090,0,'config','config_image','data/journal2/background/bg3.jpg',0),(1080,0,'config','config_meta_keyword','',0),(1079,0,'config','config_meta_description','My Store',0),(1078,0,'config','config_meta_title','Your Store',0),(1077,0,'marketplace_notification','marketplace_notification_viewed','3',0),(1168,0,'config','config_error_filename','error.log',0),(1169,0,'config','journal_db_check_journal2_newsletter_store_id','1',0);
/*!40000 ALTER TABLE `lk_setting` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_stock_status`
--

DROP TABLE IF EXISTS `lk_stock_status`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_stock_status` (
  `stock_status_id` int(11) NOT NULL AUTO_INCREMENT,
  `language_id` int(11) NOT NULL,
  `name` varchar(32) NOT NULL,
  PRIMARY KEY (`stock_status_id`,`language_id`)
) ENGINE=MyISAM AUTO_INCREMENT=9 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_stock_status`
--

LOCK TABLES `lk_stock_status` WRITE;
/*!40000 ALTER TABLE `lk_stock_status` DISABLE KEYS */;
INSERT INTO `lk_stock_status` VALUES (7,1,'In Stock'),(8,1,'Pre-Order'),(5,1,'Out Of Stock'),(6,1,'2-3 Days');
/*!40000 ALTER TABLE `lk_stock_status` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_store`
--

DROP TABLE IF EXISTS `lk_store`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_store` (
  `store_id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(64) NOT NULL,
  `url` varchar(255) NOT NULL,
  `ssl` varchar(255) NOT NULL,
  PRIMARY KEY (`store_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_store`
--

LOCK TABLES `lk_store` WRITE;
/*!40000 ALTER TABLE `lk_store` DISABLE KEYS */;
/*!40000 ALTER TABLE `lk_store` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_tax_class`
--

DROP TABLE IF EXISTS `lk_tax_class`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_tax_class` (
  `tax_class_id` int(11) NOT NULL AUTO_INCREMENT,
  `title` varchar(32) NOT NULL,
  `description` varchar(255) NOT NULL,
  `date_added` datetime NOT NULL,
  `date_modified` datetime NOT NULL,
  PRIMARY KEY (`tax_class_id`)
) ENGINE=MyISAM AUTO_INCREMENT=11 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_tax_class`
--

LOCK TABLES `lk_tax_class` WRITE;
/*!40000 ALTER TABLE `lk_tax_class` DISABLE KEYS */;
INSERT INTO `lk_tax_class` VALUES (9,'Taxable Goods','Taxed goods','2009-01-06 23:21:53','2011-09-23 14:07:50'),(10,'Downloadable Products','Downloadable','2011-09-21 22:19:39','2011-09-22 10:27:36');
/*!40000 ALTER TABLE `lk_tax_class` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_tax_rate`
--

DROP TABLE IF EXISTS `lk_tax_rate`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_tax_rate` (
  `tax_rate_id` int(11) NOT NULL AUTO_INCREMENT,
  `geo_zone_id` int(11) NOT NULL DEFAULT 0,
  `name` varchar(32) NOT NULL,
  `rate` decimal(15,4) NOT NULL DEFAULT 0.0000,
  `type` char(1) NOT NULL,
  `date_added` datetime NOT NULL,
  `date_modified` datetime NOT NULL,
  PRIMARY KEY (`tax_rate_id`)
) ENGINE=MyISAM AUTO_INCREMENT=88 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_tax_rate`
--

LOCK TABLES `lk_tax_rate` WRITE;
/*!40000 ALTER TABLE `lk_tax_rate` DISABLE KEYS */;
INSERT INTO `lk_tax_rate` VALUES (86,3,'VAT (20%)',20.0000,'P','2011-03-09 21:17:10','2011-09-22 22:24:29'),(87,3,'Eco Tax (-2.00)',2.0000,'F','2011-09-21 21:49:23','2011-09-23 00:40:19');
/*!40000 ALTER TABLE `lk_tax_rate` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_tax_rate_to_customer_group`
--

DROP TABLE IF EXISTS `lk_tax_rate_to_customer_group`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_tax_rate_to_customer_group` (
  `tax_rate_id` int(11) NOT NULL,
  `customer_group_id` int(11) NOT NULL,
  PRIMARY KEY (`tax_rate_id`,`customer_group_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_tax_rate_to_customer_group`
--

LOCK TABLES `lk_tax_rate_to_customer_group` WRITE;
/*!40000 ALTER TABLE `lk_tax_rate_to_customer_group` DISABLE KEYS */;
INSERT INTO `lk_tax_rate_to_customer_group` VALUES (86,1),(87,1);
/*!40000 ALTER TABLE `lk_tax_rate_to_customer_group` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_tax_rule`
--

DROP TABLE IF EXISTS `lk_tax_rule`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_tax_rule` (
  `tax_rule_id` int(11) NOT NULL AUTO_INCREMENT,
  `tax_class_id` int(11) NOT NULL,
  `tax_rate_id` int(11) NOT NULL,
  `based` varchar(10) NOT NULL,
  `priority` int(5) NOT NULL DEFAULT 1,
  PRIMARY KEY (`tax_rule_id`)
) ENGINE=MyISAM AUTO_INCREMENT=129 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_tax_rule`
--

LOCK TABLES `lk_tax_rule` WRITE;
/*!40000 ALTER TABLE `lk_tax_rule` DISABLE KEYS */;
INSERT INTO `lk_tax_rule` VALUES (121,10,86,'payment',1),(120,10,87,'store',0),(128,9,86,'shipping',1),(127,9,87,'shipping',2);
/*!40000 ALTER TABLE `lk_tax_rule` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_theme`
--

DROP TABLE IF EXISTS `lk_theme`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_theme` (
  `theme_id` int(11) NOT NULL AUTO_INCREMENT,
  `store_id` int(11) NOT NULL,
  `theme` varchar(64) NOT NULL,
  `route` varchar(64) NOT NULL,
  `code` text NOT NULL,
  PRIMARY KEY (`theme_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_theme`
--

LOCK TABLES `lk_theme` WRITE;
/*!40000 ALTER TABLE `lk_theme` DISABLE KEYS */;
/*!40000 ALTER TABLE `lk_theme` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_translation`
--

DROP TABLE IF EXISTS `lk_translation`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_translation` (
  `translation_id` int(11) NOT NULL AUTO_INCREMENT,
  `store_id` int(11) NOT NULL,
  `language_id` int(11) NOT NULL,
  `route` varchar(64) NOT NULL,
  `key` varchar(64) NOT NULL,
  `value` text NOT NULL,
  PRIMARY KEY (`translation_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_translation`
--

LOCK TABLES `lk_translation` WRITE;
/*!40000 ALTER TABLE `lk_translation` DISABLE KEYS */;
/*!40000 ALTER TABLE `lk_translation` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_upload`
--

DROP TABLE IF EXISTS `lk_upload`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_upload` (
  `upload_id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `filename` varchar(255) NOT NULL,
  `code` varchar(255) NOT NULL,
  `date_added` datetime NOT NULL,
  PRIMARY KEY (`upload_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_upload`
--

LOCK TABLES `lk_upload` WRITE;
/*!40000 ALTER TABLE `lk_upload` DISABLE KEYS */;
/*!40000 ALTER TABLE `lk_upload` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_url_alias`
--

DROP TABLE IF EXISTS `lk_url_alias`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_url_alias` (
  `url_alias_id` int(11) NOT NULL AUTO_INCREMENT,
  `query` varchar(255) NOT NULL,
  `keyword` varchar(255) NOT NULL,
  PRIMARY KEY (`url_alias_id`),
  KEY `query` (`query`),
  KEY `keyword` (`keyword`)
) ENGINE=MyISAM AUTO_INCREMENT=845 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_url_alias`
--

LOCK TABLES `lk_url_alias` WRITE;
/*!40000 ALTER TABLE `lk_url_alias` DISABLE KEYS */;
INSERT INTO `lk_url_alias` VALUES (824,'product_id=48','ipod-classic'),(836,'category_id=20','desktops'),(834,'category_id=26','pc'),(835,'category_id=27','mac'),(730,'manufacturer_id=8','apple'),(772,'information_id=4','about_us'),(768,'product_id=42','test'),(789,'category_id=34','mp3-players'),(781,'category_id=36','test2'),(774,'category_id=18','laptop-notebook'),(775,'category_id=46','macs'),(776,'category_id=45','windows'),(777,'category_id=25','component'),(778,'category_id=29','mouse'),(779,'category_id=28','monitor'),(780,'category_id=35','test1'),(782,'category_id=30','printer'),(783,'category_id=31','scanner'),(784,'category_id=32','web-camera'),(785,'category_id=57','tablet'),(786,'category_id=17','software'),(787,'category_id=24','smartphone'),(788,'category_id=33','camera'),(790,'category_id=43','test11'),(791,'category_id=44','test12'),(792,'category_id=47','test15'),(793,'category_id=48','test16'),(794,'category_id=49','test17'),(795,'category_id=50','test18'),(796,'category_id=51','test19'),(797,'category_id=52','test20'),(798,'category_id=58','test25'),(799,'category_id=53','test21'),(800,'category_id=54','test22'),(801,'category_id=55','test23'),(802,'category_id=56','test24'),(803,'category_id=38','test4'),(804,'category_id=37','test5'),(805,'category_id=39','test6'),(806,'category_id=40','test7'),(807,'category_id=41','test8'),(808,'category_id=42','test9'),(809,'product_id=30','canon-eos-5d'),(840,'product_id=47','hp-lp3065'),(811,'product_id=28','htc-touch-hd'),(812,'product_id=43','macbook'),(813,'product_id=44','macbook-air'),(814,'product_id=45','macbook-pro'),(816,'product_id=31','nikon-d300'),(817,'product_id=29','palm-treo-pro'),(818,'product_id=35','product-8'),(819,'product_id=49','samsung-galaxy-tab-10-1'),(820,'product_id=33','samsung-syncmaster-941bw'),(821,'product_id=46','sony-vaio'),(844,'product_id=41','imac'),(823,'product_id=40','iphone'),(825,'product_id=36','ipod-nano'),(826,'product_id=34','ipod-shuffle'),(827,'product_id=32','ipod-touch'),(828,'manufacturer_id=9','canon'),(829,'manufacturer_id=5','htc'),(830,'manufacturer_id=7','hewlett-packard'),(831,'manufacturer_id=6','palm'),(832,'manufacturer_id=10','sony'),(841,'information_id=6','delivery'),(842,'information_id=3','privacy'),(843,'information_id=5','terms');
/*!40000 ALTER TABLE `lk_url_alias` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_user`
--

DROP TABLE IF EXISTS `lk_user`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_user` (
  `user_id` int(11) NOT NULL AUTO_INCREMENT,
  `user_group_id` int(11) NOT NULL,
  `username` varchar(20) NOT NULL,
  `password` varchar(40) NOT NULL,
  `salt` varchar(9) NOT NULL,
  `firstname` varchar(32) NOT NULL,
  `lastname` varchar(32) NOT NULL,
  `email` varchar(96) NOT NULL,
  `image` varchar(255) NOT NULL,
  `code` varchar(40) NOT NULL,
  `ip` varchar(40) NOT NULL,
  `status` tinyint(1) NOT NULL,
  `date_added` datetime NOT NULL,
  PRIMARY KEY (`user_id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_user`
--

LOCK TABLES `lk_user` WRITE;
/*!40000 ALTER TABLE `lk_user` DISABLE KEYS */;
INSERT INTO `lk_user` VALUES (1,1,'null','ac268689955b5b49425a1ae76b2e2ffd75ebe843','fSmqMxY3K','John','Doe','donny@futuremediatrix.com','','','139.193.106.192',1,'2017-08-22 07:23:29');
/*!40000 ALTER TABLE `lk_user` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_user_group`
--

DROP TABLE IF EXISTS `lk_user_group`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_user_group` (
  `user_group_id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(64) NOT NULL,
  `permission` text NOT NULL,
  PRIMARY KEY (`user_group_id`)
) ENGINE=MyISAM AUTO_INCREMENT=11 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_user_group`
--

LOCK TABLES `lk_user_group` WRITE;
/*!40000 ALTER TABLE `lk_user_group` DISABLE KEYS */;
INSERT INTO `lk_user_group` VALUES (1,'Administrator','{\"access\":[\"catalog\\/attribute\",\"catalog\\/attribute_group\",\"catalog\\/category\",\"catalog\\/download\",\"catalog\\/filter\",\"catalog\\/information\",\"catalog\\/manufacturer\",\"catalog\\/option\",\"catalog\\/product\",\"catalog\\/recurring\",\"catalog\\/review\",\"common\\/column_left\",\"common\\/filemanager\",\"customer\\/custom_field\",\"customer\\/customer\",\"customer\\/customer_group\",\"design\\/banner\",\"design\\/language\",\"design\\/layout\",\"design\\/menu\",\"design\\/theme\",\"design\\/translation\",\"event\\/compatibility\",\"event\\/theme\",\"extension\\/analytics\\/google_analytics\",\"extension\\/captcha\\/basic_captcha\",\"extension\\/captcha\\/google_captcha\",\"extension\\/dashboard\\/activity\",\"extension\\/dashboard\\/chart\",\"extension\\/dashboard\\/customer\",\"extension\\/dashboard\\/map\",\"extension\\/dashboard\\/online\",\"extension\\/dashboard\\/order\",\"extension\\/dashboard\\/recent\",\"extension\\/dashboard\\/sale\",\"extension\\/event\",\"extension\\/extension\",\"extension\\/extension\\/analytics\",\"extension\\/extension\\/captcha\",\"extension\\/extension\\/dashboard\",\"extension\\/extension\\/feed\",\"extension\\/extension\\/fraud\",\"extension\\/extension\\/menu\",\"extension\\/extension\\/module\",\"extension\\/extension\\/payment\",\"extension\\/extension\\/shipping\",\"extension\\/extension\\/theme\",\"extension\\/extension\\/total\",\"extension\\/feed\\/google_base\",\"extension\\/feed\\/google_sitemap\",\"extension\\/feed\\/openbaypro\",\"extension\\/fraud\\/fraudlabspro\",\"extension\\/fraud\\/ip\",\"extension\\/fraud\\/maxmind\",\"extension\\/installer\",\"extension\\/modification\",\"extension\\/module\\/account\",\"extension\\/module\\/affiliate\",\"extension\\/module\\/amazon_login\",\"extension\\/module\\/amazon_pay\",\"extension\\/module\\/banner\",\"extension\\/module\\/bestseller\",\"extension\\/module\\/carousel\",\"extension\\/module\\/category\",\"extension\\/module\\/divido_calculator\",\"extension\\/module\\/ebay_listing\",\"extension\\/module\\/featured\",\"extension\\/module\\/filter\",\"extension\\/module\\/google_hangouts\",\"extension\\/module\\/html\",\"extension\\/module\\/information\",\"extension\\/module\\/klarna_checkout_module\",\"extension\\/module\\/latest\",\"extension\\/module\\/laybuy_layout\",\"extension\\/module\\/pilibaba_button\",\"extension\\/module\\/pp_button\",\"extension\\/module\\/pp_login\",\"extension\\/module\\/sagepay_direct_cards\",\"extension\\/module\\/sagepay_server_cards\",\"extension\\/module\\/slideshow\",\"extension\\/module\\/special\",\"extension\\/module\\/store\",\"extension\\/openbay\",\"extension\\/openbay\\/amazon\",\"extension\\/openbay\\/amazon_listing\",\"extension\\/openbay\\/amazon_product\",\"extension\\/openbay\\/amazonus\",\"extension\\/openbay\\/amazonus_listing\",\"extension\\/openbay\\/amazonus_product\",\"extension\\/openbay\\/ebay\",\"extension\\/openbay\\/ebay_profile\",\"extension\\/openbay\\/ebay_template\",\"extension\\/openbay\\/etsy\",\"extension\\/openbay\\/etsy_product\",\"extension\\/openbay\\/etsy_shipping\",\"extension\\/openbay\\/etsy_shop\",\"extension\\/openbay\\/fba\",\"extension\\/payment\\/amazon_login_pay\",\"extension\\/payment\\/authorizenet_aim\",\"extension\\/payment\\/authorizenet_sim\",\"extension\\/payment\\/bank_transfer\",\"extension\\/payment\\/bluepay_hosted\",\"extension\\/payment\\/bluepay_redirect\",\"extension\\/payment\\/cardconnect\",\"extension\\/payment\\/cardinity\",\"extension\\/payment\\/cheque\",\"extension\\/payment\\/cod\",\"extension\\/payment\\/divido\",\"extension\\/payment\\/eway\",\"extension\\/payment\\/firstdata\",\"extension\\/payment\\/firstdata_remote\",\"extension\\/payment\\/free_checkout\",\"extension\\/payment\\/g2apay\",\"extension\\/payment\\/globalpay\",\"extension\\/payment\\/globalpay_remote\",\"extension\\/payment\\/klarna_account\",\"extension\\/payment\\/klarna_checkout\",\"extension\\/payment\\/klarna_invoice\",\"extension\\/payment\\/laybuy\",\"extension\\/payment\\/liqpay\",\"extension\\/payment\\/nochex\",\"extension\\/payment\\/paymate\",\"extension\\/payment\\/paypoint\",\"extension\\/payment\\/payza\",\"extension\\/payment\\/perpetual_payments\",\"extension\\/payment\\/pilibaba\",\"extension\\/payment\\/pp_express\",\"extension\\/payment\\/pp_payflow\",\"extension\\/payment\\/pp_payflow_iframe\",\"extension\\/payment\\/pp_pro\",\"extension\\/payment\\/pp_pro_iframe\",\"extension\\/payment\\/pp_standard\",\"extension\\/payment\\/realex\",\"extension\\/payment\\/realex_remote\",\"extension\\/payment\\/sagepay_direct\",\"extension\\/payment\\/sagepay_server\",\"extension\\/payment\\/sagepay_us\",\"extension\\/payment\\/securetrading_pp\",\"extension\\/payment\\/securetrading_ws\",\"extension\\/payment\\/skrill\",\"extension\\/payment\\/twocheckout\",\"extension\\/payment\\/web_payment_software\",\"extension\\/payment\\/worldpay\",\"extension\\/shipping\\/auspost\",\"extension\\/shipping\\/citylink\",\"extension\\/shipping\\/fedex\",\"extension\\/shipping\\/flat\",\"extension\\/shipping\\/free\",\"extension\\/shipping\\/item\",\"extension\\/shipping\\/parcelforce_48\",\"extension\\/shipping\\/pickup\",\"extension\\/shipping\\/royal_mail\",\"extension\\/shipping\\/ups\",\"extension\\/shipping\\/usps\",\"extension\\/shipping\\/weight\",\"extension\\/store\",\"extension\\/theme\\/theme_default\",\"extension\\/total\\/coupon\",\"extension\\/total\\/credit\",\"extension\\/total\\/handling\",\"extension\\/total\\/klarna_fee\",\"extension\\/total\\/low_order_fee\",\"extension\\/total\\/reward\",\"extension\\/total\\/shipping\",\"extension\\/total\\/sub_total\",\"extension\\/total\\/tax\",\"extension\\/total\\/total\",\"extension\\/total\\/voucher\",\"localisation\\/country\",\"localisation\\/currency\",\"localisation\\/geo_zone\",\"localisation\\/language\",\"localisation\\/length_class\",\"localisation\\/location\",\"localisation\\/order_status\",\"localisation\\/return_action\",\"localisation\\/return_reason\",\"localisation\\/return_status\",\"localisation\\/stock_status\",\"localisation\\/tax_class\",\"localisation\\/tax_rate\",\"localisation\\/weight_class\",\"localisation\\/zone\",\"marketing\\/affiliate\",\"marketing\\/contact\",\"marketing\\/coupon\",\"marketing\\/marketing\",\"report\\/affiliate\",\"report\\/affiliate_activity\",\"report\\/affiliate_login\",\"report\\/customer_activity\",\"report\\/customer_credit\",\"report\\/customer_login\",\"report\\/customer_online\",\"report\\/customer_order\",\"report\\/customer_reward\",\"report\\/customer_search\",\"report\\/marketing\",\"report\\/product_purchased\",\"report\\/product_viewed\",\"report\\/sale_coupon\",\"report\\/sale_order\",\"report\\/sale_return\",\"report\\/sale_shipping\",\"report\\/sale_tax\",\"sale\\/order\",\"sale\\/recurring\",\"sale\\/return\",\"sale\\/voucher\",\"sale\\/voucher_theme\",\"setting\\/setting\",\"setting\\/store\",\"startup\\/compatibility\",\"startup\\/error\",\"startup\\/event\",\"startup\\/login\",\"startup\\/permission\",\"startup\\/router\",\"startup\\/sass\",\"startup\\/startup\",\"tool\\/backup\",\"tool\\/log\",\"tool\\/upload\",\"user\\/api\",\"user\\/user\",\"user\\/user_permission\",\"extension\\/module\\/journal2\",\"module\\/journal2\",\"extension\\/module\\/marketplace\",\"customerpartner\\/addshipping\",\"customerpartner\\/category\",\"customerpartner\\/categorymapping\",\"customerpartner\\/commission\",\"customerpartner\\/dashboard\",\"customerpartner\\/dashboards\\/chart\",\"customerpartner\\/dashboards\\/customer\",\"customerpartner\\/dashboards\\/map\",\"customerpartner\\/dashboards\\/order\",\"customerpartner\\/dashboards\\/recent\",\"customerpartner\\/dashboards\\/sale\",\"customerpartner\\/income\",\"customerpartner\\/mails\",\"customerpartner\\/map\",\"customerpartner\\/notification\",\"customerpartner\\/order\",\"customerpartner\\/partner\",\"customerpartner\\/product\",\"customerpartner\\/review\",\"customerpartner\\/reviewfield\",\"customerpartner\\/shipping\",\"customerpartner\\/transaction\",\"wkcustomfield\\/wkcustomfield\"],\"modify\":[\"catalog\\/attribute\",\"catalog\\/attribute_group\",\"catalog\\/category\",\"catalog\\/download\",\"catalog\\/filter\",\"catalog\\/information\",\"catalog\\/manufacturer\",\"catalog\\/option\",\"catalog\\/product\",\"catalog\\/recurring\",\"catalog\\/review\",\"common\\/column_left\",\"common\\/filemanager\",\"customer\\/custom_field\",\"customer\\/customer\",\"customer\\/customer_group\",\"design\\/banner\",\"design\\/language\",\"design\\/layout\",\"design\\/menu\",\"design\\/theme\",\"design\\/translation\",\"event\\/compatibility\",\"event\\/theme\",\"extension\\/analytics\\/google_analytics\",\"extension\\/captcha\\/basic_captcha\",\"extension\\/captcha\\/google_captcha\",\"extension\\/dashboard\\/activity\",\"extension\\/dashboard\\/chart\",\"extension\\/dashboard\\/customer\",\"extension\\/dashboard\\/map\",\"extension\\/dashboard\\/online\",\"extension\\/dashboard\\/order\",\"extension\\/dashboard\\/recent\",\"extension\\/dashboard\\/sale\",\"extension\\/event\",\"extension\\/extension\",\"extension\\/extension\\/analytics\",\"extension\\/extension\\/captcha\",\"extension\\/extension\\/dashboard\",\"extension\\/extension\\/feed\",\"extension\\/extension\\/fraud\",\"extension\\/extension\\/menu\",\"extension\\/extension\\/module\",\"extension\\/extension\\/payment\",\"extension\\/extension\\/shipping\",\"extension\\/extension\\/theme\",\"extension\\/extension\\/total\",\"extension\\/feed\\/google_base\",\"extension\\/feed\\/google_sitemap\",\"extension\\/feed\\/openbaypro\",\"extension\\/fraud\\/fraudlabspro\",\"extension\\/fraud\\/ip\",\"extension\\/fraud\\/maxmind\",\"extension\\/installer\",\"extension\\/modification\",\"extension\\/module\\/account\",\"extension\\/module\\/affiliate\",\"extension\\/module\\/amazon_login\",\"extension\\/module\\/amazon_pay\",\"extension\\/module\\/banner\",\"extension\\/module\\/bestseller\",\"extension\\/module\\/carousel\",\"extension\\/module\\/category\",\"extension\\/module\\/divido_calculator\",\"extension\\/module\\/ebay_listing\",\"extension\\/module\\/featured\",\"extension\\/module\\/filter\",\"extension\\/module\\/google_hangouts\",\"extension\\/module\\/html\",\"extension\\/module\\/information\",\"extension\\/module\\/klarna_checkout_module\",\"extension\\/module\\/latest\",\"extension\\/module\\/laybuy_layout\",\"extension\\/module\\/pilibaba_button\",\"extension\\/module\\/pp_button\",\"extension\\/module\\/pp_login\",\"extension\\/module\\/sagepay_direct_cards\",\"extension\\/module\\/sagepay_server_cards\",\"extension\\/module\\/slideshow\",\"extension\\/module\\/special\",\"extension\\/module\\/store\",\"extension\\/openbay\",\"extension\\/openbay\\/amazon\",\"extension\\/openbay\\/amazon_listing\",\"extension\\/openbay\\/amazon_product\",\"extension\\/openbay\\/amazonus\",\"extension\\/openbay\\/amazonus_listing\",\"extension\\/openbay\\/amazonus_product\",\"extension\\/openbay\\/ebay\",\"extension\\/openbay\\/ebay_profile\",\"extension\\/openbay\\/ebay_template\",\"extension\\/openbay\\/etsy\",\"extension\\/openbay\\/etsy_product\",\"extension\\/openbay\\/etsy_shipping\",\"extension\\/openbay\\/etsy_shop\",\"extension\\/openbay\\/fba\",\"extension\\/payment\\/amazon_login_pay\",\"extension\\/payment\\/authorizenet_aim\",\"extension\\/payment\\/authorizenet_sim\",\"extension\\/payment\\/bank_transfer\",\"extension\\/payment\\/bluepay_hosted\",\"extension\\/payment\\/bluepay_redirect\",\"extension\\/payment\\/cardconnect\",\"extension\\/payment\\/cardinity\",\"extension\\/payment\\/cheque\",\"extension\\/payment\\/cod\",\"extension\\/payment\\/divido\",\"extension\\/payment\\/eway\",\"extension\\/payment\\/firstdata\",\"extension\\/payment\\/firstdata_remote\",\"extension\\/payment\\/free_checkout\",\"extension\\/payment\\/g2apay\",\"extension\\/payment\\/globalpay\",\"extension\\/payment\\/globalpay_remote\",\"extension\\/payment\\/klarna_account\",\"extension\\/payment\\/klarna_checkout\",\"extension\\/payment\\/klarna_invoice\",\"extension\\/payment\\/laybuy\",\"extension\\/payment\\/liqpay\",\"extension\\/payment\\/nochex\",\"extension\\/payment\\/paymate\",\"extension\\/payment\\/paypoint\",\"extension\\/payment\\/payza\",\"extension\\/payment\\/perpetual_payments\",\"extension\\/payment\\/pilibaba\",\"extension\\/payment\\/pp_express\",\"extension\\/payment\\/pp_payflow\",\"extension\\/payment\\/pp_payflow_iframe\",\"extension\\/payment\\/pp_pro\",\"extension\\/payment\\/pp_pro_iframe\",\"extension\\/payment\\/pp_standard\",\"extension\\/payment\\/realex\",\"extension\\/payment\\/realex_remote\",\"extension\\/payment\\/sagepay_direct\",\"extension\\/payment\\/sagepay_server\",\"extension\\/payment\\/sagepay_us\",\"extension\\/payment\\/securetrading_pp\",\"extension\\/payment\\/securetrading_ws\",\"extension\\/payment\\/skrill\",\"extension\\/payment\\/twocheckout\",\"extension\\/payment\\/web_payment_software\",\"extension\\/payment\\/worldpay\",\"extension\\/shipping\\/auspost\",\"extension\\/shipping\\/citylink\",\"extension\\/shipping\\/fedex\",\"extension\\/shipping\\/flat\",\"extension\\/shipping\\/free\",\"extension\\/shipping\\/item\",\"extension\\/shipping\\/parcelforce_48\",\"extension\\/shipping\\/pickup\",\"extension\\/shipping\\/royal_mail\",\"extension\\/shipping\\/ups\",\"extension\\/shipping\\/usps\",\"extension\\/shipping\\/weight\",\"extension\\/store\",\"extension\\/theme\\/theme_default\",\"extension\\/total\\/coupon\",\"extension\\/total\\/credit\",\"extension\\/total\\/handling\",\"extension\\/total\\/klarna_fee\",\"extension\\/total\\/low_order_fee\",\"extension\\/total\\/reward\",\"extension\\/total\\/shipping\",\"extension\\/total\\/sub_total\",\"extension\\/total\\/tax\",\"extension\\/total\\/total\",\"extension\\/total\\/voucher\",\"localisation\\/country\",\"localisation\\/currency\",\"localisation\\/geo_zone\",\"localisation\\/language\",\"localisation\\/length_class\",\"localisation\\/location\",\"localisation\\/order_status\",\"localisation\\/return_action\",\"localisation\\/return_reason\",\"localisation\\/return_status\",\"localisation\\/stock_status\",\"localisation\\/tax_class\",\"localisation\\/tax_rate\",\"localisation\\/weight_class\",\"localisation\\/zone\",\"marketing\\/affiliate\",\"marketing\\/contact\",\"marketing\\/coupon\",\"marketing\\/marketing\",\"report\\/affiliate\",\"report\\/affiliate_activity\",\"report\\/affiliate_login\",\"report\\/customer_activity\",\"report\\/customer_credit\",\"report\\/customer_login\",\"report\\/customer_online\",\"report\\/customer_order\",\"report\\/customer_reward\",\"report\\/customer_search\",\"report\\/marketing\",\"report\\/product_purchased\",\"report\\/product_viewed\",\"report\\/sale_coupon\",\"report\\/sale_order\",\"report\\/sale_return\",\"report\\/sale_shipping\",\"report\\/sale_tax\",\"sale\\/order\",\"sale\\/recurring\",\"sale\\/return\",\"sale\\/voucher\",\"sale\\/voucher_theme\",\"setting\\/setting\",\"setting\\/store\",\"startup\\/compatibility\",\"startup\\/error\",\"startup\\/event\",\"startup\\/login\",\"startup\\/permission\",\"startup\\/router\",\"startup\\/sass\",\"startup\\/startup\",\"tool\\/backup\",\"tool\\/log\",\"tool\\/upload\",\"user\\/api\",\"user\\/user\",\"user\\/user_permission\",\"extension\\/module\\/journal2\",\"module\\/journal2\",\"extension\\/module\\/marketplace\",\"customerpartner\\/addshipping\",\"customerpartner\\/category\",\"customerpartner\\/categorymapping\",\"customerpartner\\/commission\",\"customerpartner\\/dashboard\",\"customerpartner\\/dashboards\\/chart\",\"customerpartner\\/dashboards\\/customer\",\"customerpartner\\/dashboards\\/map\",\"customerpartner\\/dashboards\\/order\",\"customerpartner\\/dashboards\\/recent\",\"customerpartner\\/dashboards\\/sale\",\"customerpartner\\/income\",\"customerpartner\\/mails\",\"customerpartner\\/map\",\"customerpartner\\/notification\",\"customerpartner\\/order\",\"customerpartner\\/partner\",\"customerpartner\\/product\",\"customerpartner\\/review\",\"customerpartner\\/reviewfield\",\"customerpartner\\/shipping\",\"customerpartner\\/transaction\",\"wkcustomfield\\/wkcustomfield\"]}'),(10,'Demonstration','');
/*!40000 ALTER TABLE `lk_user_group` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_viewed_activity`
--

DROP TABLE IF EXISTS `lk_viewed_activity`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_viewed_activity` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `customer_id` int(11) NOT NULL,
  `notification_viewed` int(11) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_viewed_activity`
--

LOCK TABLES `lk_viewed_activity` WRITE;
/*!40000 ALTER TABLE `lk_viewed_activity` DISABLE KEYS */;
INSERT INTO `lk_viewed_activity` VALUES (7,2,1);
/*!40000 ALTER TABLE `lk_viewed_activity` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_voucher`
--

DROP TABLE IF EXISTS `lk_voucher`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_voucher` (
  `voucher_id` int(11) NOT NULL AUTO_INCREMENT,
  `order_id` int(11) NOT NULL,
  `code` varchar(10) NOT NULL,
  `from_name` varchar(64) NOT NULL,
  `from_email` varchar(96) NOT NULL,
  `to_name` varchar(64) NOT NULL,
  `to_email` varchar(96) NOT NULL,
  `voucher_theme_id` int(11) NOT NULL,
  `message` text NOT NULL,
  `amount` decimal(15,4) NOT NULL,
  `status` tinyint(1) NOT NULL,
  `date_added` datetime NOT NULL,
  PRIMARY KEY (`voucher_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_voucher`
--

LOCK TABLES `lk_voucher` WRITE;
/*!40000 ALTER TABLE `lk_voucher` DISABLE KEYS */;
/*!40000 ALTER TABLE `lk_voucher` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_voucher_history`
--

DROP TABLE IF EXISTS `lk_voucher_history`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_voucher_history` (
  `voucher_history_id` int(11) NOT NULL AUTO_INCREMENT,
  `voucher_id` int(11) NOT NULL,
  `order_id` int(11) NOT NULL,
  `amount` decimal(15,4) NOT NULL,
  `date_added` datetime NOT NULL,
  PRIMARY KEY (`voucher_history_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_voucher_history`
--

LOCK TABLES `lk_voucher_history` WRITE;
/*!40000 ALTER TABLE `lk_voucher_history` DISABLE KEYS */;
/*!40000 ALTER TABLE `lk_voucher_history` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_voucher_theme`
--

DROP TABLE IF EXISTS `lk_voucher_theme`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_voucher_theme` (
  `voucher_theme_id` int(11) NOT NULL AUTO_INCREMENT,
  `image` varchar(255) NOT NULL,
  PRIMARY KEY (`voucher_theme_id`)
) ENGINE=MyISAM AUTO_INCREMENT=9 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_voucher_theme`
--

LOCK TABLES `lk_voucher_theme` WRITE;
/*!40000 ALTER TABLE `lk_voucher_theme` DISABLE KEYS */;
INSERT INTO `lk_voucher_theme` VALUES (8,'catalog/demo/canon_eos_5d_2.jpg'),(7,'catalog/demo/gift-voucher-birthday.jpg'),(6,'catalog/demo/apple_logo.jpg');
/*!40000 ALTER TABLE `lk_voucher_theme` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_voucher_theme_description`
--

DROP TABLE IF EXISTS `lk_voucher_theme_description`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_voucher_theme_description` (
  `voucher_theme_id` int(11) NOT NULL,
  `language_id` int(11) NOT NULL,
  `name` varchar(32) NOT NULL,
  PRIMARY KEY (`voucher_theme_id`,`language_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_voucher_theme_description`
--

LOCK TABLES `lk_voucher_theme_description` WRITE;
/*!40000 ALTER TABLE `lk_voucher_theme_description` DISABLE KEYS */;
INSERT INTO `lk_voucher_theme_description` VALUES (6,1,'Christmas'),(7,1,'Birthday'),(8,1,'General');
/*!40000 ALTER TABLE `lk_voucher_theme_description` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_weight_class`
--

DROP TABLE IF EXISTS `lk_weight_class`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_weight_class` (
  `weight_class_id` int(11) NOT NULL AUTO_INCREMENT,
  `value` decimal(15,8) NOT NULL DEFAULT 0.00000000,
  PRIMARY KEY (`weight_class_id`)
) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_weight_class`
--

LOCK TABLES `lk_weight_class` WRITE;
/*!40000 ALTER TABLE `lk_weight_class` DISABLE KEYS */;
INSERT INTO `lk_weight_class` VALUES (1,1.00000000),(2,1000.00000000),(5,2.20460000),(6,35.27400000);
/*!40000 ALTER TABLE `lk_weight_class` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_weight_class_description`
--

DROP TABLE IF EXISTS `lk_weight_class_description`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_weight_class_description` (
  `weight_class_id` int(11) NOT NULL,
  `language_id` int(11) NOT NULL,
  `title` varchar(32) NOT NULL,
  `unit` varchar(4) NOT NULL,
  PRIMARY KEY (`weight_class_id`,`language_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_weight_class_description`
--

LOCK TABLES `lk_weight_class_description` WRITE;
/*!40000 ALTER TABLE `lk_weight_class_description` DISABLE KEYS */;
INSERT INTO `lk_weight_class_description` VALUES (1,1,'Kilogram','kg'),(2,1,'Gram','g'),(5,1,'Pound ','lb'),(6,1,'Ounce','oz');
/*!40000 ALTER TABLE `lk_weight_class_description` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_wk_category_attribute_mapping`
--

DROP TABLE IF EXISTS `lk_wk_category_attribute_mapping`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_wk_category_attribute_mapping` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `category_id` int(11) NOT NULL,
  `attribute_id` varchar(1000) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_wk_category_attribute_mapping`
--

LOCK TABLES `lk_wk_category_attribute_mapping` WRITE;
/*!40000 ALTER TABLE `lk_wk_category_attribute_mapping` DISABLE KEYS */;
/*!40000 ALTER TABLE `lk_wk_category_attribute_mapping` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_wk_custom_field`
--

DROP TABLE IF EXISTS `lk_wk_custom_field`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_wk_custom_field` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `forSeller` varchar(10) NOT NULL,
  `fieldType` varchar(100) NOT NULL,
  `isRequired` varchar(10) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_wk_custom_field`
--

LOCK TABLES `lk_wk_custom_field` WRITE;
/*!40000 ALTER TABLE `lk_wk_custom_field` DISABLE KEYS */;
/*!40000 ALTER TABLE `lk_wk_custom_field` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_wk_custom_field_description`
--

DROP TABLE IF EXISTS `lk_wk_custom_field_description`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_wk_custom_field_description` (
  `fieldId` int(10) NOT NULL,
  `fieldDescription` varchar(5000) NOT NULL,
  `fieldName` varchar(100) NOT NULL,
  `language_id` int(10) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_wk_custom_field_description`
--

LOCK TABLES `lk_wk_custom_field_description` WRITE;
/*!40000 ALTER TABLE `lk_wk_custom_field_description` DISABLE KEYS */;
/*!40000 ALTER TABLE `lk_wk_custom_field_description` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_wk_custom_field_option_description`
--

DROP TABLE IF EXISTS `lk_wk_custom_field_option_description`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_wk_custom_field_option_description` (
  `optionId` int(10) NOT NULL,
  `optionValue` varchar(100) NOT NULL,
  `language_id` int(10) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_wk_custom_field_option_description`
--

LOCK TABLES `lk_wk_custom_field_option_description` WRITE;
/*!40000 ALTER TABLE `lk_wk_custom_field_option_description` DISABLE KEYS */;
/*!40000 ALTER TABLE `lk_wk_custom_field_option_description` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_wk_custom_field_options`
--

DROP TABLE IF EXISTS `lk_wk_custom_field_options`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_wk_custom_field_options` (
  `optionId` int(11) NOT NULL AUTO_INCREMENT,
  `fieldId` int(11) NOT NULL,
  PRIMARY KEY (`optionId`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_wk_custom_field_options`
--

LOCK TABLES `lk_wk_custom_field_options` WRITE;
/*!40000 ALTER TABLE `lk_wk_custom_field_options` DISABLE KEYS */;
/*!40000 ALTER TABLE `lk_wk_custom_field_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_wk_custom_field_product`
--

DROP TABLE IF EXISTS `lk_wk_custom_field_product`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_wk_custom_field_product` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `fieldId` int(11) NOT NULL,
  `productId` int(11) NOT NULL,
  `fieldType` varchar(100) NOT NULL,
  `fieldDescription` varchar(5000) NOT NULL,
  `fieldName` varchar(100) NOT NULL,
  `isRequired` varchar(50) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_wk_custom_field_product`
--

LOCK TABLES `lk_wk_custom_field_product` WRITE;
/*!40000 ALTER TABLE `lk_wk_custom_field_product` DISABLE KEYS */;
/*!40000 ALTER TABLE `lk_wk_custom_field_product` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_wk_custom_field_product_options`
--

DROP TABLE IF EXISTS `lk_wk_custom_field_product_options`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_wk_custom_field_product_options` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `pro_id` int(100) NOT NULL,
  `product_id` int(100) NOT NULL,
  `fieldId` int(100) NOT NULL,
  `option_id` mediumtext NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_wk_custom_field_product_options`
--

LOCK TABLES `lk_wk_custom_field_product_options` WRITE;
/*!40000 ALTER TABLE `lk_wk_custom_field_product_options` DISABLE KEYS */;
/*!40000 ALTER TABLE `lk_wk_custom_field_product_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_wk_feedback_attribute`
--

DROP TABLE IF EXISTS `lk_wk_feedback_attribute`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_wk_feedback_attribute` (
  `field_id` int(11) NOT NULL AUTO_INCREMENT,
  `field_name` varchar(100) NOT NULL,
  `field_status` int(11) NOT NULL,
  PRIMARY KEY (`field_id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_wk_feedback_attribute`
--

LOCK TABLES `lk_wk_feedback_attribute` WRITE;
/*!40000 ALTER TABLE `lk_wk_feedback_attribute` DISABLE KEYS */;
INSERT INTO `lk_wk_feedback_attribute` VALUES (1,'Value',1),(2,'Price',1);
/*!40000 ALTER TABLE `lk_wk_feedback_attribute` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_wk_feedback_attribute_values`
--

DROP TABLE IF EXISTS `lk_wk_feedback_attribute_values`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_wk_feedback_attribute_values` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `feedback_id` int(11) NOT NULL,
  `field_id` int(11) NOT NULL,
  `field_value` int(11) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_wk_feedback_attribute_values`
--

LOCK TABLES `lk_wk_feedback_attribute_values` WRITE;
/*!40000 ALTER TABLE `lk_wk_feedback_attribute_values` DISABLE KEYS */;
/*!40000 ALTER TABLE `lk_wk_feedback_attribute_values` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_zone`
--

DROP TABLE IF EXISTS `lk_zone`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_zone` (
  `zone_id` int(11) NOT NULL AUTO_INCREMENT,
  `country_id` int(11) NOT NULL,
  `name` varchar(128) NOT NULL,
  `code` varchar(32) NOT NULL,
  `status` tinyint(1) NOT NULL DEFAULT 1,
  PRIMARY KEY (`zone_id`)
) ENGINE=MyISAM AUTO_INCREMENT=4236 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_zone`
--

LOCK TABLES `lk_zone` WRITE;
/*!40000 ALTER TABLE `lk_zone` DISABLE KEYS */;
INSERT INTO `lk_zone` VALUES (1,1,'Badakhshan','BDS',1),(2,1,'Badghis','BDG',1),(3,1,'Baghlan','BGL',1),(4,1,'Balkh','BAL',1),(5,1,'Bamian','BAM',1),(6,1,'Farah','FRA',1),(7,1,'Faryab','FYB',1),(8,1,'Ghazni','GHA',1),(9,1,'Ghowr','GHO',1),(10,1,'Helmand','HEL',1),(11,1,'Herat','HER',1),(12,1,'Jowzjan','JOW',1),(13,1,'Kabul','KAB',1),(14,1,'Kandahar','KAN',1),(15,1,'Kapisa','KAP',1),(16,1,'Khost','KHO',1),(17,1,'Konar','KNR',1),(18,1,'Kondoz','KDZ',1),(19,1,'Laghman','LAG',1),(20,1,'Lowgar','LOW',1),(21,1,'Nangrahar','NAN',1),(22,1,'Nimruz','NIM',1),(23,1,'Nurestan','NUR',1),(24,1,'Oruzgan','ORU',1),(25,1,'Paktia','PIA',1),(26,1,'Paktika','PKA',1),(27,1,'Parwan','PAR',1),(28,1,'Samangan','SAM',1),(29,1,'Sar-e Pol','SAR',1),(30,1,'Takhar','TAK',1),(31,1,'Wardak','WAR',1),(32,1,'Zabol','ZAB',1),(33,2,'Berat','BR',1),(34,2,'Bulqize','BU',1),(35,2,'Delvine','DL',1),(36,2,'Devoll','DV',1),(37,2,'Diber','DI',1),(38,2,'Durres','DR',1),(39,2,'Elbasan','EL',1),(40,2,'Kolonje','ER',1),(41,2,'Fier','FR',1),(42,2,'Gjirokaster','GJ',1),(43,2,'Gramsh','GR',1),(44,2,'Has','HA',1),(45,2,'Kavaje','KA',1),(46,2,'Kurbin','KB',1),(47,2,'Kucove','KC',1),(48,2,'Korce','KO',1),(49,2,'Kruje','KR',1),(50,2,'Kukes','KU',1),(51,2,'Librazhd','LB',1),(52,2,'Lezhe','LE',1),(53,2,'Lushnje','LU',1),(54,2,'Malesi e Madhe','MM',1),(55,2,'Mallakaster','MK',1),(56,2,'Mat','MT',1),(57,2,'Mirdite','MR',1),(58,2,'Peqin','PQ',1),(59,2,'Permet','PR',1),(60,2,'Pogradec','PG',1),(61,2,'Puke','PU',1),(62,2,'Shkoder','SH',1),(63,2,'Skrapar','SK',1),(64,2,'Sarande','SR',1),(65,2,'Tepelene','TE',1),(66,2,'Tropoje','TP',1),(67,2,'Tirane','TR',1),(68,2,'Vlore','VL',1),(69,3,'Adrar','ADR',1),(70,3,'Ain Defla','ADE',1),(71,3,'Ain Temouchent','ATE',1),(72,3,'Alger','ALG',1),(73,3,'Annaba','ANN',1),(74,3,'Batna','BAT',1),(75,3,'Bechar','BEC',1),(76,3,'Bejaia','BEJ',1),(77,3,'Biskra','BIS',1),(78,3,'Blida','BLI',1),(79,3,'Bordj Bou Arreridj','BBA',1),(80,3,'Bouira','BOA',1),(81,3,'Boumerdes','BMD',1),(82,3,'Chlef','CHL',1),(83,3,'Constantine','CON',1),(84,3,'Djelfa','DJE',1),(85,3,'El Bayadh','EBA',1),(86,3,'El Oued','EOU',1),(87,3,'El Tarf','ETA',1),(88,3,'Ghardaia','GHA',1),(89,3,'Guelma','GUE',1),(90,3,'Illizi','ILL',1),(91,3,'Jijel','JIJ',1),(92,3,'Khenchela','KHE',1),(93,3,'Laghouat','LAG',1),(94,3,'Muaskar','MUA',1),(95,3,'Medea','MED',1),(96,3,'Mila','MIL',1),(97,3,'Mostaganem','MOS',1),(98,3,'M\'Sila','MSI',1),(99,3,'Naama','NAA',1),(100,3,'Oran','ORA',1),(101,3,'Ouargla','OUA',1),(102,3,'Oum el-Bouaghi','OEB',1),(103,3,'Relizane','REL',1),(104,3,'Saida','SAI',1),(105,3,'Setif','SET',1),(106,3,'Sidi Bel Abbes','SBA',1),(107,3,'Skikda','SKI',1),(108,3,'Souk Ahras','SAH',1),(109,3,'Tamanghasset','TAM',1),(110,3,'Tebessa','TEB',1),(111,3,'Tiaret','TIA',1),(112,3,'Tindouf','TIN',1),(113,3,'Tipaza','TIP',1),(114,3,'Tissemsilt','TIS',1),(115,3,'Tizi Ouzou','TOU',1),(116,3,'Tlemcen','TLE',1),(117,4,'Eastern','E',1),(118,4,'Manu\'a','M',1),(119,4,'Rose Island','R',1),(120,4,'Swains Island','S',1),(121,4,'Western','W',1),(122,5,'Andorra la Vella','ALV',1),(123,5,'Canillo','CAN',1),(124,5,'Encamp','ENC',1),(125,5,'Escaldes-Engordany','ESE',1),(126,5,'La Massana','LMA',1),(127,5,'Ordino','ORD',1),(128,5,'Sant Julia de Loria','SJL',1),(129,6,'Bengo','BGO',1),(130,6,'Benguela','BGU',1),(131,6,'Bie','BIE',1),(132,6,'Cabinda','CAB',1),(133,6,'Cuando-Cubango','CCU',1),(134,6,'Cuanza Norte','CNO',1),(135,6,'Cuanza Sul','CUS',1),(136,6,'Cunene','CNN',1),(137,6,'Huambo','HUA',1),(138,6,'Huila','HUI',1),(139,6,'Luanda','LUA',1),(140,6,'Lunda Norte','LNO',1),(141,6,'Lunda Sul','LSU',1),(142,6,'Malange','MAL',1),(143,6,'Moxico','MOX',1),(144,6,'Namibe','NAM',1),(145,6,'Uige','UIG',1),(146,6,'Zaire','ZAI',1),(147,9,'Saint George','ASG',1),(148,9,'Saint John','ASJ',1),(149,9,'Saint Mary','ASM',1),(150,9,'Saint Paul','ASL',1),(151,9,'Saint Peter','ASR',1),(152,9,'Saint Philip','ASH',1),(153,9,'Barbuda','BAR',1),(154,9,'Redonda','RED',1),(155,10,'Antartida e Islas del Atlantico','AN',1),(156,10,'Buenos Aires','BA',1),(157,10,'Catamarca','CA',1),(158,10,'Chaco','CH',1),(159,10,'Chubut','CU',1),(160,10,'Cordoba','CO',1),(161,10,'Corrientes','CR',1),(162,10,'Distrito Federal','DF',1),(163,10,'Entre Rios','ER',1),(164,10,'Formosa','FO',1),(165,10,'Jujuy','JU',1),(166,10,'La Pampa','LP',1),(167,10,'La Rioja','LR',1),(168,10,'Mendoza','ME',1),(169,10,'Misiones','MI',1),(170,10,'Neuquen','NE',1),(171,10,'Rio Negro','RN',1),(172,10,'Salta','SA',1),(173,10,'San Juan','SJ',1),(174,10,'San Luis','SL',1),(175,10,'Santa Cruz','SC',1),(176,10,'Santa Fe','SF',1),(177,10,'Santiago del Estero','SD',1),(178,10,'Tierra del Fuego','TF',1),(179,10,'Tucuman','TU',1),(180,11,'Aragatsotn','AGT',1),(181,11,'Ararat','ARR',1),(182,11,'Armavir','ARM',1),(183,11,'Geghark\'unik\'','GEG',1),(184,11,'Kotayk\'','KOT',1),(185,11,'Lorri','LOR',1),(186,11,'Shirak','SHI',1),(187,11,'Syunik\'','SYU',1),(188,11,'Tavush','TAV',1),(189,11,'Vayots\' Dzor','VAY',1),(190,11,'Yerevan','YER',1),(191,13,'Australian Capital Territory','ACT',1),(192,13,'New South Wales','NSW',1),(193,13,'Northern Territory','NT',1),(194,13,'Queensland','QLD',1),(195,13,'South Australia','SA',1),(196,13,'Tasmania','TAS',1),(197,13,'Victoria','VIC',1),(198,13,'Western Australia','WA',1),(199,14,'Burgenland','BUR',1),(200,14,'Kärnten','KAR',1),(201,14,'Niederösterreich','NOS',1),(202,14,'Oberösterreich','OOS',1),(203,14,'Salzburg','SAL',1),(204,14,'Steiermark','STE',1),(205,14,'Tirol','TIR',1),(206,14,'Vorarlberg','VOR',1),(207,14,'Wien','WIE',1),(208,15,'Ali Bayramli','AB',1),(209,15,'Abseron','ABS',1),(210,15,'AgcabAdi','AGC',1),(211,15,'Agdam','AGM',1),(212,15,'Agdas','AGS',1),(213,15,'Agstafa','AGA',1),(214,15,'Agsu','AGU',1),(215,15,'Astara','AST',1),(216,15,'Baki','BA',1),(217,15,'BabAk','BAB',1),(218,15,'BalakAn','BAL',1),(219,15,'BArdA','BAR',1),(220,15,'Beylaqan','BEY',1),(221,15,'Bilasuvar','BIL',1),(222,15,'Cabrayil','CAB',1),(223,15,'Calilabab','CAL',1),(224,15,'Culfa','CUL',1),(225,15,'Daskasan','DAS',1),(226,15,'Davaci','DAV',1),(227,15,'Fuzuli','FUZ',1),(228,15,'Ganca','GA',1),(229,15,'Gadabay','GAD',1),(230,15,'Goranboy','GOR',1),(231,15,'Goycay','GOY',1),(232,15,'Haciqabul','HAC',1),(233,15,'Imisli','IMI',1),(234,15,'Ismayilli','ISM',1),(235,15,'Kalbacar','KAL',1),(236,15,'Kurdamir','KUR',1),(237,15,'Lankaran','LA',1),(238,15,'Lacin','LAC',1),(239,15,'Lankaran','LAN',1),(240,15,'Lerik','LER',1),(241,15,'Masalli','MAS',1),(242,15,'Mingacevir','MI',1),(243,15,'Naftalan','NA',1),(244,15,'Neftcala','NEF',1),(245,15,'Oguz','OGU',1),(246,15,'Ordubad','ORD',1),(247,15,'Qabala','QAB',1),(248,15,'Qax','QAX',1),(249,15,'Qazax','QAZ',1),(250,15,'Qobustan','QOB',1),(251,15,'Quba','QBA',1),(252,15,'Qubadli','QBI',1),(253,15,'Qusar','QUS',1),(254,15,'Saki','SA',1),(255,15,'Saatli','SAT',1),(256,15,'Sabirabad','SAB',1),(257,15,'Sadarak','SAD',1),(258,15,'Sahbuz','SAH',1),(259,15,'Saki','SAK',1),(260,15,'Salyan','SAL',1),(261,15,'Sumqayit','SM',1),(262,15,'Samaxi','SMI',1),(263,15,'Samkir','SKR',1),(264,15,'Samux','SMX',1),(265,15,'Sarur','SAR',1),(266,15,'Siyazan','SIY',1),(267,15,'Susa','SS',1),(268,15,'Susa','SUS',1),(269,15,'Tartar','TAR',1),(270,15,'Tovuz','TOV',1),(271,15,'Ucar','UCA',1),(272,15,'Xankandi','XA',1),(273,15,'Xacmaz','XAC',1),(274,15,'Xanlar','XAN',1),(275,15,'Xizi','XIZ',1),(276,15,'Xocali','XCI',1),(277,15,'Xocavand','XVD',1),(278,15,'Yardimli','YAR',1),(279,15,'Yevlax','YEV',1),(280,15,'Zangilan','ZAN',1),(281,15,'Zaqatala','ZAQ',1),(282,15,'Zardab','ZAR',1),(283,15,'Naxcivan','NX',1),(284,16,'Acklins','ACK',1),(285,16,'Berry Islands','BER',1),(286,16,'Bimini','BIM',1),(287,16,'Black Point','BLK',1),(288,16,'Cat Island','CAT',1),(289,16,'Central Abaco','CAB',1),(290,16,'Central Andros','CAN',1),(291,16,'Central Eleuthera','CEL',1),(292,16,'City of Freeport','FRE',1),(293,16,'Crooked Island','CRO',1),(294,16,'East Grand Bahama','EGB',1),(295,16,'Exuma','EXU',1),(296,16,'Grand Cay','GRD',1),(297,16,'Harbour Island','HAR',1),(298,16,'Hope Town','HOP',1),(299,16,'Inagua','INA',1),(300,16,'Long Island','LNG',1),(301,16,'Mangrove Cay','MAN',1),(302,16,'Mayaguana','MAY',1),(303,16,'Moore\'s Island','MOO',1),(304,16,'North Abaco','NAB',1),(305,16,'North Andros','NAN',1),(306,16,'North Eleuthera','NEL',1),(307,16,'Ragged Island','RAG',1),(308,16,'Rum Cay','RUM',1),(309,16,'San Salvador','SAL',1),(310,16,'South Abaco','SAB',1),(311,16,'South Andros','SAN',1),(312,16,'South Eleuthera','SEL',1),(313,16,'Spanish Wells','SWE',1),(314,16,'West Grand Bahama','WGB',1),(315,17,'Capital','CAP',1),(316,17,'Central','CEN',1),(317,17,'Muharraq','MUH',1),(318,17,'Northern','NOR',1),(319,17,'Southern','SOU',1),(320,18,'Barisal','BAR',1),(321,18,'Chittagong','CHI',1),(322,18,'Dhaka','DHA',1),(323,18,'Khulna','KHU',1),(324,18,'Rajshahi','RAJ',1),(325,18,'Sylhet','SYL',1),(326,19,'Christ Church','CC',1),(327,19,'Saint Andrew','AND',1),(328,19,'Saint George','GEO',1),(329,19,'Saint James','JAM',1),(330,19,'Saint John','JOH',1),(331,19,'Saint Joseph','JOS',1),(332,19,'Saint Lucy','LUC',1),(333,19,'Saint Michael','MIC',1),(334,19,'Saint Peter','PET',1),(335,19,'Saint Philip','PHI',1),(336,19,'Saint Thomas','THO',1),(337,20,'Brestskaya (Brest)','BR',1),(338,20,'Homyel\'skaya (Homyel\')','HO',1),(339,20,'Horad Minsk','HM',1),(340,20,'Hrodzyenskaya (Hrodna)','HR',1),(341,20,'Mahilyowskaya (Mahilyow)','MA',1),(342,20,'Minskaya','MI',1),(343,20,'Vitsyebskaya (Vitsyebsk)','VI',1),(344,21,'Antwerpen','VAN',1),(345,21,'Brabant Wallon','WBR',1),(346,21,'Hainaut','WHT',1),(347,21,'Liège','WLG',1),(348,21,'Limburg','VLI',1),(349,21,'Luxembourg','WLX',1),(350,21,'Namur','WNA',1),(351,21,'Oost-Vlaanderen','VOV',1),(352,21,'Vlaams Brabant','VBR',1),(353,21,'West-Vlaanderen','VWV',1),(354,22,'Belize','BZ',1),(355,22,'Cayo','CY',1),(356,22,'Corozal','CR',1),(357,22,'Orange Walk','OW',1),(358,22,'Stann Creek','SC',1),(359,22,'Toledo','TO',1),(360,23,'Alibori','AL',1),(361,23,'Atakora','AK',1),(362,23,'Atlantique','AQ',1),(363,23,'Borgou','BO',1),(364,23,'Collines','CO',1),(365,23,'Donga','DO',1),(366,23,'Kouffo','KO',1),(367,23,'Littoral','LI',1),(368,23,'Mono','MO',1),(369,23,'Oueme','OU',1),(370,23,'Plateau','PL',1),(371,23,'Zou','ZO',1),(372,24,'Devonshire','DS',1),(373,24,'Hamilton City','HC',1),(374,24,'Hamilton','HA',1),(375,24,'Paget','PG',1),(376,24,'Pembroke','PB',1),(377,24,'Saint George City','GC',1),(378,24,'Saint George\'s','SG',1),(379,24,'Sandys','SA',1),(380,24,'Smith\'s','SM',1),(381,24,'Southampton','SH',1),(382,24,'Warwick','WA',1),(383,25,'Bumthang','BUM',1),(384,25,'Chukha','CHU',1),(385,25,'Dagana','DAG',1),(386,25,'Gasa','GAS',1),(387,25,'Haa','HAA',1),(388,25,'Lhuntse','LHU',1),(389,25,'Mongar','MON',1),(390,25,'Paro','PAR',1),(391,25,'Pemagatshel','PEM',1),(392,25,'Punakha','PUN',1),(393,25,'Samdrup Jongkhar','SJO',1),(394,25,'Samtse','SAT',1),(395,25,'Sarpang','SAR',1),(396,25,'Thimphu','THI',1),(397,25,'Trashigang','TRG',1),(398,25,'Trashiyangste','TRY',1),(399,25,'Trongsa','TRO',1),(400,25,'Tsirang','TSI',1),(401,25,'Wangdue Phodrang','WPH',1),(402,25,'Zhemgang','ZHE',1),(403,26,'Beni','BEN',1),(404,26,'Chuquisaca','CHU',1),(405,26,'Cochabamba','COC',1),(406,26,'La Paz','LPZ',1),(407,26,'Oruro','ORU',1),(408,26,'Pando','PAN',1),(409,26,'Potosi','POT',1),(410,26,'Santa Cruz','SCZ',1),(411,26,'Tarija','TAR',1),(412,27,'Brcko district','BRO',1),(413,27,'Unsko-Sanski Kanton','FUS',1),(414,27,'Posavski Kanton','FPO',1),(415,27,'Tuzlanski Kanton','FTU',1),(416,27,'Zenicko-Dobojski Kanton','FZE',1),(417,27,'Bosanskopodrinjski Kanton','FBP',1),(418,27,'Srednjebosanski Kanton','FSB',1),(419,27,'Hercegovacko-neretvanski Kanton','FHN',1),(420,27,'Zapadnohercegovacka Zupanija','FZH',1),(421,27,'Kanton Sarajevo','FSA',1),(422,27,'Zapadnobosanska','FZA',1),(423,27,'Banja Luka','SBL',1),(424,27,'Doboj','SDO',1),(425,27,'Bijeljina','SBI',1),(426,27,'Vlasenica','SVL',1),(427,27,'Sarajevo-Romanija or Sokolac','SSR',1),(428,27,'Foca','SFO',1),(429,27,'Trebinje','STR',1),(430,28,'Central','CE',1),(431,28,'Ghanzi','GH',1),(432,28,'Kgalagadi','KD',1),(433,28,'Kgatleng','KT',1),(434,28,'Kweneng','KW',1),(435,28,'Ngamiland','NG',1),(436,28,'North East','NE',1),(437,28,'North West','NW',1),(438,28,'South East','SE',1),(439,28,'Southern','SO',1),(440,30,'Acre','AC',1),(441,30,'Alagoas','AL',1),(442,30,'Amapá','AP',1),(443,30,'Amazonas','AM',1),(444,30,'Bahia','BA',1),(445,30,'Ceará','CE',1),(446,30,'Distrito Federal','DF',1),(447,30,'Espírito Santo','ES',1),(448,30,'Goiás','GO',1),(449,30,'Maranhão','MA',1),(450,30,'Mato Grosso','MT',1),(451,30,'Mato Grosso do Sul','MS',1),(452,30,'Minas Gerais','MG',1),(453,30,'Pará','PA',1),(454,30,'Paraíba','PB',1),(455,30,'Paraná','PR',1),(456,30,'Pernambuco','PE',1),(457,30,'Piauí','PI',1),(458,30,'Rio de Janeiro','RJ',1),(459,30,'Rio Grande do Norte','RN',1),(460,30,'Rio Grande do Sul','RS',1),(461,30,'Rondônia','RO',1),(462,30,'Roraima','RR',1),(463,30,'Santa Catarina','SC',1),(464,30,'São Paulo','SP',1),(465,30,'Sergipe','SE',1),(466,30,'Tocantins','TO',1),(467,31,'Peros Banhos','PB',1),(468,31,'Salomon Islands','SI',1),(469,31,'Nelsons Island','NI',1),(470,31,'Three Brothers','TB',1),(471,31,'Eagle Islands','EA',1),(472,31,'Danger Island','DI',1),(473,31,'Egmont Islands','EG',1),(474,31,'Diego Garcia','DG',1),(475,32,'Belait','BEL',1),(476,32,'Brunei and Muara','BRM',1),(477,32,'Temburong','TEM',1),(478,32,'Tutong','TUT',1),(479,33,'Blagoevgrad','',1),(480,33,'Burgas','',1),(481,33,'Dobrich','',1),(482,33,'Gabrovo','',1),(483,33,'Haskovo','',1),(484,33,'Kardjali','',1),(485,33,'Kyustendil','',1),(486,33,'Lovech','',1),(487,33,'Montana','',1),(488,33,'Pazardjik','',1),(489,33,'Pernik','',1),(490,33,'Pleven','',1),(491,33,'Plovdiv','',1),(492,33,'Razgrad','',1),(493,33,'Shumen','',1),(494,33,'Silistra','',1),(495,33,'Sliven','',1),(496,33,'Smolyan','',1),(497,33,'Sofia','',1),(498,33,'Sofia - town','',1),(499,33,'Stara Zagora','',1),(500,33,'Targovishte','',1),(501,33,'Varna','',1),(502,33,'Veliko Tarnovo','',1),(503,33,'Vidin','',1),(504,33,'Vratza','',1),(505,33,'Yambol','',1),(506,34,'Bale','BAL',1),(507,34,'Bam','BAM',1),(508,34,'Banwa','BAN',1),(509,34,'Bazega','BAZ',1),(510,34,'Bougouriba','BOR',1),(511,34,'Boulgou','BLG',1),(512,34,'Boulkiemde','BOK',1),(513,34,'Comoe','COM',1),(514,34,'Ganzourgou','GAN',1),(515,34,'Gnagna','GNA',1),(516,34,'Gourma','GOU',1),(517,34,'Houet','HOU',1),(518,34,'Ioba','IOA',1),(519,34,'Kadiogo','KAD',1),(520,34,'Kenedougou','KEN',1),(521,34,'Komondjari','KOD',1),(522,34,'Kompienga','KOP',1),(523,34,'Kossi','KOS',1),(524,34,'Koulpelogo','KOL',1),(525,34,'Kouritenga','KOT',1),(526,34,'Kourweogo','KOW',1),(527,34,'Leraba','LER',1),(528,34,'Loroum','LOR',1),(529,34,'Mouhoun','MOU',1),(530,34,'Nahouri','NAH',1),(531,34,'Namentenga','NAM',1),(532,34,'Nayala','NAY',1),(533,34,'Noumbiel','NOU',1),(534,34,'Oubritenga','OUB',1),(535,34,'Oudalan','OUD',1),(536,34,'Passore','PAS',1),(537,34,'Poni','PON',1),(538,34,'Sanguie','SAG',1),(539,34,'Sanmatenga','SAM',1),(540,34,'Seno','SEN',1),(541,34,'Sissili','SIS',1),(542,34,'Soum','SOM',1),(543,34,'Sourou','SOR',1),(544,34,'Tapoa','TAP',1),(545,34,'Tuy','TUY',1),(546,34,'Yagha','YAG',1),(547,34,'Yatenga','YAT',1),(548,34,'Ziro','ZIR',1),(549,34,'Zondoma','ZOD',1),(550,34,'Zoundweogo','ZOW',1),(551,35,'Bubanza','BB',1),(552,35,'Bujumbura','BJ',1),(553,35,'Bururi','BR',1),(554,35,'Cankuzo','CA',1),(555,35,'Cibitoke','CI',1),(556,35,'Gitega','GI',1),(557,35,'Karuzi','KR',1),(558,35,'Kayanza','KY',1),(559,35,'Kirundo','KI',1),(560,35,'Makamba','MA',1),(561,35,'Muramvya','MU',1),(562,35,'Muyinga','MY',1),(563,35,'Mwaro','MW',1),(564,35,'Ngozi','NG',1),(565,35,'Rutana','RT',1),(566,35,'Ruyigi','RY',1),(567,36,'Phnom Penh','PP',1),(568,36,'Preah Seihanu (Kompong Som or Sihanoukville)','PS',1),(569,36,'Pailin','PA',1),(570,36,'Keb','KB',1),(571,36,'Banteay Meanchey','BM',1),(572,36,'Battambang','BA',1),(573,36,'Kampong Cham','KM',1),(574,36,'Kampong Chhnang','KN',1),(575,36,'Kampong Speu','KU',1),(576,36,'Kampong Som','KO',1),(577,36,'Kampong Thom','KT',1),(578,36,'Kampot','KP',1),(579,36,'Kandal','KL',1),(580,36,'Kaoh Kong','KK',1),(581,36,'Kratie','KR',1),(582,36,'Mondul Kiri','MK',1),(583,36,'Oddar Meancheay','OM',1),(584,36,'Pursat','PU',1),(585,36,'Preah Vihear','PR',1),(586,36,'Prey Veng','PG',1),(587,36,'Ratanak Kiri','RK',1),(588,36,'Siemreap','SI',1),(589,36,'Stung Treng','ST',1),(590,36,'Svay Rieng','SR',1),(591,36,'Takeo','TK',1),(592,37,'Adamawa (Adamaoua)','ADA',1),(593,37,'Centre','CEN',1),(594,37,'East (Est)','EST',1),(595,37,'Extreme North (Extreme-Nord)','EXN',1),(596,37,'Littoral','LIT',1),(597,37,'North (Nord)','NOR',1),(598,37,'Northwest (Nord-Ouest)','NOT',1),(599,37,'West (Ouest)','OUE',1),(600,37,'South (Sud)','SUD',1),(601,37,'Southwest (Sud-Ouest).','SOU',1),(602,38,'Alberta','AB',1),(603,38,'British Columbia','BC',1),(604,38,'Manitoba','MB',1),(605,38,'New Brunswick','NB',1),(606,38,'Newfoundland and Labrador','NL',1),(607,38,'Northwest Territories','NT',1),(608,38,'Nova Scotia','NS',1),(609,38,'Nunavut','NU',1),(610,38,'Ontario','ON',1),(611,38,'Prince Edward Island','PE',1),(612,38,'Qu&eacute;bec','QC',1),(613,38,'Saskatchewan','SK',1),(614,38,'Yukon Territory','YT',1),(615,39,'Boa Vista','BV',1),(616,39,'Brava','BR',1),(617,39,'Calheta de Sao Miguel','CS',1),(618,39,'Maio','MA',1),(619,39,'Mosteiros','MO',1),(620,39,'Paul','PA',1),(621,39,'Porto Novo','PN',1),(622,39,'Praia','PR',1),(623,39,'Ribeira Grande','RG',1),(624,39,'Sal','SL',1),(625,39,'Santa Catarina','CA',1),(626,39,'Santa Cruz','CR',1),(627,39,'Sao Domingos','SD',1),(628,39,'Sao Filipe','SF',1),(629,39,'Sao Nicolau','SN',1),(630,39,'Sao Vicente','SV',1),(631,39,'Tarrafal','TA',1),(632,40,'Creek','CR',1),(633,40,'Eastern','EA',1),(634,40,'Midland','ML',1),(635,40,'South Town','ST',1),(636,40,'Spot Bay','SP',1),(637,40,'Stake Bay','SK',1),(638,40,'West End','WD',1),(639,40,'Western','WN',1),(640,41,'Bamingui-Bangoran','BBA',1),(641,41,'Basse-Kotto','BKO',1),(642,41,'Haute-Kotto','HKO',1),(643,41,'Haut-Mbomou','HMB',1),(644,41,'Kemo','KEM',1),(645,41,'Lobaye','LOB',1),(646,41,'Mambere-KadeÔ','MKD',1),(647,41,'Mbomou','MBO',1),(648,41,'Nana-Mambere','NMM',1),(649,41,'Ombella-M\'Poko','OMP',1),(650,41,'Ouaka','OUK',1),(651,41,'Ouham','OUH',1),(652,41,'Ouham-Pende','OPE',1),(653,41,'Vakaga','VAK',1),(654,41,'Nana-Grebizi','NGR',1),(655,41,'Sangha-Mbaere','SMB',1),(656,41,'Bangui','BAN',1),(657,42,'Batha','BA',1),(658,42,'Biltine','BI',1),(659,42,'Borkou-Ennedi-Tibesti','BE',1),(660,42,'Chari-Baguirmi','CB',1),(661,42,'Guera','GU',1),(662,42,'Kanem','KA',1),(663,42,'Lac','LA',1),(664,42,'Logone Occidental','LC',1),(665,42,'Logone Oriental','LR',1),(666,42,'Mayo-Kebbi','MK',1),(667,42,'Moyen-Chari','MC',1),(668,42,'Ouaddai','OU',1),(669,42,'Salamat','SA',1),(670,42,'Tandjile','TA',1),(671,43,'Aisen del General Carlos Ibanez','AI',1),(672,43,'Antofagasta','AN',1),(673,43,'Araucania','AR',1),(674,43,'Atacama','AT',1),(675,43,'Bio-Bio','BI',1),(676,43,'Coquimbo','CO',1),(677,43,'Libertador General Bernardo O\'Higgins','LI',1),(678,43,'Los Lagos','LL',1),(679,43,'Magallanes y de la Antartica Chilena','MA',1),(680,43,'Maule','ML',1),(681,43,'Region Metropolitana','RM',1),(682,43,'Tarapaca','TA',1),(683,43,'Valparaiso','VS',1),(684,44,'Anhui','AN',1),(685,44,'Beijing','BE',1),(686,44,'Chongqing','CH',1),(687,44,'Fujian','FU',1),(688,44,'Gansu','GA',1),(689,44,'Guangdong','GU',1),(690,44,'Guangxi','GX',1),(691,44,'Guizhou','GZ',1),(692,44,'Hainan','HA',1),(693,44,'Hebei','HB',1),(694,44,'Heilongjiang','HL',1),(695,44,'Henan','HE',1),(696,44,'Hong Kong','HK',1),(697,44,'Hubei','HU',1),(698,44,'Hunan','HN',1),(699,44,'Inner Mongolia','IM',1),(700,44,'Jiangsu','JI',1),(701,44,'Jiangxi','JX',1),(702,44,'Jilin','JL',1),(703,44,'Liaoning','LI',1),(704,44,'Macau','MA',1),(705,44,'Ningxia','NI',1),(706,44,'Shaanxi','SH',1),(707,44,'Shandong','SA',1),(708,44,'Shanghai','SG',1),(709,44,'Shanxi','SX',1),(710,44,'Sichuan','SI',1),(711,44,'Tianjin','TI',1),(712,44,'Xinjiang','XI',1),(713,44,'Yunnan','YU',1),(714,44,'Zhejiang','ZH',1),(715,46,'Direction Island','D',1),(716,46,'Home Island','H',1),(717,46,'Horsburgh Island','O',1),(718,46,'South Island','S',1),(719,46,'West Island','W',1),(720,47,'Amazonas','AMZ',1),(721,47,'Antioquia','ANT',1),(722,47,'Arauca','ARA',1),(723,47,'Atlantico','ATL',1),(724,47,'Bogota D.C.','BDC',1),(725,47,'Bolivar','BOL',1),(726,47,'Boyaca','BOY',1),(727,47,'Caldas','CAL',1),(728,47,'Caqueta','CAQ',1),(729,47,'Casanare','CAS',1),(730,47,'Cauca','CAU',1),(731,47,'Cesar','CES',1),(732,47,'Choco','CHO',1),(733,47,'Cordoba','COR',1),(734,47,'Cundinamarca','CAM',1),(735,47,'Guainia','GNA',1),(736,47,'Guajira','GJR',1),(737,47,'Guaviare','GVR',1),(738,47,'Huila','HUI',1),(739,47,'Magdalena','MAG',1),(740,47,'Meta','MET',1),(741,47,'Narino','NAR',1),(742,47,'Norte de Santander','NDS',1),(743,47,'Putumayo','PUT',1),(744,47,'Quindio','QUI',1),(745,47,'Risaralda','RIS',1),(746,47,'San Andres y Providencia','SAP',1),(747,47,'Santander','SAN',1),(748,47,'Sucre','SUC',1),(749,47,'Tolima','TOL',1),(750,47,'Valle del Cauca','VDC',1),(751,47,'Vaupes','VAU',1),(752,47,'Vichada','VIC',1),(753,48,'Grande Comore','G',1),(754,48,'Anjouan','A',1),(755,48,'Moheli','M',1),(756,49,'Bouenza','BO',1),(757,49,'Brazzaville','BR',1),(758,49,'Cuvette','CU',1),(759,49,'Cuvette-Ouest','CO',1),(760,49,'Kouilou','KO',1),(761,49,'Lekoumou','LE',1),(762,49,'Likouala','LI',1),(763,49,'Niari','NI',1),(764,49,'Plateaux','PL',1),(765,49,'Pool','PO',1),(766,49,'Sangha','SA',1),(767,50,'Pukapuka','PU',1),(768,50,'Rakahanga','RK',1),(769,50,'Manihiki','MK',1),(770,50,'Penrhyn','PE',1),(771,50,'Nassau Island','NI',1),(772,50,'Surwarrow','SU',1),(773,50,'Palmerston','PA',1),(774,50,'Aitutaki','AI',1),(775,50,'Manuae','MA',1),(776,50,'Takutea','TA',1),(777,50,'Mitiaro','MT',1),(778,50,'Atiu','AT',1),(779,50,'Mauke','MU',1),(780,50,'Rarotonga','RR',1),(781,50,'Mangaia','MG',1),(782,51,'Alajuela','AL',1),(783,51,'Cartago','CA',1),(784,51,'Guanacaste','GU',1),(785,51,'Heredia','HE',1),(786,51,'Limon','LI',1),(787,51,'Puntarenas','PU',1),(788,51,'San Jose','SJ',1),(789,52,'Abengourou','ABE',1),(790,52,'Abidjan','ABI',1),(791,52,'Aboisso','ABO',1),(792,52,'Adiake','ADI',1),(793,52,'Adzope','ADZ',1),(794,52,'Agboville','AGB',1),(795,52,'Agnibilekrou','AGN',1),(796,52,'Alepe','ALE',1),(797,52,'Bocanda','BOC',1),(798,52,'Bangolo','BAN',1),(799,52,'Beoumi','BEO',1),(800,52,'Biankouma','BIA',1),(801,52,'Bondoukou','BDK',1),(802,52,'Bongouanou','BGN',1),(803,52,'Bouafle','BFL',1),(804,52,'Bouake','BKE',1),(805,52,'Bouna','BNA',1),(806,52,'Boundiali','BDL',1),(807,52,'Dabakala','DKL',1),(808,52,'Dabou','DBU',1),(809,52,'Daloa','DAL',1),(810,52,'Danane','DAN',1),(811,52,'Daoukro','DAO',1),(812,52,'Dimbokro','DIM',1),(813,52,'Divo','DIV',1),(814,52,'Duekoue','DUE',1),(815,52,'Ferkessedougou','FER',1),(816,52,'Gagnoa','GAG',1),(817,52,'Grand-Bassam','GBA',1),(818,52,'Grand-Lahou','GLA',1),(819,52,'Guiglo','GUI',1),(820,52,'Issia','ISS',1),(821,52,'Jacqueville','JAC',1),(822,52,'Katiola','KAT',1),(823,52,'Korhogo','KOR',1),(824,52,'Lakota','LAK',1),(825,52,'Man','MAN',1),(826,52,'Mankono','MKN',1),(827,52,'Mbahiakro','MBA',1),(828,52,'Odienne','ODI',1),(829,52,'Oume','OUM',1),(830,52,'Sakassou','SAK',1),(831,52,'San-Pedro','SPE',1),(832,52,'Sassandra','SAS',1),(833,52,'Seguela','SEG',1),(834,52,'Sinfra','SIN',1),(835,52,'Soubre','SOU',1),(836,52,'Tabou','TAB',1),(837,52,'Tanda','TAN',1),(838,52,'Tiebissou','TIE',1),(839,52,'Tingrela','TIN',1),(840,52,'Tiassale','TIA',1),(841,52,'Touba','TBA',1),(842,52,'Toulepleu','TLP',1),(843,52,'Toumodi','TMD',1),(844,52,'Vavoua','VAV',1),(845,52,'Yamoussoukro','YAM',1),(846,52,'Zuenoula','ZUE',1),(847,53,'Bjelovarsko-bilogorska','BB',1),(848,53,'Grad Zagreb','GZ',1),(849,53,'Dubrovačko-neretvanska','DN',1),(850,53,'Istarska','IS',1),(851,53,'Karlovačka','KA',1),(852,53,'Koprivničko-križevačka','KK',1),(853,53,'Krapinsko-zagorska','KZ',1),(854,53,'Ličko-senjska','LS',1),(855,53,'Međimurska','ME',1),(856,53,'Osječko-baranjska','OB',1),(857,53,'Požeško-slavonska','PS',1),(858,53,'Primorsko-goranska','PG',1),(859,53,'Šibensko-kninska','SK',1),(860,53,'Sisačko-moslavačka','SM',1),(861,53,'Brodsko-posavska','BP',1),(862,53,'Splitsko-dalmatinska','SD',1),(863,53,'Varaždinska','VA',1),(864,53,'Virovitičko-podravska','VP',1),(865,53,'Vukovarsko-srijemska','VS',1),(866,53,'Zadarska','ZA',1),(867,53,'Zagrebačka','ZG',1),(868,54,'Camaguey','CA',1),(869,54,'Ciego de Avila','CD',1),(870,54,'Cienfuegos','CI',1),(871,54,'Ciudad de La Habana','CH',1),(872,54,'Granma','GR',1),(873,54,'Guantanamo','GU',1),(874,54,'Holguin','HO',1),(875,54,'Isla de la Juventud','IJ',1),(876,54,'La Habana','LH',1),(877,54,'Las Tunas','LT',1),(878,54,'Matanzas','MA',1),(879,54,'Pinar del Rio','PR',1),(880,54,'Sancti Spiritus','SS',1),(881,54,'Santiago de Cuba','SC',1),(882,54,'Villa Clara','VC',1),(883,55,'Famagusta','F',1),(884,55,'Kyrenia','K',1),(885,55,'Larnaca','A',1),(886,55,'Limassol','I',1),(887,55,'Nicosia','N',1),(888,55,'Paphos','P',1),(889,56,'Ústecký','U',1),(890,56,'Jihočeský','C',1),(891,56,'Jihomoravský','B',1),(892,56,'Karlovarský','K',1),(893,56,'Královehradecký','H',1),(894,56,'Liberecký','L',1),(895,56,'Moravskoslezský','T',1),(896,56,'Olomoucký','M',1),(897,56,'Pardubický','E',1),(898,56,'Plzeňský','P',1),(899,56,'Praha','A',1),(900,56,'Středočeský','S',1),(901,56,'Vysočina','J',1),(902,56,'Zlínský','Z',1),(903,57,'Arhus','AR',1),(904,57,'Bornholm','BH',1),(905,57,'Copenhagen','CO',1),(906,57,'Faroe Islands','FO',1),(907,57,'Frederiksborg','FR',1),(908,57,'Fyn','FY',1),(909,57,'Kobenhavn','KO',1),(910,57,'Nordjylland','NO',1),(911,57,'Ribe','RI',1),(912,57,'Ringkobing','RK',1),(913,57,'Roskilde','RO',1),(914,57,'Sonderjylland','SO',1),(915,57,'Storstrom','ST',1),(916,57,'Vejle','VK',1),(917,57,'Vestj&aelig;lland','VJ',1),(918,57,'Viborg','VB',1),(919,58,'\'Ali Sabih','S',1),(920,58,'Dikhil','K',1),(921,58,'Djibouti','J',1),(922,58,'Obock','O',1),(923,58,'Tadjoura','T',1),(924,59,'Saint Andrew Parish','AND',1),(925,59,'Saint David Parish','DAV',1),(926,59,'Saint George Parish','GEO',1),(927,59,'Saint John Parish','JOH',1),(928,59,'Saint Joseph Parish','JOS',1),(929,59,'Saint Luke Parish','LUK',1),(930,59,'Saint Mark Parish','MAR',1),(931,59,'Saint Patrick Parish','PAT',1),(932,59,'Saint Paul Parish','PAU',1),(933,59,'Saint Peter Parish','PET',1),(934,60,'Distrito Nacional','DN',1),(935,60,'Azua','AZ',1),(936,60,'Baoruco','BC',1),(937,60,'Barahona','BH',1),(938,60,'Dajabon','DJ',1),(939,60,'Duarte','DU',1),(940,60,'Elias Pina','EL',1),(941,60,'El Seybo','SY',1),(942,60,'Espaillat','ET',1),(943,60,'Hato Mayor','HM',1),(944,60,'Independencia','IN',1),(945,60,'La Altagracia','AL',1),(946,60,'La Romana','RO',1),(947,60,'La Vega','VE',1),(948,60,'Maria Trinidad Sanchez','MT',1),(949,60,'Monsenor Nouel','MN',1),(950,60,'Monte Cristi','MC',1),(951,60,'Monte Plata','MP',1),(952,60,'Pedernales','PD',1),(953,60,'Peravia (Bani)','PR',1),(954,60,'Puerto Plata','PP',1),(955,60,'Salcedo','SL',1),(956,60,'Samana','SM',1),(957,60,'Sanchez Ramirez','SH',1),(958,60,'San Cristobal','SC',1),(959,60,'San Jose de Ocoa','JO',1),(960,60,'San Juan','SJ',1),(961,60,'San Pedro de Macoris','PM',1),(962,60,'Santiago','SA',1),(963,60,'Santiago Rodriguez','ST',1),(964,60,'Santo Domingo','SD',1),(965,60,'Valverde','VA',1),(966,61,'Aileu','AL',1),(967,61,'Ainaro','AN',1),(968,61,'Baucau','BA',1),(969,61,'Bobonaro','BO',1),(970,61,'Cova Lima','CO',1),(971,61,'Dili','DI',1),(972,61,'Ermera','ER',1),(973,61,'Lautem','LA',1),(974,61,'Liquica','LI',1),(975,61,'Manatuto','MT',1),(976,61,'Manufahi','MF',1),(977,61,'Oecussi','OE',1),(978,61,'Viqueque','VI',1),(979,62,'Azuay','AZU',1),(980,62,'Bolivar','BOL',1),(981,62,'Ca&ntilde;ar','CAN',1),(982,62,'Carchi','CAR',1),(983,62,'Chimborazo','CHI',1),(984,62,'Cotopaxi','COT',1),(985,62,'El Oro','EOR',1),(986,62,'Esmeraldas','ESM',1),(987,62,'Gal&aacute;pagos','GPS',1),(988,62,'Guayas','GUA',1),(989,62,'Imbabura','IMB',1),(990,62,'Loja','LOJ',1),(991,62,'Los Rios','LRO',1),(992,62,'Manab&iacute;','MAN',1),(993,62,'Morona Santiago','MSA',1),(994,62,'Napo','NAP',1),(995,62,'Orellana','ORE',1),(996,62,'Pastaza','PAS',1),(997,62,'Pichincha','PIC',1),(998,62,'Sucumb&iacute;os','SUC',1),(999,62,'Tungurahua','TUN',1),(1000,62,'Zamora Chinchipe','ZCH',1),(1001,63,'Ad Daqahliyah','DHY',1),(1002,63,'Al Bahr al Ahmar','BAM',1),(1003,63,'Al Buhayrah','BHY',1),(1004,63,'Al Fayyum','FYM',1),(1005,63,'Al Gharbiyah','GBY',1),(1006,63,'Al Iskandariyah','IDR',1),(1007,63,'Al Isma\'iliyah','IML',1),(1008,63,'Al Jizah','JZH',1),(1009,63,'Al Minufiyah','MFY',1),(1010,63,'Al Minya','MNY',1),(1011,63,'Al Qahirah','QHR',1),(1012,63,'Al Qalyubiyah','QLY',1),(1013,63,'Al Wadi al Jadid','WJD',1),(1014,63,'Ash Sharqiyah','SHQ',1),(1015,63,'As Suways','SWY',1),(1016,63,'Aswan','ASW',1),(1017,63,'Asyut','ASY',1),(1018,63,'Bani Suwayf','BSW',1),(1019,63,'Bur Sa\'id','BSD',1),(1020,63,'Dumyat','DMY',1),(1021,63,'Janub Sina\'','JNS',1),(1022,63,'Kafr ash Shaykh','KSH',1),(1023,63,'Matruh','MAT',1),(1024,63,'Qina','QIN',1),(1025,63,'Shamal Sina\'','SHS',1),(1026,63,'Suhaj','SUH',1),(1027,64,'Ahuachapan','AH',1),(1028,64,'Cabanas','CA',1),(1029,64,'Chalatenango','CH',1),(1030,64,'Cuscatlan','CU',1),(1031,64,'La Libertad','LB',1),(1032,64,'La Paz','PZ',1),(1033,64,'La Union','UN',1),(1034,64,'Morazan','MO',1),(1035,64,'San Miguel','SM',1),(1036,64,'San Salvador','SS',1),(1037,64,'San Vicente','SV',1),(1038,64,'Santa Ana','SA',1),(1039,64,'Sonsonate','SO',1),(1040,64,'Usulutan','US',1),(1041,65,'Provincia Annobon','AN',1),(1042,65,'Provincia Bioko Norte','BN',1),(1043,65,'Provincia Bioko Sur','BS',1),(1044,65,'Provincia Centro Sur','CS',1),(1045,65,'Provincia Kie-Ntem','KN',1),(1046,65,'Provincia Litoral','LI',1),(1047,65,'Provincia Wele-Nzas','WN',1),(1048,66,'Central (Maekel)','MA',1),(1049,66,'Anseba (Keren)','KE',1),(1050,66,'Southern Red Sea (Debub-Keih-Bahri)','DK',1),(1051,66,'Northern Red Sea (Semien-Keih-Bahri)','SK',1),(1052,66,'Southern (Debub)','DE',1),(1053,66,'Gash-Barka (Barentu)','BR',1),(1054,67,'Harjumaa (Tallinn)','HA',1),(1055,67,'Hiiumaa (Kardla)','HI',1),(1056,67,'Ida-Virumaa (Johvi)','IV',1),(1057,67,'Jarvamaa (Paide)','JA',1),(1058,67,'Jogevamaa (Jogeva)','JO',1),(1059,67,'Laane-Virumaa (Rakvere)','LV',1),(1060,67,'Laanemaa (Haapsalu)','LA',1),(1061,67,'Parnumaa (Parnu)','PA',1),(1062,67,'Polvamaa (Polva)','PO',1),(1063,67,'Raplamaa (Rapla)','RA',1),(1064,67,'Saaremaa (Kuessaare)','SA',1),(1065,67,'Tartumaa (Tartu)','TA',1),(1066,67,'Valgamaa (Valga)','VA',1),(1067,67,'Viljandimaa (Viljandi)','VI',1),(1068,67,'Vorumaa (Voru)','VO',1),(1069,68,'Afar','AF',1),(1070,68,'Amhara','AH',1),(1071,68,'Benishangul-Gumaz','BG',1),(1072,68,'Gambela','GB',1),(1073,68,'Hariai','HR',1),(1074,68,'Oromia','OR',1),(1075,68,'Somali','SM',1),(1076,68,'Southern Nations - Nationalities and Peoples Region','SN',1),(1077,68,'Tigray','TG',1),(1078,68,'Addis Ababa','AA',1),(1079,68,'Dire Dawa','DD',1),(1080,71,'Central Division','C',1),(1081,71,'Northern Division','N',1),(1082,71,'Eastern Division','E',1),(1083,71,'Western Division','W',1),(1084,71,'Rotuma','R',1),(1085,72,'Ahvenanmaan lääni','AL',1),(1086,72,'Etelä-Suomen lääni','ES',1),(1087,72,'Itä-Suomen lääni','IS',1),(1088,72,'Länsi-Suomen lääni','LS',1),(1089,72,'Lapin lääni','LA',1),(1090,72,'Oulun lääni','OU',1),(1114,74,'Ain','01',1),(1115,74,'Aisne','02',1),(1116,74,'Allier','03',1),(1117,74,'Alpes de Haute Provence','04',1),(1118,74,'Hautes-Alpes','05',1),(1119,74,'Alpes Maritimes','06',1),(1120,74,'Ard&egrave;che','07',1),(1121,74,'Ardennes','08',1),(1122,74,'Ari&egrave;ge','09',1),(1123,74,'Aube','10',1),(1124,74,'Aude','11',1),(1125,74,'Aveyron','12',1),(1126,74,'Bouches du Rh&ocirc;ne','13',1),(1127,74,'Calvados','14',1),(1128,74,'Cantal','15',1),(1129,74,'Charente','16',1),(1130,74,'Charente Maritime','17',1),(1131,74,'Cher','18',1),(1132,74,'Corr&egrave;ze','19',1),(1133,74,'Corse du Sud','2A',1),(1134,74,'Haute Corse','2B',1),(1135,74,'C&ocirc;te d&#039;or','21',1),(1136,74,'C&ocirc;tes d&#039;Armor','22',1),(1137,74,'Creuse','23',1),(1138,74,'Dordogne','24',1),(1139,74,'Doubs','25',1),(1140,74,'Dr&ocirc;me','26',1),(1141,74,'Eure','27',1),(1142,74,'Eure et Loir','28',1),(1143,74,'Finist&egrave;re','29',1),(1144,74,'Gard','30',1),(1145,74,'Haute Garonne','31',1),(1146,74,'Gers','32',1),(1147,74,'Gironde','33',1),(1148,74,'H&eacute;rault','34',1),(1149,74,'Ille et Vilaine','35',1),(1150,74,'Indre','36',1),(1151,74,'Indre et Loire','37',1),(1152,74,'Is&eacute;re','38',1),(1153,74,'Jura','39',1),(1154,74,'Landes','40',1),(1155,74,'Loir et Cher','41',1),(1156,74,'Loire','42',1),(1157,74,'Haute Loire','43',1),(1158,74,'Loire Atlantique','44',1),(1159,74,'Loiret','45',1),(1160,74,'Lot','46',1),(1161,74,'Lot et Garonne','47',1),(1162,74,'Loz&egrave;re','48',1),(1163,74,'Maine et Loire','49',1),(1164,74,'Manche','50',1),(1165,74,'Marne','51',1),(1166,74,'Haute Marne','52',1),(1167,74,'Mayenne','53',1),(1168,74,'Meurthe et Moselle','54',1),(1169,74,'Meuse','55',1),(1170,74,'Morbihan','56',1),(1171,74,'Moselle','57',1),(1172,74,'Ni&egrave;vre','58',1),(1173,74,'Nord','59',1),(1174,74,'Oise','60',1),(1175,74,'Orne','61',1),(1176,74,'Pas de Calais','62',1),(1177,74,'Puy de D&ocirc;me','63',1),(1178,74,'Pyr&eacute;n&eacute;es Atlantiques','64',1),(1179,74,'Hautes Pyr&eacute;n&eacute;es','65',1),(1180,74,'Pyr&eacute;n&eacute;es Orientales','66',1),(1181,74,'Bas Rhin','67',1),(1182,74,'Haut Rhin','68',1),(1183,74,'Rh&ocirc;ne','69',1),(1184,74,'Haute Sa&ocirc;ne','70',1),(1185,74,'Sa&ocirc;ne et Loire','71',1),(1186,74,'Sarthe','72',1),(1187,74,'Savoie','73',1),(1188,74,'Haute Savoie','74',1),(1189,74,'Paris','75',1),(1190,74,'Seine Maritime','76',1),(1191,74,'Seine et Marne','77',1),(1192,74,'Yvelines','78',1),(1193,74,'Deux S&egrave;vres','79',1),(1194,74,'Somme','80',1),(1195,74,'Tarn','81',1),(1196,74,'Tarn et Garonne','82',1),(1197,74,'Var','83',1),(1198,74,'Vaucluse','84',1),(1199,74,'Vend&eacute;e','85',1),(1200,74,'Vienne','86',1),(1201,74,'Haute Vienne','87',1),(1202,74,'Vosges','88',1),(1203,74,'Yonne','89',1),(1204,74,'Territoire de Belfort','90',1),(1205,74,'Essonne','91',1),(1206,74,'Hauts de Seine','92',1),(1207,74,'Seine St-Denis','93',1),(1208,74,'Val de Marne','94',1),(1209,74,'Val d\'Oise','95',1),(1210,76,'Archipel des Marquises','M',1),(1211,76,'Archipel des Tuamotu','T',1),(1212,76,'Archipel des Tubuai','I',1),(1213,76,'Iles du Vent','V',1),(1214,76,'Iles Sous-le-Vent','S',1),(1215,77,'Iles Crozet','C',1),(1216,77,'Iles Kerguelen','K',1),(1217,77,'Ile Amsterdam','A',1),(1218,77,'Ile Saint-Paul','P',1),(1219,77,'Adelie Land','D',1),(1220,78,'Estuaire','ES',1),(1221,78,'Haut-Ogooue','HO',1),(1222,78,'Moyen-Ogooue','MO',1),(1223,78,'Ngounie','NG',1),(1224,78,'Nyanga','NY',1),(1225,78,'Ogooue-Ivindo','OI',1),(1226,78,'Ogooue-Lolo','OL',1),(1227,78,'Ogooue-Maritime','OM',1),(1228,78,'Woleu-Ntem','WN',1),(1229,79,'Banjul','BJ',1),(1230,79,'Basse','BS',1),(1231,79,'Brikama','BR',1),(1232,79,'Janjangbure','JA',1),(1233,79,'Kanifeng','KA',1),(1234,79,'Kerewan','KE',1),(1235,79,'Kuntaur','KU',1),(1236,79,'Mansakonko','MA',1),(1237,79,'Lower River','LR',1),(1238,79,'Central River','CR',1),(1239,79,'North Bank','NB',1),(1240,79,'Upper River','UR',1),(1241,79,'Western','WE',1),(1242,80,'Abkhazia','AB',1),(1243,80,'Ajaria','AJ',1),(1244,80,'Tbilisi','TB',1),(1245,80,'Guria','GU',1),(1246,80,'Imereti','IM',1),(1247,80,'Kakheti','KA',1),(1248,80,'Kvemo Kartli','KK',1),(1249,80,'Mtskheta-Mtianeti','MM',1),(1250,80,'Racha Lechkhumi and Kvemo Svanet','RL',1),(1251,80,'Samegrelo-Zemo Svaneti','SZ',1),(1252,80,'Samtskhe-Javakheti','SJ',1),(1253,80,'Shida Kartli','SK',1),(1254,81,'Baden-Württemberg','BAW',1),(1255,81,'Bayern','BAY',1),(1256,81,'Berlin','BER',1),(1257,81,'Brandenburg','BRG',1),(1258,81,'Bremen','BRE',1),(1259,81,'Hamburg','HAM',1),(1260,81,'Hessen','HES',1),(1261,81,'Mecklenburg-Vorpommern','MEC',1),(1262,81,'Niedersachsen','NDS',1),(1263,81,'Nordrhein-Westfalen','NRW',1),(1264,81,'Rheinland-Pfalz','RHE',1),(1265,81,'Saarland','SAR',1),(1266,81,'Sachsen','SAS',1),(1267,81,'Sachsen-Anhalt','SAC',1),(1268,81,'Schleswig-Holstein','SCN',1),(1269,81,'Thüringen','THE',1),(1270,82,'Ashanti Region','AS',1),(1271,82,'Brong-Ahafo Region','BA',1),(1272,82,'Central Region','CE',1),(1273,82,'Eastern Region','EA',1),(1274,82,'Greater Accra Region','GA',1),(1275,82,'Northern Region','NO',1),(1276,82,'Upper East Region','UE',1),(1277,82,'Upper West Region','UW',1),(1278,82,'Volta Region','VO',1),(1279,82,'Western Region','WE',1),(1280,84,'Attica','AT',1),(1281,84,'Central Greece','CN',1),(1282,84,'Central Macedonia','CM',1),(1283,84,'Crete','CR',1),(1284,84,'East Macedonia and Thrace','EM',1),(1285,84,'Epirus','EP',1),(1286,84,'Ionian Islands','II',1),(1287,84,'North Aegean','NA',1),(1288,84,'Peloponnesos','PP',1),(1289,84,'South Aegean','SA',1),(1290,84,'Thessaly','TH',1),(1291,84,'West Greece','WG',1),(1292,84,'West Macedonia','WM',1),(1293,85,'Avannaa','A',1),(1294,85,'Tunu','T',1),(1295,85,'Kitaa','K',1),(1296,86,'Saint Andrew','A',1),(1297,86,'Saint David','D',1),(1298,86,'Saint George','G',1),(1299,86,'Saint John','J',1),(1300,86,'Saint Mark','M',1),(1301,86,'Saint Patrick','P',1),(1302,86,'Carriacou','C',1),(1303,86,'Petit Martinique','Q',1),(1304,89,'Alta Verapaz','AV',1),(1305,89,'Baja Verapaz','BV',1),(1306,89,'Chimaltenango','CM',1),(1307,89,'Chiquimula','CQ',1),(1308,89,'El Peten','PE',1),(1309,89,'El Progreso','PR',1),(1310,89,'El Quiche','QC',1),(1311,89,'Escuintla','ES',1),(1312,89,'Guatemala','GU',1),(1313,89,'Huehuetenango','HU',1),(1314,89,'Izabal','IZ',1),(1315,89,'Jalapa','JA',1),(1316,89,'Jutiapa','JU',1),(1317,89,'Quetzaltenango','QZ',1),(1318,89,'Retalhuleu','RE',1),(1319,89,'Sacatepequez','ST',1),(1320,89,'San Marcos','SM',1),(1321,89,'Santa Rosa','SR',1),(1322,89,'Solola','SO',1),(1323,89,'Suchitepequez','SU',1),(1324,89,'Totonicapan','TO',1),(1325,89,'Zacapa','ZA',1),(1326,90,'Conakry','CNK',1),(1327,90,'Beyla','BYL',1),(1328,90,'Boffa','BFA',1),(1329,90,'Boke','BOK',1),(1330,90,'Coyah','COY',1),(1331,90,'Dabola','DBL',1),(1332,90,'Dalaba','DLB',1),(1333,90,'Dinguiraye','DGR',1),(1334,90,'Dubreka','DBR',1),(1335,90,'Faranah','FRN',1),(1336,90,'Forecariah','FRC',1),(1337,90,'Fria','FRI',1),(1338,90,'Gaoual','GAO',1),(1339,90,'Gueckedou','GCD',1),(1340,90,'Kankan','KNK',1),(1341,90,'Kerouane','KRN',1),(1342,90,'Kindia','KND',1),(1343,90,'Kissidougou','KSD',1),(1344,90,'Koubia','KBA',1),(1345,90,'Koundara','KDA',1),(1346,90,'Kouroussa','KRA',1),(1347,90,'Labe','LAB',1),(1348,90,'Lelouma','LLM',1),(1349,90,'Lola','LOL',1),(1350,90,'Macenta','MCT',1),(1351,90,'Mali','MAL',1),(1352,90,'Mamou','MAM',1),(1353,90,'Mandiana','MAN',1),(1354,90,'Nzerekore','NZR',1),(1355,90,'Pita','PIT',1),(1356,90,'Siguiri','SIG',1),(1357,90,'Telimele','TLM',1),(1358,90,'Tougue','TOG',1),(1359,90,'Yomou','YOM',1),(1360,91,'Bafata Region','BF',1),(1361,91,'Biombo Region','BB',1),(1362,91,'Bissau Region','BS',1),(1363,91,'Bolama Region','BL',1),(1364,91,'Cacheu Region','CA',1),(1365,91,'Gabu Region','GA',1),(1366,91,'Oio Region','OI',1),(1367,91,'Quinara Region','QU',1),(1368,91,'Tombali Region','TO',1),(1369,92,'Barima-Waini','BW',1),(1370,92,'Cuyuni-Mazaruni','CM',1),(1371,92,'Demerara-Mahaica','DM',1),(1372,92,'East Berbice-Corentyne','EC',1),(1373,92,'Essequibo Islands-West Demerara','EW',1),(1374,92,'Mahaica-Berbice','MB',1),(1375,92,'Pomeroon-Supenaam','PM',1),(1376,92,'Potaro-Siparuni','PI',1),(1377,92,'Upper Demerara-Berbice','UD',1),(1378,92,'Upper Takutu-Upper Essequibo','UT',1),(1379,93,'Artibonite','AR',1),(1380,93,'Centre','CE',1),(1381,93,'Grand\'Anse','GA',1),(1382,93,'Nord','ND',1),(1383,93,'Nord-Est','NE',1),(1384,93,'Nord-Ouest','NO',1),(1385,93,'Ouest','OU',1),(1386,93,'Sud','SD',1),(1387,93,'Sud-Est','SE',1),(1388,94,'Flat Island','F',1),(1389,94,'McDonald Island','M',1),(1390,94,'Shag Island','S',1),(1391,94,'Heard Island','H',1),(1392,95,'Atlantida','AT',1),(1393,95,'Choluteca','CH',1),(1394,95,'Colon','CL',1),(1395,95,'Comayagua','CM',1),(1396,95,'Copan','CP',1),(1397,95,'Cortes','CR',1),(1398,95,'El Paraiso','PA',1),(1399,95,'Francisco Morazan','FM',1),(1400,95,'Gracias a Dios','GD',1),(1401,95,'Intibuca','IN',1),(1402,95,'Islas de la Bahia (Bay Islands)','IB',1),(1403,95,'La Paz','PZ',1),(1404,95,'Lempira','LE',1),(1405,95,'Ocotepeque','OC',1),(1406,95,'Olancho','OL',1),(1407,95,'Santa Barbara','SB',1),(1408,95,'Valle','VA',1),(1409,95,'Yoro','YO',1),(1410,96,'Central and Western Hong Kong Island','HCW',1),(1411,96,'Eastern Hong Kong Island','HEA',1),(1412,96,'Southern Hong Kong Island','HSO',1),(1413,96,'Wan Chai Hong Kong Island','HWC',1),(1414,96,'Kowloon City Kowloon','KKC',1),(1415,96,'Kwun Tong Kowloon','KKT',1),(1416,96,'Sham Shui Po Kowloon','KSS',1),(1417,96,'Wong Tai Sin Kowloon','KWT',1),(1418,96,'Yau Tsim Mong Kowloon','KYT',1),(1419,96,'Islands New Territories','NIS',1),(1420,96,'Kwai Tsing New Territories','NKT',1),(1421,96,'North New Territories','NNO',1),(1422,96,'Sai Kung New Territories','NSK',1),(1423,96,'Sha Tin New Territories','NST',1),(1424,96,'Tai Po New Territories','NTP',1),(1425,96,'Tsuen Wan New Territories','NTW',1),(1426,96,'Tuen Mun New Territories','NTM',1),(1427,96,'Yuen Long New Territories','NYL',1),(1467,98,'Austurland','AL',1),(1468,98,'Hofuoborgarsvaeoi','HF',1),(1469,98,'Norourland eystra','NE',1),(1470,98,'Norourland vestra','NV',1),(1471,98,'Suourland','SL',1),(1472,98,'Suournes','SN',1),(1473,98,'Vestfiroir','VF',1),(1474,98,'Vesturland','VL',1),(1475,99,'Andaman and Nicobar Islands','AN',1),(1476,99,'Andhra Pradesh','AP',1),(1477,99,'Arunachal Pradesh','AR',1),(1478,99,'Assam','AS',1),(1479,99,'Bihar','BI',1),(1480,99,'Chandigarh','CH',1),(1481,99,'Dadra and Nagar Haveli','DA',1),(1482,99,'Daman and Diu','DM',1),(1483,99,'Delhi','DE',1),(1484,99,'Goa','GO',1),(1485,99,'Gujarat','GU',1),(1486,99,'Haryana','HA',1),(1487,99,'Himachal Pradesh','HP',1),(1488,99,'Jammu and Kashmir','JA',1),(1489,99,'Karnataka','KA',1),(1490,99,'Kerala','KE',1),(1491,99,'Lakshadweep Islands','LI',1),(1492,99,'Madhya Pradesh','MP',1),(1493,99,'Maharashtra','MA',1),(1494,99,'Manipur','MN',1),(1495,99,'Meghalaya','ME',1),(1496,99,'Mizoram','MI',1),(1497,99,'Nagaland','NA',1),(1498,99,'Orissa','OR',1),(1499,99,'Puducherry','PO',1),(1500,99,'Punjab','PU',1),(1501,99,'Rajasthan','RA',1),(1502,99,'Sikkim','SI',1),(1503,99,'Tamil Nadu','TN',1),(1504,99,'Tripura','TR',1),(1505,99,'Uttar Pradesh','UP',1),(1506,99,'West Bengal','WB',1),(1507,100,'Aceh','AC',1),(1508,100,'Bali','BA',1),(1509,100,'Banten','BT',1),(1510,100,'Bengkulu','BE',1),(1511,100,'Kalimantan Utara','BD',1),(1512,100,'Gorontalo','GO',1),(1513,100,'Jakarta','JK',1),(1514,100,'Jambi','JA',1),(1515,100,'Jawa Barat','JB',1),(1516,100,'Jawa Tengah','JT',1),(1517,100,'Jawa Timur','JI',1),(1518,100,'Kalimantan Barat','KB',1),(1519,100,'Kalimantan Selatan','KS',1),(1520,100,'Kalimantan Tengah','KT',1),(1521,100,'Kalimantan Timur','KI',1),(1522,100,'Kepulauan Bangka Belitung','BB',1),(1523,100,'Lampung','LA',1),(1524,100,'Maluku','MA',1),(1525,100,'Maluku Utara','MU',1),(1526,100,'Nusa Tenggara Barat','NB',1),(1527,100,'Nusa Tenggara Timur','NT',1),(1528,100,'Papua','PA',1),(1529,100,'Riau','RI',1),(1530,100,'Sulawesi Selatan','SN',1),(1531,100,'Sulawesi Tengah','ST',1),(1532,100,'Sulawesi Tenggara','SG',1),(1533,100,'Sulawesi Utara','SA',1),(1534,100,'Sumatera Barat','SB',1),(1535,100,'Sumatera Selatan','SS',1),(1536,100,'Sumatera Utara','SU',1),(1537,100,'Yogyakarta','YO',1),(1538,101,'Tehran','TEH',1),(1539,101,'Qom','QOM',1),(1540,101,'Markazi','MKZ',1),(1541,101,'Qazvin','QAZ',1),(1542,101,'Gilan','GIL',1),(1543,101,'Ardabil','ARD',1),(1544,101,'Zanjan','ZAN',1),(1545,101,'East Azarbaijan','EAZ',1),(1546,101,'West Azarbaijan','WEZ',1),(1547,101,'Kurdistan','KRD',1),(1548,101,'Hamadan','HMD',1),(1549,101,'Kermanshah','KRM',1),(1550,101,'Ilam','ILM',1),(1551,101,'Lorestan','LRS',1),(1552,101,'Khuzestan','KZT',1),(1553,101,'Chahar Mahaal and Bakhtiari','CMB',1),(1554,101,'Kohkiluyeh and Buyer Ahmad','KBA',1),(1555,101,'Bushehr','BSH',1),(1556,101,'Fars','FAR',1),(1557,101,'Hormozgan','HRM',1),(1558,101,'Sistan and Baluchistan','SBL',1),(1559,101,'Kerman','KRB',1),(1560,101,'Yazd','YZD',1),(1561,101,'Esfahan','EFH',1),(1562,101,'Semnan','SMN',1),(1563,101,'Mazandaran','MZD',1),(1564,101,'Golestan','GLS',1),(1565,101,'North Khorasan','NKH',1),(1566,101,'Razavi Khorasan','RKH',1),(1567,101,'South Khorasan','SKH',1),(1568,102,'Baghdad','BD',1),(1569,102,'Salah ad Din','SD',1),(1570,102,'Diyala','DY',1),(1571,102,'Wasit','WS',1),(1572,102,'Maysan','MY',1),(1573,102,'Al Basrah','BA',1),(1574,102,'Dhi Qar','DQ',1),(1575,102,'Al Muthanna','MU',1),(1576,102,'Al Qadisyah','QA',1),(1577,102,'Babil','BB',1),(1578,102,'Al Karbala','KB',1),(1579,102,'An Najaf','NJ',1),(1580,102,'Al Anbar','AB',1),(1581,102,'Ninawa','NN',1),(1582,102,'Dahuk','DH',1),(1583,102,'Arbil','AL',1),(1584,102,'At Ta\'mim','TM',1),(1585,102,'As Sulaymaniyah','SL',1),(1586,103,'Carlow','CA',1),(1587,103,'Cavan','CV',1),(1588,103,'Clare','CL',1),(1589,103,'Cork','CO',1),(1590,103,'Donegal','DO',1),(1591,103,'Dublin','DU',1),(1592,103,'Galway','GA',1),(1593,103,'Kerry','KE',1),(1594,103,'Kildare','KI',1),(1595,103,'Kilkenny','KL',1),(1596,103,'Laois','LA',1),(1597,103,'Leitrim','LE',1),(1598,103,'Limerick','LI',1),(1599,103,'Longford','LO',1),(1600,103,'Louth','LU',1),(1601,103,'Mayo','MA',1),(1602,103,'Meath','ME',1),(1603,103,'Monaghan','MO',1),(1604,103,'Offaly','OF',1),(1605,103,'Roscommon','RO',1),(1606,103,'Sligo','SL',1),(1607,103,'Tipperary','TI',1),(1608,103,'Waterford','WA',1),(1609,103,'Westmeath','WE',1),(1610,103,'Wexford','WX',1),(1611,103,'Wicklow','WI',1),(1612,104,'Be\'er Sheva','BS',1),(1613,104,'Bika\'at Hayarden','BH',1),(1614,104,'Eilat and Arava','EA',1),(1615,104,'Galil','GA',1),(1616,104,'Haifa','HA',1),(1617,104,'Jehuda Mountains','JM',1),(1618,104,'Jerusalem','JE',1),(1619,104,'Negev','NE',1),(1620,104,'Semaria','SE',1),(1621,104,'Sharon','SH',1),(1622,104,'Tel Aviv (Gosh Dan)','TA',1),(3860,105,'Caltanissetta','CL',1),(3842,105,'Agrigento','AG',1),(3843,105,'Alessandria','AL',1),(3844,105,'Ancona','AN',1),(3845,105,'Aosta','AO',1),(3846,105,'Arezzo','AR',1),(3847,105,'Ascoli Piceno','AP',1),(3848,105,'Asti','AT',1),(3849,105,'Avellino','AV',1),(3850,105,'Bari','BA',1),(3851,105,'Belluno','BL',1),(3852,105,'Benevento','BN',1),(3853,105,'Bergamo','BG',1),(3854,105,'Biella','BI',1),(3855,105,'Bologna','BO',1),(3856,105,'Bolzano','BZ',1),(3857,105,'Brescia','BS',1),(3858,105,'Brindisi','BR',1),(3859,105,'Cagliari','CA',1),(1643,106,'Clarendon Parish','CLA',1),(1644,106,'Hanover Parish','HAN',1),(1645,106,'Kingston Parish','KIN',1),(1646,106,'Manchester Parish','MAN',1),(1647,106,'Portland Parish','POR',1),(1648,106,'Saint Andrew Parish','AND',1),(1649,106,'Saint Ann Parish','ANN',1),(1650,106,'Saint Catherine Parish','CAT',1),(1651,106,'Saint Elizabeth Parish','ELI',1),(1652,106,'Saint James Parish','JAM',1),(1653,106,'Saint Mary Parish','MAR',1),(1654,106,'Saint Thomas Parish','THO',1),(1655,106,'Trelawny Parish','TRL',1),(1656,106,'Westmoreland Parish','WML',1),(1657,107,'Aichi','AI',1),(1658,107,'Akita','AK',1),(1659,107,'Aomori','AO',1),(1660,107,'Chiba','CH',1),(1661,107,'Ehime','EH',1),(1662,107,'Fukui','FK',1),(1663,107,'Fukuoka','FU',1),(1664,107,'Fukushima','FS',1),(1665,107,'Gifu','GI',1),(1666,107,'Gumma','GU',1),(1667,107,'Hiroshima','HI',1),(1668,107,'Hokkaido','HO',1),(1669,107,'Hyogo','HY',1),(1670,107,'Ibaraki','IB',1),(1671,107,'Ishikawa','IS',1),(1672,107,'Iwate','IW',1),(1673,107,'Kagawa','KA',1),(1674,107,'Kagoshima','KG',1),(1675,107,'Kanagawa','KN',1),(1676,107,'Kochi','KO',1),(1677,107,'Kumamoto','KU',1),(1678,107,'Kyoto','KY',1),(1679,107,'Mie','MI',1),(1680,107,'Miyagi','MY',1),(1681,107,'Miyazaki','MZ',1),(1682,107,'Nagano','NA',1),(1683,107,'Nagasaki','NG',1),(1684,107,'Nara','NR',1),(1685,107,'Niigata','NI',1),(1686,107,'Oita','OI',1),(1687,107,'Okayama','OK',1),(1688,107,'Okinawa','ON',1),(1689,107,'Osaka','OS',1),(1690,107,'Saga','SA',1),(1691,107,'Saitama','SI',1),(1692,107,'Shiga','SH',1),(1693,107,'Shimane','SM',1),(1694,107,'Shizuoka','SZ',1),(1695,107,'Tochigi','TO',1),(1696,107,'Tokushima','TS',1),(1697,107,'Tokyo','TK',1),(1698,107,'Tottori','TT',1),(1699,107,'Toyama','TY',1),(1700,107,'Wakayama','WA',1),(1701,107,'Yamagata','YA',1),(1702,107,'Yamaguchi','YM',1),(1703,107,'Yamanashi','YN',1),(1704,108,'\'Amman','AM',1),(1705,108,'Ajlun','AJ',1),(1706,108,'Al \'Aqabah','AA',1),(1707,108,'Al Balqa\'','AB',1),(1708,108,'Al Karak','AK',1),(1709,108,'Al Mafraq','AL',1),(1710,108,'At Tafilah','AT',1),(1711,108,'Az Zarqa\'','AZ',1),(1712,108,'Irbid','IR',1),(1713,108,'Jarash','JA',1),(1714,108,'Ma\'an','MA',1),(1715,108,'Madaba','MD',1),(1716,109,'Almaty','AL',1),(1717,109,'Almaty City','AC',1),(1718,109,'Aqmola','AM',1),(1719,109,'Aqtobe','AQ',1),(1720,109,'Astana City','AS',1),(1721,109,'Atyrau','AT',1),(1722,109,'Batys Qazaqstan','BA',1),(1723,109,'Bayqongyr City','BY',1),(1724,109,'Mangghystau','MA',1),(1725,109,'Ongtustik Qazaqstan','ON',1),(1726,109,'Pavlodar','PA',1),(1727,109,'Qaraghandy','QA',1),(1728,109,'Qostanay','QO',1),(1729,109,'Qyzylorda','QY',1),(1730,109,'Shyghys Qazaqstan','SH',1),(1731,109,'Soltustik Qazaqstan','SO',1),(1732,109,'Zhambyl','ZH',1),(1733,110,'Central','CE',1),(1734,110,'Coast','CO',1),(1735,110,'Eastern','EA',1),(1736,110,'Nairobi Area','NA',1),(1737,110,'North Eastern','NE',1),(1738,110,'Nyanza','NY',1),(1739,110,'Rift Valley','RV',1),(1740,110,'Western','WE',1),(1741,111,'Abaiang','AG',1),(1742,111,'Abemama','AM',1),(1743,111,'Aranuka','AK',1),(1744,111,'Arorae','AO',1),(1745,111,'Banaba','BA',1),(1746,111,'Beru','BE',1),(1747,111,'Butaritari','bT',1),(1748,111,'Kanton','KA',1),(1749,111,'Kiritimati','KR',1),(1750,111,'Kuria','KU',1),(1751,111,'Maiana','MI',1),(1752,111,'Makin','MN',1),(1753,111,'Marakei','ME',1),(1754,111,'Nikunau','NI',1),(1755,111,'Nonouti','NO',1),(1756,111,'Onotoa','ON',1),(1757,111,'Tabiteuea','TT',1),(1758,111,'Tabuaeran','TR',1),(1759,111,'Tamana','TM',1),(1760,111,'Tarawa','TW',1),(1761,111,'Teraina','TE',1),(1762,112,'Chagang-do','CHA',1),(1763,112,'Hamgyong-bukto','HAB',1),(1764,112,'Hamgyong-namdo','HAN',1),(1765,112,'Hwanghae-bukto','HWB',1),(1766,112,'Hwanghae-namdo','HWN',1),(1767,112,'Kangwon-do','KAN',1),(1768,112,'P\'yongan-bukto','PYB',1),(1769,112,'P\'yongan-namdo','PYN',1),(1770,112,'Ryanggang-do (Yanggang-do)','YAN',1),(1771,112,'Rason Directly Governed City','NAJ',1),(1772,112,'P\'yongyang Special City','PYO',1),(1773,113,'Ch\'ungch\'ong-bukto','CO',1),(1774,113,'Ch\'ungch\'ong-namdo','CH',1),(1775,113,'Cheju-do','CD',1),(1776,113,'Cholla-bukto','CB',1),(1777,113,'Cholla-namdo','CN',1),(1778,113,'Inch\'on-gwangyoksi','IG',1),(1779,113,'Kangwon-do','KA',1),(1780,113,'Kwangju-gwangyoksi','KG',1),(1781,113,'Kyonggi-do','KD',1),(1782,113,'Kyongsang-bukto','KB',1),(1783,113,'Kyongsang-namdo','KN',1),(1784,113,'Pusan-gwangyoksi','PG',1),(1785,113,'Soul-t\'ukpyolsi','SO',1),(1786,113,'Taegu-gwangyoksi','TA',1),(1787,113,'Taejon-gwangyoksi','TG',1),(1788,114,'Al \'Asimah','AL',1),(1789,114,'Al Ahmadi','AA',1),(1790,114,'Al Farwaniyah','AF',1),(1791,114,'Al Jahra\'','AJ',1),(1792,114,'Hawalli','HA',1),(1793,115,'Bishkek','GB',1),(1794,115,'Batken','B',1),(1795,115,'Chu','C',1),(1796,115,'Jalal-Abad','J',1),(1797,115,'Naryn','N',1),(1798,115,'Osh','O',1),(1799,115,'Talas','T',1),(1800,115,'Ysyk-Kol','Y',1),(1801,116,'Vientiane','VT',1),(1802,116,'Attapu','AT',1),(1803,116,'Bokeo','BK',1),(1804,116,'Bolikhamxai','BL',1),(1805,116,'Champasak','CH',1),(1806,116,'Houaphan','HO',1),(1807,116,'Khammouan','KH',1),(1808,116,'Louang Namtha','LM',1),(1809,116,'Louangphabang','LP',1),(1810,116,'Oudomxai','OU',1),(1811,116,'Phongsali','PH',1),(1812,116,'Salavan','SL',1),(1813,116,'Savannakhet','SV',1),(1814,116,'Vientiane','VI',1),(1815,116,'Xaignabouli','XA',1),(1816,116,'Xekong','XE',1),(1817,116,'Xiangkhoang','XI',1),(1818,116,'Xaisomboun','XN',1),(1852,119,'Berea','BE',1),(1853,119,'Butha-Buthe','BB',1),(1854,119,'Leribe','LE',1),(1855,119,'Mafeteng','MF',1),(1856,119,'Maseru','MS',1),(1857,119,'Mohale\'s Hoek','MH',1),(1858,119,'Mokhotlong','MK',1),(1859,119,'Qacha\'s Nek','QN',1),(1860,119,'Quthing','QT',1),(1861,119,'Thaba-Tseka','TT',1),(1862,120,'Bomi','BI',1),(1863,120,'Bong','BG',1),(1864,120,'Grand Bassa','GB',1),(1865,120,'Grand Cape Mount','CM',1),(1866,120,'Grand Gedeh','GG',1),(1867,120,'Grand Kru','GK',1),(1868,120,'Lofa','LO',1),(1869,120,'Margibi','MG',1),(1870,120,'Maryland','ML',1),(1871,120,'Montserrado','MS',1),(1872,120,'Nimba','NB',1),(1873,120,'River Cess','RC',1),(1874,120,'Sinoe','SN',1),(1875,121,'Ajdabiya','AJ',1),(1876,121,'Al \'Aziziyah','AZ',1),(1877,121,'Al Fatih','FA',1),(1878,121,'Al Jabal al Akhdar','JA',1),(1879,121,'Al Jufrah','JU',1),(1880,121,'Al Khums','KH',1),(1881,121,'Al Kufrah','KU',1),(1882,121,'An Nuqat al Khams','NK',1),(1883,121,'Ash Shati\'','AS',1),(1884,121,'Awbari','AW',1),(1885,121,'Az Zawiyah','ZA',1),(1886,121,'Banghazi','BA',1),(1887,121,'Darnah','DA',1),(1888,121,'Ghadamis','GD',1),(1889,121,'Gharyan','GY',1),(1890,121,'Misratah','MI',1),(1891,121,'Murzuq','MZ',1),(1892,121,'Sabha','SB',1),(1893,121,'Sawfajjin','SW',1),(1894,121,'Surt','SU',1),(1895,121,'Tarabulus (Tripoli)','TL',1),(1896,121,'Tarhunah','TH',1),(1897,121,'Tubruq','TU',1),(1898,121,'Yafran','YA',1),(1899,121,'Zlitan','ZL',1),(1900,122,'Vaduz','V',1),(1901,122,'Schaan','A',1),(1902,122,'Balzers','B',1),(1903,122,'Triesen','N',1),(1904,122,'Eschen','E',1),(1905,122,'Mauren','M',1),(1906,122,'Triesenberg','T',1),(1907,122,'Ruggell','R',1),(1908,122,'Gamprin','G',1),(1909,122,'Schellenberg','L',1),(1910,122,'Planken','P',1),(1911,123,'Alytus','AL',1),(1912,123,'Kaunas','KA',1),(1913,123,'Klaipeda','KL',1),(1914,123,'Marijampole','MA',1),(1915,123,'Panevezys','PA',1),(1916,123,'Siauliai','SI',1),(1917,123,'Taurage','TA',1),(1918,123,'Telsiai','TE',1),(1919,123,'Utena','UT',1),(1920,123,'Vilnius','VI',1),(1921,124,'Diekirch','DD',1),(1922,124,'Clervaux','DC',1),(1923,124,'Redange','DR',1),(1924,124,'Vianden','DV',1),(1925,124,'Wiltz','DW',1),(1926,124,'Grevenmacher','GG',1),(1927,124,'Echternach','GE',1),(1928,124,'Remich','GR',1),(1929,124,'Luxembourg','LL',1),(1930,124,'Capellen','LC',1),(1931,124,'Esch-sur-Alzette','LE',1),(1932,124,'Mersch','LM',1),(1933,125,'Our Lady Fatima Parish','OLF',1),(1934,125,'St. Anthony Parish','ANT',1),(1935,125,'St. Lazarus Parish','LAZ',1),(1936,125,'Cathedral Parish','CAT',1),(1937,125,'St. Lawrence Parish','LAW',1),(1938,127,'Antananarivo','AN',1),(1939,127,'Antsiranana','AS',1),(1940,127,'Fianarantsoa','FN',1),(1941,127,'Mahajanga','MJ',1),(1942,127,'Toamasina','TM',1),(1943,127,'Toliara','TL',1),(1944,128,'Balaka','BLK',1),(1945,128,'Blantyre','BLT',1),(1946,128,'Chikwawa','CKW',1),(1947,128,'Chiradzulu','CRD',1),(1948,128,'Chitipa','CTP',1),(1949,128,'Dedza','DDZ',1),(1950,128,'Dowa','DWA',1),(1951,128,'Karonga','KRG',1),(1952,128,'Kasungu','KSG',1),(1953,128,'Likoma','LKM',1),(1954,128,'Lilongwe','LLG',1),(1955,128,'Machinga','MCG',1),(1956,128,'Mangochi','MGC',1),(1957,128,'Mchinji','MCH',1),(1958,128,'Mulanje','MLJ',1),(1959,128,'Mwanza','MWZ',1),(1960,128,'Mzimba','MZM',1),(1961,128,'Ntcheu','NTU',1),(1962,128,'Nkhata Bay','NKB',1),(1963,128,'Nkhotakota','NKH',1),(1964,128,'Nsanje','NSJ',1),(1965,128,'Ntchisi','NTI',1),(1966,128,'Phalombe','PHL',1),(1967,128,'Rumphi','RMP',1),(1968,128,'Salima','SLM',1),(1969,128,'Thyolo','THY',1),(1970,128,'Zomba','ZBA',1),(1971,129,'Johor','MY-01',1),(1972,129,'Kedah','MY-02',1),(1973,129,'Kelantan','MY-03',1),(1974,129,'Labuan','MY-15',1),(1975,129,'Melaka','MY-04',1),(1976,129,'Negeri Sembilan','MY-05',1),(1977,129,'Pahang','MY-06',1),(1978,129,'Perak','MY-08',1),(1979,129,'Perlis','MY-09',1),(1980,129,'Pulau Pinang','MY-07',1),(1981,129,'Sabah','MY-12',1),(1982,129,'Sarawak','MY-13',1),(1983,129,'Selangor','MY-10',1),(1984,129,'Terengganu','MY-11',1),(1985,129,'Kuala Lumpur','MY-14',1),(4035,129,'Putrajaya','MY-16',1),(1986,130,'Thiladhunmathi Uthuru','THU',1),(1987,130,'Thiladhunmathi Dhekunu','THD',1),(1988,130,'Miladhunmadulu Uthuru','MLU',1),(1989,130,'Miladhunmadulu Dhekunu','MLD',1),(1990,130,'Maalhosmadulu Uthuru','MAU',1),(1991,130,'Maalhosmadulu Dhekunu','MAD',1),(1992,130,'Faadhippolhu','FAA',1),(1993,130,'Male Atoll','MAA',1),(1994,130,'Ari Atoll Uthuru','AAU',1),(1995,130,'Ari Atoll Dheknu','AAD',1),(1996,130,'Felidhe Atoll','FEA',1),(1997,130,'Mulaku Atoll','MUA',1),(1998,130,'Nilandhe Atoll Uthuru','NAU',1),(1999,130,'Nilandhe Atoll Dhekunu','NAD',1),(2000,130,'Kolhumadulu','KLH',1),(2001,130,'Hadhdhunmathi','HDH',1),(2002,130,'Huvadhu Atoll Uthuru','HAU',1),(2003,130,'Huvadhu Atoll Dhekunu','HAD',1),(2004,130,'Fua Mulaku','FMU',1),(2005,130,'Addu','ADD',1),(2006,131,'Gao','GA',1),(2007,131,'Kayes','KY',1),(2008,131,'Kidal','KD',1),(2009,131,'Koulikoro','KL',1),(2010,131,'Mopti','MP',1),(2011,131,'Segou','SG',1),(2012,131,'Sikasso','SK',1),(2013,131,'Tombouctou','TB',1),(2014,131,'Bamako Capital District','CD',1),(2015,132,'Attard','ATT',1),(2016,132,'Balzan','BAL',1),(2017,132,'Birgu','BGU',1),(2018,132,'Birkirkara','BKK',1),(2019,132,'Birzebbuga','BRZ',1),(2020,132,'Bormla','BOR',1),(2021,132,'Dingli','DIN',1),(2022,132,'Fgura','FGU',1),(2023,132,'Floriana','FLO',1),(2024,132,'Gudja','GDJ',1),(2025,132,'Gzira','GZR',1),(2026,132,'Gargur','GRG',1),(2027,132,'Gaxaq','GXQ',1),(2028,132,'Hamrun','HMR',1),(2029,132,'Iklin','IKL',1),(2030,132,'Isla','ISL',1),(2031,132,'Kalkara','KLK',1),(2032,132,'Kirkop','KRK',1),(2033,132,'Lija','LIJ',1),(2034,132,'Luqa','LUQ',1),(2035,132,'Marsa','MRS',1),(2036,132,'Marsaskala','MKL',1),(2037,132,'Marsaxlokk','MXL',1),(2038,132,'Mdina','MDN',1),(2039,132,'Melliea','MEL',1),(2040,132,'Mgarr','MGR',1),(2041,132,'Mosta','MST',1),(2042,132,'Mqabba','MQA',1),(2043,132,'Msida','MSI',1),(2044,132,'Mtarfa','MTF',1),(2045,132,'Naxxar','NAX',1),(2046,132,'Paola','PAO',1),(2047,132,'Pembroke','PEM',1),(2048,132,'Pieta','PIE',1),(2049,132,'Qormi','QOR',1),(2050,132,'Qrendi','QRE',1),(2051,132,'Rabat','RAB',1),(2052,132,'Safi','SAF',1),(2053,132,'San Giljan','SGI',1),(2054,132,'Santa Lucija','SLU',1),(2055,132,'San Pawl il-Bahar','SPB',1),(2056,132,'San Gwann','SGW',1),(2057,132,'Santa Venera','SVE',1),(2058,132,'Siggiewi','SIG',1),(2059,132,'Sliema','SLM',1),(2060,132,'Swieqi','SWQ',1),(2061,132,'Ta Xbiex','TXB',1),(2062,132,'Tarxien','TRX',1),(2063,132,'Valletta','VLT',1),(2064,132,'Xgajra','XGJ',1),(2065,132,'Zabbar','ZBR',1),(2066,132,'Zebbug','ZBG',1),(2067,132,'Zejtun','ZJT',1),(2068,132,'Zurrieq','ZRQ',1),(2069,132,'Fontana','FNT',1),(2070,132,'Ghajnsielem','GHJ',1),(2071,132,'Gharb','GHR',1),(2072,132,'Ghasri','GHS',1),(2073,132,'Kercem','KRC',1),(2074,132,'Munxar','MUN',1),(2075,132,'Nadur','NAD',1),(2076,132,'Qala','QAL',1),(2077,132,'Victoria','VIC',1),(2078,132,'San Lawrenz','SLA',1),(2079,132,'Sannat','SNT',1),(2080,132,'Xagra','ZAG',1),(2081,132,'Xewkija','XEW',1),(2082,132,'Zebbug','ZEB',1),(2083,133,'Ailinginae','ALG',1),(2084,133,'Ailinglaplap','ALL',1),(2085,133,'Ailuk','ALK',1),(2086,133,'Arno','ARN',1),(2087,133,'Aur','AUR',1),(2088,133,'Bikar','BKR',1),(2089,133,'Bikini','BKN',1),(2090,133,'Bokak','BKK',1),(2091,133,'Ebon','EBN',1),(2092,133,'Enewetak','ENT',1),(2093,133,'Erikub','EKB',1),(2094,133,'Jabat','JBT',1),(2095,133,'Jaluit','JLT',1),(2096,133,'Jemo','JEM',1),(2097,133,'Kili','KIL',1),(2098,133,'Kwajalein','KWJ',1),(2099,133,'Lae','LAE',1),(2100,133,'Lib','LIB',1),(2101,133,'Likiep','LKP',1),(2102,133,'Majuro','MJR',1),(2103,133,'Maloelap','MLP',1),(2104,133,'Mejit','MJT',1),(2105,133,'Mili','MIL',1),(2106,133,'Namorik','NMK',1),(2107,133,'Namu','NAM',1),(2108,133,'Rongelap','RGL',1),(2109,133,'Rongrik','RGK',1),(2110,133,'Toke','TOK',1),(2111,133,'Ujae','UJA',1),(2112,133,'Ujelang','UJL',1),(2113,133,'Utirik','UTK',1),(2114,133,'Wotho','WTH',1),(2115,133,'Wotje','WTJ',1),(2116,135,'Adrar','AD',1),(2117,135,'Assaba','AS',1),(2118,135,'Brakna','BR',1),(2119,135,'Dakhlet Nouadhibou','DN',1),(2120,135,'Gorgol','GO',1),(2121,135,'Guidimaka','GM',1),(2122,135,'Hodh Ech Chargui','HC',1),(2123,135,'Hodh El Gharbi','HG',1),(2124,135,'Inchiri','IN',1),(2125,135,'Tagant','TA',1),(2126,135,'Tiris Zemmour','TZ',1),(2127,135,'Trarza','TR',1),(2128,135,'Nouakchott','NO',1),(2129,136,'Beau Bassin-Rose Hill','BR',1),(2130,136,'Curepipe','CU',1),(2131,136,'Port Louis','PU',1),(2132,136,'Quatre Bornes','QB',1),(2133,136,'Vacoas-Phoenix','VP',1),(2134,136,'Agalega Islands','AG',1),(2135,136,'Cargados Carajos Shoals (Saint Brandon Islands)','CC',1),(2136,136,'Rodrigues','RO',1),(2137,136,'Black River','BL',1),(2138,136,'Flacq','FL',1),(2139,136,'Grand Port','GP',1),(2140,136,'Moka','MO',1),(2141,136,'Pamplemousses','PA',1),(2142,136,'Plaines Wilhems','PW',1),(2143,136,'Port Louis','PL',1),(2144,136,'Riviere du Rempart','RR',1),(2145,136,'Savanne','SA',1),(2146,138,'Baja California Norte','BN',1),(2147,138,'Baja California Sur','BS',1),(2148,138,'Campeche','CA',1),(2149,138,'Chiapas','CI',1),(2150,138,'Chihuahua','CH',1),(2151,138,'Coahuila de Zaragoza','CZ',1),(2152,138,'Colima','CL',1),(2153,138,'Distrito Federal','DF',1),(2154,138,'Durango','DU',1),(2155,138,'Guanajuato','GA',1),(2156,138,'Guerrero','GE',1),(2157,138,'Hidalgo','HI',1),(2158,138,'Jalisco','JA',1),(2159,138,'Mexico','ME',1),(2160,138,'Michoacan de Ocampo','MI',1),(2161,138,'Morelos','MO',1),(2162,138,'Nayarit','NA',1),(2163,138,'Nuevo Leon','NL',1),(2164,138,'Oaxaca','OA',1),(2165,138,'Puebla','PU',1),(2166,138,'Queretaro de Arteaga','QA',1),(2167,138,'Quintana Roo','QR',1),(2168,138,'San Luis Potosi','SA',1),(2169,138,'Sinaloa','SI',1),(2170,138,'Sonora','SO',1),(2171,138,'Tabasco','TB',1),(2172,138,'Tamaulipas','TM',1),(2173,138,'Tlaxcala','TL',1),(2174,138,'Veracruz-Llave','VE',1),(2175,138,'Yucatan','YU',1),(2176,138,'Zacatecas','ZA',1),(2177,139,'Chuuk','C',1),(2178,139,'Kosrae','K',1),(2179,139,'Pohnpei','P',1),(2180,139,'Yap','Y',1),(2181,140,'Gagauzia','GA',1),(2182,140,'Chisinau','CU',1),(2183,140,'Balti','BA',1),(2184,140,'Cahul','CA',1),(2185,140,'Edinet','ED',1),(2186,140,'Lapusna','LA',1),(2187,140,'Orhei','OR',1),(2188,140,'Soroca','SO',1),(2189,140,'Tighina','TI',1),(2190,140,'Ungheni','UN',1),(2191,140,'St‚nga Nistrului','SN',1),(2192,141,'Fontvieille','FV',1),(2193,141,'La Condamine','LC',1),(2194,141,'Monaco-Ville','MV',1),(2195,141,'Monte-Carlo','MC',1),(2196,142,'Ulanbaatar','1',1),(2197,142,'Orhon','035',1),(2198,142,'Darhan uul','037',1),(2199,142,'Hentiy','039',1),(2200,142,'Hovsgol','041',1),(2201,142,'Hovd','043',1),(2202,142,'Uvs','046',1),(2203,142,'Tov','047',1),(2204,142,'Selenge','049',1),(2205,142,'Suhbaatar','051',1),(2206,142,'Omnogovi','053',1),(2207,142,'Ovorhangay','055',1),(2208,142,'Dzavhan','057',1),(2209,142,'DundgovL','059',1),(2210,142,'Dornod','061',1),(2211,142,'Dornogov','063',1),(2212,142,'Govi-Sumber','064',1),(2213,142,'Govi-Altay','065',1),(2214,142,'Bulgan','067',1),(2215,142,'Bayanhongor','069',1),(2216,142,'Bayan-Olgiy','071',1),(2217,142,'Arhangay','073',1),(2218,143,'Saint Anthony','A',1),(2219,143,'Saint Georges','G',1),(2220,143,'Saint Peter','P',1),(2221,144,'Agadir','AGD',1),(2222,144,'Al Hoceima','HOC',1),(2223,144,'Azilal','AZI',1),(2224,144,'Beni Mellal','BME',1),(2225,144,'Ben Slimane','BSL',1),(2226,144,'Boulemane','BLM',1),(2227,144,'Casablanca','CBL',1),(2228,144,'Chaouen','CHA',1),(2229,144,'El Jadida','EJA',1),(2230,144,'El Kelaa des Sraghna','EKS',1),(2231,144,'Er Rachidia','ERA',1),(2232,144,'Essaouira','ESS',1),(2233,144,'Fes','FES',1),(2234,144,'Figuig','FIG',1),(2235,144,'Guelmim','GLM',1),(2236,144,'Ifrane','IFR',1),(2237,144,'Kenitra','KEN',1),(2238,144,'Khemisset','KHM',1),(2239,144,'Khenifra','KHN',1),(2240,144,'Khouribga','KHO',1),(2241,144,'Laayoune','LYN',1),(2242,144,'Larache','LAR',1),(2243,144,'Marrakech','MRK',1),(2244,144,'Meknes','MKN',1),(2245,144,'Nador','NAD',1),(2246,144,'Ouarzazate','ORZ',1),(2247,144,'Oujda','OUJ',1),(2248,144,'Rabat-Sale','RSA',1),(2249,144,'Safi','SAF',1),(2250,144,'Settat','SET',1),(2251,144,'Sidi Kacem','SKA',1),(2252,144,'Tangier','TGR',1),(2253,144,'Tan-Tan','TAN',1),(2254,144,'Taounate','TAO',1),(2255,144,'Taroudannt','TRD',1),(2256,144,'Tata','TAT',1),(2257,144,'Taza','TAZ',1),(2258,144,'Tetouan','TET',1),(2259,144,'Tiznit','TIZ',1),(2260,144,'Ad Dakhla','ADK',1),(2261,144,'Boujdour','BJD',1),(2262,144,'Es Smara','ESM',1),(2263,145,'Cabo Delgado','CD',1),(2264,145,'Gaza','GZ',1),(2265,145,'Inhambane','IN',1),(2266,145,'Manica','MN',1),(2267,145,'Maputo (city)','MC',1),(2268,145,'Maputo','MP',1),(2269,145,'Nampula','NA',1),(2270,145,'Niassa','NI',1),(2271,145,'Sofala','SO',1),(2272,145,'Tete','TE',1),(2273,145,'Zambezia','ZA',1),(2274,146,'Ayeyarwady','AY',1),(2275,146,'Bago','BG',1),(2276,146,'Magway','MG',1),(2277,146,'Mandalay','MD',1),(2278,146,'Sagaing','SG',1),(2279,146,'Tanintharyi','TN',1),(2280,146,'Yangon','YG',1),(2281,146,'Chin State','CH',1),(2282,146,'Kachin State','KC',1),(2283,146,'Kayah State','KH',1),(2284,146,'Kayin State','KN',1),(2285,146,'Mon State','MN',1),(2286,146,'Rakhine State','RK',1),(2287,146,'Shan State','SH',1),(2288,147,'Caprivi','CA',1),(2289,147,'Erongo','ER',1),(2290,147,'Hardap','HA',1),(2291,147,'Karas','KR',1),(2292,147,'Kavango','KV',1),(2293,147,'Khomas','KH',1),(2294,147,'Kunene','KU',1),(2295,147,'Ohangwena','OW',1),(2296,147,'Omaheke','OK',1),(2297,147,'Omusati','OT',1),(2298,147,'Oshana','ON',1),(2299,147,'Oshikoto','OO',1),(2300,147,'Otjozondjupa','OJ',1),(2301,148,'Aiwo','AO',1),(2302,148,'Anabar','AA',1),(2303,148,'Anetan','AT',1),(2304,148,'Anibare','AI',1),(2305,148,'Baiti','BA',1),(2306,148,'Boe','BO',1),(2307,148,'Buada','BU',1),(2308,148,'Denigomodu','DE',1),(2309,148,'Ewa','EW',1),(2310,148,'Ijuw','IJ',1),(2311,148,'Meneng','ME',1),(2312,148,'Nibok','NI',1),(2313,148,'Uaboe','UA',1),(2314,148,'Yaren','YA',1),(2315,149,'Bagmati','BA',1),(2316,149,'Bheri','BH',1),(2317,149,'Dhawalagiri','DH',1),(2318,149,'Gandaki','GA',1),(2319,149,'Janakpur','JA',1),(2320,149,'Karnali','KA',1),(2321,149,'Kosi','KO',1),(2322,149,'Lumbini','LU',1),(2323,149,'Mahakali','MA',1),(2324,149,'Mechi','ME',1),(2325,149,'Narayani','NA',1),(2326,149,'Rapti','RA',1),(2327,149,'Sagarmatha','SA',1),(2328,149,'Seti','SE',1),(2329,150,'Drenthe','DR',1),(2330,150,'Flevoland','FL',1),(2331,150,'Friesland','FR',1),(2332,150,'Gelderland','GE',1),(2333,150,'Groningen','GR',1),(2334,150,'Limburg','LI',1),(2335,150,'Noord-Brabant','NB',1),(2336,150,'Noord-Holland','NH',1),(2337,150,'Overijssel','OV',1),(2338,150,'Utrecht','UT',1),(2339,150,'Zeeland','ZE',1),(2340,150,'Zuid-Holland','ZH',1),(2341,152,'Iles Loyaute','L',1),(2342,152,'Nord','N',1),(2343,152,'Sud','S',1),(2344,153,'Auckland','AUK',1),(2345,153,'Bay of Plenty','BOP',1),(2346,153,'Canterbury','CAN',1),(2347,153,'Coromandel','COR',1),(2348,153,'Gisborne','GIS',1),(2349,153,'Fiordland','FIO',1),(2350,153,'Hawke\'s Bay','HKB',1),(2351,153,'Marlborough','MBH',1),(2352,153,'Manawatu-Wanganui','MWT',1),(2353,153,'Mt Cook-Mackenzie','MCM',1),(2354,153,'Nelson','NSN',1),(2355,153,'Northland','NTL',1),(2356,153,'Otago','OTA',1),(2357,153,'Southland','STL',1),(2358,153,'Taranaki','TKI',1),(2359,153,'Wellington','WGN',1),(2360,153,'Waikato','WKO',1),(2361,153,'Wairarapa','WAI',1),(2362,153,'West Coast','WTC',1),(2363,154,'Atlantico Norte','AN',1),(2364,154,'Atlantico Sur','AS',1),(2365,154,'Boaco','BO',1),(2366,154,'Carazo','CA',1),(2367,154,'Chinandega','CI',1),(2368,154,'Chontales','CO',1),(2369,154,'Esteli','ES',1),(2370,154,'Granada','GR',1),(2371,154,'Jinotega','JI',1),(2372,154,'Leon','LE',1),(2373,154,'Madriz','MD',1),(2374,154,'Managua','MN',1),(2375,154,'Masaya','MS',1),(2376,154,'Matagalpa','MT',1),(2377,154,'Nuevo Segovia','NS',1),(2378,154,'Rio San Juan','RS',1),(2379,154,'Rivas','RI',1),(2380,155,'Agadez','AG',1),(2381,155,'Diffa','DF',1),(2382,155,'Dosso','DS',1),(2383,155,'Maradi','MA',1),(2384,155,'Niamey','NM',1),(2385,155,'Tahoua','TH',1),(2386,155,'Tillaberi','TL',1),(2387,155,'Zinder','ZD',1),(2388,156,'Abia','AB',1),(2389,156,'Abuja Federal Capital Territory','CT',1),(2390,156,'Adamawa','AD',1),(2391,156,'Akwa Ibom','AK',1),(2392,156,'Anambra','AN',1),(2393,156,'Bauchi','BC',1),(2394,156,'Bayelsa','BY',1),(2395,156,'Benue','BN',1),(2396,156,'Borno','BO',1),(2397,156,'Cross River','CR',1),(2398,156,'Delta','DE',1),(2399,156,'Ebonyi','EB',1),(2400,156,'Edo','ED',1),(2401,156,'Ekiti','EK',1),(2402,156,'Enugu','EN',1),(2403,156,'Gombe','GO',1),(2404,156,'Imo','IM',1),(2405,156,'Jigawa','JI',1),(2406,156,'Kaduna','KD',1),(2407,156,'Kano','KN',1),(2408,156,'Katsina','KT',1),(2409,156,'Kebbi','KE',1),(2410,156,'Kogi','KO',1),(2411,156,'Kwara','KW',1),(2412,156,'Lagos','LA',1),(2413,156,'Nassarawa','NA',1),(2414,156,'Niger','NI',1),(2415,156,'Ogun','OG',1),(2416,156,'Ondo','ONG',1),(2417,156,'Osun','OS',1),(2418,156,'Oyo','OY',1),(2419,156,'Plateau','PL',1),(2420,156,'Rivers','RI',1),(2421,156,'Sokoto','SO',1),(2422,156,'Taraba','TA',1),(2423,156,'Yobe','YO',1),(2424,156,'Zamfara','ZA',1),(2425,159,'Northern Islands','N',1),(2426,159,'Rota','R',1),(2427,159,'Saipan','S',1),(2428,159,'Tinian','T',1),(2429,160,'Akershus','AK',1),(2430,160,'Aust-Agder','AA',1),(2431,160,'Buskerud','BU',1),(2432,160,'Finnmark','FM',1),(2433,160,'Hedmark','HM',1),(2434,160,'Hordaland','HL',1),(2435,160,'More og Romdal','MR',1),(2436,160,'Nord-Trondelag','NT',1),(2437,160,'Nordland','NL',1),(2438,160,'Ostfold','OF',1),(2439,160,'Oppland','OP',1),(2440,160,'Oslo','OL',1),(2441,160,'Rogaland','RL',1),(2442,160,'Sor-Trondelag','ST',1),(2443,160,'Sogn og Fjordane','SJ',1),(2444,160,'Svalbard','SV',1),(2445,160,'Telemark','TM',1),(2446,160,'Troms','TR',1),(2447,160,'Vest-Agder','VA',1),(2448,160,'Vestfold','VF',1),(2449,161,'Ad Dakhiliyah','DA',1),(2450,161,'Al Batinah','BA',1),(2451,161,'Al Wusta','WU',1),(2452,161,'Ash Sharqiyah','SH',1),(2453,161,'Az Zahirah','ZA',1),(2454,161,'Masqat','MA',1),(2455,161,'Musandam','MU',1),(2456,161,'Zufar','ZU',1),(2457,162,'Balochistan','B',1),(2458,162,'Federally Administered Tribal Areas','T',1),(2459,162,'Islamabad Capital Territory','I',1),(2460,162,'North-West Frontier','N',1),(2461,162,'Punjab','P',1),(2462,162,'Sindh','S',1),(2463,163,'Aimeliik','AM',1),(2464,163,'Airai','AR',1),(2465,163,'Angaur','AN',1),(2466,163,'Hatohobei','HA',1),(2467,163,'Kayangel','KA',1),(2468,163,'Koror','KO',1),(2469,163,'Melekeok','ME',1),(2470,163,'Ngaraard','NA',1),(2471,163,'Ngarchelong','NG',1),(2472,163,'Ngardmau','ND',1),(2473,163,'Ngatpang','NT',1),(2474,163,'Ngchesar','NC',1),(2475,163,'Ngeremlengui','NR',1),(2476,163,'Ngiwal','NW',1),(2477,163,'Peleliu','PE',1),(2478,163,'Sonsorol','SO',1),(2479,164,'Bocas del Toro','BT',1),(2480,164,'Chiriqui','CH',1),(2481,164,'Cocle','CC',1),(2482,164,'Colon','CL',1),(2483,164,'Darien','DA',1),(2484,164,'Herrera','HE',1),(2485,164,'Los Santos','LS',1),(2486,164,'Panama','PA',1),(2487,164,'San Blas','SB',1),(2488,164,'Veraguas','VG',1),(2489,165,'Bougainville','BV',1),(2490,165,'Central','CE',1),(2491,165,'Chimbu','CH',1),(2492,165,'Eastern Highlands','EH',1),(2493,165,'East New Britain','EB',1),(2494,165,'East Sepik','ES',1),(2495,165,'Enga','EN',1),(2496,165,'Gulf','GU',1),(2497,165,'Madang','MD',1),(2498,165,'Manus','MN',1),(2499,165,'Milne Bay','MB',1),(2500,165,'Morobe','MR',1),(2501,165,'National Capital','NC',1),(2502,165,'New Ireland','NI',1),(2503,165,'Northern','NO',1),(2504,165,'Sandaun','SA',1),(2505,165,'Southern Highlands','SH',1),(2506,165,'Western','WE',1),(2507,165,'Western Highlands','WH',1),(2508,165,'West New Britain','WB',1),(2509,166,'Alto Paraguay','AG',1),(2510,166,'Alto Parana','AN',1),(2511,166,'Amambay','AM',1),(2512,166,'Asuncion','AS',1),(2513,166,'Boqueron','BO',1),(2514,166,'Caaguazu','CG',1),(2515,166,'Caazapa','CZ',1),(2516,166,'Canindeyu','CN',1),(2517,166,'Central','CE',1),(2518,166,'Concepcion','CC',1),(2519,166,'Cordillera','CD',1),(2520,166,'Guaira','GU',1),(2521,166,'Itapua','IT',1),(2522,166,'Misiones','MI',1),(2523,166,'Neembucu','NE',1),(2524,166,'Paraguari','PA',1),(2525,166,'Presidente Hayes','PH',1),(2526,166,'San Pedro','SP',1),(2527,167,'Amazonas','AM',1),(2528,167,'Ancash','AN',1),(2529,167,'Apurimac','AP',1),(2530,167,'Arequipa','AR',1),(2531,167,'Ayacucho','AY',1),(2532,167,'Cajamarca','CJ',1),(2533,167,'Callao','CL',1),(2534,167,'Cusco','CU',1),(2535,167,'Huancavelica','HV',1),(2536,167,'Huanuco','HO',1),(2537,167,'Ica','IC',1),(2538,167,'Junin','JU',1),(2539,167,'La Libertad','LD',1),(2540,167,'Lambayeque','LY',1),(2541,167,'Lima','LI',1),(2542,167,'Loreto','LO',1),(2543,167,'Madre de Dios','MD',1),(2544,167,'Moquegua','MO',1),(2545,167,'Pasco','PA',1),(2546,167,'Piura','PI',1),(2547,167,'Puno','PU',1),(2548,167,'San Martin','SM',1),(2549,167,'Tacna','TA',1),(2550,167,'Tumbes','TU',1),(2551,167,'Ucayali','UC',1),(2552,168,'Abra','ABR',1),(2553,168,'Agusan del Norte','ANO',1),(2554,168,'Agusan del Sur','ASU',1),(2555,168,'Aklan','AKL',1),(2556,168,'Albay','ALB',1),(2557,168,'Antique','ANT',1),(2558,168,'Apayao','APY',1),(2559,168,'Aurora','AUR',1),(2560,168,'Basilan','BAS',1),(2561,168,'Bataan','BTA',1),(2562,168,'Batanes','BTE',1),(2563,168,'Batangas','BTG',1),(2564,168,'Biliran','BLR',1),(2565,168,'Benguet','BEN',1),(2566,168,'Bohol','BOL',1),(2567,168,'Bukidnon','BUK',1),(2568,168,'Bulacan','BUL',1),(2569,168,'Cagayan','CAG',1),(2570,168,'Camarines Norte','CNO',1),(2571,168,'Camarines Sur','CSU',1),(2572,168,'Camiguin','CAM',1),(2573,168,'Capiz','CAP',1),(2574,168,'Catanduanes','CAT',1),(2575,168,'Cavite','CAV',1),(2576,168,'Cebu','CEB',1),(2577,168,'Compostela','CMP',1),(2578,168,'Davao del Norte','DNO',1),(2579,168,'Davao del Sur','DSU',1),(2580,168,'Davao Oriental','DOR',1),(2581,168,'Eastern Samar','ESA',1),(2582,168,'Guimaras','GUI',1),(2583,168,'Ifugao','IFU',1),(2584,168,'Ilocos Norte','INO',1),(2585,168,'Ilocos Sur','ISU',1),(2586,168,'Iloilo','ILO',1),(2587,168,'Isabela','ISA',1),(2588,168,'Kalinga','KAL',1),(2589,168,'Laguna','LAG',1),(2590,168,'Lanao del Norte','LNO',1),(2591,168,'Lanao del Sur','LSU',1),(2592,168,'La Union','UNI',1),(2593,168,'Leyte','LEY',1),(2594,168,'Maguindanao','MAG',1),(2595,168,'Marinduque','MRN',1),(2596,168,'Masbate','MSB',1),(2597,168,'Mindoro Occidental','MIC',1),(2598,168,'Mindoro Oriental','MIR',1),(2599,168,'Misamis Occidental','MSC',1),(2600,168,'Misamis Oriental','MOR',1),(2601,168,'Mountain','MOP',1),(2602,168,'Negros Occidental','NOC',1),(2603,168,'Negros Oriental','NOR',1),(2604,168,'North Cotabato','NCT',1),(2605,168,'Northern Samar','NSM',1),(2606,168,'Nueva Ecija','NEC',1),(2607,168,'Nueva Vizcaya','NVZ',1),(2608,168,'Palawan','PLW',1),(2609,168,'Pampanga','PMP',1),(2610,168,'Pangasinan','PNG',1),(2611,168,'Quezon','QZN',1),(2612,168,'Quirino','QRN',1),(2613,168,'Rizal','RIZ',1),(2614,168,'Romblon','ROM',1),(2615,168,'Samar','SMR',1),(2616,168,'Sarangani','SRG',1),(2617,168,'Siquijor','SQJ',1),(2618,168,'Sorsogon','SRS',1),(2619,168,'South Cotabato','SCO',1),(2620,168,'Southern Leyte','SLE',1),(2621,168,'Sultan Kudarat','SKU',1),(2622,168,'Sulu','SLU',1),(2623,168,'Surigao del Norte','SNO',1),(2624,168,'Surigao del Sur','SSU',1),(2625,168,'Tarlac','TAR',1),(2626,168,'Tawi-Tawi','TAW',1),(2627,168,'Zambales','ZBL',1),(2628,168,'Zamboanga del Norte','ZNO',1),(2629,168,'Zamboanga del Sur','ZSU',1),(2630,168,'Zamboanga Sibugay','ZSI',1),(2631,170,'Dolnoslaskie','DO',1),(2632,170,'Kujawsko-Pomorskie','KP',1),(2633,170,'Lodzkie','LO',1),(2634,170,'Lubelskie','LL',1),(2635,170,'Lubuskie','LU',1),(2636,170,'Malopolskie','ML',1),(2637,170,'Mazowieckie','MZ',1),(2638,170,'Opolskie','OP',1),(2639,170,'Podkarpackie','PP',1),(2640,170,'Podlaskie','PL',1),(2641,170,'Pomorskie','PM',1),(2642,170,'Slaskie','SL',1),(2643,170,'Swietokrzyskie','SW',1),(2644,170,'Warminsko-Mazurskie','WM',1),(2645,170,'Wielkopolskie','WP',1),(2646,170,'Zachodniopomorskie','ZA',1),(2647,198,'Saint Pierre','P',1),(2648,198,'Miquelon','M',1),(2649,171,'A&ccedil;ores','AC',1),(2650,171,'Aveiro','AV',1),(2651,171,'Beja','BE',1),(2652,171,'Braga','BR',1),(2653,171,'Bragan&ccedil;a','BA',1),(2654,171,'Castelo Branco','CB',1),(2655,171,'Coimbra','CO',1),(2656,171,'&Eacute;vora','EV',1),(2657,171,'Faro','FA',1),(2658,171,'Guarda','GU',1),(2659,171,'Leiria','LE',1),(2660,171,'Lisboa','LI',1),(2661,171,'Madeira','ME',1),(2662,171,'Portalegre','PO',1),(2663,171,'Porto','PR',1),(2664,171,'Santar&eacute;m','SA',1),(2665,171,'Set&uacute;bal','SE',1),(2666,171,'Viana do Castelo','VC',1),(2667,171,'Vila Real','VR',1),(2668,171,'Viseu','VI',1),(2669,173,'Ad Dawhah','DW',1),(2670,173,'Al Ghuwayriyah','GW',1),(2671,173,'Al Jumayliyah','JM',1),(2672,173,'Al Khawr','KR',1),(2673,173,'Al Wakrah','WK',1),(2674,173,'Ar Rayyan','RN',1),(2675,173,'Jarayan al Batinah','JB',1),(2676,173,'Madinat ash Shamal','MS',1),(2677,173,'Umm Sa\'id','UD',1),(2678,173,'Umm Salal','UL',1),(2679,175,'Alba','AB',1),(2680,175,'Arad','AR',1),(2681,175,'Arges','AG',1),(2682,175,'Bacau','BC',1),(2683,175,'Bihor','BH',1),(2684,175,'Bistrita-Nasaud','BN',1),(2685,175,'Botosani','BT',1),(2686,175,'Brasov','BV',1),(2687,175,'Braila','BR',1),(2688,175,'Bucuresti','B',1),(2689,175,'Buzau','BZ',1),(2690,175,'Caras-Severin','CS',1),(2691,175,'Calarasi','CL',1),(2692,175,'Cluj','CJ',1),(2693,175,'Constanta','CT',1),(2694,175,'Covasna','CV',1),(2695,175,'Dimbovita','DB',1),(2696,175,'Dolj','DJ',1),(2697,175,'Galati','GL',1),(2698,175,'Giurgiu','GR',1),(2699,175,'Gorj','GJ',1),(2700,175,'Harghita','HR',1),(2701,175,'Hunedoara','HD',1),(2702,175,'Ialomita','IL',1),(2703,175,'Iasi','IS',1),(2704,175,'Ilfov','IF',1),(2705,175,'Maramures','MM',1),(2706,175,'Mehedinti','MH',1),(2707,175,'Mures','MS',1),(2708,175,'Neamt','NT',1),(2709,175,'Olt','OT',1),(2710,175,'Prahova','PH',1),(2711,175,'Satu-Mare','SM',1),(2712,175,'Salaj','SJ',1),(2713,175,'Sibiu','SB',1),(2714,175,'Suceava','SV',1),(2715,175,'Teleorman','TR',1),(2716,175,'Timis','TM',1),(2717,175,'Tulcea','TL',1),(2718,175,'Vaslui','VS',1),(2719,175,'Valcea','VL',1),(2720,175,'Vrancea','VN',1),(2721,176,'Abakan','AB',1),(2722,176,'Aginskoye','AG',1),(2723,176,'Anadyr','AN',1),(2724,176,'Arkahangelsk','AR',1),(2725,176,'Astrakhan','AS',1),(2726,176,'Barnaul','BA',1),(2727,176,'Belgorod','BE',1),(2728,176,'Birobidzhan','BI',1),(2729,176,'Blagoveshchensk','BL',1),(2730,176,'Bryansk','BR',1),(2731,176,'Cheboksary','CH',1),(2732,176,'Chelyabinsk','CL',1),(2733,176,'Cherkessk','CR',1),(2734,176,'Chita','CI',1),(2735,176,'Dudinka','DU',1),(2736,176,'Elista','EL',1),(2738,176,'Gorno-Altaysk','GA',1),(2739,176,'Groznyy','GR',1),(2740,176,'Irkutsk','IR',1),(2741,176,'Ivanovo','IV',1),(2742,176,'Izhevsk','IZ',1),(2743,176,'Kalinigrad','KA',1),(2744,176,'Kaluga','KL',1),(2745,176,'Kasnodar','KS',1),(2746,176,'Kazan','KZ',1),(2747,176,'Kemerovo','KE',1),(2748,176,'Khabarovsk','KH',1),(2749,176,'Khanty-Mansiysk','KM',1),(2750,176,'Kostroma','KO',1),(2751,176,'Krasnodar','KR',1),(2752,176,'Krasnoyarsk','KN',1),(2753,176,'Kudymkar','KU',1),(2754,176,'Kurgan','KG',1),(2755,176,'Kursk','KK',1),(2756,176,'Kyzyl','KY',1),(2757,176,'Lipetsk','LI',1),(2758,176,'Magadan','MA',1),(2759,176,'Makhachkala','MK',1),(2760,176,'Maykop','MY',1),(2761,176,'Moscow','MO',1),(2762,176,'Murmansk','MU',1),(2763,176,'Nalchik','NA',1),(2764,176,'Naryan Mar','NR',1),(2765,176,'Nazran','NZ',1),(2766,176,'Nizhniy Novgorod','NI',1),(2767,176,'Novgorod','NO',1),(2768,176,'Novosibirsk','NV',1),(2769,176,'Omsk','OM',1),(2770,176,'Orel','OR',1),(2771,176,'Orenburg','OE',1),(2772,176,'Palana','PA',1),(2773,176,'Penza','PE',1),(2774,176,'Perm','PR',1),(2775,176,'Petropavlovsk-Kamchatskiy','PK',1),(2776,176,'Petrozavodsk','PT',1),(2777,176,'Pskov','PS',1),(2778,176,'Rostov-na-Donu','RO',1),(2779,176,'Ryazan','RY',1),(2780,176,'Salekhard','SL',1),(2781,176,'Samara','SA',1),(2782,176,'Saransk','SR',1),(2783,176,'Saratov','SV',1),(2784,176,'Smolensk','SM',1),(2785,176,'St. Petersburg','SP',1),(2786,176,'Stavropol','ST',1),(2787,176,'Syktyvkar','SY',1),(2788,176,'Tambov','TA',1),(2789,176,'Tomsk','TO',1),(2790,176,'Tula','TU',1),(2791,176,'Tura','TR',1),(2792,176,'Tver','TV',1),(2793,176,'Tyumen','TY',1),(2794,176,'Ufa','UF',1),(2795,176,'Ul\'yanovsk','UL',1),(2796,176,'Ulan-Ude','UU',1),(2797,176,'Ust\'-Ordynskiy','US',1),(2798,176,'Vladikavkaz','VL',1),(2799,176,'Vladimir','VA',1),(2800,176,'Vladivostok','VV',1),(2801,176,'Volgograd','VG',1),(2802,176,'Vologda','VD',1),(2803,176,'Voronezh','VO',1),(2804,176,'Vyatka','VY',1),(2805,176,'Yakutsk','YA',1),(2806,176,'Yaroslavl','YR',1),(2807,176,'Yekaterinburg','YE',1),(2808,176,'Yoshkar-Ola','YO',1),(2809,177,'Butare','BU',1),(2810,177,'Byumba','BY',1),(2811,177,'Cyangugu','CY',1),(2812,177,'Gikongoro','GK',1),(2813,177,'Gisenyi','GS',1),(2814,177,'Gitarama','GT',1),(2815,177,'Kibungo','KG',1),(2816,177,'Kibuye','KY',1),(2817,177,'Kigali Rurale','KR',1),(2818,177,'Kigali-ville','KV',1),(2819,177,'Ruhengeri','RU',1),(2820,177,'Umutara','UM',1),(2821,178,'Christ Church Nichola Town','CCN',1),(2822,178,'Saint Anne Sandy Point','SAS',1),(2823,178,'Saint George Basseterre','SGB',1),(2824,178,'Saint George Gingerland','SGG',1),(2825,178,'Saint James Windward','SJW',1),(2826,178,'Saint John Capesterre','SJC',1),(2827,178,'Saint John Figtree','SJF',1),(2828,178,'Saint Mary Cayon','SMC',1),(2829,178,'Saint Paul Capesterre','CAP',1),(2830,178,'Saint Paul Charlestown','CHA',1),(2831,178,'Saint Peter Basseterre','SPB',1),(2832,178,'Saint Thomas Lowland','STL',1),(2833,178,'Saint Thomas Middle Island','STM',1),(2834,178,'Trinity Palmetto Point','TPP',1),(2835,179,'Anse-la-Raye','AR',1),(2836,179,'Castries','CA',1),(2837,179,'Choiseul','CH',1),(2838,179,'Dauphin','DA',1),(2839,179,'Dennery','DE',1),(2840,179,'Gros-Islet','GI',1),(2841,179,'Laborie','LA',1),(2842,179,'Micoud','MI',1),(2843,179,'Praslin','PR',1),(2844,179,'Soufriere','SO',1),(2845,179,'Vieux-Fort','VF',1),(2846,180,'Charlotte','C',1),(2847,180,'Grenadines','R',1),(2848,180,'Saint Andrew','A',1),(2849,180,'Saint David','D',1),(2850,180,'Saint George','G',1),(2851,180,'Saint Patrick','P',1),(2852,181,'A\'ana','AN',1),(2853,181,'Aiga-i-le-Tai','AI',1),(2854,181,'Atua','AT',1),(2855,181,'Fa\'asaleleaga','FA',1),(2856,181,'Gaga\'emauga','GE',1),(2857,181,'Gagaifomauga','GF',1),(2858,181,'Palauli','PA',1),(2859,181,'Satupa\'itea','SA',1),(2860,181,'Tuamasaga','TU',1),(2861,181,'Va\'a-o-Fonoti','VF',1),(2862,181,'Vaisigano','VS',1),(2863,182,'Acquaviva','AC',1),(2864,182,'Borgo Maggiore','BM',1),(2865,182,'Chiesanuova','CH',1),(2866,182,'Domagnano','DO',1),(2867,182,'Faetano','FA',1),(2868,182,'Fiorentino','FI',1),(2869,182,'Montegiardino','MO',1),(2870,182,'Citta di San Marino','SM',1),(2871,182,'Serravalle','SE',1),(2872,183,'Sao Tome','S',1),(2873,183,'Principe','P',1),(2874,184,'Al Bahah','BH',1),(2875,184,'Al Hudud ash Shamaliyah','HS',1),(2876,184,'Al Jawf','JF',1),(2877,184,'Al Madinah','MD',1),(2878,184,'Al Qasim','QS',1),(2879,184,'Ar Riyad','RD',1),(2880,184,'Ash Sharqiyah (Eastern)','AQ',1),(2881,184,'\'Asir','AS',1),(2882,184,'Ha\'il','HL',1),(2883,184,'Jizan','JZ',1),(2884,184,'Makkah','ML',1),(2885,184,'Najran','NR',1),(2886,184,'Tabuk','TB',1),(2887,185,'Dakar','DA',1),(2888,185,'Diourbel','DI',1),(2889,185,'Fatick','FA',1),(2890,185,'Kaolack','KA',1),(2891,185,'Kolda','KO',1),(2892,185,'Louga','LO',1),(2893,185,'Matam','MA',1),(2894,185,'Saint-Louis','SL',1),(2895,185,'Tambacounda','TA',1),(2896,185,'Thies','TH',1),(2897,185,'Ziguinchor','ZI',1),(2898,186,'Anse aux Pins','AP',1),(2899,186,'Anse Boileau','AB',1),(2900,186,'Anse Etoile','AE',1),(2901,186,'Anse Louis','AL',1),(2902,186,'Anse Royale','AR',1),(2903,186,'Baie Lazare','BL',1),(2904,186,'Baie Sainte Anne','BS',1),(2905,186,'Beau Vallon','BV',1),(2906,186,'Bel Air','BA',1),(2907,186,'Bel Ombre','BO',1),(2908,186,'Cascade','CA',1),(2909,186,'Glacis','GL',1),(2910,186,'Grand\' Anse (on Mahe)','GM',1),(2911,186,'Grand\' Anse (on Praslin)','GP',1),(2912,186,'La Digue','DG',1),(2913,186,'La Riviere Anglaise','RA',1),(2914,186,'Mont Buxton','MB',1),(2915,186,'Mont Fleuri','MF',1),(2916,186,'Plaisance','PL',1),(2917,186,'Pointe La Rue','PR',1),(2918,186,'Port Glaud','PG',1),(2919,186,'Saint Louis','SL',1),(2920,186,'Takamaka','TA',1),(2921,187,'Eastern','E',1),(2922,187,'Northern','N',1),(2923,187,'Southern','S',1),(2924,187,'Western','W',1),(2925,189,'Banskobystrický','BA',1),(2926,189,'Bratislavský','BR',1),(2927,189,'Košický','KO',1),(2928,189,'Nitriansky','NI',1),(2929,189,'Prešovský','PR',1),(2930,189,'Trenčiansky','TC',1),(2931,189,'Trnavský','TV',1),(2932,189,'Žilinský','ZI',1),(2933,191,'Central','CE',1),(2934,191,'Choiseul','CH',1),(2935,191,'Guadalcanal','GC',1),(2936,191,'Honiara','HO',1),(2937,191,'Isabel','IS',1),(2938,191,'Makira','MK',1),(2939,191,'Malaita','ML',1),(2940,191,'Rennell and Bellona','RB',1),(2941,191,'Temotu','TM',1),(2942,191,'Western','WE',1),(2943,192,'Awdal','AW',1),(2944,192,'Bakool','BK',1),(2945,192,'Banaadir','BN',1),(2946,192,'Bari','BR',1),(2947,192,'Bay','BY',1),(2948,192,'Galguduud','GA',1),(2949,192,'Gedo','GE',1),(2950,192,'Hiiraan','HI',1),(2951,192,'Jubbada Dhexe','JD',1),(2952,192,'Jubbada Hoose','JH',1),(2953,192,'Mudug','MU',1),(2954,192,'Nugaal','NU',1),(2955,192,'Sanaag','SA',1),(2956,192,'Shabeellaha Dhexe','SD',1),(2957,192,'Shabeellaha Hoose','SH',1),(2958,192,'Sool','SL',1),(2959,192,'Togdheer','TO',1),(2960,192,'Woqooyi Galbeed','WG',1),(2961,193,'Eastern Cape','EC',1),(2962,193,'Free State','FS',1),(2963,193,'Gauteng','GT',1),(2964,193,'KwaZulu-Natal','KN',1),(2965,193,'Limpopo','LP',1),(2966,193,'Mpumalanga','MP',1),(2967,193,'North West','NW',1),(2968,193,'Northern Cape','NC',1),(2969,193,'Western Cape','WC',1),(2970,195,'La Coru&ntilde;a','CA',1),(2971,195,'&Aacute;lava','AL',1),(2972,195,'Albacete','AB',1),(2973,195,'Alicante','AC',1),(2974,195,'Almeria','AM',1),(2975,195,'Asturias','AS',1),(2976,195,'&Aacute;vila','AV',1),(2977,195,'Badajoz','BJ',1),(2978,195,'Baleares','IB',1),(2979,195,'Barcelona','BA',1),(2980,195,'Burgos','BU',1),(2981,195,'C&aacute;ceres','CC',1),(2982,195,'C&aacute;diz','CZ',1),(2983,195,'Cantabria','CT',1),(2984,195,'Castell&oacute;n','CL',1),(2985,195,'Ceuta','CE',1),(2986,195,'Ciudad Real','CR',1),(2987,195,'C&oacute;rdoba','CD',1),(2988,195,'Cuenca','CU',1),(2989,195,'Girona','GI',1),(2990,195,'Granada','GD',1),(2991,195,'Guadalajara','GJ',1),(2992,195,'Guip&uacute;zcoa','GP',1),(2993,195,'Huelva','HL',1),(2994,195,'Huesca','HS',1),(2995,195,'Ja&eacute;n','JN',1),(2996,195,'La Rioja','RJ',1),(2997,195,'Las Palmas','PM',1),(2998,195,'Leon','LE',1),(2999,195,'Lleida','LL',1),(3000,195,'Lugo','LG',1),(3001,195,'Madrid','MD',1),(3002,195,'Malaga','MA',1),(3003,195,'Melilla','ML',1),(3004,195,'Murcia','MU',1),(3005,195,'Navarra','NV',1),(3006,195,'Ourense','OU',1),(3007,195,'Palencia','PL',1),(3008,195,'Pontevedra','PO',1),(3009,195,'Salamanca','SL',1),(3010,195,'Santa Cruz de Tenerife','SC',1),(3011,195,'Segovia','SG',1),(3012,195,'Sevilla','SV',1),(3013,195,'Soria','SO',1),(3014,195,'Tarragona','TA',1),(3015,195,'Teruel','TE',1),(3016,195,'Toledo','TO',1),(3017,195,'Valencia','VC',1),(3018,195,'Valladolid','VD',1),(3019,195,'Vizcaya','VZ',1),(3020,195,'Zamora','ZM',1),(3021,195,'Zaragoza','ZR',1),(3022,196,'Central','CE',1),(3023,196,'Eastern','EA',1),(3024,196,'North Central','NC',1),(3025,196,'Northern','NO',1),(3026,196,'North Western','NW',1),(3027,196,'Sabaragamuwa','SA',1),(3028,196,'Southern','SO',1),(3029,196,'Uva','UV',1),(3030,196,'Western','WE',1),(3032,197,'Saint Helena','S',1),(3034,199,'A\'ali an Nil','ANL',1),(3035,199,'Al Bahr al Ahmar','BAM',1),(3036,199,'Al Buhayrat','BRT',1),(3037,199,'Al Jazirah','JZR',1),(3038,199,'Al Khartum','KRT',1),(3039,199,'Al Qadarif','QDR',1),(3040,199,'Al Wahdah','WDH',1),(3041,199,'An Nil al Abyad','ANB',1),(3042,199,'An Nil al Azraq','ANZ',1),(3043,199,'Ash Shamaliyah','ASH',1),(3044,199,'Bahr al Jabal','BJA',1),(3045,199,'Gharb al Istiwa\'iyah','GIS',1),(3046,199,'Gharb Bahr al Ghazal','GBG',1),(3047,199,'Gharb Darfur','GDA',1),(3048,199,'Gharb Kurdufan','GKU',1),(3049,199,'Janub Darfur','JDA',1),(3050,199,'Janub Kurdufan','JKU',1),(3051,199,'Junqali','JQL',1),(3052,199,'Kassala','KSL',1),(3053,199,'Nahr an Nil','NNL',1),(3054,199,'Shamal Bahr al Ghazal','SBG',1),(3055,199,'Shamal Darfur','SDA',1),(3056,199,'Shamal Kurdufan','SKU',1),(3057,199,'Sharq al Istiwa\'iyah','SIS',1),(3058,199,'Sinnar','SNR',1),(3059,199,'Warab','WRB',1),(3060,200,'Brokopondo','BR',1),(3061,200,'Commewijne','CM',1),(3062,200,'Coronie','CR',1),(3063,200,'Marowijne','MA',1),(3064,200,'Nickerie','NI',1),(3065,200,'Para','PA',1),(3066,200,'Paramaribo','PM',1),(3067,200,'Saramacca','SA',1),(3068,200,'Sipaliwini','SI',1),(3069,200,'Wanica','WA',1),(3070,202,'Hhohho','H',1),(3071,202,'Lubombo','L',1),(3072,202,'Manzini','M',1),(3073,202,'Shishelweni','S',1),(3074,203,'Blekinge','K',1),(3075,203,'Dalarna','W',1),(3076,203,'Gävleborg','X',1),(3077,203,'Gotland','I',1),(3078,203,'Halland','N',1),(3079,203,'Jämtland','Z',1),(3080,203,'Jönköping','F',1),(3081,203,'Kalmar','H',1),(3082,203,'Kronoberg','G',1),(3083,203,'Norrbotten','BD',1),(3084,203,'Örebro','T',1),(3085,203,'Östergötland','E',1),(3086,203,'Sk&aring;ne','M',1),(3087,203,'Södermanland','D',1),(3088,203,'Stockholm','AB',1),(3089,203,'Uppsala','C',1),(3090,203,'Värmland','S',1),(3091,203,'Västerbotten','AC',1),(3092,203,'Västernorrland','Y',1),(3093,203,'Västmanland','U',1),(3094,203,'Västra Götaland','O',1),(3095,204,'Aargau','AG',1),(3096,204,'Appenzell Ausserrhoden','AR',1),(3097,204,'Appenzell Innerrhoden','AI',1),(3098,204,'Basel-Stadt','BS',1),(3099,204,'Basel-Landschaft','BL',1),(3100,204,'Bern','BE',1),(3101,204,'Fribourg','FR',1),(3102,204,'Gen&egrave;ve','GE',1),(3103,204,'Glarus','GL',1),(3104,204,'Graubünden','GR',1),(3105,204,'Jura','JU',1),(3106,204,'Luzern','LU',1),(3107,204,'Neuch&acirc;tel','NE',1),(3108,204,'Nidwald','NW',1),(3109,204,'Obwald','OW',1),(3110,204,'St. Gallen','SG',1),(3111,204,'Schaffhausen','SH',1),(3112,204,'Schwyz','SZ',1),(3113,204,'Solothurn','SO',1),(3114,204,'Thurgau','TG',1),(3115,204,'Ticino','TI',1),(3116,204,'Uri','UR',1),(3117,204,'Valais','VS',1),(3118,204,'Vaud','VD',1),(3119,204,'Zug','ZG',1),(3120,204,'Zürich','ZH',1),(3121,205,'Al Hasakah','HA',1),(3122,205,'Al Ladhiqiyah','LA',1),(3123,205,'Al Qunaytirah','QU',1),(3124,205,'Ar Raqqah','RQ',1),(3125,205,'As Suwayda','SU',1),(3126,205,'Dara','DA',1),(3127,205,'Dayr az Zawr','DZ',1),(3128,205,'Dimashq','DI',1),(3129,205,'Halab','HL',1),(3130,205,'Hamah','HM',1),(3131,205,'Hims','HI',1),(3132,205,'Idlib','ID',1),(3133,205,'Rif Dimashq','RD',1),(3134,205,'Tartus','TA',1),(3135,206,'Chang-hua','CH',1),(3136,206,'Chia-i','CI',1),(3137,206,'Hsin-chu','HS',1),(3138,206,'Hua-lien','HL',1),(3139,206,'I-lan','IL',1),(3140,206,'Kao-hsiung county','KH',1),(3141,206,'Kin-men','KM',1),(3142,206,'Lien-chiang','LC',1),(3143,206,'Miao-li','ML',1),(3144,206,'Nan-t\'ou','NT',1),(3145,206,'P\'eng-hu','PH',1),(3146,206,'P\'ing-tung','PT',1),(3147,206,'T\'ai-chung','TG',1),(3148,206,'T\'ai-nan','TA',1),(3149,206,'T\'ai-pei county','TP',1),(3150,206,'T\'ai-tung','TT',1),(3151,206,'T\'ao-yuan','TY',1),(3152,206,'Yun-lin','YL',1),(3153,206,'Chia-i city','CC',1),(3154,206,'Chi-lung','CL',1),(3155,206,'Hsin-chu','HC',1),(3156,206,'T\'ai-chung','TH',1),(3157,206,'T\'ai-nan','TN',1),(3158,206,'Kao-hsiung city','KC',1),(3159,206,'T\'ai-pei city','TC',1),(3160,207,'Gorno-Badakhstan','GB',1),(3161,207,'Khatlon','KT',1),(3162,207,'Sughd','SU',1),(3163,208,'Arusha','AR',1),(3164,208,'Dar es Salaam','DS',1),(3165,208,'Dodoma','DO',1),(3166,208,'Iringa','IR',1),(3167,208,'Kagera','KA',1),(3168,208,'Kigoma','KI',1),(3169,208,'Kilimanjaro','KJ',1),(3170,208,'Lindi','LN',1),(3171,208,'Manyara','MY',1),(3172,208,'Mara','MR',1),(3173,208,'Mbeya','MB',1),(3174,208,'Morogoro','MO',1),(3175,208,'Mtwara','MT',1),(3176,208,'Mwanza','MW',1),(3177,208,'Pemba North','PN',1),(3178,208,'Pemba South','PS',1),(3179,208,'Pwani','PW',1),(3180,208,'Rukwa','RK',1),(3181,208,'Ruvuma','RV',1),(3182,208,'Shinyanga','SH',1),(3183,208,'Singida','SI',1),(3184,208,'Tabora','TB',1),(3185,208,'Tanga','TN',1),(3186,208,'Zanzibar Central/South','ZC',1),(3187,208,'Zanzibar North','ZN',1),(3188,208,'Zanzibar Urban/West','ZU',1),(3189,209,'Amnat Charoen','Amnat Charoen',1),(3190,209,'Ang Thong','Ang Thong',1),(3191,209,'Ayutthaya','Ayutthaya',1),(3192,209,'Bangkok','Bangkok',1),(3193,209,'Buriram','Buriram',1),(3194,209,'Chachoengsao','Chachoengsao',1),(3195,209,'Chai Nat','Chai Nat',1),(3196,209,'Chaiyaphum','Chaiyaphum',1),(3197,209,'Chanthaburi','Chanthaburi',1),(3198,209,'Chiang Mai','Chiang Mai',1),(3199,209,'Chiang Rai','Chiang Rai',1),(3200,209,'Chon Buri','Chon Buri',1),(3201,209,'Chumphon','Chumphon',1),(3202,209,'Kalasin','Kalasin',1),(3203,209,'Kamphaeng Phet','Kamphaeng Phet',1),(3204,209,'Kanchanaburi','Kanchanaburi',1),(3205,209,'Khon Kaen','Khon Kaen',1),(3206,209,'Krabi','Krabi',1),(3207,209,'Lampang','Lampang',1),(3208,209,'Lamphun','Lamphun',1),(3209,209,'Loei','Loei',1),(3210,209,'Lop Buri','Lop Buri',1),(3211,209,'Mae Hong Son','Mae Hong Son',1),(3212,209,'Maha Sarakham','Maha Sarakham',1),(3213,209,'Mukdahan','Mukdahan',1),(3214,209,'Nakhon Nayok','Nakhon Nayok',1),(3215,209,'Nakhon Pathom','Nakhon Pathom',1),(3216,209,'Nakhon Phanom','Nakhon Phanom',1),(3217,209,'Nakhon Ratchasima','Nakhon Ratchasima',1),(3218,209,'Nakhon Sawan','Nakhon Sawan',1),(3219,209,'Nakhon Si Thammarat','Nakhon Si Thammarat',1),(3220,209,'Nan','Nan',1),(3221,209,'Narathiwat','Narathiwat',1),(3222,209,'Nong Bua Lamphu','Nong Bua Lamphu',1),(3223,209,'Nong Khai','Nong Khai',1),(3224,209,'Nonthaburi','Nonthaburi',1),(3225,209,'Pathum Thani','Pathum Thani',1),(3226,209,'Pattani','Pattani',1),(3227,209,'Phangnga','Phangnga',1),(3228,209,'Phatthalung','Phatthalung',1),(3229,209,'Phayao','Phayao',1),(3230,209,'Phetchabun','Phetchabun',1),(3231,209,'Phetchaburi','Phetchaburi',1),(3232,209,'Phichit','Phichit',1),(3233,209,'Phitsanulok','Phitsanulok',1),(3234,209,'Phrae','Phrae',1),(3235,209,'Phuket','Phuket',1),(3236,209,'Prachin Buri','Prachin Buri',1),(3237,209,'Prachuap Khiri Khan','Prachuap Khiri Khan',1),(3238,209,'Ranong','Ranong',1),(3239,209,'Ratchaburi','Ratchaburi',1),(3240,209,'Rayong','Rayong',1),(3241,209,'Roi Et','Roi Et',1),(3242,209,'Sa Kaeo','Sa Kaeo',1),(3243,209,'Sakon Nakhon','Sakon Nakhon',1),(3244,209,'Samut Prakan','Samut Prakan',1),(3245,209,'Samut Sakhon','Samut Sakhon',1),(3246,209,'Samut Songkhram','Samut Songkhram',1),(3247,209,'Sara Buri','Sara Buri',1),(3248,209,'Satun','Satun',1),(3249,209,'Sing Buri','Sing Buri',1),(3250,209,'Sisaket','Sisaket',1),(3251,209,'Songkhla','Songkhla',1),(3252,209,'Sukhothai','Sukhothai',1),(3253,209,'Suphan Buri','Suphan Buri',1),(3254,209,'Surat Thani','Surat Thani',1),(3255,209,'Surin','Surin',1),(3256,209,'Tak','Tak',1),(3257,209,'Trang','Trang',1),(3258,209,'Trat','Trat',1),(3259,209,'Ubon Ratchathani','Ubon Ratchathani',1),(3260,209,'Udon Thani','Udon Thani',1),(3261,209,'Uthai Thani','Uthai Thani',1),(3262,209,'Uttaradit','Uttaradit',1),(3263,209,'Yala','Yala',1),(3264,209,'Yasothon','Yasothon',1),(3265,210,'Kara','K',1),(3266,210,'Plateaux','P',1),(3267,210,'Savanes','S',1),(3268,210,'Centrale','C',1),(3269,210,'Maritime','M',1),(3270,211,'Atafu','A',1),(3271,211,'Fakaofo','F',1),(3272,211,'Nukunonu','N',1),(3273,212,'Ha\'apai','H',1),(3274,212,'Tongatapu','T',1),(3275,212,'Vava\'u','V',1),(3276,213,'Couva/Tabaquite/Talparo','CT',1),(3277,213,'Diego Martin','DM',1),(3278,213,'Mayaro/Rio Claro','MR',1),(3279,213,'Penal/Debe','PD',1),(3280,213,'Princes Town','PT',1),(3281,213,'Sangre Grande','SG',1),(3282,213,'San Juan/Laventille','SL',1),(3283,213,'Siparia','SI',1),(3284,213,'Tunapuna/Piarco','TP',1),(3285,213,'Port of Spain','PS',1),(3286,213,'San Fernando','SF',1),(3287,213,'Arima','AR',1),(3288,213,'Point Fortin','PF',1),(3289,213,'Chaguanas','CH',1),(3290,213,'Tobago','TO',1),(3291,214,'Ariana','AR',1),(3292,214,'Beja','BJ',1),(3293,214,'Ben Arous','BA',1),(3294,214,'Bizerte','BI',1),(3295,214,'Gabes','GB',1),(3296,214,'Gafsa','GF',1),(3297,214,'Jendouba','JE',1),(3298,214,'Kairouan','KR',1),(3299,214,'Kasserine','KS',1),(3300,214,'Kebili','KB',1),(3301,214,'Kef','KF',1),(3302,214,'Mahdia','MH',1),(3303,214,'Manouba','MN',1),(3304,214,'Medenine','ME',1),(3305,214,'Monastir','MO',1),(3306,214,'Nabeul','NA',1),(3307,214,'Sfax','SF',1),(3308,214,'Sidi','SD',1),(3309,214,'Siliana','SL',1),(3310,214,'Sousse','SO',1),(3311,214,'Tataouine','TA',1),(3312,214,'Tozeur','TO',1),(3313,214,'Tunis','TU',1),(3314,214,'Zaghouan','ZA',1),(3315,215,'Adana','ADA',1),(3316,215,'Adıyaman','ADI',1),(3317,215,'Afyonkarahisar','AFY',1),(3318,215,'Ağrı','AGR',1),(3319,215,'Aksaray','AKS',1),(3320,215,'Amasya','AMA',1),(3321,215,'Ankara','ANK',1),(3322,215,'Antalya','ANT',1),(3323,215,'Ardahan','ARD',1),(3324,215,'Artvin','ART',1),(3325,215,'Aydın','AYI',1),(3326,215,'Balıkesir','BAL',1),(3327,215,'Bartın','BAR',1),(3328,215,'Batman','BAT',1),(3329,215,'Bayburt','BAY',1),(3330,215,'Bilecik','BIL',1),(3331,215,'Bingöl','BIN',1),(3332,215,'Bitlis','BIT',1),(3333,215,'Bolu','BOL',1),(3334,215,'Burdur','BRD',1),(3335,215,'Bursa','BRS',1),(3336,215,'Çanakkale','CKL',1),(3337,215,'Çankırı','CKR',1),(3338,215,'Çorum','COR',1),(3339,215,'Denizli','DEN',1),(3340,215,'Diyarbakır','DIY',1),(3341,215,'Düzce','DUZ',1),(3342,215,'Edirne','EDI',1),(3343,215,'Elazığ','ELA',1),(3344,215,'Erzincan','EZC',1),(3345,215,'Erzurum','EZR',1),(3346,215,'Eskişehir','ESK',1),(3347,215,'Gaziantep','GAZ',1),(3348,215,'Giresun','GIR',1),(3349,215,'Gümüşhane','GMS',1),(3350,215,'Hakkari','HKR',1),(3351,215,'Hatay','HTY',1),(3352,215,'Iğdır','IGD',1),(3353,215,'Isparta','ISP',1),(3354,215,'İstanbul','IST',1),(3355,215,'İzmir','IZM',1),(3356,215,'Kahramanmaraş','KAH',1),(3357,215,'Karabük','KRB',1),(3358,215,'Karaman','KRM',1),(3359,215,'Kars','KRS',1),(3360,215,'Kastamonu','KAS',1),(3361,215,'Kayseri','KAY',1),(3362,215,'Kilis','KLS',1),(3363,215,'Kırıkkale','KRK',1),(3364,215,'Kırklareli','KLR',1),(3365,215,'Kırşehir','KRH',1),(3366,215,'Kocaeli','KOC',1),(3367,215,'Konya','KON',1),(3368,215,'Kütahya','KUT',1),(3369,215,'Malatya','MAL',1),(3370,215,'Manisa','MAN',1),(3371,215,'Mardin','MAR',1),(3372,215,'Mersin','MER',1),(3373,215,'Muğla','MUG',1),(3374,215,'Muş','MUS',1),(3375,215,'Nevşehir','NEV',1),(3376,215,'Niğde','NIG',1),(3377,215,'Ordu','ORD',1),(3378,215,'Osmaniye','OSM',1),(3379,215,'Rize','RIZ',1),(3380,215,'Sakarya','SAK',1),(3381,215,'Samsun','SAM',1),(3382,215,'Şanlıurfa','SAN',1),(3383,215,'Siirt','SII',1),(3384,215,'Sinop','SIN',1),(3385,215,'Şırnak','SIR',1),(3386,215,'Sivas','SIV',1),(3387,215,'Tekirdağ','TEL',1),(3388,215,'Tokat','TOK',1),(3389,215,'Trabzon','TRA',1),(3390,215,'Tunceli','TUN',1),(3391,215,'Uşak','USK',1),(3392,215,'Van','VAN',1),(3393,215,'Yalova','YAL',1),(3394,215,'Yozgat','YOZ',1),(3395,215,'Zonguldak','ZON',1),(3396,216,'Ahal Welayaty','A',1),(3397,216,'Balkan Welayaty','B',1),(3398,216,'Dashhowuz Welayaty','D',1),(3399,216,'Lebap Welayaty','L',1),(3400,216,'Mary Welayaty','M',1),(3401,217,'Ambergris Cays','AC',1),(3402,217,'Dellis Cay','DC',1),(3403,217,'French Cay','FC',1),(3404,217,'Little Water Cay','LW',1),(3405,217,'Parrot Cay','RC',1),(3406,217,'Pine Cay','PN',1),(3407,217,'Salt Cay','SL',1),(3408,217,'Grand Turk','GT',1),(3409,217,'South Caicos','SC',1),(3410,217,'East Caicos','EC',1),(3411,217,'Middle Caicos','MC',1),(3412,217,'North Caicos','NC',1),(3413,217,'Providenciales','PR',1),(3414,217,'West Caicos','WC',1),(3415,218,'Nanumanga','NMG',1),(3416,218,'Niulakita','NLK',1),(3417,218,'Niutao','NTO',1),(3418,218,'Funafuti','FUN',1),(3419,218,'Nanumea','NME',1),(3420,218,'Nui','NUI',1),(3421,218,'Nukufetau','NFT',1),(3422,218,'Nukulaelae','NLL',1),(3423,218,'Vaitupu','VAI',1),(3424,219,'Kalangala','KAL',1),(3425,219,'Kampala','KMP',1),(3426,219,'Kayunga','KAY',1),(3427,219,'Kiboga','KIB',1),(3428,219,'Luwero','LUW',1),(3429,219,'Masaka','MAS',1),(3430,219,'Mpigi','MPI',1),(3431,219,'Mubende','MUB',1),(3432,219,'Mukono','MUK',1),(3433,219,'Nakasongola','NKS',1),(3434,219,'Rakai','RAK',1),(3435,219,'Sembabule','SEM',1),(3436,219,'Wakiso','WAK',1),(3437,219,'Bugiri','BUG',1),(3438,219,'Busia','BUS',1),(3439,219,'Iganga','IGA',1),(3440,219,'Jinja','JIN',1),(3441,219,'Kaberamaido','KAB',1),(3442,219,'Kamuli','KML',1),(3443,219,'Kapchorwa','KPC',1),(3444,219,'Katakwi','KTK',1),(3445,219,'Kumi','KUM',1),(3446,219,'Mayuge','MAY',1),(3447,219,'Mbale','MBA',1),(3448,219,'Pallisa','PAL',1),(3449,219,'Sironko','SIR',1),(3450,219,'Soroti','SOR',1),(3451,219,'Tororo','TOR',1),(3452,219,'Adjumani','ADJ',1),(3453,219,'Apac','APC',1),(3454,219,'Arua','ARU',1),(3455,219,'Gulu','GUL',1),(3456,219,'Kitgum','KIT',1),(3457,219,'Kotido','KOT',1),(3458,219,'Lira','LIR',1),(3459,219,'Moroto','MRT',1),(3460,219,'Moyo','MOY',1),(3461,219,'Nakapiripirit','NAK',1),(3462,219,'Nebbi','NEB',1),(3463,219,'Pader','PAD',1),(3464,219,'Yumbe','YUM',1),(3465,219,'Bundibugyo','BUN',1),(3466,219,'Bushenyi','BSH',1),(3467,219,'Hoima','HOI',1),(3468,219,'Kabale','KBL',1),(3469,219,'Kabarole','KAR',1),(3470,219,'Kamwenge','KAM',1),(3471,219,'Kanungu','KAN',1),(3472,219,'Kasese','KAS',1),(3473,219,'Kibaale','KBA',1),(3474,219,'Kisoro','KIS',1),(3475,219,'Kyenjojo','KYE',1),(3476,219,'Masindi','MSN',1),(3477,219,'Mbarara','MBR',1),(3478,219,'Ntungamo','NTU',1),(3479,219,'Rukungiri','RUK',1),(3480,220,'Cherkas\'ka Oblast\'','71',1),(3481,220,'Chernihivs\'ka Oblast\'','74',1),(3482,220,'Chernivets\'ka Oblast\'','77',1),(3483,220,'Crimea','43',1),(3484,220,'Dnipropetrovs\'ka Oblast\'','12',1),(3485,220,'Donets\'ka Oblast\'','14',1),(3486,220,'Ivano-Frankivs\'ka Oblast\'','26',1),(3487,220,'Khersons\'ka Oblast\'','65',1),(3488,220,'Khmel\'nyts\'ka Oblast\'','68',1),(3489,220,'Kirovohrads\'ka Oblast\'','35',1),(3490,220,'Kyiv','30',1),(3491,220,'Kyivs\'ka Oblast\'','32',1),(3492,220,'Luhans\'ka Oblast\'','09',1),(3493,220,'L\'vivs\'ka Oblast\'','46',1),(3494,220,'Mykolayivs\'ka Oblast\'','48',1),(3495,220,'Odes\'ka Oblast\'','51',1),(3496,220,'Poltavs\'ka Oblast\'','53',1),(3497,220,'Rivnens\'ka Oblast\'','56',1),(3498,220,'Sevastopol\'','40',1),(3499,220,'Sums\'ka Oblast\'','59',1),(3500,220,'Ternopil\'s\'ka Oblast\'','61',1),(3501,220,'Vinnyts\'ka Oblast\'','05',1),(3502,220,'Volyns\'ka Oblast\'','07',1),(3503,220,'Zakarpats\'ka Oblast\'','21',1),(3504,220,'Zaporiz\'ka Oblast\'','23',1),(3505,220,'Zhytomyrs\'ka oblast\'','18',1),(3506,221,'Abu Dhabi','ADH',1),(3507,221,'\'Ajman','AJ',1),(3508,221,'Al Fujayrah','FU',1),(3509,221,'Ash Shariqah','SH',1),(3510,221,'Dubai','DU',1),(3511,221,'R\'as al Khaymah','RK',1),(3512,221,'Umm al Qaywayn','UQ',1),(3513,222,'Aberdeen','ABN',1),(3514,222,'Aberdeenshire','ABNS',1),(3515,222,'Anglesey','ANG',1),(3516,222,'Angus','AGS',1),(3517,222,'Argyll and Bute','ARY',1),(3518,222,'Bedfordshire','BEDS',1),(3519,222,'Berkshire','BERKS',1),(3520,222,'Blaenau Gwent','BLA',1),(3521,222,'Bridgend','BRI',1),(3522,222,'Bristol','BSTL',1),(3523,222,'Buckinghamshire','BUCKS',1),(3524,222,'Caerphilly','CAE',1),(3525,222,'Cambridgeshire','CAMBS',1),(3526,222,'Cardiff','CDF',1),(3527,222,'Carmarthenshire','CARM',1),(3528,222,'Ceredigion','CDGN',1),(3529,222,'Cheshire','CHES',1),(3530,222,'Clackmannanshire','CLACK',1),(3531,222,'Conwy','CON',1),(3532,222,'Cornwall','CORN',1),(3533,222,'Denbighshire','DNBG',1),(3534,222,'Derbyshire','DERBY',1),(3535,222,'Devon','DVN',1),(3536,222,'Dorset','DOR',1),(3537,222,'Dumfries and Galloway','DGL',1),(3538,222,'Dundee','DUND',1),(3539,222,'Durham','DHM',1),(3540,222,'East Ayrshire','ARYE',1),(3541,222,'East Dunbartonshire','DUNBE',1),(3542,222,'East Lothian','LOTE',1),(3543,222,'East Renfrewshire','RENE',1),(3544,222,'East Riding of Yorkshire','ERYS',1),(3545,222,'East Sussex','SXE',1),(3546,222,'Edinburgh','EDIN',1),(3547,222,'Essex','ESX',1),(3548,222,'Falkirk','FALK',1),(3549,222,'Fife','FFE',1),(3550,222,'Flintshire','FLINT',1),(3551,222,'Glasgow','GLAS',1),(3552,222,'Gloucestershire','GLOS',1),(3553,222,'Greater London','LDN',1),(3554,222,'Greater Manchester','MCH',1),(3555,222,'Gwynedd','GDD',1),(3556,222,'Hampshire','HANTS',1),(3557,222,'Herefordshire','HWR',1),(3558,222,'Hertfordshire','HERTS',1),(3559,222,'Highlands','HLD',1),(3560,222,'Inverclyde','IVER',1),(3561,222,'Isle of Wight','IOW',1),(3562,222,'Kent','KNT',1),(3563,222,'Lancashire','LANCS',1),(3564,222,'Leicestershire','LEICS',1),(3565,222,'Lincolnshire','LINCS',1),(3566,222,'Merseyside','MSY',1),(3567,222,'Merthyr Tydfil','MERT',1),(3568,222,'Midlothian','MLOT',1),(3569,222,'Monmouthshire','MMOUTH',1),(3570,222,'Moray','MORAY',1),(3571,222,'Neath Port Talbot','NPRTAL',1),(3572,222,'Newport','NEWPT',1),(3573,222,'Norfolk','NOR',1),(3574,222,'North Ayrshire','ARYN',1),(3575,222,'North Lanarkshire','LANN',1),(3576,222,'North Yorkshire','YSN',1),(3577,222,'Northamptonshire','NHM',1),(3578,222,'Northumberland','NLD',1),(3579,222,'Nottinghamshire','NOT',1),(3580,222,'Orkney Islands','ORK',1),(3581,222,'Oxfordshire','OFE',1),(3582,222,'Pembrokeshire','PEM',1),(3583,222,'Perth and Kinross','PERTH',1),(3584,222,'Powys','PWS',1),(3585,222,'Renfrewshire','REN',1),(3586,222,'Rhondda Cynon Taff','RHON',1),(3587,222,'Rutland','RUT',1),(3588,222,'Scottish Borders','BOR',1),(3589,222,'Shetland Islands','SHET',1),(3590,222,'Shropshire','SPE',1),(3591,222,'Somerset','SOM',1),(3592,222,'South Ayrshire','ARYS',1),(3593,222,'South Lanarkshire','LANS',1),(3594,222,'South Yorkshire','YSS',1),(3595,222,'Staffordshire','SFD',1),(3596,222,'Stirling','STIR',1),(3597,222,'Suffolk','SFK',1),(3598,222,'Surrey','SRY',1),(3599,222,'Swansea','SWAN',1),(3600,222,'Torfaen','TORF',1),(3601,222,'Tyne and Wear','TWR',1),(3602,222,'Vale of Glamorgan','VGLAM',1),(3603,222,'Warwickshire','WARKS',1),(3604,222,'West Dunbartonshire','WDUN',1),(3605,222,'West Lothian','WLOT',1),(3606,222,'West Midlands','WMD',1),(3607,222,'West Sussex','SXW',1),(3608,222,'West Yorkshire','YSW',1),(3609,222,'Western Isles','WIL',1),(3610,222,'Wiltshire','WLT',1),(3611,222,'Worcestershire','WORCS',1),(3612,222,'Wrexham','WRX',1),(3613,223,'Alabama','AL',1),(3614,223,'Alaska','AK',1),(3615,223,'American Samoa','AS',1),(3616,223,'Arizona','AZ',1),(3617,223,'Arkansas','AR',1),(3618,223,'Armed Forces Africa','AF',1),(3619,223,'Armed Forces Americas','AA',1),(3620,223,'Armed Forces Canada','AC',1),(3621,223,'Armed Forces Europe','AE',1),(3622,223,'Armed Forces Middle East','AM',1),(3623,223,'Armed Forces Pacific','AP',1),(3624,223,'California','CA',1),(3625,223,'Colorado','CO',1),(3626,223,'Connecticut','CT',1),(3627,223,'Delaware','DE',1),(3628,223,'District of Columbia','DC',1),(3629,223,'Federated States Of Micronesia','FM',1),(3630,223,'Florida','FL',1),(3631,223,'Georgia','GA',1),(3632,223,'Guam','GU',1),(3633,223,'Hawaii','HI',1),(3634,223,'Idaho','ID',1),(3635,223,'Illinois','IL',1),(3636,223,'Indiana','IN',1),(3637,223,'Iowa','IA',1),(3638,223,'Kansas','KS',1),(3639,223,'Kentucky','KY',1),(3640,223,'Louisiana','LA',1),(3641,223,'Maine','ME',1),(3642,223,'Marshall Islands','MH',1),(3643,223,'Maryland','MD',1),(3644,223,'Massachusetts','MA',1),(3645,223,'Michigan','MI',1),(3646,223,'Minnesota','MN',1),(3647,223,'Mississippi','MS',1),(3648,223,'Missouri','MO',1),(3649,223,'Montana','MT',1),(3650,223,'Nebraska','NE',1),(3651,223,'Nevada','NV',1),(3652,223,'New Hampshire','NH',1),(3653,223,'New Jersey','NJ',1),(3654,223,'New Mexico','NM',1),(3655,223,'New York','NY',1),(3656,223,'North Carolina','NC',1),(3657,223,'North Dakota','ND',1),(3658,223,'Northern Mariana Islands','MP',1),(3659,223,'Ohio','OH',1),(3660,223,'Oklahoma','OK',1),(3661,223,'Oregon','OR',1),(3662,223,'Palau','PW',1),(3663,223,'Pennsylvania','PA',1),(3664,223,'Puerto Rico','PR',1),(3665,223,'Rhode Island','RI',1),(3666,223,'South Carolina','SC',1),(3667,223,'South Dakota','SD',1),(3668,223,'Tennessee','TN',1),(3669,223,'Texas','TX',1),(3670,223,'Utah','UT',1),(3671,223,'Vermont','VT',1),(3672,223,'Virgin Islands','VI',1),(3673,223,'Virginia','VA',1),(3674,223,'Washington','WA',1),(3675,223,'West Virginia','WV',1),(3676,223,'Wisconsin','WI',1),(3677,223,'Wyoming','WY',1),(3678,224,'Baker Island','BI',1),(3679,224,'Howland Island','HI',1),(3680,224,'Jarvis Island','JI',1),(3681,224,'Johnston Atoll','JA',1),(3682,224,'Kingman Reef','KR',1),(3683,224,'Midway Atoll','MA',1),(3684,224,'Navassa Island','NI',1),(3685,224,'Palmyra Atoll','PA',1),(3686,224,'Wake Island','WI',1),(3687,225,'Artigas','AR',1),(3688,225,'Canelones','CA',1),(3689,225,'Cerro Largo','CL',1),(3690,225,'Colonia','CO',1),(3691,225,'Durazno','DU',1),(3692,225,'Flores','FS',1),(3693,225,'Florida','FA',1),(3694,225,'Lavalleja','LA',1),(3695,225,'Maldonado','MA',1),(3696,225,'Montevideo','MO',1),(3697,225,'Paysandu','PA',1),(3698,225,'Rio Negro','RN',1),(3699,225,'Rivera','RV',1),(3700,225,'Rocha','RO',1),(3701,225,'Salto','SL',1),(3702,225,'San Jose','SJ',1),(3703,225,'Soriano','SO',1),(3704,225,'Tacuarembo','TA',1),(3705,225,'Treinta y Tres','TT',1),(3706,226,'Andijon','AN',1),(3707,226,'Buxoro','BU',1),(3708,226,'Farg\'ona','FA',1),(3709,226,'Jizzax','JI',1),(3710,226,'Namangan','NG',1),(3711,226,'Navoiy','NW',1),(3712,226,'Qashqadaryo','QA',1),(3713,226,'Qoraqalpog\'iston Republikasi','QR',1),(3714,226,'Samarqand','SA',1),(3715,226,'Sirdaryo','SI',1),(3716,226,'Surxondaryo','SU',1),(3717,226,'Toshkent City','TK',1),(3718,226,'Toshkent Region','TO',1),(3719,226,'Xorazm','XO',1),(3720,227,'Malampa','MA',1),(3721,227,'Penama','PE',1),(3722,227,'Sanma','SA',1),(3723,227,'Shefa','SH',1),(3724,227,'Tafea','TA',1),(3725,227,'Torba','TO',1),(3726,229,'Amazonas','AM',1),(3727,229,'Anzoategui','AN',1),(3728,229,'Apure','AP',1),(3729,229,'Aragua','AR',1),(3730,229,'Barinas','BA',1),(3731,229,'Bolivar','BO',1),(3732,229,'Carabobo','CA',1),(3733,229,'Cojedes','CO',1),(3734,229,'Delta Amacuro','DA',1),(3735,229,'Dependencias Federales','DF',1),(3736,229,'Distrito Federal','DI',1),(3737,229,'Falcon','FA',1),(3738,229,'Guarico','GU',1),(3739,229,'Lara','LA',1),(3740,229,'Merida','ME',1),(3741,229,'Miranda','MI',1),(3742,229,'Monagas','MO',1),(3743,229,'Nueva Esparta','NE',1),(3744,229,'Portuguesa','PO',1),(3745,229,'Sucre','SU',1),(3746,229,'Tachira','TA',1),(3747,229,'Trujillo','TR',1),(3748,229,'Vargas','VA',1),(3749,229,'Yaracuy','YA',1),(3750,229,'Zulia','ZU',1),(3751,230,'An Giang','AG',1),(3752,230,'Bac Giang','BG',1),(3753,230,'Bac Kan','BK',1),(3754,230,'Bac Lieu','BL',1),(3755,230,'Bac Ninh','BC',1),(3756,230,'Ba Ria-Vung Tau','BR',1),(3757,230,'Ben Tre','BN',1),(3758,230,'Binh Dinh','BH',1),(3759,230,'Binh Duong','BU',1),(3760,230,'Binh Phuoc','BP',1),(3761,230,'Binh Thuan','BT',1),(3762,230,'Ca Mau','CM',1),(3763,230,'Can Tho','CT',1),(3764,230,'Cao Bang','CB',1),(3765,230,'Dak Lak','DL',1),(3766,230,'Dak Nong','DG',1),(3767,230,'Da Nang','DN',1),(3768,230,'Dien Bien','DB',1),(3769,230,'Dong Nai','DI',1),(3770,230,'Dong Thap','DT',1),(3771,230,'Gia Lai','GL',1),(3772,230,'Ha Giang','HG',1),(3773,230,'Hai Duong','HD',1),(3774,230,'Hai Phong','HP',1),(3775,230,'Ha Nam','HM',1),(3776,230,'Ha Noi','HI',1),(3777,230,'Ha Tay','HT',1),(3778,230,'Ha Tinh','HH',1),(3779,230,'Hoa Binh','HB',1),(3780,230,'Ho Chi Minh City','HC',1),(3781,230,'Hau Giang','HU',1),(3782,230,'Hung Yen','HY',1),(3783,232,'Saint Croix','C',1),(3784,232,'Saint John','J',1),(3785,232,'Saint Thomas','T',1),(3786,233,'Alo','A',1),(3787,233,'Sigave','S',1),(3788,233,'Wallis','W',1),(3789,235,'Abyan','AB',1),(3790,235,'Adan','AD',1),(3791,235,'Amran','AM',1),(3792,235,'Al Bayda','BA',1),(3793,235,'Ad Dali','DA',1),(3794,235,'Dhamar','DH',1),(3795,235,'Hadramawt','HD',1),(3796,235,'Hajjah','HJ',1),(3797,235,'Al Hudaydah','HU',1),(3798,235,'Ibb','IB',1),(3799,235,'Al Jawf','JA',1),(3800,235,'Lahij','LA',1),(3801,235,'Ma\'rib','MA',1),(3802,235,'Al Mahrah','MR',1),(3803,235,'Al Mahwit','MW',1),(3804,235,'Sa\'dah','SD',1),(3805,235,'San\'a','SN',1),(3806,235,'Shabwah','SH',1),(3807,235,'Ta\'izz','TA',1),(3812,237,'Bas-Congo','BC',1),(3813,237,'Bandundu','BN',1),(3814,237,'Equateur','EQ',1),(3815,237,'Katanga','KA',1),(3816,237,'Kasai-Oriental','KE',1),(3817,237,'Kinshasa','KN',1),(3818,237,'Kasai-Occidental','KW',1),(3819,237,'Maniema','MA',1),(3820,237,'Nord-Kivu','NK',1),(3821,237,'Orientale','OR',1),(3822,237,'Sud-Kivu','SK',1),(3823,238,'Central','CE',1),(3824,238,'Copperbelt','CB',1),(3825,238,'Eastern','EA',1),(3826,238,'Luapula','LP',1),(3827,238,'Lusaka','LK',1),(3828,238,'Northern','NO',1),(3829,238,'North-Western','NW',1),(3830,238,'Southern','SO',1),(3831,238,'Western','WE',1),(3832,239,'Bulawayo','BU',1),(3833,239,'Harare','HA',1),(3834,239,'Manicaland','ML',1),(3835,239,'Mashonaland Central','MC',1),(3836,239,'Mashonaland East','ME',1),(3837,239,'Mashonaland West','MW',1),(3838,239,'Masvingo','MV',1),(3839,239,'Matabeleland North','MN',1),(3840,239,'Matabeleland South','MS',1),(3841,239,'Midlands','MD',1),(3861,105,'Campobasso','CB',1),(3862,105,'Carbonia-Iglesias','CI',1),(3863,105,'Caserta','CE',1),(3864,105,'Catania','CT',1),(3865,105,'Catanzaro','CZ',1),(3866,105,'Chieti','CH',1),(3867,105,'Como','CO',1),(3868,105,'Cosenza','CS',1),(3869,105,'Cremona','CR',1),(3870,105,'Crotone','KR',1),(3871,105,'Cuneo','CN',1),(3872,105,'Enna','EN',1),(3873,105,'Ferrara','FE',1),(3874,105,'Firenze','FI',1),(3875,105,'Foggia','FG',1),(3876,105,'Forli-Cesena','FC',1),(3877,105,'Frosinone','FR',1),(3878,105,'Genova','GE',1),(3879,105,'Gorizia','GO',1),(3880,105,'Grosseto','GR',1),(3881,105,'Imperia','IM',1),(3882,105,'Isernia','IS',1),(3883,105,'L&#39;Aquila','AQ',1),(3884,105,'La Spezia','SP',1),(3885,105,'Latina','LT',1),(3886,105,'Lecce','LE',1),(3887,105,'Lecco','LC',1),(3888,105,'Livorno','LI',1),(3889,105,'Lodi','LO',1),(3890,105,'Lucca','LU',1),(3891,105,'Macerata','MC',1),(3892,105,'Mantova','MN',1),(3893,105,'Massa-Carrara','MS',1),(3894,105,'Matera','MT',1),(3895,105,'Medio Campidano','VS',1),(3896,105,'Messina','ME',1),(3897,105,'Milano','MI',1),(3898,105,'Modena','MO',1),(3899,105,'Napoli','NA',1),(3900,105,'Novara','NO',1),(3901,105,'Nuoro','NU',1),(3902,105,'Ogliastra','OG',1),(3903,105,'Olbia-Tempio','OT',1),(3904,105,'Oristano','OR',1),(3905,105,'Padova','PD',1),(3906,105,'Palermo','PA',1),(3907,105,'Parma','PR',1),(3908,105,'Pavia','PV',1),(3909,105,'Perugia','PG',1),(3910,105,'Pesaro e Urbino','PU',1),(3911,105,'Pescara','PE',1),(3912,105,'Piacenza','PC',1),(3913,105,'Pisa','PI',1),(3914,105,'Pistoia','PT',1),(3915,105,'Pordenone','PN',1),(3916,105,'Potenza','PZ',1),(3917,105,'Prato','PO',1),(3918,105,'Ragusa','RG',1),(3919,105,'Ravenna','RA',1),(3920,105,'Reggio Calabria','RC',1),(3921,105,'Reggio Emilia','RE',1),(3922,105,'Rieti','RI',1),(3923,105,'Rimini','RN',1),(3924,105,'Roma','RM',1),(3925,105,'Rovigo','RO',1),(3926,105,'Salerno','SA',1),(3927,105,'Sassari','SS',1),(3928,105,'Savona','SV',1),(3929,105,'Siena','SI',1),(3930,105,'Siracusa','SR',1),(3931,105,'Sondrio','SO',1),(3932,105,'Taranto','TA',1),(3933,105,'Teramo','TE',1),(3934,105,'Terni','TR',1),(3935,105,'Torino','TO',1),(3936,105,'Trapani','TP',1),(3937,105,'Trento','TN',1),(3938,105,'Treviso','TV',1),(3939,105,'Trieste','TS',1),(3940,105,'Udine','UD',1),(3941,105,'Varese','VA',1),(3942,105,'Venezia','VE',1),(3943,105,'Verbano-Cusio-Ossola','VB',1),(3944,105,'Vercelli','VC',1),(3945,105,'Verona','VR',1),(3946,105,'Vibo Valentia','VV',1),(3947,105,'Vicenza','VI',1),(3948,105,'Viterbo','VT',1),(3949,222,'County Antrim','ANT',1),(3950,222,'County Armagh','ARM',1),(3951,222,'County Down','DOW',1),(3952,222,'County Fermanagh','FER',1),(3953,222,'County Londonderry','LDY',1),(3954,222,'County Tyrone','TYR',1),(3955,222,'Cumbria','CMA',1),(3956,190,'Pomurska','1',1),(3957,190,'Podravska','2',1),(3958,190,'Koroška','3',1),(3959,190,'Savinjska','4',1),(3960,190,'Zasavska','5',1),(3961,190,'Spodnjeposavska','6',1),(3962,190,'Jugovzhodna Slovenija','7',1),(3963,190,'Osrednjeslovenska','8',1),(3964,190,'Gorenjska','9',1),(3965,190,'Notranjsko-kraška','10',1),(3966,190,'Goriška','11',1),(3967,190,'Obalno-kraška','12',1),(3968,33,'Ruse','',1),(3969,101,'Alborz','ALB',1),(3970,21,'Brussels-Capital Region','BRU',1),(3971,138,'Aguascalientes','AG',1),(3973,242,'Andrijevica','01',1),(3974,242,'Bar','02',1),(3975,242,'Berane','03',1),(3976,242,'Bijelo Polje','04',1),(3977,242,'Budva','05',1),(3978,242,'Cetinje','06',1),(3979,242,'Danilovgrad','07',1),(3980,242,'Herceg-Novi','08',1),(3981,242,'Kolašin','09',1),(3982,242,'Kotor','10',1),(3983,242,'Mojkovac','11',1),(3984,242,'Nikšić','12',1),(3985,242,'Plav','13',1),(3986,242,'Pljevlja','14',1),(3987,242,'Plužine','15',1),(3988,242,'Podgorica','16',1),(3989,242,'Rožaje','17',1),(3990,242,'Šavnik','18',1),(3991,242,'Tivat','19',1),(3992,242,'Ulcinj','20',1),(3993,242,'Žabljak','21',1),(3994,243,'Belgrade','00',1),(3995,243,'North Bačka','01',1),(3996,243,'Central Banat','02',1),(3997,243,'North Banat','03',1),(3998,243,'South Banat','04',1),(3999,243,'West Bačka','05',1),(4000,243,'South Bačka','06',1),(4001,243,'Srem','07',1),(4002,243,'Mačva','08',1),(4003,243,'Kolubara','09',1),(4004,243,'Podunavlje','10',1),(4005,243,'Braničevo','11',1),(4006,243,'Šumadija','12',1),(4007,243,'Pomoravlje','13',1),(4008,243,'Bor','14',1),(4009,243,'Zaječar','15',1),(4010,243,'Zlatibor','16',1),(4011,243,'Moravica','17',1),(4012,243,'Raška','18',1),(4013,243,'Rasina','19',1),(4014,243,'Nišava','20',1),(4015,243,'Toplica','21',1),(4016,243,'Pirot','22',1),(4017,243,'Jablanica','23',1),(4018,243,'Pčinja','24',1),(4020,245,'Bonaire','BO',1),(4021,245,'Saba','SA',1),(4022,245,'Sint Eustatius','SE',1),(4023,248,'Central Equatoria','EC',1),(4024,248,'Eastern Equatoria','EE',1),(4025,248,'Jonglei','JG',1),(4026,248,'Lakes','LK',1),(4027,248,'Northern Bahr el-Ghazal','BN',1),(4028,248,'Unity','UY',1),(4029,248,'Upper Nile','NU',1),(4030,248,'Warrap','WR',1),(4031,248,'Western Bahr el-Ghazal','BW',1),(4032,248,'Western Equatoria','EW',1),(4036,117,'Ainaži, Salacgrīvas novads','0661405',1),(4037,117,'Aizkraukle, Aizkraukles novads','0320201',1),(4038,117,'Aizkraukles novads','0320200',1),(4039,117,'Aizpute, Aizputes novads','0640605',1),(4040,117,'Aizputes novads','0640600',1),(4041,117,'Aknīste, Aknīstes novads','0560805',1),(4042,117,'Aknīstes novads','0560800',1),(4043,117,'Aloja, Alojas novads','0661007',1),(4044,117,'Alojas novads','0661000',1),(4045,117,'Alsungas novads','0624200',1),(4046,117,'Alūksne, Alūksnes novads','0360201',1),(4047,117,'Alūksnes novads','0360200',1),(4048,117,'Amatas novads','0424701',1),(4049,117,'Ape, Apes novads','0360805',1),(4050,117,'Apes novads','0360800',1),(4051,117,'Auce, Auces novads','0460805',1),(4052,117,'Auces novads','0460800',1),(4053,117,'Ādažu novads','0804400',1),(4054,117,'Babītes novads','0804900',1),(4055,117,'Baldone, Baldones novads','0800605',1),(4056,117,'Baldones novads','0800600',1),(4057,117,'Baloži, Ķekavas novads','0800807',1),(4058,117,'Baltinavas novads','0384400',1),(4059,117,'Balvi, Balvu novads','0380201',1),(4060,117,'Balvu novads','0380200',1),(4061,117,'Bauska, Bauskas novads','0400201',1),(4062,117,'Bauskas novads','0400200',1),(4063,117,'Beverīnas novads','0964700',1),(4064,117,'Brocēni, Brocēnu novads','0840605',1),(4065,117,'Brocēnu novads','0840601',1),(4066,117,'Burtnieku novads','0967101',1),(4067,117,'Carnikavas novads','0805200',1),(4068,117,'Cesvaine, Cesvaines novads','0700807',1),(4069,117,'Cesvaines novads','0700800',1),(4070,117,'Cēsis, Cēsu novads','0420201',1),(4071,117,'Cēsu novads','0420200',1),(4072,117,'Ciblas novads','0684901',1),(4073,117,'Dagda, Dagdas novads','0601009',1),(4074,117,'Dagdas novads','0601000',1),(4075,117,'Daugavpils','0050000',1),(4076,117,'Daugavpils novads','0440200',1),(4077,117,'Dobele, Dobeles novads','0460201',1),(4078,117,'Dobeles novads','0460200',1),(4079,117,'Dundagas novads','0885100',1),(4080,117,'Durbe, Durbes novads','0640807',1),(4081,117,'Durbes novads','0640801',1),(4082,117,'Engures novads','0905100',1),(4083,117,'Ērgļu novads','0705500',1),(4084,117,'Garkalnes novads','0806000',1),(4085,117,'Grobiņa, Grobiņas novads','0641009',1),(4086,117,'Grobiņas novads','0641000',1),(4087,117,'Gulbene, Gulbenes novads','0500201',1),(4088,117,'Gulbenes novads','0500200',1),(4089,117,'Iecavas novads','0406400',1),(4090,117,'Ikšķile, Ikšķiles novads','0740605',1),(4091,117,'Ikšķiles novads','0740600',1),(4092,117,'Ilūkste, Ilūkstes novads','0440807',1),(4093,117,'Ilūkstes novads','0440801',1),(4094,117,'Inčukalna novads','0801800',1),(4095,117,'Jaunjelgava, Jaunjelgavas novads','0321007',1),(4096,117,'Jaunjelgavas novads','0321000',1),(4097,117,'Jaunpiebalgas novads','0425700',1),(4098,117,'Jaunpils novads','0905700',1),(4099,117,'Jelgava','0090000',1),(4100,117,'Jelgavas novads','0540200',1),(4101,117,'Jēkabpils','0110000',1),(4102,117,'Jēkabpils novads','0560200',1),(4103,117,'Jūrmala','0130000',1),(4104,117,'Kalnciems, Jelgavas novads','0540211',1),(4105,117,'Kandava, Kandavas novads','0901211',1),(4106,117,'Kandavas novads','0901201',1),(4107,117,'Kārsava, Kārsavas novads','0681009',1),(4108,117,'Kārsavas novads','0681000',1),(4109,117,'Kocēnu novads ,bij. Valmieras)','0960200',1),(4110,117,'Kokneses novads','0326100',1),(4111,117,'Krāslava, Krāslavas novads','0600201',1),(4112,117,'Krāslavas novads','0600202',1),(4113,117,'Krimuldas novads','0806900',1),(4114,117,'Krustpils novads','0566900',1),(4115,117,'Kuldīga, Kuldīgas novads','0620201',1),(4116,117,'Kuldīgas novads','0620200',1),(4117,117,'Ķeguma novads','0741001',1),(4118,117,'Ķegums, Ķeguma novads','0741009',1),(4119,117,'Ķekavas novads','0800800',1),(4120,117,'Lielvārde, Lielvārdes novads','0741413',1),(4121,117,'Lielvārdes novads','0741401',1),(4122,117,'Liepāja','0170000',1),(4123,117,'Limbaži, Limbažu novads','0660201',1),(4124,117,'Limbažu novads','0660200',1),(4125,117,'Līgatne, Līgatnes novads','0421211',1),(4126,117,'Līgatnes novads','0421200',1),(4127,117,'Līvāni, Līvānu novads','0761211',1),(4128,117,'Līvānu novads','0761201',1),(4129,117,'Lubāna, Lubānas novads','0701413',1),(4130,117,'Lubānas novads','0701400',1),(4131,117,'Ludza, Ludzas novads','0680201',1),(4132,117,'Ludzas novads','0680200',1),(4133,117,'Madona, Madonas novads','0700201',1),(4134,117,'Madonas novads','0700200',1),(4135,117,'Mazsalaca, Mazsalacas novads','0961011',1),(4136,117,'Mazsalacas novads','0961000',1),(4137,117,'Mālpils novads','0807400',1),(4138,117,'Mārupes novads','0807600',1),(4139,117,'Mērsraga novads','0887600',1),(4140,117,'Naukšēnu novads','0967300',1),(4141,117,'Neretas novads','0327100',1),(4142,117,'Nīcas novads','0647900',1),(4143,117,'Ogre, Ogres novads','0740201',1),(4144,117,'Ogres novads','0740202',1),(4145,117,'Olaine, Olaines novads','0801009',1),(4146,117,'Olaines novads','0801000',1),(4147,117,'Ozolnieku novads','0546701',1),(4148,117,'Pārgaujas novads','0427500',1),(4149,117,'Pāvilosta, Pāvilostas novads','0641413',1),(4150,117,'Pāvilostas novads','0641401',1),(4151,117,'Piltene, Ventspils novads','0980213',1),(4152,117,'Pļaviņas, Pļaviņu novads','0321413',1),(4153,117,'Pļaviņu novads','0321400',1),(4154,117,'Preiļi, Preiļu novads','0760201',1),(4155,117,'Preiļu novads','0760202',1),(4156,117,'Priekule, Priekules novads','0641615',1),(4157,117,'Priekules novads','0641600',1),(4158,117,'Priekuļu novads','0427300',1),(4159,117,'Raunas novads','0427700',1),(4160,117,'Rēzekne','0210000',1),(4161,117,'Rēzeknes novads','0780200',1),(4162,117,'Riebiņu novads','0766300',1),(4163,117,'Rīga','0010000',1),(4164,117,'Rojas novads','0888300',1),(4165,117,'Ropažu novads','0808400',1),(4166,117,'Rucavas novads','0648500',1),(4167,117,'Rugāju novads','0387500',1),(4168,117,'Rundāles novads','0407700',1),(4169,117,'Rūjiena, Rūjienas novads','0961615',1),(4170,117,'Rūjienas novads','0961600',1),(4171,117,'Sabile, Talsu novads','0880213',1),(4172,117,'Salacgrīva, Salacgrīvas novads','0661415',1),(4173,117,'Salacgrīvas novads','0661400',1),(4174,117,'Salas novads','0568700',1),(4175,117,'Salaspils novads','0801200',1),(4176,117,'Salaspils, Salaspils novads','0801211',1),(4177,117,'Saldus novads','0840200',1),(4178,117,'Saldus, Saldus novads','0840201',1),(4179,117,'Saulkrasti, Saulkrastu novads','0801413',1),(4180,117,'Saulkrastu novads','0801400',1),(4181,117,'Seda, Strenču novads','0941813',1),(4182,117,'Sējas novads','0809200',1),(4183,117,'Sigulda, Siguldas novads','0801615',1),(4184,117,'Siguldas novads','0801601',1),(4185,117,'Skrīveru novads','0328200',1),(4186,117,'Skrunda, Skrundas novads','0621209',1),(4187,117,'Skrundas novads','0621200',1),(4188,117,'Smiltene, Smiltenes novads','0941615',1),(4189,117,'Smiltenes novads','0941600',1),(4190,117,'Staicele, Alojas novads','0661017',1),(4191,117,'Stende, Talsu novads','0880215',1),(4192,117,'Stopiņu novads','0809600',1),(4193,117,'Strenči, Strenču novads','0941817',1),(4194,117,'Strenču novads','0941800',1),(4195,117,'Subate, Ilūkstes novads','0440815',1),(4196,117,'Talsi, Talsu novads','0880201',1),(4197,117,'Talsu novads','0880200',1),(4198,117,'Tērvetes novads','0468900',1),(4199,117,'Tukuma novads','0900200',1),(4200,117,'Tukums, Tukuma novads','0900201',1),(4201,117,'Vaiņodes novads','0649300',1),(4202,117,'Valdemārpils, Talsu novads','0880217',1),(4203,117,'Valka, Valkas novads','0940201',1),(4204,117,'Valkas novads','0940200',1),(4205,117,'Valmiera','0250000',1),(4206,117,'Vangaži, Inčukalna novads','0801817',1),(4207,117,'Varakļāni, Varakļānu novads','0701817',1),(4208,117,'Varakļānu novads','0701800',1),(4209,117,'Vārkavas novads','0769101',1),(4210,117,'Vecpiebalgas novads','0429300',1),(4211,117,'Vecumnieku novads','0409500',1),(4212,117,'Ventspils','0270000',1),(4213,117,'Ventspils novads','0980200',1),(4214,117,'Viesīte, Viesītes novads','0561815',1),(4215,117,'Viesītes novads','0561800',1),(4216,117,'Viļaka, Viļakas novads','0381615',1),(4217,117,'Viļakas novads','0381600',1),(4218,117,'Viļāni, Viļānu novads','0781817',1),(4219,117,'Viļānu novads','0781800',1),(4220,117,'Zilupe, Zilupes novads','0681817',1),(4221,117,'Zilupes novads','0681801',1),(4222,43,'Arica y Parinacota','AP',1),(4223,43,'Los Rios','LR',1),(4224,220,'Kharkivs\'ka Oblast\'','63',1),(4225,118,'Beirut','LB-BR',1),(4226,118,'Bekaa','LB-BE',1),(4227,118,'Mount Lebanon','LB-ML',1),(4228,118,'Nabatieh','LB-NB',1),(4229,118,'North','LB-NR',1),(4230,118,'South','LB-ST',1),(4231,99,'Telangana','TS',1),(4232,44,'Qinghai','QH',1),(4233,100,'Papua Barat','PB',1),(4234,100,'Sulawesi Barat','SR',1),(4235,100,'Kepulauan Riau','KR',1);
/*!40000 ALTER TABLE `lk_zone` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lk_zone_to_geo_zone`
--

DROP TABLE IF EXISTS `lk_zone_to_geo_zone`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lk_zone_to_geo_zone` (
  `zone_to_geo_zone_id` int(11) NOT NULL AUTO_INCREMENT,
  `country_id` int(11) NOT NULL,
  `zone_id` int(11) NOT NULL DEFAULT 0,
  `geo_zone_id` int(11) NOT NULL,
  `date_added` datetime NOT NULL,
  `date_modified` datetime NOT NULL,
  PRIMARY KEY (`zone_to_geo_zone_id`)
) ENGINE=MyISAM AUTO_INCREMENT=110 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lk_zone_to_geo_zone`
--

LOCK TABLES `lk_zone_to_geo_zone` WRITE;
/*!40000 ALTER TABLE `lk_zone_to_geo_zone` DISABLE KEYS */;
INSERT INTO `lk_zone_to_geo_zone` VALUES (1,222,0,4,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(2,222,3513,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(3,222,3514,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(4,222,3515,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(5,222,3516,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(6,222,3517,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(7,222,3518,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(8,222,3519,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(9,222,3520,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(10,222,3521,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(11,222,3522,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(12,222,3523,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(13,222,3524,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(14,222,3525,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(15,222,3526,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(16,222,3527,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(17,222,3528,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(18,222,3529,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(19,222,3530,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(20,222,3531,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(21,222,3532,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(22,222,3533,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(23,222,3534,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(24,222,3535,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(25,222,3536,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(26,222,3537,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(27,222,3538,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(28,222,3539,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(29,222,3540,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(30,222,3541,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(31,222,3542,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(32,222,3543,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(33,222,3544,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(34,222,3545,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(35,222,3546,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(36,222,3547,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(37,222,3548,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(38,222,3549,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(39,222,3550,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(40,222,3551,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(41,222,3552,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(42,222,3553,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(43,222,3554,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(44,222,3555,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(45,222,3556,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(46,222,3557,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(47,222,3558,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(48,222,3559,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(49,222,3560,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(50,222,3561,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(51,222,3562,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(52,222,3563,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(53,222,3564,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(54,222,3565,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(55,222,3566,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(56,222,3567,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(57,222,3568,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(58,222,3569,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(59,222,3570,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(60,222,3571,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(61,222,3572,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(62,222,3573,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(63,222,3574,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(64,222,3575,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(65,222,3576,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(66,222,3577,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(67,222,3578,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(68,222,3579,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(69,222,3580,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(70,222,3581,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(71,222,3582,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(72,222,3583,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(73,222,3584,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(74,222,3585,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(75,222,3586,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(76,222,3587,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(77,222,3588,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(78,222,3589,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(79,222,3590,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(80,222,3591,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(81,222,3592,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(82,222,3593,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(83,222,3594,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(84,222,3595,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(85,222,3596,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(86,222,3597,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(87,222,3598,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(88,222,3599,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(89,222,3600,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(90,222,3601,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(91,222,3602,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(92,222,3603,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(93,222,3604,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(94,222,3605,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(95,222,3606,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(96,222,3607,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(97,222,3608,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(98,222,3609,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(99,222,3610,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(100,222,3611,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(101,222,3612,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(102,222,3949,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(103,222,3950,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(104,222,3951,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(105,222,3952,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(106,222,3953,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(107,222,3954,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(108,222,3955,3,'0000-00-00 00:00:00','0000-00-00 00:00:00'),(109,222,3972,3,'0000-00-00 00:00:00','0000-00-00 00:00:00');
/*!40000 ALTER TABLE `lk_zone_to_geo_zone` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;

-- Dump completed on 2024-07-03  4:53:26
