-- MySQL dump 10.13  Distrib 5.7.44, for Linux (x86_64)
--
-- Host: localhost    Database: nsadmin_zc1
-- ------------------------------------------------------
-- Server version	5.7.44

/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!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 `google_checkout`
--

DROP TABLE IF EXISTS `google_checkout`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `google_checkout` (
  `customers_id` int(11) DEFAULT NULL,
  `buyer_id` bigint(20) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `google_checkout`
--

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

--
-- Table structure for table `google_orders`
--

DROP TABLE IF EXISTS `google_orders`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `google_orders` (
  `orders_id` int(11) DEFAULT NULL,
  `google_order_number` bigint(20) DEFAULT NULL,
  `order_amount` decimal(15,4) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `google_orders`
--

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

--
-- Table structure for table `zen_address_book`
--

DROP TABLE IF EXISTS `zen_address_book`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_address_book` (
  `address_book_id` int(11) NOT NULL AUTO_INCREMENT,
  `customers_id` int(11) NOT NULL DEFAULT '0',
  `entry_gender` char(1) NOT NULL DEFAULT '',
  `entry_company` varchar(64) DEFAULT NULL,
  `entry_firstname` varchar(32) NOT NULL DEFAULT '',
  `entry_lastname` varchar(32) NOT NULL DEFAULT '',
  `entry_street_address` varchar(64) NOT NULL DEFAULT '',
  `entry_suburb` varchar(32) DEFAULT NULL,
  `entry_postcode` varchar(10) NOT NULL DEFAULT '',
  `entry_city` varchar(32) NOT NULL DEFAULT '',
  `entry_state` varchar(32) DEFAULT NULL,
  `entry_country_id` int(11) NOT NULL DEFAULT '0',
  `entry_zone_id` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`address_book_id`),
  KEY `idx_address_book_customers_id_zen` (`customers_id`)
) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_address_book`
--

LOCK TABLES `zen_address_book` WRITE;
/*!40000 ALTER TABLE `zen_address_book` DISABLE KEYS */;
INSERT INTO `zen_address_book` VALUES (1,1,'m','','Henry','Shu','1234 West Street','','48843','Howell','',223,33),(2,2,'m','','JOHN','BRAKE','9079 PIERSON RD','','48836','FOWLERVILLE','',223,33),(3,3,'',NULL,'john','brake','2210 ridgewood circle','','33411','royal palm beach','',223,18),(4,4,'',NULL,'John','Brake','9079 Pierson Rd','','48836','Fowlerville','',223,33),(5,5,'m','chinese delight','jack','shu','111 west grand river','4010 hillside Dr','48843','howell','',223,33);
/*!40000 ALTER TABLE `zen_address_book` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_address_format`
--

DROP TABLE IF EXISTS `zen_address_format`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_address_format` (
  `address_format_id` int(11) NOT NULL AUTO_INCREMENT,
  `address_format` varchar(128) NOT NULL DEFAULT '',
  `address_summary` varchar(48) NOT NULL DEFAULT '',
  PRIMARY KEY (`address_format_id`)
) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_address_format`
--

LOCK TABLES `zen_address_format` WRITE;
/*!40000 ALTER TABLE `zen_address_format` DISABLE KEYS */;
INSERT INTO `zen_address_format` VALUES (1,'$firstname $lastname$cr$streets$cr$city, $postcode$cr$statecomma$country','$city / $country'),(2,'$firstname $lastname$cr$streets$cr$city, $state    $postcode$cr$country','$city, $state / $country'),(3,'$firstname $lastname$cr$streets$cr$city$cr$postcode - $statecomma$country','$state / $country'),(4,'$firstname $lastname$cr$streets$cr$city ($postcode)$cr$country','$postcode / $country'),(5,'$firstname $lastname$cr$streets$cr$postcode $city$cr$country','$city / $country'),(6,'$firstname $lastname$cr$streets$cr$city$cr$state$cr$postcode$cr$country','$postcode / $country');
/*!40000 ALTER TABLE `zen_address_format` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_admin`
--

DROP TABLE IF EXISTS `zen_admin`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_admin` (
  `admin_id` int(11) NOT NULL AUTO_INCREMENT,
  `admin_name` varchar(32) NOT NULL DEFAULT '',
  `admin_email` varchar(96) NOT NULL DEFAULT '',
  `admin_pass` varchar(40) NOT NULL DEFAULT '',
  `admin_level` tinyint(1) NOT NULL DEFAULT '1',
  PRIMARY KEY (`admin_id`),
  KEY `idx_admin_name_zen` (`admin_name`),
  KEY `idx_admin_email_zen` (`admin_email`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_admin`
--

LOCK TABLES `zen_admin` WRITE;
/*!40000 ALTER TABLE `zen_admin` DISABLE KEYS */;
INSERT INTO `zen_admin` VALUES (2,'jbadmin','jhbrake@comcast.net','4f48ff3d43c9eafb224320c0705ae7e0:3f',0);
/*!40000 ALTER TABLE `zen_admin` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_admin_activity_log`
--

DROP TABLE IF EXISTS `zen_admin_activity_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_admin_activity_log` (
  `log_id` int(15) NOT NULL AUTO_INCREMENT,
  `access_date` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `admin_id` int(11) NOT NULL DEFAULT '0',
  `page_accessed` varchar(80) NOT NULL DEFAULT '',
  `page_parameters` text,
  `ip_address` varchar(15) NOT NULL DEFAULT '',
  PRIMARY KEY (`log_id`),
  KEY `idx_page_accessed_zen` (`page_accessed`),
  KEY `idx_access_date_zen` (`access_date`),
  KEY `idx_ip_zen` (`ip_address`)
) ENGINE=MyISAM AUTO_INCREMENT=3052 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_admin_activity_log`
--

LOCK TABLES `zen_admin_activity_log` WRITE;
/*!40000 ALTER TABLE `zen_admin_activity_log` DISABLE KEYS */;
INSERT INTO `zen_admin_activity_log` VALUES (3,'2010-03-04 18:55:28',0,'login.php ','','76.221.246.255'),(4,'2010-03-04 18:55:45',0,'login.php admin','','76.221.246.255'),(5,'2010-03-04 18:55:58',1,'template_select.php','','76.221.246.255'),(6,'2010-03-04 18:59:43',1,'template_select.php','','76.221.246.255'),(7,'2010-03-04 18:59:46',1,'template_select.php','page=1&tID=1&action=edit&','76.221.246.255'),(8,'2010-03-04 18:59:55',1,'template_select.php','page=1&tID=1&action=save&','76.221.246.255'),(9,'2010-03-04 19:06:49',1,'layout_controller.php','','76.221.246.255'),(10,'2010-03-04 19:07:01',1,'layout_controller.php','page=&cID=77&action=reset_defaults&','76.221.246.255'),(11,'2010-03-04 19:07:07',1,'layout_controller.php','page=&','76.221.246.255'),(12,'2010-03-04 20:35:49',0,'login.php ','','76.221.246.255'),(13,'2010-03-04 20:36:04',0,'login.php admin','','76.221.246.255'),(14,'2010-03-04 20:36:09',1,'developers_tool_kit.php','','76.221.246.255'),(15,'2010-03-04 20:36:18',1,'developers_tool_kit.php','action=locate_all_files&','76.221.246.255'),(16,'2010-03-04 20:36:28',1,'developers_tool_kit.php','action=locate_configuration&','76.221.246.255'),(17,'2010-03-04 20:36:35',1,'developers_tool_kit.php','action=locate_all_files&','76.221.246.255'),(18,'2010-03-04 20:41:26',1,'alt_nav.php','','76.221.246.255'),(19,'2010-03-04 20:41:30',1,'configuration.php','gID=25&','76.221.246.255'),(20,'2010-03-04 20:42:46',1,'developers_tool_kit.php','','76.221.246.255'),(21,'2010-03-04 20:43:01',1,'developers_tool_kit.php','action=locate_configuration&','76.221.246.255'),(22,'2010-03-04 20:43:04',1,'developers_tool_kit.php','action=locate_all_files&','76.221.246.255'),(23,'2010-03-04 20:43:18',1,'developers_tool_kit.php','action=locate_configuration&','76.221.246.255'),(24,'2010-03-04 21:13:32',1,'layout_controller.php','','76.221.246.255'),(25,'2010-03-04 21:13:42',1,'layout_controller.php','page=&cID=97&action=edit&','76.221.246.255'),(26,'2010-03-04 21:13:50',1,'layout_controller.php','page=&cID=97&action=save&layout_box_name=search_header.php&','76.221.246.255'),(27,'2010-03-04 21:13:50',1,'layout_controller.php','page=&cID=97&','76.221.246.255'),(28,'2010-03-04 21:15:39',1,'layout_controller.php','page=&cID=82&','76.221.246.255'),(29,'2010-03-04 21:15:44',1,'layout_controller.php','page=&cID=82&action=edit&','76.221.246.255'),(30,'2010-03-04 21:15:51',1,'layout_controller.php','page=&cID=82&action=save&layout_box_name=currencies.php&','76.221.246.255'),(31,'2010-03-04 21:15:52',1,'layout_controller.php','page=&cID=82&','76.221.246.255'),(32,'2010-03-04 21:16:00',1,'layout_controller.php','page=&cID=87&','76.221.246.255'),(33,'2010-03-04 21:16:04',1,'layout_controller.php','page=&cID=87&action=edit&','76.221.246.255'),(34,'2010-03-04 21:16:26',1,'layout_controller.php','page=&cID=87&action=save&layout_box_name=languages.php&','76.221.246.255'),(35,'2010-03-04 21:16:26',1,'layout_controller.php','page=&cID=87&','76.221.246.255'),(36,'2010-03-04 21:22:20',1,'alt_nav.php','','76.221.246.255'),(37,'2010-03-04 21:23:02',1,'categories.php','','76.221.246.255'),(38,'2010-03-04 21:23:09',1,'categories.php','cPath=&action=new_category&','76.221.246.255'),(39,'2010-03-04 21:25:06',1,'categories.php','action=insert_category&cPath=&','76.221.246.255'),(40,'2010-03-04 21:25:07',1,'categories.php','cPath=&cID=1&','76.221.246.255'),(41,'2010-03-04 21:25:21',1,'alt_nav.php','','76.221.246.255'),(42,'2010-03-04 21:25:25',1,'categories.php','','76.221.246.255'),(43,'2010-03-04 21:25:28',1,'categories.php','cPath=&action=new_category&','76.221.246.255'),(44,'2010-03-04 21:26:00',1,'categories.php','action=insert_category&cPath=&','76.221.246.255'),(45,'2010-03-04 21:26:03',1,'categories.php','cPath=&cID=2&','76.221.246.255'),(46,'2010-03-04 21:26:08',1,'categories.php','cPath=&action=new_category&','76.221.246.255'),(47,'2010-03-04 21:26:49',1,'categories.php','action=insert_category&cPath=&','76.221.246.255'),(48,'2010-03-04 21:26:50',1,'categories.php','cPath=&cID=3&','76.221.246.255'),(49,'2010-03-04 21:26:58',1,'categories.php','cPath=1&','76.221.246.255'),(50,'2010-03-04 21:27:38',1,'categories.php','cID=1&','76.221.246.255'),(51,'2010-03-04 21:27:41',1,'categories.php','cPath=1&','76.221.246.255'),(52,'2010-03-04 21:27:45',1,'categories.php','product_type=1&cPath=1&action=new_product&x=34&y=18&','76.221.246.255'),(53,'2010-03-04 21:27:46',1,'product.php','product_type=1&cPath=1&action=new_product&x=34&y=18&','76.221.246.255'),(54,'2010-03-04 21:28:00',1,'categories.php','cPath=1&','76.221.246.255'),(55,'2010-03-04 21:28:13',1,'categories.php','cID=1&','76.221.246.255'),(56,'2010-03-04 21:28:16',1,'categories.php','cPath=1&','76.221.246.255'),(57,'2010-03-04 21:28:18',1,'categories.php','cPath=1&action=new_category&','76.221.246.255'),(58,'2010-03-04 21:29:08',1,'categories.php','action=insert_category&cPath=1&','76.221.246.255'),(59,'2010-03-04 21:29:08',1,'categories.php','cPath=1&cID=4&','76.221.246.255'),(60,'2010-03-04 21:29:17',1,'categories.php','cPath=1&action=new_category&','76.221.246.255'),(61,'2010-03-04 21:29:38',1,'categories.php','action=insert_category&cPath=1&','76.221.246.255'),(62,'2010-03-04 21:29:39',1,'categories.php','cPath=1&cID=5&','76.221.246.255'),(63,'2010-03-04 21:29:43',1,'categories.php','cPath=1&action=new_category&','76.221.246.255'),(64,'2010-03-04 21:30:03',1,'categories.php','action=insert_category&cPath=1&','76.221.246.255'),(65,'2010-03-04 21:30:03',1,'categories.php','cPath=1&cID=6&','76.221.246.255'),(66,'2010-03-04 21:30:30',1,'categories.php','cPath=1_4&','76.221.246.255'),(67,'2010-03-04 21:30:40',1,'categories.php','product_type=1&cPath=1_4&action=new_product&x=35&y=12&','76.221.246.255'),(68,'2010-03-04 21:30:43',1,'product.php','product_type=1&cPath=1_4&action=new_product&x=35&y=12&','76.221.246.255'),(69,'2010-03-04 21:32:47',1,'product.php','cPath=1_4&product_type=1&action=new_product_preview&','76.221.246.255'),(70,'2010-03-04 21:33:17',1,'product.php','cPath=1_4&product_type=1&action=insert_product&','76.221.246.255'),(71,'2010-03-04 21:33:17',1,'categories.php','cPath=1_4&pID=1&','76.221.246.255'),(72,'2010-03-04 21:33:27',1,'categories.php','product_type=1&cPath=1_4&action=new_product&x=52&y=15&','76.221.246.255'),(73,'2010-03-04 21:33:27',1,'product.php','product_type=1&cPath=1_4&action=new_product&x=52&y=15&','76.221.246.255'),(74,'2010-03-04 21:36:12',1,'product.php','cPath=1_4&product_type=1&action=new_product_preview&','76.221.246.255'),(75,'2010-03-04 21:36:16',1,'product.php','cPath=1_4&product_type=1&action=insert_product&','76.221.246.255'),(76,'2010-03-04 21:36:16',1,'categories.php','cPath=1_4&pID=2&','76.221.246.255'),(77,'2010-03-04 21:36:48',1,'categories.php','cPath=1&cID=4&','76.221.246.255'),(78,'2010-03-04 21:36:57',1,'categories.php','cPath=1_5&','76.221.246.255'),(79,'2010-03-04 21:37:04',1,'categories.php','product_type=1&cPath=1_5&action=new_product&x=33&y=11&','76.221.246.255'),(80,'2010-03-04 21:37:04',1,'product.php','product_type=1&cPath=1_5&action=new_product&x=33&y=11&','76.221.246.255'),(81,'2010-03-04 21:38:04',1,'product.php','cPath=1_5&product_type=1&action=new_product_preview&','76.221.246.255'),(82,'2010-03-04 21:38:13',1,'product.php','cPath=1_5&product_type=1&action=insert_product&','76.221.246.255'),(83,'2010-03-04 21:38:26',1,'product.php','cPath=1_5&product_type=1&action=new_product_preview&','76.221.246.255'),(84,'2010-03-04 21:38:29',1,'product.php','cPath=1_5&product_type=1&action=insert_product&','76.221.246.255'),(85,'2010-03-04 21:38:29',1,'categories.php','cPath=1_5&pID=3&','76.221.246.255'),(86,'2010-03-04 21:38:32',1,'categories.php','product_type=1&cPath=1_5&action=new_product&x=22&y=13&','76.221.246.255'),(87,'2010-03-04 21:38:33',1,'product.php','product_type=1&cPath=1_5&action=new_product&x=22&y=13&','76.221.246.255'),(88,'2010-03-04 21:39:14',1,'product.php','cPath=1_5&product_type=1&action=new_product_preview&','76.221.246.255'),(89,'2010-03-04 21:39:17',1,'product.php','cPath=1_5&product_type=1&action=insert_product&','76.221.246.255'),(90,'2010-03-04 21:39:18',1,'categories.php','cPath=1_5&pID=4&','76.221.246.255'),(91,'2010-03-04 21:39:24',1,'categories.php','cPath=1&cID=5&','76.221.246.255'),(92,'2010-03-04 21:39:27',1,'categories.php','cPath=1_6&','76.221.246.255'),(93,'2010-03-04 21:39:31',1,'categories.php','product_type=1&cPath=1_6&action=new_product&x=30&y=12&','76.221.246.255'),(94,'2010-03-04 21:39:32',1,'product.php','product_type=1&cPath=1_6&action=new_product&x=30&y=12&','76.221.246.255'),(95,'2010-03-04 21:40:29',1,'product.php','cPath=1_6&product_type=1&action=new_product_preview&','76.221.246.255'),(96,'2010-03-04 21:40:32',1,'product.php','cPath=1_6&product_type=1&action=insert_product&','76.221.246.255'),(97,'2010-03-04 21:40:32',1,'categories.php','cPath=1_6&pID=5&','76.221.246.255'),(98,'2010-03-04 21:40:35',1,'categories.php','product_type=1&cPath=1_6&action=new_product&x=69&y=15&','76.221.246.255'),(99,'2010-03-04 21:40:35',1,'product.php','product_type=1&cPath=1_6&action=new_product&x=69&y=15&','76.221.246.255'),(100,'2010-03-04 21:40:59',1,'product.php','cPath=1_6&product_type=1&action=new_product_preview&','76.221.246.255'),(101,'2010-03-04 21:41:03',1,'product.php','cPath=1_6&product_type=1&action=insert_product&','76.221.246.255'),(102,'2010-03-04 21:41:03',1,'categories.php','cPath=1_6&pID=6&','76.221.246.255'),(103,'2010-03-04 21:41:15',1,'product.php','cPath=1_6&product_type=1&pID=6&action=new_product&','76.221.246.255'),(104,'2010-03-04 21:41:27',1,'product.php','cPath=1_6&product_type=1&pID=6&action=new_product_preview&','76.221.246.255'),(105,'2010-03-04 21:41:35',1,'product.php','cPath=1_6&product_type=1&pID=6&action=update_product&','76.221.246.255'),(106,'2010-03-04 21:41:35',1,'categories.php','cPath=1_6&pID=6&','76.221.246.255'),(107,'2010-03-04 21:41:40',1,'product.php','cPath=1_6&product_type=1&pID=5&action=new_product&','76.221.246.255'),(108,'2010-03-04 21:41:54',1,'categories.php','cPath=1_6&pID=5&','76.221.246.255'),(109,'2010-03-04 21:41:59',1,'product.php','cPath=1_6&product_type=1&pID=6&action=new_product&','76.221.246.255'),(110,'2010-03-04 21:42:10',1,'product.php','cPath=1_6&product_type=1&pID=6&action=new_product_preview&','76.221.246.255'),(111,'2010-03-04 21:42:14',1,'product.php','cPath=1_6&product_type=1&pID=6&action=update_product&','76.221.246.255'),(112,'2010-03-04 21:42:14',1,'categories.php','cPath=1_6&pID=6&','76.221.246.255'),(113,'2010-03-04 21:44:09',1,'layout_controller.php','','76.221.246.255'),(114,'2010-03-04 21:44:36',1,'layout_controller.php','page=&cID=101&action=edit&','76.221.246.255'),(115,'2010-03-04 21:44:43',1,'layout_controller.php','page=&cID=101&action=save&layout_box_name=whats_new.php&','76.221.246.255'),(116,'2010-03-04 21:44:43',1,'layout_controller.php','page=&cID=101&','76.221.246.255'),(117,'2010-03-04 21:45:59',1,'alt_nav.php','','76.221.246.255'),(118,'2010-03-04 21:46:08',1,'configuration.php','gID=24&','76.221.246.255'),(119,'2010-03-04 21:46:38',1,'configuration.php','gID=24&cID=501&action=edit&','76.221.246.255'),(120,'2010-03-04 21:46:50',1,'configuration.php','gID=24&cID=501&action=save&','76.221.246.255'),(121,'2010-03-04 21:46:51',1,'configuration.php','gID=24&cID=501&','76.221.246.255'),(122,'2010-03-04 21:46:58',1,'configuration.php','gID=24&cID=502&','76.221.246.255'),(123,'2010-03-04 21:47:01',1,'configuration.php','gID=24&cID=502&action=edit&','76.221.246.255'),(124,'2010-03-04 21:47:04',1,'configuration.php','gID=24&cID=502&action=save&','76.221.246.255'),(125,'2010-03-04 21:47:04',1,'configuration.php','gID=24&cID=502&','76.221.246.255'),(126,'2010-03-04 21:48:27',1,'configuration.php','gID=24&cID=504&','76.221.246.255'),(127,'2010-03-04 21:48:29',1,'configuration.php','gID=24&cID=504&action=edit&','76.221.246.255'),(128,'2010-03-04 21:48:33',1,'configuration.php','gID=24&cID=504&action=save&','76.221.246.255'),(129,'2010-03-04 21:48:34',1,'configuration.php','gID=24&cID=504&','76.221.246.255'),(130,'2010-03-04 21:48:41',1,'configuration.php','gID=24&cID=505&','76.221.246.255'),(131,'2010-03-04 21:48:45',1,'configuration.php','gID=24&cID=505&action=edit&','76.221.246.255'),(132,'2010-03-04 21:48:49',1,'configuration.php','gID=24&cID=505&action=save&','76.221.246.255'),(133,'2010-03-04 21:48:49',1,'configuration.php','gID=24&cID=505&','76.221.246.255'),(134,'2010-03-04 21:49:07',1,'configuration.php','gID=8&','76.221.246.255'),(135,'2010-03-04 21:50:04',1,'alt_nav.php','','76.221.246.255'),(136,'2010-03-04 21:50:11',1,'configuration.php','gID=9&','76.221.246.255'),(137,'2010-03-04 21:50:16',1,'configuration.php','gID=9&cID=233&','76.221.246.255'),(138,'2010-03-04 21:50:19',1,'configuration.php','gID=9&cID=233&action=edit&','76.221.246.255'),(139,'2010-03-04 21:50:23',1,'configuration.php','gID=9&cID=233&action=save&','76.221.246.255'),(140,'2010-03-04 21:50:23',1,'configuration.php','gID=9&cID=233&','76.221.246.255'),(141,'2010-03-04 21:50:26',1,'configuration.php','gID=9&cID=232&','76.221.246.255'),(142,'2010-03-04 21:50:29',1,'configuration.php','gID=9&cID=232&action=edit&','76.221.246.255'),(143,'2010-03-04 21:50:32',1,'configuration.php','gID=9&cID=232&action=save&','76.221.246.255'),(144,'2010-03-04 21:50:32',1,'configuration.php','gID=9&cID=232&','76.221.246.255'),(145,'2010-03-04 21:50:52',1,'configuration.php','gID=9&cID=238&','76.221.246.255'),(146,'2010-03-04 21:50:55',1,'configuration.php','gID=9&cID=238&action=edit&','76.221.246.255'),(147,'2010-03-04 21:50:59',1,'configuration.php','gID=9&cID=238&action=save&','76.221.246.255'),(148,'2010-03-04 21:50:59',1,'configuration.php','gID=9&cID=238&','76.221.246.255'),(149,'2010-03-04 21:58:44',1,'configuration.php','gID=10&','76.221.246.255'),(150,'2010-03-04 21:59:00',1,'configuration.php','gID=8&','76.221.246.255'),(151,'2010-03-04 21:59:25',1,'configuration.php','gID=13&','76.221.246.255'),(152,'2010-03-04 21:59:56',1,'configuration.php','gID=16&','76.221.246.255'),(153,'2010-03-04 22:00:10',1,'configuration.php','gID=16&cID=317&action=edit&','76.221.246.255'),(154,'2010-03-04 22:00:32',1,'configuration.php','gID=18&','76.221.246.255'),(155,'2010-03-04 22:01:16',1,'configuration.php','gID=19&','76.221.246.255'),(156,'2010-03-04 22:01:33',1,'configuration.php','gID=19&cID=406&','76.221.246.255'),(157,'2010-03-04 22:01:39',1,'configuration.php','gID=19&cID=406&action=edit&','76.221.246.255'),(158,'2010-03-04 22:01:44',1,'configuration.php','gID=19&cID=406&action=save&','76.221.246.255'),(159,'2010-03-04 22:01:44',1,'configuration.php','gID=19&cID=406&','76.221.246.255'),(160,'2010-03-04 22:05:11',1,'configuration.php','gID=24&','76.221.246.255'),(161,'2010-03-04 22:05:22',1,'configuration.php','gID=24&cID=503&','76.221.246.255'),(162,'2010-03-04 22:05:29',1,'configuration.php','gID=24&cID=503&action=edit&','76.221.246.255'),(163,'2010-03-04 22:05:35',1,'configuration.php','gID=24&cID=503&action=save&','76.221.246.255'),(164,'2010-03-04 22:05:35',1,'configuration.php','gID=24&cID=503&','76.221.246.255'),(165,'2010-03-04 22:05:54',1,'configuration.php','gID=24&cID=506&','76.221.246.255'),(166,'2010-03-04 22:05:56',1,'configuration.php','gID=24&cID=506&action=edit&','76.221.246.255'),(167,'2010-03-04 22:06:00',1,'configuration.php','gID=24&cID=506&action=save&','76.221.246.255'),(168,'2010-03-04 22:06:00',1,'configuration.php','gID=24&cID=506&','76.221.246.255'),(169,'2010-03-04 22:06:25',1,'configuration.php','gID=24&cID=513&','76.221.246.255'),(170,'2010-03-04 22:06:28',1,'configuration.php','gID=24&cID=513&action=edit&','76.221.246.255'),(171,'2010-03-04 22:06:31',1,'configuration.php','gID=24&cID=513&action=save&','76.221.246.255'),(172,'2010-03-04 22:06:31',1,'configuration.php','gID=24&cID=513&','76.221.246.255'),(173,'2010-03-04 22:07:58',1,'alt_nav.php','','76.221.246.255'),(174,'2010-03-04 22:08:11',1,'specials.php','','76.221.246.255'),(175,'2010-03-04 22:08:17',1,'specials.php','action=new&','76.221.246.255'),(176,'2010-03-04 22:09:21',1,'specials.php','action=insert&go_back=&','76.221.246.255'),(177,'2010-03-04 22:09:21',1,'specials.php','sID=1&','76.221.246.255'),(178,'2010-03-04 22:09:43',1,'categories.php','action=new_product&cPath=1_6&pID=5&product_type=1&','76.221.246.255'),(179,'2010-03-04 22:09:46',1,'product.php','action=new_product&cPath=1_6&pID=5&product_type=1&','76.221.246.255'),(180,'2010-03-04 22:09:58',1,'categories.php','cPath=1_6&pID=5&','76.221.246.255'),(181,'2010-03-04 22:10:26',1,'specials.php','','76.221.246.255'),(182,'2010-03-04 22:10:30',1,'specials.php','page=1&sID=1&action=edit&','76.221.246.255'),(183,'2010-03-04 22:10:39',1,'specials.php','page=1&action=update&go_back=&','76.221.246.255'),(184,'2010-03-04 22:10:40',1,'specials.php','page=1&sID=1&','76.221.246.255'),(185,'2010-03-04 22:12:19',1,'configuration.php','gID=9&','76.221.246.255'),(186,'2010-03-04 22:12:41',1,'configuration.php','gID=9&cID=237&','76.221.246.255'),(187,'2010-03-04 22:12:48',1,'configuration.php','gID=9&cID=237&action=edit&','76.221.246.255'),(188,'2010-03-04 22:12:51',1,'configuration.php','gID=9&cID=237&action=save&','76.221.246.255'),(189,'2010-03-04 22:12:51',1,'configuration.php','gID=9&cID=237&','76.221.246.255'),(190,'2010-03-04 22:13:37',1,'configuration.php','gID=9&cID=235&','76.221.246.255'),(191,'2010-03-04 22:13:40',1,'configuration.php','gID=9&cID=235&action=edit&','76.221.246.255'),(192,'2010-03-04 22:13:52',1,'configuration.php','gID=9&cID=235&action=save&','76.221.246.255'),(193,'2010-03-04 22:13:53',1,'configuration.php','gID=9&cID=235&','76.221.246.255'),(194,'2010-03-04 22:15:50',1,'product_types.php','','76.221.246.255'),(195,'2010-03-04 22:16:33',1,'product_types.php','','76.221.246.255'),(196,'2010-03-04 22:16:38',1,'categories.php','','76.221.246.255'),(197,'2010-03-04 22:19:19',1,'product_types.php','','76.221.246.255'),(198,'2010-03-04 22:19:40',1,'product_types.php','page=1&ptID=1&action=layout&','76.221.246.255'),(199,'2010-03-04 22:20:02',1,'product_types.php','ptID=1&cID=6&action=layout&','76.221.246.255'),(200,'2010-03-04 22:20:05',1,'product_types.php','ptID=1&cID=6&action=layout_edit&','76.221.246.255'),(201,'2010-03-04 22:20:08',1,'product_types.php','ptID=1&cID=6&action=layout_save&','76.221.246.255'),(202,'2010-03-04 22:20:09',1,'product_types.php','gID=&cID=6&ptID=1&action=layout&','76.221.246.255'),(203,'2010-03-04 22:20:17',1,'product_types.php','ptID=1&cID=7&action=layout&','76.221.246.255'),(204,'2010-03-04 22:20:21',1,'product_types.php','ptID=1&cID=7&action=layout_edit&','76.221.246.255'),(205,'2010-03-04 22:20:25',1,'product_types.php','ptID=1&cID=7&action=layout_save&','76.221.246.255'),(206,'2010-03-04 22:20:25',1,'product_types.php','gID=&cID=7&ptID=1&action=layout&','76.221.246.255'),(207,'2010-03-04 22:20:42',1,'product_types.php','ptID=1&cID=14&action=layout_edit&','76.221.246.255'),(208,'2010-03-04 22:20:45',1,'product_types.php','ptID=1&cID=14&action=layout_save&','76.221.246.255'),(209,'2010-03-04 22:20:46',1,'product_types.php','gID=&cID=14&ptID=1&action=layout&','76.221.246.255'),(210,'2010-03-04 22:22:00',1,'modules.php','set=payment&','76.221.246.255'),(211,'2010-03-04 22:22:19',1,'modules.php','set=payment&module=cod&','76.221.246.255'),(212,'2010-03-04 22:24:04',1,'modules.php','set=ordertotal&','76.221.246.255'),(213,'2010-03-04 22:30:53',1,'categories.php','','76.221.246.255'),(214,'2010-03-04 22:31:00',1,'categories.php','set_display_categories_dropdown=1&cID=&cPath=&','76.221.246.255'),(215,'2010-03-04 22:31:05',1,'categories.php','cPath=1&','76.221.246.255'),(216,'2010-03-04 22:31:11',1,'categories.php','cPath=1_5&','76.221.246.255'),(217,'2010-03-04 22:34:47',1,'product_types.php','','76.221.246.255'),(218,'2010-03-04 22:34:51',1,'product_types.php','page=1&ptID=1&action=layout&','76.221.246.255'),(219,'2010-03-04 22:35:05',1,'product_types.php','ptID=1&cID=2&action=layout&','76.221.246.255'),(220,'2010-03-04 22:35:07',1,'product_types.php','ptID=1&cID=2&action=layout_edit&','76.221.246.255'),(221,'2010-03-04 22:35:15',1,'product_types.php','ptID=1&cID=2&action=layout_save&','76.221.246.255'),(222,'2010-03-04 22:35:15',1,'product_types.php','gID=&cID=2&ptID=1&action=layout&','76.221.246.255'),(223,'2010-03-04 22:35:18',1,'product_types.php','ptID=1&cID=3&action=layout&','76.221.246.255'),(224,'2010-03-04 22:35:21',1,'product_types.php','ptID=1&cID=3&action=layout_edit&','76.221.246.255'),(225,'2010-03-04 22:35:26',1,'product_types.php','ptID=1&cID=3&action=layout_save&','76.221.246.255'),(226,'2010-03-04 22:35:27',1,'product_types.php','gID=&cID=3&ptID=1&action=layout&','76.221.246.255'),(227,'2010-03-04 22:37:58',1,'product_types.php','','76.221.246.255'),(228,'2010-03-04 22:38:08',1,'product_types.php','page=1&ptID=1&action=layout&','76.221.246.255'),(229,'2010-03-04 22:38:20',1,'product_types.php','','76.221.246.255'),(230,'2010-03-04 22:38:24',1,'product_types.php','page=1&ptID=1&action=edit&','76.221.246.255'),(231,'2010-03-04 22:38:30',1,'product_types.php','page=1&ptID=1&','76.221.246.255'),(232,'2010-03-04 23:01:37',1,'modules.php','set=shipping&','76.221.246.255'),(233,'2010-03-04 23:02:35',1,'configuration.php','gID=7&','76.221.246.255'),(234,'2010-03-04 23:02:45',1,'configuration.php','gID=7&cID=203&','76.221.246.255'),(235,'2010-03-04 23:02:49',1,'configuration.php','gID=7&cID=203&action=edit&','76.221.246.255'),(236,'2010-03-04 23:04:07',1,'configuration.php','gID=7&cID=203&action=save&','76.221.246.255'),(237,'2010-03-04 23:04:08',1,'configuration.php','gID=7&cID=203&','76.221.246.255'),(238,'2010-03-04 23:04:25',1,'configuration.php','gID=7&cID=207&','76.221.246.255'),(239,'2010-03-04 23:04:29',1,'configuration.php','gID=7&cID=207&action=edit&','76.221.246.255'),(240,'2010-03-04 23:04:34',1,'configuration.php','gID=7&cID=207&action=save&','76.221.246.255'),(241,'2010-03-04 23:04:34',1,'configuration.php','gID=7&cID=207&','76.221.246.255'),(242,'2010-03-04 23:07:06',1,'configuration.php','gID=19&','76.221.246.255'),(243,'2010-03-04 23:07:41',1,'configuration.php','gID=19&cID=422&','76.221.246.255'),(244,'2010-03-04 23:07:56',1,'configuration.php','gID=19&cID=422&action=edit&','76.221.246.255'),(245,'2010-03-04 23:08:21',1,'configuration.php','gID=19&cID=422&action=save&','76.221.246.255'),(246,'2010-03-04 23:08:21',1,'configuration.php','gID=19&cID=422&','76.221.246.255'),(247,'2010-03-04 23:09:56',1,'orders.php','','76.221.246.255'),(248,'2010-03-04 23:10:03',1,'categories.php','','76.221.246.255'),(249,'2010-03-04 23:10:06',1,'categories.php','cPath=1&','76.221.246.255'),(250,'2010-03-04 23:10:09',1,'categories.php','cPath=1_4&','76.221.246.255'),(251,'2010-03-04 23:10:14',1,'categories.php','cPath=1&cID=4&','76.221.246.255'),(252,'2010-03-04 23:10:17',1,'categories.php','cPath=1_5&','76.221.246.255'),(253,'2010-03-04 23:10:23',1,'attributes_controller.php','products_filter=3&current_category_id=5&','76.221.246.255'),(254,'2010-03-04 23:10:23',1,'options_name_manager.php','','76.221.246.255'),(255,'2010-03-04 23:10:53',1,'banner_manager.php','','76.221.246.255'),(256,'2010-03-04 23:11:12',1,'banner_manager.php','page=1&bID=9&action=new&','76.221.246.255'),(257,'2010-03-04 23:13:53',1,'banner_manager.php','page=1&action=update&','76.221.246.255'),(258,'2010-03-04 23:13:53',1,'banner_manager.php','page=1&bID=9&','76.221.246.255'),(259,'2010-03-04 23:14:00',1,'banner_manager.php','page=1&bID=8&','76.221.246.255'),(260,'2010-03-04 23:14:04',1,'banner_manager.php','page=1&bID=8&action=new&','76.221.246.255'),(261,'2010-03-04 23:15:30',1,'banner_manager.php','page=1&action=update&','76.221.246.255'),(262,'2010-03-04 23:15:30',1,'banner_manager.php','page=1&bID=8&','76.221.246.255'),(263,'2010-03-04 23:15:42',1,'banner_manager.php','page=1&bID=7&','76.221.246.255'),(264,'2010-03-04 23:15:46',1,'banner_manager.php','page=1&bID=7&action=new&','76.221.246.255'),(265,'2010-03-04 23:16:39',1,'banner_manager.php','page=1&action=update&','76.221.246.255'),(266,'2010-03-04 23:16:42',1,'banner_manager.php','page=1&bID=7&','76.221.246.255'),(267,'2010-03-04 23:16:43',1,'banner_manager.php','page=1&action=update&','76.221.246.255'),(268,'2010-03-04 23:16:46',1,'banner_manager.php','page=1&bID=7&','76.221.246.255'),(269,'2010-03-04 23:16:57',1,'banner_manager.php','page=1&bID=4&','76.221.246.255'),(270,'2010-03-04 23:17:02',1,'banner_manager.php','page=1&bID=4&action=new&','76.221.246.255'),(271,'2010-03-04 23:17:54',1,'banner_manager.php','page=1&action=update&','76.221.246.255'),(272,'2010-03-04 23:17:54',1,'banner_manager.php','page=1&bID=4&','76.221.246.255'),(273,'2010-03-04 23:17:59',1,'banner_manager.php','page=1&bID=7&','76.221.246.255'),(274,'2010-03-04 23:18:05',1,'banner_manager.php','page=1&bID=7&action=new&','76.221.246.255'),(275,'2010-03-04 23:18:22',1,'banner_manager.php','page=1&bID=6&','76.221.246.255'),(276,'2010-03-04 23:18:26',1,'banner_manager.php','page=1&bID=6&action=new&','76.221.246.255'),(277,'2010-03-04 23:19:12',1,'banner_manager.php','page=1&action=update&','76.221.246.255'),(278,'2010-03-04 23:19:12',1,'banner_manager.php','page=1&bID=6&','76.221.246.255'),(279,'2010-03-04 23:19:22',1,'banner_manager.php','page=1&bID=5&','76.221.246.255'),(280,'2010-03-04 23:19:40',1,'banner_manager.php','page=1&bID=5&action=new&','76.221.246.255'),(281,'2010-03-04 23:20:23',1,'banner_manager.php','page=1&action=update&','76.221.246.255'),(282,'2010-03-04 23:20:24',1,'banner_manager.php','page=1&bID=5&','76.221.246.255'),(283,'2010-03-04 23:20:35',1,'banner_manager.php','page=1&bID=2&','76.221.246.255'),(284,'2010-03-04 23:20:42',1,'banner_manager.php','page=1&bID=2&action=new&','76.221.246.255'),(285,'2010-03-04 23:21:46',1,'banner_manager.php','page=1&action=update&','76.221.246.255'),(286,'2010-03-04 23:21:46',1,'banner_manager.php','page=1&bID=2&','76.221.246.255'),(287,'2010-03-04 23:22:50',1,'banner_manager.php','page=1&bID=5&','76.221.246.255'),(288,'2010-03-04 23:22:52',1,'banner_manager.php','page=1&bID=5&action=new&','76.221.246.255'),(289,'2010-03-04 23:23:03',1,'banner_manager.php','page=1&bID=9&','76.221.246.255'),(290,'2010-03-04 23:23:06',1,'banner_manager.php','page=1&bID=9&action=new&','76.221.246.255'),(291,'2010-03-04 23:23:31',1,'banner_manager.php','page=1&action=update&','76.221.246.255'),(292,'2010-03-04 23:23:32',1,'banner_manager.php','page=1&bID=9&','76.221.246.255'),(293,'2010-03-04 23:25:02',1,'banner_manager.php','page=1&bID=3&','76.221.246.255'),(294,'2010-03-04 23:25:07',1,'banner_manager.php','page=1&bID=3&action=new&','76.221.246.255'),(295,'2010-03-04 23:25:49',1,'banner_manager.php','page=1&bID=3&action=new&','76.221.246.255'),(296,'2010-03-04 23:27:17',1,'banner_manager.php','page=1&bID=2&','76.221.246.255'),(297,'2010-03-04 23:27:21',1,'banner_manager.php','page=1&bID=2&action=new&','76.221.246.255'),(298,'2010-03-04 23:27:33',1,'banner_manager.php','page=1&bID=8&','76.221.246.255'),(299,'2010-03-04 23:27:36',1,'banner_manager.php','page=1&bID=8&action=new&','76.221.246.255'),(300,'2010-03-04 23:27:50',1,'banner_manager.php','page=1&bID=9&','76.221.246.255'),(301,'2010-03-04 23:27:53',1,'banner_manager.php','page=1&bID=9&action=new&','76.221.246.255'),(302,'2010-03-04 23:28:16',1,'banner_manager.php','page=1&action=update&','76.221.246.255'),(303,'2010-03-04 23:28:17',1,'banner_manager.php','page=1&bID=9&','76.221.246.255'),(304,'2010-03-04 23:28:21',1,'banner_manager.php','page=1&bID=5&','76.221.246.255'),(305,'2010-03-04 23:28:25',1,'banner_manager.php','page=1&bID=5&action=new&','76.221.246.255'),(306,'2010-03-04 23:28:43',1,'banner_manager.php','page=1&action=update&','76.221.246.255'),(307,'2010-03-04 23:28:43',1,'banner_manager.php','page=1&bID=5&','76.221.246.255'),(308,'2010-03-05 08:14:05',0,'login.php ','','76.221.246.255'),(309,'2010-03-05 08:20:55',0,'login.php admin','','76.221.246.255'),(310,'2010-03-05 08:21:06',1,'banner_manager.php','','76.221.246.255'),(311,'2010-03-05 08:21:20',1,'banner_manager.php','page=1&bID=2&','76.221.246.255'),(312,'2010-03-05 08:21:23',1,'banner_manager.php','page=1&bID=2&action=new&','76.221.246.255'),(313,'2010-03-05 08:21:33',1,'banner_manager.php','page=1&action=update&','76.221.246.255'),(314,'2010-03-05 08:21:33',1,'banner_manager.php','page=1&bID=2&','76.221.246.255'),(315,'2010-03-05 08:22:01',1,'banner_manager.php','page=1&bID=3&','76.221.246.255'),(316,'2010-03-05 08:22:05',1,'banner_manager.php','page=1&bID=3&action=new&','76.221.246.255'),(317,'2010-03-05 08:22:20',1,'banner_manager.php','page=1&bID=8&','76.221.246.255'),(318,'2010-03-05 08:22:24',1,'banner_manager.php','page=1&bID=8&action=new&','76.221.246.255'),(319,'2010-03-05 08:22:33',1,'banner_manager.php','page=1&bID=2&','76.221.246.255'),(320,'2010-03-05 08:22:37',1,'banner_manager.php','page=1&bID=2&action=new&','76.221.246.255'),(321,'2010-03-05 08:22:47',1,'banner_manager.php','page=1&bID=9&','76.221.246.255'),(322,'2010-03-05 08:23:02',1,'banner_manager.php','page=1&bID=9&action=new&','76.221.246.255'),(323,'2010-03-05 08:23:15',1,'banner_manager.php','page=1&action=update&','76.221.246.255'),(324,'2010-03-05 08:23:15',1,'banner_manager.php','page=1&bID=9&','76.221.246.255'),(325,'2010-03-05 08:23:40',1,'developers_tool_kit.php','','76.221.246.255'),(326,'2010-03-05 08:23:51',1,'developers_tool_kit.php','action=locate_configuration&','76.221.246.255'),(327,'2010-03-05 08:23:54',1,'developers_tool_kit.php','action=locate_all_files&','76.221.246.255'),(328,'2010-03-05 08:53:34',1,'layout_controller.php','','76.221.246.255'),(329,'2010-03-05 08:54:13',1,'layout_controller.php','page=&cID=99&','76.221.246.255'),(330,'2010-03-05 08:54:50',1,'layout_controller.php','page=&cID=99&action=edit&','76.221.246.255'),(331,'2010-03-05 08:55:02',1,'layout_controller.php','page=&cID=99&action=save&layout_box_name=specials.php&','76.221.246.255'),(332,'2010-03-05 08:55:03',1,'layout_controller.php','page=&cID=99&','76.221.246.255'),(333,'2010-03-05 08:56:08',1,'layout_controller.php','page=&cID=96&','76.221.246.255'),(334,'2010-03-05 08:56:11',1,'layout_controller.php','page=&cID=96&action=edit&','76.221.246.255'),(335,'2010-03-05 08:56:20',1,'layout_controller.php','page=&cID=96&action=save&layout_box_name=search.php&','76.221.246.255'),(336,'2010-03-05 08:56:21',1,'layout_controller.php','page=&cID=96&','76.221.246.255'),(337,'2010-03-05 08:59:09',1,'layout_controller.php','page=&cID=98&','76.221.246.255'),(338,'2010-03-05 08:59:12',1,'layout_controller.php','page=&cID=98&action=edit&','76.221.246.255'),(339,'2010-03-05 08:59:24',1,'layout_controller.php','page=&cID=98&action=save&layout_box_name=shopping_cart.php&','76.221.246.255'),(340,'2010-03-05 08:59:24',1,'layout_controller.php','page=&cID=98&','76.221.246.255'),(341,'2010-03-05 09:04:13',1,'configuration.php','gID=7&','76.221.246.255'),(342,'2010-03-05 09:04:28',1,'configuration.php','gID=7&cID=208&','76.221.246.255'),(343,'2010-03-05 09:04:37',1,'configuration.php','gID=7&cID=208&action=edit&','76.221.246.255'),(344,'2010-03-05 09:04:40',1,'configuration.php','gID=7&cID=208&action=save&','76.221.246.255'),(345,'2010-03-05 09:04:40',1,'configuration.php','gID=7&cID=208&','76.221.246.255'),(346,'2010-03-05 09:06:47',1,'developers_tool_kit.php','','76.221.246.255'),(347,'2010-03-05 09:07:02',1,'developers_tool_kit.php','action=locate_configuration&','76.221.246.255'),(348,'2010-03-05 10:39:58',0,'login.php ','','76.221.246.255'),(349,'2010-03-05 10:40:13',0,'login.php admin','','76.221.246.255'),(350,'2010-03-05 10:41:12',1,'developers_tool_kit.php','','76.221.246.255'),(351,'2010-03-05 10:41:25',1,'developers_tool_kit.php','action=locate_configuration&','76.221.246.255'),(352,'2010-03-05 10:55:18',1,'banner_manager.php','','76.221.246.255'),(353,'2010-03-05 10:55:35',1,'banner_manager.php','page=1&bID=1&','76.221.246.255'),(354,'2010-03-05 10:55:40',1,'banner_manager.php','page=1&bID=1&action=new&','76.221.246.255'),(355,'2010-03-05 10:57:01',1,'banner_manager.php','page=1&action=update&','76.221.246.255'),(356,'2010-03-05 10:57:02',1,'banner_manager.php','page=1&bID=1&','76.221.246.255'),(357,'2010-03-05 10:57:07',1,'banner_manager.php','page=1&bID=3&','76.221.246.255'),(358,'2010-03-05 10:57:10',1,'banner_manager.php','page=1&bID=3&action=new&','76.221.246.255'),(359,'2010-03-05 10:58:20',1,'banner_manager.php','page=1&action=update&','76.221.246.255'),(360,'2010-03-05 10:58:20',1,'banner_manager.php','page=1&bID=3&','76.221.246.255'),(361,'2010-03-05 11:02:01',1,'developers_tool_kit.php','','76.221.246.255'),(362,'2010-03-05 11:02:16',1,'developers_tool_kit.php','action=locate_configuration&','76.221.246.255'),(363,'2010-03-05 11:15:17',1,'developers_tool_kit.php','action=locate_configuration&','76.221.246.255'),(364,'2010-03-05 11:16:12',1,'developers_tool_kit.php','action=locate_all_files&','76.221.246.255'),(365,'2010-03-05 11:27:06',1,'product_types.php','','76.221.246.255'),(366,'2010-03-05 11:27:11',1,'product_types.php','page=1&ptID=1&action=layout&','76.221.246.255'),(367,'2010-03-05 11:27:17',1,'product_types.php','ptID=1&cID=1&action=layout_edit&','76.221.246.255'),(368,'2010-03-05 11:27:24',1,'product_types.php','ptID=1&cID=1&action=layout_save&','76.221.246.255'),(369,'2010-03-05 11:27:24',1,'product_types.php','gID=&cID=1&ptID=1&action=layout&','76.221.246.255'),(370,'2010-03-05 11:28:02',1,'product_types.php','ptID=1&cID=10&action=layout&','76.221.246.255'),(371,'2010-03-05 11:28:06',1,'product_types.php','ptID=1&cID=10&action=layout_edit&','76.221.246.255'),(372,'2010-03-05 11:28:12',1,'product_types.php','ptID=1&cID=10&action=layout_save&','76.221.246.255'),(373,'2010-03-05 11:28:12',1,'product_types.php','gID=&cID=10&ptID=1&action=layout&','76.221.246.255'),(374,'2010-03-05 11:28:18',1,'product_types.php','ptID=1&cID=9&action=layout&','76.221.246.255'),(375,'2010-03-05 11:28:20',1,'product_types.php','ptID=1&cID=9&action=layout_edit&','76.221.246.255'),(376,'2010-03-05 11:28:27',1,'product_types.php','ptID=1&cID=9&action=layout_save&','76.221.246.255'),(377,'2010-03-05 11:28:27',1,'product_types.php','gID=&cID=9&ptID=1&action=layout&','76.221.246.255'),(378,'2010-03-05 11:32:18',1,'developers_tool_kit.php','','76.221.246.255'),(379,'2010-03-05 11:32:31',1,'developers_tool_kit.php','action=locate_configuration&','76.221.246.255'),(380,'2010-03-05 11:43:49',1,'layout_controller.php','','76.221.246.255'),(381,'2010-03-05 11:44:23',1,'configuration.php','gID=8&','76.221.246.255'),(382,'2010-03-05 11:47:35',1,'option_name.php','','76.221.246.255'),(383,'2010-03-05 11:47:35',1,'options_name_manager.php','','76.221.246.255'),(384,'2010-03-05 11:49:08',1,'developers_tool_kit.php','','76.221.246.255'),(385,'2010-03-05 11:49:18',1,'developers_tool_kit.php','action=locate_configuration&','76.221.246.255'),(386,'2010-03-05 11:49:23',1,'developers_tool_kit.php','action=locate_all_files&','76.221.246.255'),(387,'2010-03-05 12:00:45',1,'configuration.php','gID=1&','76.221.246.255'),(388,'2010-03-05 12:00:54',1,'configuration.php','gID=1&cID=13&action=edit&','76.221.246.255'),(389,'2010-03-05 12:00:57',1,'configuration.php','gID=1&cID=13&action=save&','76.221.246.255'),(390,'2010-03-05 12:00:57',1,'configuration.php','gID=1&cID=13&','76.221.246.255'),(391,'2010-03-05 12:03:14',1,'attributes_controller.php','','76.221.246.255'),(392,'2010-03-05 12:03:15',1,'options_name_manager.php','','76.221.246.255'),(393,'2010-03-05 12:05:06',1,'attributes_controller.php','','76.221.246.255'),(394,'2010-03-05 12:05:06',1,'options_name_manager.php','','76.221.246.255'),(395,'2010-03-05 12:05:35',1,'categories.php','','76.221.246.255'),(396,'2010-03-05 12:05:40',1,'categories.php','cPath=1&','76.221.246.255'),(397,'2010-03-05 12:05:46',1,'categories.php','cPath=1_5&','76.221.246.255'),(398,'2010-03-05 12:05:54',1,'attributes_controller.php','products_filter=3&current_category_id=5&','76.221.246.255'),(399,'2010-03-05 12:05:55',1,'options_name_manager.php','','76.221.246.255'),(400,'2010-03-05 12:06:19',1,'options_name_manager.php','action=add_product_options&option_page=1&option_order_by=products_options_id&','76.221.246.255'),(401,'2010-03-05 12:06:19',1,'options_name_manager.php','option_page=1&option_order_by=products_options_id&','76.221.246.255'),(402,'2010-03-05 12:06:32',1,'options_name_manager.php','action=add_product_options&option_page=1&option_order_by=products_options_id&','76.221.246.255'),(403,'2010-03-05 12:06:32',1,'options_name_manager.php','option_page=1&option_order_by=products_options_id&','76.221.246.255'),(404,'2010-03-05 12:07:47',1,'options_name_manager.php','action=update_option&option_id=1&option_order_by=products_options_id&option_page=1&','76.221.246.255'),(405,'2010-03-05 12:08:02',1,'options_name_manager.php','action=update_option_name&option_page=1&option_order_by=products_options_id&','76.221.246.255'),(406,'2010-03-05 12:08:02',1,'options_name_manager.php','option_page=1&option_order_by=products_options_id&','76.221.246.255'),(407,'2010-03-05 12:08:15',1,'options_name_manager.php','action=update_option&option_id=2&option_order_by=products_options_id&option_page=1&','76.221.246.255'),(408,'2010-03-05 12:08:29',1,'options_name_manager.php','action=update_option_name&option_page=1&option_order_by=products_options_id&','76.221.246.255'),(409,'2010-03-05 12:08:29',1,'options_name_manager.php','option_page=1&option_order_by=products_options_id&','76.221.246.255'),(410,'2010-03-05 12:08:49',1,'options_name_manager.php','action=add_product_options&option_page=1&option_order_by=products_options_id&','76.221.246.255'),(411,'2010-03-05 12:08:49',1,'options_name_manager.php','option_page=1&option_order_by=products_options_id&','76.221.246.255'),(412,'2010-03-05 12:09:16',1,'options_name_manager.php','action=update_option&option_id=3&option_order_by=products_options_id&option_page=1&','76.221.246.255'),(413,'2010-03-05 12:09:23',1,'options_name_manager.php','action=update_option_name&option_page=1&option_order_by=products_options_id&','76.221.246.255'),(414,'2010-03-05 12:09:23',1,'options_name_manager.php','option_page=1&option_order_by=products_options_id&','76.221.246.255'),(415,'2010-03-05 12:10:10',1,'options_values_manager.php','','76.221.246.255'),(416,'2010-03-05 12:19:10',1,'options_name_manager.php','action=update_option&option_id=1&option_order_by=products_options_id&option_page=1&','76.221.246.255'),(417,'2010-03-05 12:19:20',1,'options_name_manager.php','action=update_option_name&option_page=1&option_order_by=products_options_id&','76.221.246.255'),(418,'2010-03-05 12:19:20',1,'options_name_manager.php','option_page=1&option_order_by=products_options_id&','76.221.246.255'),(419,'2010-03-05 12:19:26',1,'options_name_manager.php','action=update_option&option_id=2&option_order_by=products_options_id&option_page=1&','76.221.246.255'),(420,'2010-03-05 12:19:33',1,'options_name_manager.php','action=update_option_name&option_page=1&option_order_by=products_options_id&','76.221.246.255'),(421,'2010-03-05 12:19:34',1,'options_name_manager.php','option_page=1&option_order_by=products_options_id&','76.221.246.255'),(422,'2010-03-05 12:19:37',1,'options_name_manager.php','action=update_option&option_id=3&option_order_by=products_options_id&option_page=1&','76.221.246.255'),(423,'2010-03-05 12:19:44',1,'options_name_manager.php','action=update_option_name&option_page=1&option_order_by=products_options_id&','76.221.246.255'),(424,'2010-03-05 12:19:44',1,'options_name_manager.php','option_page=1&option_order_by=products_options_id&','76.221.246.255'),(425,'2010-03-05 12:19:47',1,'options_values_manager.php','','76.221.246.255'),(426,'2010-03-05 12:19:58',1,'attributes_controller.php','','76.221.246.255'),(427,'2010-03-05 12:20:03',1,'options_name_manager.php','','76.221.246.255'),(428,'2010-03-05 12:20:09',1,'options_name_manager.php','action=delete_product_option&option_id=1&option_page=1&option_order_by=products_options_id&','76.221.246.255'),(429,'2010-03-05 12:20:11',1,'options_name_manager.php','action=delete_option&option_id=1&option_page=1&option_order_by=products_options_id&','76.221.246.255'),(430,'2010-03-05 12:20:11',1,'options_name_manager.php','option_page=1&option_order_by=products_options_id&','76.221.246.255'),(431,'2010-03-05 12:20:14',1,'options_name_manager.php','action=delete_product_option&option_id=2&option_page=1&option_order_by=products_options_id&','76.221.246.255'),(432,'2010-03-05 12:20:16',1,'options_name_manager.php','action=delete_option&option_id=2&option_page=1&option_order_by=products_options_id&','76.221.246.255'),(433,'2010-03-05 12:20:16',1,'options_name_manager.php','option_page=1&option_order_by=products_options_id&','76.221.246.255'),(434,'2010-03-05 12:20:20',1,'options_name_manager.php','action=delete_product_option&option_id=3&option_page=1&option_order_by=products_options_id&','76.221.246.255'),(435,'2010-03-05 12:20:22',1,'options_name_manager.php','action=delete_option&option_id=3&option_page=1&option_order_by=products_options_id&','76.221.246.255'),(436,'2010-03-05 12:20:22',1,'options_name_manager.php','option_page=1&option_order_by=products_options_id&','76.221.246.255'),(437,'2010-03-05 12:20:32',1,'options_name_manager.php','action=add_product_options&option_page=1&option_order_by=products_options_id&','76.221.246.255'),(438,'2010-03-05 12:20:32',1,'options_name_manager.php','option_page=1&option_order_by=products_options_id&','76.221.246.255'),(439,'2010-03-05 12:20:35',1,'options_values_manager.php','','76.221.246.255'),(440,'2010-03-05 12:20:57',1,'options_values_manager.php','action=add_product_option_values&value_page=1&','76.221.246.255'),(441,'2010-03-05 12:20:57',1,'options_values_manager.php','value_page=1&','76.221.246.255'),(442,'2010-03-05 12:21:13',1,'options_values_manager.php','action=add_product_option_values&value_page=1&','76.221.246.255'),(443,'2010-03-05 12:21:14',1,'options_values_manager.php','value_page=1&','76.221.246.255'),(444,'2010-03-05 12:21:31',1,'options_values_manager.php','action=add_product_option_values&value_page=1&','76.221.246.255'),(445,'2010-03-05 12:21:31',1,'options_values_manager.php','value_page=1&','76.221.246.255'),(446,'2010-03-05 12:21:56',1,'categories.php','','76.221.246.255'),(447,'2010-03-05 12:22:02',1,'categories.php','cPath=1&','76.221.246.255'),(448,'2010-03-05 12:22:06',1,'categories.php','cPath=1_5&','76.221.246.255'),(449,'2010-03-05 12:22:13',1,'attributes_controller.php','products_filter=3&current_category_id=5&','76.221.246.255'),(450,'2010-03-05 12:23:02',1,'attributes_controller.php','action=add_product_attributes&attribute_page=1&products_filter=3&','76.221.246.255'),(451,'2010-03-05 12:23:03',1,'attributes_controller.php','attribute_page=1&products_filter=3&current_category_id=5&','76.221.246.255'),(452,'2010-03-05 12:23:43',1,'attributes_controller.php','action=add_product_attributes&attribute_page=1&products_filter=3&','76.221.246.255'),(453,'2010-03-05 12:23:43',1,'attributes_controller.php','attribute_page=1&products_filter=3&current_category_id=5&','76.221.246.255'),(454,'2010-03-05 12:24:14',1,'attributes_controller.php','action=add_product_attributes&attribute_page=1&products_filter=3&','76.221.246.255'),(455,'2010-03-05 12:24:14',1,'attributes_controller.php','attribute_page=1&products_filter=3&current_category_id=5&','76.221.246.255'),(456,'2010-03-05 12:25:12',1,'attributes_controller.php','action=add_product_attributes&attribute_page=1&products_filter=3&','76.221.246.255'),(457,'2010-03-05 12:25:13',1,'attributes_controller.php','attribute_page=1&products_filter=3&current_category_id=5&','76.221.246.255'),(458,'2010-03-05 12:25:31',1,'categories.php','','76.221.246.255'),(459,'2010-03-05 12:25:34',1,'categories.php','cPath=1&','76.221.246.255'),(460,'2010-03-05 12:25:42',1,'categories.php','cPath=1&cID=5&action=edit_category&','76.221.246.255'),(461,'2010-03-05 12:25:58',1,'categories.php','cPath=1_5&','76.221.246.255'),(462,'2010-03-05 12:26:02',1,'product.php','cPath=1_5&product_type=1&pID=3&action=new_product&','76.221.246.255'),(463,'2010-03-05 12:26:21',1,'product.php','cPath=1_5&product_type=1&pID=3&action=new_product_preview&','76.221.246.255'),(464,'2010-03-05 12:26:26',1,'product.php','cPath=1_5&product_type=1&pID=3&action=update_product&','76.221.246.255'),(465,'2010-03-05 12:26:26',1,'categories.php','cPath=1_5&pID=3&','76.221.246.255'),(466,'2010-03-05 12:26:36',1,'product.php','cPath=1_5&product_type=1&pID=3&action=new_product&','76.221.246.255'),(467,'2010-03-05 12:26:47',1,'categories.php','cPath=1_5&pID=3&','76.221.246.255'),(468,'2010-03-05 12:27:00',1,'categories.php','cPath=1_5&pID=3&action=attribute_features&page=1&','76.221.246.255'),(469,'2010-03-05 12:27:12',1,'attributes_controller.php','products_filter=3&current_category_id=5&','76.221.246.255'),(470,'2010-03-05 12:27:35',1,'attributes_controller.php','action=update_attribute&attribute_id=1&attribute_page=1&products_filter=3&current_category_id=5&','76.221.246.255'),(471,'2010-03-05 12:28:00',1,'attributes_controller.php','action=update_product_attribute&attribute_page=1&products_filter=3&','76.221.246.255'),(472,'2010-03-05 12:28:01',1,'attributes_controller.php','attribute_page=1&products_filter=3&current_category_id=5&','76.221.246.255'),(473,'2010-03-05 12:28:14',1,'attributes_controller.php','action=update_attribute&attribute_id=2&attribute_page=1&products_filter=3&current_category_id=5&','76.221.246.255'),(474,'2010-03-05 12:28:42',1,'attributes_controller.php','action=update_product_attribute&attribute_page=1&products_filter=3&','76.221.246.255'),(475,'2010-03-05 12:28:42',1,'attributes_controller.php','attribute_page=1&products_filter=3&current_category_id=5&','76.221.246.255'),(476,'2010-03-05 12:28:54',1,'attributes_controller.php','action=update_attribute&attribute_id=1&attribute_page=1&products_filter=3&current_category_id=5&','76.221.246.255'),(477,'2010-03-05 12:29:08',1,'attributes_controller.php','action=update_product_attribute&attribute_page=1&products_filter=3&','76.221.246.255'),(478,'2010-03-05 12:29:09',1,'attributes_controller.php','attribute_page=1&products_filter=3&current_category_id=5&','76.221.246.255'),(479,'2010-03-05 12:29:21',1,'categories.php','action=new_product&cPath=5&pID=3&product_type=1&','76.221.246.255'),(480,'2010-03-05 12:29:21',1,'product.php','action=new_product&cPath=5&pID=3&product_type=1&','76.221.246.255'),(481,'2010-03-05 12:29:32',1,'categories.php','cPath=5&pID=3&','76.221.246.255'),(482,'2010-03-05 12:33:08',1,'categories.php','cPath=5&pID=3&action=attribute_features&page=1&','76.221.246.255'),(483,'2010-03-05 12:33:17',1,'product.php','page=1&product_type=1&cPath=5&pID=3&action=new_product&','76.221.246.255'),(484,'2010-03-05 12:33:23',1,'categories.php','cPath=5&pID=3&page=1&','76.221.246.255'),(485,'2010-03-05 12:33:26',1,'categories.php','cPath=5&pID=3&action=attribute_features&page=1&','76.221.246.255'),(486,'2010-03-05 12:33:33',1,'attributes_controller.php','products_filter=3&current_category_id=5&','76.221.246.255'),(487,'2010-03-05 12:33:51',1,'attributes_controller.php','action=update_attribute&attribute_id=1&attribute_page=1&products_filter=3&current_category_id=5&','76.221.246.255'),(488,'2010-03-05 12:34:24',1,'attributes_controller.php','action=update_product_attribute&attribute_page=1&products_filter=3&','76.221.246.255'),(489,'2010-03-05 12:34:25',1,'attributes_controller.php','attribute_page=1&products_filter=3&current_category_id=5&','76.221.246.255'),(490,'2010-03-05 12:34:36',1,'attributes_controller.php','action=update_attribute&attribute_id=2&attribute_page=1&products_filter=3&current_category_id=5&','76.221.246.255'),(491,'2010-03-05 12:34:46',1,'attributes_controller.php','action=update_product_attribute&attribute_page=1&products_filter=3&','76.221.246.255'),(492,'2010-03-05 12:34:46',1,'attributes_controller.php','attribute_page=1&products_filter=3&current_category_id=5&','76.221.246.255'),(493,'2010-03-05 12:34:52',1,'attributes_controller.php','action=update_attribute&attribute_id=2&attribute_page=1&products_filter=3&current_category_id=5&','76.221.246.255'),(494,'2010-03-05 12:35:10',1,'attributes_controller.php','attribute_page=1&products_filter=3&current_category_id=5&','76.221.246.255'),(495,'2010-03-05 12:35:16',1,'attributes_controller.php','action=update_attribute&attribute_id=2&attribute_page=1&products_filter=3&current_category_id=5&','76.221.246.255'),(496,'2010-03-05 12:35:34',1,'attributes_controller.php','action=update_product_attribute&attribute_page=1&products_filter=3&','76.221.246.255'),(497,'2010-03-05 12:35:34',1,'attributes_controller.php','attribute_page=1&products_filter=3&current_category_id=5&','76.221.246.255'),(498,'2010-03-05 12:35:45',1,'attributes_controller.php','action=update_attribute&attribute_id=3&attribute_page=1&products_filter=3&current_category_id=5&','76.221.246.255'),(499,'2010-03-05 12:36:00',1,'attributes_controller.php','action=update_product_attribute&attribute_page=1&products_filter=3&','76.221.246.255'),(500,'2010-03-05 12:36:00',1,'attributes_controller.php','attribute_page=1&products_filter=3&current_category_id=5&','76.221.246.255'),(501,'2010-03-05 12:36:09',1,'attributes_controller.php','action=update_attribute&attribute_id=2&attribute_page=1&products_filter=3&current_category_id=5&','76.221.246.255'),(502,'2010-03-05 12:36:19',1,'attributes_controller.php','action=update_product_attribute&attribute_page=1&products_filter=3&','76.221.246.255'),(503,'2010-03-05 12:36:19',1,'attributes_controller.php','attribute_page=1&products_filter=3&current_category_id=5&','76.221.246.255'),(504,'2010-03-05 12:36:29',1,'attributes_controller.php','action=update_attribute&attribute_id=1&attribute_page=1&products_filter=3&current_category_id=5&','76.221.246.255'),(505,'2010-03-05 12:36:44',1,'attributes_controller.php','action=update_product_attribute&attribute_page=1&products_filter=3&','76.221.246.255'),(506,'2010-03-05 12:36:44',1,'attributes_controller.php','attribute_page=1&products_filter=3&current_category_id=5&','76.221.246.255'),(507,'2010-03-05 12:37:12',1,'categories.php','action=new_product&cPath=5&pID=3&product_type=1&','76.221.246.255'),(508,'2010-03-05 12:37:13',1,'product.php','action=new_product&cPath=5&pID=3&product_type=1&','76.221.246.255'),(509,'2010-03-05 12:37:21',1,'product.php','cPath=5&product_type=1&pID=3&action=new_product_preview&','76.221.246.255'),(510,'2010-03-05 12:37:27',1,'product.php','cPath=5&product_type=1&pID=3&action=update_product&','76.221.246.255'),(511,'2010-03-05 12:37:28',1,'categories.php','cPath=5&pID=3&','76.221.246.255'),(512,'2010-03-05 12:37:37',1,'attributes_controller.php','products_filter=4&current_category_id=5&','76.221.246.255'),(513,'2010-03-05 12:37:51',1,'categories.php','action=new_product&cPath=5&pID=4&product_type=1&','76.221.246.255'),(514,'2010-03-05 12:37:51',1,'product.php','action=new_product&cPath=5&pID=4&product_type=1&','76.221.246.255'),(515,'2010-03-05 12:38:00',1,'product.php','cPath=5&product_type=1&pID=4&action=new_product_preview&','76.221.246.255'),(516,'2010-03-05 12:38:03',1,'product.php','cPath=5&product_type=1&pID=4&action=update_product&','76.221.246.255'),(517,'2010-03-05 12:38:03',1,'categories.php','cPath=5&pID=4&','76.221.246.255'),(518,'2010-03-05 12:38:08',1,'product.php','cPath=5&product_type=1&pID=4&action=new_product&','76.221.246.255'),(519,'2010-03-05 12:38:22',1,'product.php','cPath=5&product_type=1&pID=4&action=new_product_preview&','76.221.246.255'),(520,'2010-03-05 12:38:25',1,'product.php','cPath=5&product_type=1&pID=4&action=update_product&','76.221.246.255'),(521,'2010-03-05 12:38:25',1,'categories.php','cPath=5&pID=4&','76.221.246.255'),(522,'2010-03-05 12:38:32',1,'attributes_controller.php','products_filter=4&current_category_id=5&','76.221.246.255'),(523,'2010-03-05 12:38:57',1,'attributes_controller.php','action=add_product_attributes&attribute_page=1&products_filter=4&','76.221.246.255'),(524,'2010-03-05 12:38:58',1,'attributes_controller.php','attribute_page=1&products_filter=4&current_category_id=5&','76.221.246.255'),(525,'2010-03-05 12:39:31',1,'attributes_controller.php','action=add_product_attributes&attribute_page=1&products_filter=4&','76.221.246.255'),(526,'2010-03-05 12:39:31',1,'attributes_controller.php','attribute_page=1&products_filter=4&current_category_id=5&','76.221.246.255'),(527,'2010-03-05 12:39:56',1,'attributes_controller.php','action=add_product_attributes&attribute_page=1&products_filter=4&','76.221.246.255'),(528,'2010-03-05 12:39:57',1,'attributes_controller.php','attribute_page=1&products_filter=4&current_category_id=5&','76.221.246.255'),(529,'2010-03-05 12:41:37',1,'attributes_controller.php','action=update_attribute&attribute_id=4&attribute_page=1&products_filter=4&current_category_id=5&','76.221.246.255'),(530,'2010-03-05 12:41:47',1,'attributes_controller.php','action=update_attribute&attribute_id=5&attribute_page=1&products_filter=4&current_category_id=5&','76.221.246.255'),(531,'2010-03-05 12:41:56',1,'attributes_controller.php','action=update_product_attribute&attribute_page=1&products_filter=4&','76.221.246.255'),(532,'2010-03-05 12:41:59',1,'attributes_controller.php','attribute_page=1&products_filter=4&current_category_id=5&','76.221.246.255'),(533,'2010-03-05 12:42:06',1,'attributes_controller.php','action=update_attribute&attribute_id=6&attribute_page=1&products_filter=4&current_category_id=5&','76.221.246.255'),(534,'2010-03-05 12:42:16',1,'attributes_controller.php','action=update_product_attribute&attribute_page=1&products_filter=4&','76.221.246.255'),(535,'2010-03-05 12:42:17',1,'attributes_controller.php','attribute_page=1&products_filter=4&current_category_id=5&','76.221.246.255'),(536,'2010-03-05 12:42:36',1,'attributes_controller.php','','76.221.246.255'),(537,'2010-03-05 12:42:50',1,'options_values_manager.php','','76.221.246.255'),(538,'2010-03-05 12:56:11',1,'categories.php','','76.221.246.255'),(539,'2010-03-05 12:56:15',1,'categories.php','cPath=1&','76.221.246.255'),(540,'2010-03-05 12:56:17',1,'categories.php','cPath=1_4&','76.221.246.255'),(541,'2010-03-05 12:56:20',1,'product.php','page=1&product_type=1&cPath=1_4&pID=1&action=new_product&','76.221.246.255'),(542,'2010-03-05 12:57:35',1,'product.php','cPath=1_4&product_type=1&pID=1&action=new_product_preview&page=1&','76.221.246.255'),(543,'2010-03-05 12:57:39',1,'product.php','cPath=1_4&product_type=1&pID=1&action=update_product&page=1&','76.221.246.255'),(544,'2010-03-05 12:57:39',1,'categories.php','cPath=1_4&pID=1&page=1&','76.221.246.255'),(545,'2010-03-05 13:01:04',1,'modules.php','set=ordertotal&','76.221.246.255'),(546,'2010-03-05 13:01:49',1,'modules.php','set=ordertotal&module=ot_coupon&','76.221.246.255'),(547,'2010-03-05 13:02:45',1,'coupon_admin.php','','76.221.246.255'),(548,'2010-03-05 13:06:03',1,'coupon_admin.php','page=0&cid=&action=new&','76.221.246.255'),(549,'2010-03-05 13:11:02',1,'coupon_admin.php','action=update&oldaction=new&cid=&page=0&','76.221.246.255'),(550,'2010-03-05 13:11:19',1,'coupon_admin.php','action=update_confirm&oldaction=new&cid=&page=0&','76.221.246.255'),(551,'2010-03-05 13:11:19',1,'coupon_admin.php','cid=1&page=0&','76.221.246.255'),(552,'2010-03-05 13:11:26',1,'coupon_admin.php','action=voucheredit&cid=1&page=1&','76.221.246.255'),(553,'2010-03-05 13:11:40',1,'coupon_admin.php','action=update&oldaction=voucheredit&cid=1&page=1&','76.221.246.255'),(554,'2010-03-05 13:11:44',1,'coupon_admin.php','action=update_confirm&oldaction=voucheredit&cid=1&page=1&','76.221.246.255'),(555,'2010-03-05 13:11:44',1,'coupon_admin.php','cid=1&page=1&','76.221.246.255'),(556,'2010-03-05 13:11:54',1,'coupon_restrict.php','cid=1&page=1&','76.221.246.255'),(557,'2010-03-05 13:14:37',1,'define_pages_editor.php','','76.221.246.255'),(558,'2010-03-05 13:14:44',1,'define_pages_editor.php','securityToken=9344a35f674cc297ac6471d76a6c295f&define_it=3&action=new_page&','76.221.246.255'),(559,'2010-03-05 13:16:44',1,'define_pages_editor.php','lngdir=english&filename=define_discount_coupon.php&action=save&','76.221.246.255'),(560,'2010-03-05 13:16:45',1,'define_pages_editor.php','','76.221.246.255'),(561,'2010-03-05 13:17:26',1,'alt_nav.php','','76.221.246.255'),(562,'2010-03-05 13:17:37',1,'coupon_admin.php','','76.221.246.255'),(563,'2010-03-05 13:17:40',1,'coupon_admin.php','action=voucheredit&cid=1&page=1&','76.221.246.255'),(564,'2010-03-05 13:18:04',1,'coupon_admin.php','action=update&oldaction=voucheredit&cid=1&page=1&','76.221.246.255'),(565,'2010-03-05 13:18:13',1,'define_pages_editor.php','','76.221.246.255'),(566,'2010-03-05 13:18:18',1,'define_pages_editor.php','securityToken=9344a35f674cc297ac6471d76a6c295f&define_it=3&action=new_page&','76.221.246.255'),(567,'2010-03-05 13:19:21',1,'define_pages_editor.php','lngdir=english&filename=define_discount_coupon.php&action=save&','76.221.246.255'),(568,'2010-03-05 13:19:21',1,'define_pages_editor.php','','76.221.246.255'),(569,'2010-03-05 13:19:26',1,'coupon_admin.php','','76.221.246.255'),(570,'2010-03-05 13:19:29',1,'coupon_admin.php','action=voucheredit&cid=1&page=1&','76.221.246.255'),(571,'2010-03-05 13:19:46',1,'coupon_admin.php','action=update&oldaction=voucheredit&cid=1&page=1&','76.221.246.255'),(572,'2010-03-05 13:19:50',1,'coupon_admin.php','action=update_confirm&oldaction=voucheredit&cid=1&page=1&','76.221.246.255'),(573,'2010-03-05 13:19:50',1,'coupon_admin.php','cid=1&page=1&','76.221.246.255'),(574,'2010-03-05 13:20:20',1,'define_pages_editor.php','','76.221.246.255'),(575,'2010-03-05 13:20:26',1,'define_pages_editor.php','securityToken=9344a35f674cc297ac6471d76a6c295f&define_it=3&action=new_page&','76.221.246.255'),(576,'2010-03-05 13:20:39',1,'define_pages_editor.php','lngdir=english&filename=define_discount_coupon.php&action=save&','76.221.246.255'),(577,'2010-03-05 13:20:40',1,'define_pages_editor.php','','76.221.246.255'),(578,'2010-03-05 13:24:11',1,'specials.php','','76.221.246.255'),(579,'2010-03-05 13:24:15',1,'specials.php','page=1&sID=1&action=edit&','76.221.246.255'),(580,'2010-03-05 13:24:41',1,'categories.php','','76.221.246.255'),(581,'2010-03-05 13:24:44',1,'categories.php','cPath=1&','76.221.246.255'),(582,'2010-03-05 13:24:54',1,'categories.php','cPath=1_6&','76.221.246.255'),(583,'2010-03-05 13:25:00',1,'product.php','cPath=1_6&product_type=1&pID=5&action=new_product&','76.221.246.255'),(584,'2010-03-05 13:27:52',1,'product.php','cPath=1_6&product_type=1&pID=5&action=new_product_preview&','76.221.246.255'),(585,'2010-03-05 13:27:57',1,'product.php','cPath=1_6&product_type=1&pID=5&action=update_product&','76.221.246.255'),(586,'2010-03-05 13:27:57',1,'categories.php','cPath=1_6&pID=5&','76.221.246.255'),(587,'2010-03-05 13:29:19',1,'banner_manager.php','','76.221.246.255'),(588,'2010-03-05 13:29:28',1,'banner_manager.php','page=1&bID=9&','76.221.246.255'),(589,'2010-03-05 13:29:31',1,'banner_manager.php','page=1&bID=9&action=new&','76.221.246.255'),(590,'2010-03-05 13:29:47',1,'banner_manager.php','page=1&bID=5&','76.221.246.255'),(591,'2010-03-05 13:29:49',1,'banner_manager.php','page=1&bID=5&action=new&','76.221.246.255'),(592,'2010-03-05 13:30:16',1,'banner_manager.php','page=1&action=update&','76.221.246.255'),(593,'2010-03-05 13:30:16',1,'banner_manager.php','page=1&bID=5&','76.221.246.255'),(594,'2010-03-05 13:30:52',1,'banner_manager.php','page=1&bID=5&action=new&','76.221.246.255'),(595,'2010-03-05 13:33:33',1,'banner_manager.php','page=1&action=update&','76.221.246.255'),(596,'2010-03-05 13:33:36',1,'banner_manager.php','page=1&bID=5&','76.221.246.255'),(597,'2010-03-05 20:57:21',0,'login.php ','','76.221.246.255'),(598,'2010-03-06 08:37:35',0,'login.php ','','76.221.246.255'),(599,'2010-03-06 11:07:21',0,'login.php admin1','','76.221.246.255'),(600,'2010-03-06 11:07:32',0,'login.php admin','','76.221.246.255'),(601,'2010-03-06 11:15:55',0,'login.php jbadmin','','76.221.246.255'),(602,'2010-03-06 11:16:02',0,'login.php jbadmin','','76.221.246.255'),(603,'2010-03-06 11:16:17',0,'password_forgotten.php ','','76.221.246.255'),(604,'2010-03-06 11:16:32',0,'password_forgotten.php jhbrake@comcast.net','','76.221.246.255'),(605,'2010-03-06 11:16:46',0,'password_forgotten.php jhbrake@live.com','','76.221.246.255'),(606,'2010-03-06 11:17:03',0,'password_forgotten.php jhbrake@lnsconstruct.com','','76.221.246.255'),(607,'2010-03-06 11:17:13',0,'password_forgotten.php jbrake@lnsconstruct.com','','76.221.246.255'),(608,'2010-03-06 11:17:38',0,'password_forgotten.php jack@mycbay.com','','76.221.246.255'),(609,'2010-03-06 11:17:44',0,'password_forgotten.php jack@mycbay.com','','76.221.246.255'),(610,'2010-03-06 11:24:09',0,'login.php ','','76.221.246.255'),(611,'2010-03-06 11:24:18',0,'login.php Admin','','76.221.246.255'),(612,'2010-03-06 11:24:46',2,'admin.php','','76.221.246.255'),(613,'2010-03-06 11:24:55',2,'admin.php','page=1&adminID=2&action=edit&','76.221.246.255'),(614,'2010-03-06 11:27:17',2,'admin.php','page=1&adminID=2&action=save&','76.221.246.255'),(615,'2010-03-06 11:27:18',2,'admin.php','page=1&adminID=2&','76.221.246.255'),(616,'2010-03-06 11:27:21',2,'admin.php','page=1&adminID=2&action=resetpassword&','76.221.246.255'),(617,'2010-03-06 11:27:43',2,'admin.php','page=1&adminID=2&action=reset&','76.221.246.255'),(618,'2010-03-06 11:27:43',2,'admin.php','page=1&adminID=2&','76.221.246.255'),(619,'2010-03-06 11:29:02',2,'developers_tool_kit.php','','76.221.246.255'),(620,'2010-03-06 11:31:10',2,'developers_tool_kit.php','','76.221.246.255'),(621,'2010-03-06 11:31:34',2,'developers_tool_kit.php','action=locate_configuration&','76.221.246.255'),(622,'2010-03-06 11:31:38',2,'developers_tool_kit.php','action=locate_all_files&','76.221.246.255'),(623,'2010-03-24 20:02:18',0,'login.php ','','76.221.246.255'),(624,'2010-03-24 20:05:35',0,'login.php ','','76.221.246.255'),(625,'2010-03-24 20:07:49',0,'login.php jbadmin','','76.221.246.255'),(626,'2010-03-24 20:08:10',2,'categories.php','','76.221.246.255'),(627,'2010-03-24 20:08:22',2,'categories.php','cPath=&action=new_category&','76.221.246.255'),(628,'2010-03-24 20:09:01',2,'categories.php','action=insert_category&cPath=&','76.221.246.255'),(629,'2010-03-24 20:09:01',2,'categories.php','cPath=&cID=7&','76.221.246.255'),(630,'2010-03-24 20:09:17',2,'categories.php','cPath=1&','76.221.246.255'),(631,'2010-03-24 20:09:23',2,'categories.php','cID=1&','76.221.246.255'),(632,'2010-03-24 20:09:28',2,'categories.php','cPath=&cID=7&action=move_category&','76.221.246.255'),(633,'2010-03-24 20:09:37',2,'categories.php','action=move_category_confirm&cPath=&','76.221.246.255'),(634,'2010-03-24 20:09:40',2,'categories.php','cPath=1&','76.221.246.255'),(635,'2010-03-24 20:35:57',2,'categories.php','cPath=1_7&','76.221.246.255'),(636,'2010-03-24 20:36:03',2,'categories.php','product_type=1&cPath=1_7&action=new_product&x=36&y=18&','76.221.246.255'),(637,'2010-03-24 20:36:04',2,'product.php','product_type=1&cPath=1_7&action=new_product&x=36&y=18&','76.221.246.255'),(638,'2010-03-24 20:38:05',2,'categories.php','cPath=1_7&','76.221.246.255'),(639,'2010-03-24 20:42:59',2,'categories.php','product_type=1&cPath=1_7&action=new_product&x=32&y=16&','76.221.246.255'),(640,'2010-03-24 20:42:59',2,'product.php','product_type=1&cPath=1_7&action=new_product&x=32&y=16&','76.221.246.255'),(641,'2010-03-24 20:49:10',2,'product.php','cPath=1_7&product_type=1&action=new_product_preview&','76.221.246.255'),(642,'2010-03-24 20:49:13',2,'product.php','cPath=1_7&product_type=1&action=insert_product&','76.221.246.255'),(643,'2010-03-24 20:49:16',2,'categories.php','cPath=1_7&pID=7&','76.221.246.255'),(644,'2010-03-24 20:49:24',2,'categories.php','product_type=1&cPath=1_7&action=new_product&x=56&y=15&','76.221.246.255'),(645,'2010-03-24 20:49:27',2,'product.php','product_type=1&cPath=1_7&action=new_product&x=56&y=15&','76.221.246.255'),(646,'2010-03-24 20:51:53',2,'product.php','cPath=1_7&product_type=1&action=new_product_preview&','76.221.246.255'),(647,'2010-03-24 20:51:56',2,'product.php','cPath=1_7&product_type=1&action=insert_product&','76.221.246.255'),(648,'2010-03-24 20:51:56',2,'categories.php','cPath=1_7&pID=8&','76.221.246.255'),(649,'2010-03-24 20:52:11',2,'categories.php','product_type=1&cPath=1_7&action=new_product&x=24&y=13&','76.221.246.255'),(650,'2010-03-24 20:52:11',2,'product.php','product_type=1&cPath=1_7&action=new_product&x=24&y=13&','76.221.246.255'),(651,'2010-03-24 20:52:48',2,'product.php','cPath=1_7&product_type=1&action=new_product_preview&','76.221.246.255'),(652,'2010-03-24 20:52:53',2,'product.php','cPath=1_7&product_type=1&action=insert_product&','76.221.246.255'),(653,'2010-03-24 20:52:54',2,'categories.php','cPath=1_7&pID=9&','76.221.246.255'),(654,'2010-03-24 20:52:58',2,'categories.php','product_type=1&cPath=1_7&action=new_product&x=27&y=4&','76.221.246.255'),(655,'2010-03-24 20:52:59',2,'product.php','product_type=1&cPath=1_7&action=new_product&x=27&y=4&','76.221.246.255'),(656,'2010-03-24 20:54:29',2,'product.php','cPath=1_7&product_type=1&action=new_product_preview&','76.221.246.255'),(657,'2010-03-24 20:54:32',2,'product.php','cPath=1_7&product_type=1&action=insert_product&','76.221.246.255'),(658,'2010-03-24 20:54:33',2,'categories.php','cPath=1_7&pID=10&','76.221.246.255'),(659,'2010-03-24 20:54:36',2,'categories.php','product_type=1&cPath=1_7&action=new_product&x=29&y=14&','76.221.246.255'),(660,'2010-03-24 20:54:37',2,'product.php','product_type=1&cPath=1_7&action=new_product&x=29&y=14&','76.221.246.255'),(661,'2010-03-24 20:55:20',2,'product.php','cPath=1_7&product_type=1&action=new_product_preview&','76.221.246.255'),(662,'2010-03-24 20:55:24',2,'product.php','cPath=1_7&product_type=1&action=insert_product&','76.221.246.255'),(663,'2010-03-24 20:55:25',2,'categories.php','cPath=1_7&pID=11&','76.221.246.255'),(664,'2010-03-24 20:55:28',2,'categories.php','product_type=1&cPath=1_7&action=new_product&x=46&y=18&','76.221.246.255'),(665,'2010-03-24 20:55:28',2,'product.php','product_type=1&cPath=1_7&action=new_product&x=46&y=18&','76.221.246.255'),(666,'2010-03-24 20:56:27',2,'product.php','cPath=1_7&product_type=1&action=new_product_preview&','76.221.246.255'),(667,'2010-03-24 20:56:31',2,'product.php','cPath=1_7&product_type=1&action=insert_product&','76.221.246.255'),(668,'2010-03-24 20:56:32',2,'categories.php','cPath=1_7&pID=12&','76.221.246.255'),(669,'2010-03-24 20:56:38',2,'categories.php','product_type=1&cPath=1_7&action=new_product&x=46&y=7&','76.221.246.255'),(670,'2010-03-24 20:56:39',2,'product.php','product_type=1&cPath=1_7&action=new_product&x=46&y=7&','76.221.246.255'),(671,'2010-03-24 20:57:20',2,'product.php','cPath=1_7&product_type=1&action=new_product_preview&','76.221.246.255'),(672,'2010-03-24 20:57:22',2,'product.php','cPath=1_7&product_type=1&action=insert_product&','76.221.246.255'),(673,'2010-03-24 20:57:23',2,'categories.php','cPath=1_7&pID=13&','76.221.246.255'),(674,'2010-03-24 20:57:27',2,'categories.php','product_type=1&cPath=1_7&action=new_product&x=61&y=15&','76.221.246.255'),(675,'2010-03-24 20:57:30',2,'product.php','product_type=1&cPath=1_7&action=new_product&x=61&y=15&','76.221.246.255'),(676,'2010-03-24 20:58:50',2,'product.php','cPath=1_7&product_type=1&action=new_product_preview&','76.221.246.255'),(677,'2010-03-24 20:58:57',2,'product.php','cPath=1_7&product_type=1&action=insert_product&','76.221.246.255'),(678,'2010-03-24 20:58:57',2,'categories.php','cPath=1_7&pID=14&','76.221.246.255'),(679,'2010-03-24 20:59:10',2,'categories.php','product_type=1&cPath=1_7&action=new_product&x=85&y=1&','76.221.246.255'),(680,'2010-03-24 20:59:10',2,'product.php','product_type=1&cPath=1_7&action=new_product&x=85&y=1&','76.221.246.255'),(681,'2010-03-24 20:59:56',2,'product.php','cPath=1_7&product_type=1&action=new_product_preview&','76.221.246.255'),(682,'2010-03-24 20:59:59',2,'product.php','cPath=1_7&product_type=1&action=insert_product&','76.221.246.255'),(683,'2010-03-24 20:59:59',2,'categories.php','cPath=1_7&pID=15&','76.221.246.255'),(684,'2010-03-24 21:00:05',2,'categories.php','product_type=1&cPath=1_7&action=new_product&x=37&y=16&','76.221.246.255'),(685,'2010-03-24 21:00:09',2,'product.php','product_type=1&cPath=1_7&action=new_product&x=37&y=16&','76.221.246.255'),(686,'2010-03-24 21:01:01',2,'product.php','cPath=1_7&product_type=1&action=new_product_preview&','76.221.246.255'),(687,'2010-03-24 21:01:05',2,'product.php','cPath=1_7&product_type=1&action=insert_product&','76.221.246.255'),(688,'2010-03-24 21:01:06',2,'categories.php','cPath=1_7&pID=16&','76.221.246.255'),(689,'2010-03-24 21:01:10',2,'categories.php','product_type=1&cPath=1_7&action=new_product&x=46&y=12&','76.221.246.255'),(690,'2010-03-24 21:01:10',2,'product.php','product_type=1&cPath=1_7&action=new_product&x=46&y=12&','76.221.246.255'),(691,'2010-03-24 21:14:45',2,'categories.php','cPath=1_7&','76.221.246.255'),(692,'2010-03-24 21:15:03',2,'categories.php','product_type=1&cPath=1_7&action=new_product&x=19&y=6&','76.221.246.255'),(693,'2010-03-24 21:15:03',2,'product.php','product_type=1&cPath=1_7&action=new_product&x=19&y=6&','76.221.246.255'),(694,'2010-03-24 21:15:54',2,'product.php','cPath=1_7&product_type=1&action=new_product_preview&','76.221.246.255'),(695,'2010-03-24 21:15:57',2,'product.php','cPath=1_7&product_type=1&action=insert_product&','76.221.246.255'),(696,'2010-03-24 21:15:57',2,'categories.php','cPath=1_7&pID=17&','76.221.246.255'),(697,'2010-03-24 21:16:59',2,'categories.php','product_type=1&cPath=1_7&action=new_product&x=66&y=4&','76.221.246.255'),(698,'2010-03-24 21:17:02',2,'product.php','product_type=1&cPath=1_7&action=new_product&x=66&y=4&','76.221.246.255'),(699,'2010-03-24 21:17:44',2,'product.php','cPath=1_7&product_type=1&action=new_product_preview&','76.221.246.255'),(700,'2010-03-24 21:17:46',2,'product.php','cPath=1_7&product_type=1&action=insert_product&','76.221.246.255'),(701,'2010-03-24 21:17:47',2,'categories.php','cPath=1_7&pID=18&','76.221.246.255'),(702,'2010-03-24 21:18:09',2,'categories.php','product_type=1&cPath=1_7&action=new_product&x=34&y=12&','76.221.246.255'),(703,'2010-03-24 21:18:10',2,'product.php','product_type=1&cPath=1_7&action=new_product&x=34&y=12&','76.221.246.255'),(704,'2010-03-24 21:18:42',2,'product.php','cPath=1_7&product_type=1&action=new_product_preview&','76.221.246.255'),(705,'2010-03-24 21:18:51',2,'product.php','cPath=1_7&product_type=1&action=insert_product&','76.221.246.255'),(706,'2010-03-24 21:18:52',2,'categories.php','cPath=1_7&pID=19&','76.221.246.255'),(707,'2010-03-24 21:18:56',2,'categories.php','product_type=1&cPath=1_7&action=new_product&x=71&y=19&','76.221.246.255'),(708,'2010-03-24 21:18:56',2,'product.php','product_type=1&cPath=1_7&action=new_product&x=71&y=19&','76.221.246.255'),(709,'2010-03-24 21:19:28',2,'product.php','cPath=1_7&product_type=1&action=new_product_preview&','76.221.246.255'),(710,'2010-03-24 21:19:31',2,'product.php','cPath=1_7&product_type=1&action=insert_product&','76.221.246.255'),(711,'2010-03-24 21:19:31',2,'categories.php','cPath=1_7&pID=20&','76.221.246.255'),(712,'2010-03-24 21:21:49',2,'categories.php','product_type=1&cPath=1_7&action=new_product&x=62&y=5&','76.221.246.255'),(713,'2010-03-24 21:21:50',2,'product.php','product_type=1&cPath=1_7&action=new_product&x=62&y=5&','76.221.246.255'),(714,'2010-03-24 21:22:37',2,'product.php','cPath=1_7&product_type=1&action=new_product_preview&','76.221.246.255'),(715,'2010-03-24 21:22:41',2,'product.php','cPath=1_7&product_type=1&action=insert_product&','76.221.246.255'),(716,'2010-03-24 21:22:41',2,'categories.php','cPath=1_7&pID=21&','76.221.246.255'),(717,'2010-03-24 21:22:53',2,'categories.php','product_type=1&cPath=1_7&action=new_product&x=54&y=19&','76.221.246.255'),(718,'2010-03-24 21:22:53',2,'product.php','product_type=1&cPath=1_7&action=new_product&x=54&y=19&','76.221.246.255'),(719,'2010-03-24 21:23:20',2,'product.php','cPath=1_7&product_type=1&action=new_product_preview&','76.221.246.255'),(720,'2010-03-24 21:23:23',2,'product.php','cPath=1_7&product_type=1&action=insert_product&','76.221.246.255'),(721,'2010-03-24 21:23:23',2,'categories.php','cPath=1_7&pID=22&','76.221.246.255'),(722,'2010-03-24 21:23:31',2,'categories.php','product_type=1&cPath=1_7&action=new_product&x=76&y=9&','76.221.246.255'),(723,'2010-03-24 21:23:32',2,'product.php','product_type=1&cPath=1_7&action=new_product&x=76&y=9&','76.221.246.255'),(724,'2010-03-24 21:24:09',2,'product.php','cPath=1_7&product_type=1&action=new_product_preview&','76.221.246.255'),(725,'2010-03-24 21:24:17',2,'product.php','cPath=1_7&product_type=1&action=insert_product&','76.221.246.255'),(726,'2010-03-24 21:24:17',2,'categories.php','cPath=1_7&pID=23&','76.221.246.255'),(727,'2010-03-24 21:24:22',2,'categories.php','product_type=1&cPath=1_7&action=new_product&x=61&y=15&','76.221.246.255'),(728,'2010-03-24 21:24:23',2,'product.php','product_type=1&cPath=1_7&action=new_product&x=61&y=15&','76.221.246.255'),(729,'2010-03-24 21:26:00',2,'product.php','cPath=1_7&product_type=1&action=new_product_preview&','76.221.246.255'),(730,'2010-03-24 21:26:02',2,'product.php','cPath=1_7&product_type=1&action=insert_product&','76.221.246.255'),(731,'2010-03-24 21:26:03',2,'categories.php','cPath=1_7&pID=24&','76.221.246.255'),(732,'2010-03-24 21:47:55',2,'configuration.php','gID=8&','76.221.246.255'),(733,'2010-03-24 21:48:07',2,'configuration.php','gID=8&cID=212&action=edit&','76.221.246.255'),(734,'2010-03-24 21:48:15',2,'configuration.php','gID=8&cID=212&action=save&','76.221.246.255'),(735,'2010-03-24 21:48:16',2,'configuration.php','gID=8&cID=212&','76.221.246.255'),(736,'2010-03-25 05:30:14',0,'login.php ','','76.221.246.255'),(737,'2010-03-25 05:30:37',0,'login.php jbadmin','','76.221.246.255'),(738,'2010-03-25 05:30:50',2,'categories.php','','76.221.246.255'),(739,'2010-03-25 05:31:36',2,'categories.php','cPath=1&','76.221.246.255'),(740,'2010-03-25 05:31:39',2,'categories.php','cPath=1_6&','76.221.246.255'),(741,'2010-03-25 05:32:06',2,'categories.php','product_type=1&cPath=1_6&action=new_product&x=31&y=4&','76.221.246.255'),(742,'2010-03-25 05:32:06',2,'product.php','product_type=1&cPath=1_6&action=new_product&x=31&y=4&','76.221.246.255'),(743,'2010-03-25 05:32:39',2,'product.php','cPath=1_6&product_type=1&action=new_product_preview&','76.221.246.255'),(744,'2010-03-25 05:32:42',2,'product.php','cPath=1_6&product_type=1&action=insert_product&','76.221.246.255'),(745,'2010-03-25 05:32:43',2,'categories.php','cPath=1_6&pID=25&','76.221.246.255'),(746,'2010-03-25 05:32:47',2,'categories.php','product_type=1&cPath=1_6&action=new_product&x=61&y=4&','76.221.246.255'),(747,'2010-03-25 05:32:48',2,'product.php','product_type=1&cPath=1_6&action=new_product&x=61&y=4&','76.221.246.255'),(748,'2010-03-25 05:33:32',2,'product.php','cPath=1_6&product_type=1&action=new_product_preview&','76.221.246.255'),(749,'2010-03-25 05:33:35',2,'product.php','cPath=1_6&product_type=1&action=insert_product&','76.221.246.255'),(750,'2010-03-25 05:33:36',2,'categories.php','cPath=1_6&pID=26&','76.221.246.255'),(751,'2010-03-25 05:33:56',2,'categories.php','product_type=1&cPath=1_6&action=new_product&x=45&y=8&','76.221.246.255'),(752,'2010-03-25 05:33:56',2,'product.php','product_type=1&cPath=1_6&action=new_product&x=45&y=8&','76.221.246.255'),(753,'2010-03-25 05:34:11',2,'product.php','cPath=1_6&product_type=1&action=new_product_preview&','76.221.246.255'),(754,'2010-03-25 05:34:13',2,'product.php','cPath=1_6&product_type=1&action=insert_product&','76.221.246.255'),(755,'2010-03-25 05:34:14',2,'categories.php','cPath=1_6&pID=27&','76.221.246.255'),(756,'2010-03-25 05:34:17',2,'categories.php','product_type=1&cPath=1_6&action=new_product&x=30&y=15&','76.221.246.255'),(757,'2010-03-25 05:34:17',2,'product.php','product_type=1&cPath=1_6&action=new_product&x=30&y=15&','76.221.246.255'),(758,'2010-03-25 05:35:23',2,'product.php','cPath=1_6&product_type=1&action=new_product_preview&','76.221.246.255'),(759,'2010-03-25 05:35:25',2,'product.php','cPath=1_6&product_type=1&action=insert_product&','76.221.246.255'),(760,'2010-03-25 05:35:25',2,'categories.php','cPath=1_6&pID=28&','76.221.246.255'),(761,'2010-03-25 05:35:50',2,'categories.php','product_type=1&cPath=1_6&action=new_product&x=40&y=7&','76.221.246.255'),(762,'2010-03-25 05:35:50',2,'product.php','product_type=1&cPath=1_6&action=new_product&x=40&y=7&','76.221.246.255'),(763,'2010-03-25 05:36:57',2,'product.php','cPath=1_6&product_type=1&action=new_product_preview&','76.221.246.255'),(764,'2010-03-25 05:36:59',2,'product.php','cPath=1_6&product_type=1&action=insert_product&','76.221.246.255'),(765,'2010-03-25 05:37:00',2,'categories.php','cPath=1_6&pID=29&','76.221.246.255'),(766,'2010-03-25 05:37:04',2,'categories.php','product_type=1&cPath=1_6&action=new_product&x=75&y=18&','76.221.246.255'),(767,'2010-03-25 05:37:05',2,'product.php','product_type=1&cPath=1_6&action=new_product&x=75&y=18&','76.221.246.255'),(768,'2010-03-25 05:38:19',2,'product.php','cPath=1_6&product_type=1&action=new_product_preview&','76.221.246.255'),(769,'2010-03-25 05:38:22',2,'product.php','cPath=1_6&product_type=1&action=insert_product&','76.221.246.255'),(770,'2010-03-25 05:38:22',2,'categories.php','cPath=1_6&pID=30&','76.221.246.255'),(771,'2010-03-25 05:38:25',2,'categories.php','product_type=1&cPath=1_6&action=new_product&x=64&y=7&','76.221.246.255'),(772,'2010-03-25 05:38:26',2,'product.php','product_type=1&cPath=1_6&action=new_product&x=64&y=7&','76.221.246.255'),(773,'2010-03-25 05:39:20',2,'product.php','cPath=1_6&product_type=1&action=new_product_preview&','76.221.246.255'),(774,'2010-03-25 05:39:23',2,'product.php','cPath=1_6&product_type=1&action=insert_product&','76.221.246.255'),(775,'2010-03-25 05:39:23',2,'categories.php','cPath=1_6&pID=31&','76.221.246.255'),(776,'2010-03-25 05:39:26',2,'categories.php','product_type=1&cPath=1_6&action=new_product&x=55&y=14&','76.221.246.255'),(777,'2010-03-25 05:39:27',2,'product.php','product_type=1&cPath=1_6&action=new_product&x=55&y=14&','76.221.246.255'),(778,'2010-03-25 05:40:13',2,'product.php','cPath=1_6&product_type=1&action=new_product_preview&','76.221.246.255'),(779,'2010-03-25 05:40:15',2,'product.php','cPath=1_6&product_type=1&action=insert_product&','76.221.246.255'),(780,'2010-03-25 05:40:15',2,'categories.php','cPath=1_6&pID=32&','76.221.246.255'),(781,'2010-03-25 05:40:18',2,'categories.php','product_type=1&cPath=1_6&action=new_product&x=28&y=4&','76.221.246.255'),(782,'2010-03-25 05:40:19',2,'product.php','product_type=1&cPath=1_6&action=new_product&x=28&y=4&','76.221.246.255'),(783,'2010-03-25 05:40:41',2,'product.php','cPath=1_6&product_type=1&action=new_product_preview&','76.221.246.255'),(784,'2010-03-25 05:40:43',2,'product.php','cPath=1_6&product_type=1&action=insert_product&','76.221.246.255'),(785,'2010-03-25 05:40:43',2,'categories.php','cPath=1_6&pID=33&','76.221.246.255'),(786,'2010-03-25 05:40:55',2,'categories.php','product_type=1&cPath=1_6&action=new_product&x=52&y=7&','76.221.246.255'),(787,'2010-03-25 05:40:55',2,'product.php','product_type=1&cPath=1_6&action=new_product&x=52&y=7&','76.221.246.255'),(788,'2010-03-25 05:41:09',2,'product.php','cPath=1_6&product_type=1&action=new_product_preview&','76.221.246.255'),(789,'2010-03-25 05:41:11',2,'product.php','cPath=1_6&product_type=1&action=insert_product&','76.221.246.255'),(790,'2010-03-25 05:41:12',2,'categories.php','cPath=1_6&pID=34&','76.221.246.255'),(791,'2010-03-25 05:41:28',2,'categories.php','cPath=1&cID=6&','76.221.246.255'),(792,'2010-03-25 05:41:32',2,'categories.php','cPath=1&action=new_category&','76.221.246.255'),(793,'2010-03-25 05:42:09',2,'categories.php','action=insert_category&cPath=1&','76.221.246.255'),(794,'2010-03-25 05:42:10',2,'categories.php','cPath=1&cID=8&','76.221.246.255'),(795,'2010-03-25 05:42:36',2,'categories.php','cPath=1&cID=8&action=edit_category&','76.221.246.255'),(796,'2010-03-25 05:42:47',2,'categories.php','action=update_category&cPath=1&','76.221.246.255'),(797,'2010-03-25 05:42:47',2,'categories.php','cPath=1&cID=8&','76.221.246.255'),(798,'2010-03-25 05:42:54',2,'categories.php','cPath=1_8&','76.221.246.255'),(799,'2010-03-25 05:42:57',2,'categories.php','product_type=1&cPath=1_8&action=new_product&x=31&y=8&','76.221.246.255'),(800,'2010-03-25 05:42:57',2,'product.php','product_type=1&cPath=1_8&action=new_product&x=31&y=8&','76.221.246.255'),(801,'2010-03-25 05:43:42',2,'product.php','cPath=1_8&product_type=1&action=new_product_preview&','76.221.246.255'),(802,'2010-03-25 05:43:45',2,'product.php','cPath=1_8&product_type=1&action=insert_product&','76.221.246.255'),(803,'2010-03-25 05:43:45',2,'categories.php','cPath=1_8&pID=35&','76.221.246.255'),(804,'2010-03-25 05:43:48',2,'categories.php','product_type=1&cPath=1_8&action=new_product&x=86&y=12&','76.221.246.255'),(805,'2010-03-25 05:43:48',2,'product.php','product_type=1&cPath=1_8&action=new_product&x=86&y=12&','76.221.246.255'),(806,'2010-03-25 05:44:12',2,'product.php','cPath=1_8&product_type=1&action=new_product_preview&','76.221.246.255'),(807,'2010-03-25 05:44:15',2,'product.php','cPath=1_8&product_type=1&action=insert_product&','76.221.246.255'),(808,'2010-03-25 05:44:15',2,'categories.php','cPath=1_8&pID=36&','76.221.246.255'),(809,'2010-03-25 05:44:18',2,'categories.php','product_type=1&cPath=1_8&action=new_product&x=40&y=5&','76.221.246.255'),(810,'2010-03-25 05:44:18',2,'product.php','product_type=1&cPath=1_8&action=new_product&x=40&y=5&','76.221.246.255'),(811,'2010-03-25 05:45:01',2,'product.php','cPath=1_8&product_type=1&action=new_product_preview&','76.221.246.255'),(812,'2010-03-25 05:45:04',2,'product.php','cPath=1_8&product_type=1&action=insert_product&','76.221.246.255'),(813,'2010-03-25 05:45:04',2,'categories.php','cPath=1_8&pID=37&','76.221.246.255'),(814,'2010-03-25 05:45:09',2,'product.php','page=1&product_type=1&cPath=1_8&pID=35&action=new_product&','76.221.246.255'),(815,'2010-03-25 05:45:14',2,'categories.php','cPath=1_8&pID=35&page=1&','76.221.246.255'),(816,'2010-03-25 05:45:17',2,'categories.php','product_type=1&cPath=1_8&action=new_product&x=80&y=15&','76.221.246.255'),(817,'2010-03-25 05:45:17',2,'product.php','product_type=1&cPath=1_8&action=new_product&x=80&y=15&','76.221.246.255'),(818,'2010-03-25 05:45:46',2,'product.php','cPath=1_8&product_type=1&action=new_product_preview&','76.221.246.255'),(819,'2010-03-25 05:45:48',2,'product.php','cPath=1_8&product_type=1&action=insert_product&','76.221.246.255'),(820,'2010-03-25 05:45:49',2,'categories.php','cPath=1_8&pID=38&','76.221.246.255'),(821,'2010-03-25 05:45:51',2,'categories.php','product_type=1&cPath=1_8&action=new_product&x=60&y=9&','76.221.246.255'),(822,'2010-03-25 05:45:51',2,'product.php','product_type=1&cPath=1_8&action=new_product&x=60&y=9&','76.221.246.255'),(823,'2010-03-25 05:46:44',2,'product.php','cPath=1_8&product_type=1&action=new_product_preview&','76.221.246.255'),(824,'2010-03-25 05:46:46',2,'product.php','cPath=1_8&product_type=1&action=insert_product&','76.221.246.255'),(825,'2010-03-25 05:46:46',2,'categories.php','cPath=1_8&pID=39&','76.221.246.255'),(826,'2010-03-25 05:46:48',2,'categories.php','product_type=1&cPath=1_8&action=new_product&x=47&y=12&','76.221.246.255'),(827,'2010-03-25 05:46:49',2,'product.php','product_type=1&cPath=1_8&action=new_product&x=47&y=12&','76.221.246.255'),(828,'2010-03-25 05:47:17',2,'product.php','cPath=1_8&product_type=1&action=new_product_preview&','76.221.246.255'),(829,'2010-03-25 05:47:19',2,'product.php','cPath=1_8&product_type=1&action=insert_product&','76.221.246.255'),(830,'2010-03-25 05:47:20',2,'categories.php','cPath=1_8&pID=40&','76.221.246.255'),(831,'2010-03-25 05:47:22',2,'categories.php','product_type=1&cPath=1_8&action=new_product&x=57&y=12&','76.221.246.255'),(832,'2010-03-25 05:47:23',2,'product.php','product_type=1&cPath=1_8&action=new_product&x=57&y=12&','76.221.246.255'),(833,'2010-03-25 05:48:02',2,'product.php','cPath=1_8&product_type=1&action=new_product_preview&','76.221.246.255'),(834,'2010-03-25 05:48:04',2,'product.php','cPath=1_8&product_type=1&action=insert_product&','76.221.246.255'),(835,'2010-03-25 05:48:05',2,'categories.php','cPath=1_8&pID=41&','76.221.246.255'),(836,'2010-03-25 05:48:08',2,'categories.php','product_type=1&cPath=1_8&action=new_product&x=60&y=7&','76.221.246.255'),(837,'2010-03-25 05:48:08',2,'product.php','product_type=1&cPath=1_8&action=new_product&x=60&y=7&','76.221.246.255'),(838,'2010-03-25 05:48:24',2,'categories.php','cPath=1_8&','76.221.246.255'),(839,'2010-03-25 05:48:26',2,'product.php','page=1&product_type=1&cPath=1_8&pID=41&action=new_product&','76.221.246.255'),(840,'2010-03-25 05:48:34',2,'product.php','cPath=1_8&product_type=1&pID=41&action=new_product_preview&page=1&','76.221.246.255'),(841,'2010-03-25 05:48:36',2,'product.php','cPath=1_8&product_type=1&pID=41&action=update_product&page=1&','76.221.246.255'),(842,'2010-03-25 05:48:36',2,'categories.php','cPath=1_8&pID=41&page=1&','76.221.246.255'),(843,'2010-03-25 05:48:38',2,'categories.php','product_type=1&cPath=1_8&action=new_product&x=26&y=6&','76.221.246.255'),(844,'2010-03-25 05:48:39',2,'product.php','product_type=1&cPath=1_8&action=new_product&x=26&y=6&','76.221.246.255'),(845,'2010-03-25 05:49:07',2,'product.php','cPath=1_8&product_type=1&action=new_product_preview&','76.221.246.255'),(846,'2010-03-25 05:49:09',2,'product.php','cPath=1_8&product_type=1&action=insert_product&','76.221.246.255'),(847,'2010-03-25 05:49:09',2,'categories.php','cPath=1_8&pID=42&','76.221.246.255'),(848,'2010-03-25 05:49:25',2,'categories.php','product_type=1&cPath=1_8&action=new_product&x=40&y=16&','76.221.246.255'),(849,'2010-03-25 05:49:25',2,'product.php','product_type=1&cPath=1_8&action=new_product&x=40&y=16&','76.221.246.255'),(850,'2010-03-25 05:49:41',2,'product.php','cPath=1_8&product_type=1&action=new_product_preview&','76.221.246.255'),(851,'2010-03-25 05:49:44',2,'product.php','cPath=1_8&product_type=1&action=insert_product&','76.221.246.255'),(852,'2010-03-25 05:49:44',2,'categories.php','cPath=1_8&pID=43&','76.221.246.255'),(853,'2010-03-25 05:49:48',2,'categories.php','product_type=1&cPath=1_8&action=new_product&x=53&y=16&','76.221.246.255'),(854,'2010-03-25 05:49:48',2,'product.php','product_type=1&cPath=1_8&action=new_product&x=53&y=16&','76.221.246.255'),(855,'2010-03-25 05:50:21',2,'product.php','cPath=1_8&product_type=1&action=new_product_preview&','76.221.246.255'),(856,'2010-03-25 05:50:23',2,'product.php','cPath=1_8&product_type=1&action=insert_product&','76.221.246.255'),(857,'2010-03-25 05:50:24',2,'categories.php','cPath=1_8&pID=44&','76.221.246.255'),(858,'2010-03-25 05:50:40',2,'categories.php','product_type=1&cPath=1_8&action=new_product&x=35&y=17&','76.221.246.255'),(859,'2010-03-25 05:50:40',2,'product.php','product_type=1&cPath=1_8&action=new_product&x=35&y=17&','76.221.246.255'),(860,'2010-03-25 05:50:55',2,'product.php','cPath=1_8&product_type=1&action=new_product_preview&','76.221.246.255'),(861,'2010-03-25 05:50:58',2,'product.php','cPath=1_8&product_type=1&action=insert_product&','76.221.246.255'),(862,'2010-03-25 05:50:59',2,'categories.php','cPath=1_8&pID=45&','76.221.246.255'),(863,'2010-03-25 05:51:09',2,'categories.php','product_type=1&cPath=1_8&action=new_product&x=69&y=15&','76.221.246.255'),(864,'2010-03-25 05:51:09',2,'product.php','product_type=1&cPath=1_8&action=new_product&x=69&y=15&','76.221.246.255'),(865,'2010-03-25 05:51:21',2,'product.php','cPath=1_8&product_type=1&action=new_product_preview&','76.221.246.255'),(866,'2010-03-25 05:51:23',2,'product.php','cPath=1_8&product_type=1&action=insert_product&','76.221.246.255'),(867,'2010-03-25 05:51:23',2,'categories.php','cPath=1_8&pID=46&','76.221.246.255'),(868,'2010-03-25 05:51:50',2,'categories.php','product_type=1&cPath=1_8&action=new_product&x=45&y=18&','76.221.246.255'),(869,'2010-03-25 05:51:50',2,'product.php','product_type=1&cPath=1_8&action=new_product&x=45&y=18&','76.221.246.255'),(870,'2010-03-25 05:52:35',2,'product.php','cPath=1_8&product_type=1&action=new_product_preview&','76.221.246.255'),(871,'2010-03-25 05:52:37',2,'product.php','cPath=1_8&product_type=1&action=insert_product&','76.221.246.255'),(872,'2010-03-25 05:52:38',2,'categories.php','cPath=1_8&pID=47&','76.221.246.255'),(873,'2010-03-25 05:52:41',2,'categories.php','product_type=1&cPath=1_8&action=new_product&x=32&y=13&','76.221.246.255'),(874,'2010-03-25 05:52:41',2,'product.php','product_type=1&cPath=1_8&action=new_product&x=32&y=13&','76.221.246.255'),(875,'2010-03-25 05:53:29',2,'product.php','cPath=1_8&product_type=1&action=new_product_preview&','76.221.246.255'),(876,'2010-03-25 05:53:31',2,'product.php','cPath=1_8&product_type=1&action=insert_product&','76.221.246.255'),(877,'2010-03-25 05:53:32',2,'categories.php','cPath=1_8&pID=48&','76.221.246.255'),(878,'2010-03-25 05:53:38',2,'product.php','cPath=1_8&product_type=1&pID=48&action=new_product&','76.221.246.255'),(879,'2010-03-25 05:53:45',2,'product.php','cPath=1_8&product_type=1&pID=48&action=new_product_preview&','76.221.246.255'),(880,'2010-03-25 05:53:47',2,'product.php','cPath=1_8&product_type=1&pID=48&action=update_product&','76.221.246.255'),(881,'2010-03-25 05:53:48',2,'categories.php','cPath=1_8&pID=48&','76.221.246.255'),(882,'2010-03-25 05:53:51',2,'categories.php','product_type=1&cPath=1_8&action=new_product&x=34&y=15&','76.221.246.255'),(883,'2010-03-25 05:53:51',2,'product.php','product_type=1&cPath=1_8&action=new_product&x=34&y=15&','76.221.246.255'),(884,'2010-03-25 05:54:16',2,'product.php','cPath=1_8&product_type=1&action=new_product_preview&','76.221.246.255'),(885,'2010-03-25 05:54:18',2,'product.php','cPath=1_8&product_type=1&action=insert_product&','76.221.246.255'),(886,'2010-03-25 05:54:19',2,'categories.php','cPath=1_8&pID=49&','76.221.246.255'),(887,'2010-03-25 05:54:24',2,'product.php','page=2&product_type=1&cPath=1_8&pID=48&action=new_product&','76.221.246.255'),(888,'2010-03-25 05:54:31',2,'categories.php','cPath=1_8&pID=48&page=2&','76.221.246.255'),(889,'2010-03-25 05:54:34',2,'categories.php','product_type=1&cPath=1_8&action=new_product&x=45&y=16&','76.221.246.255'),(890,'2010-03-25 05:54:35',2,'product.php','product_type=1&cPath=1_8&action=new_product&x=45&y=16&','76.221.246.255'),(891,'2010-03-25 05:55:23',2,'product.php','cPath=1_8&product_type=1&action=new_product_preview&','76.221.246.255'),(892,'2010-03-25 05:55:25',2,'product.php','cPath=1_8&product_type=1&action=insert_product&','76.221.246.255'),(893,'2010-03-25 05:55:26',2,'categories.php','cPath=1_8&pID=50&','76.221.246.255'),(894,'2010-03-25 05:55:29',2,'categories.php','product_type=1&cPath=1_8&action=new_product&x=25&y=14&','76.221.246.255'),(895,'2010-03-25 05:55:29',2,'product.php','product_type=1&cPath=1_8&action=new_product&x=25&y=14&','76.221.246.255'),(896,'2010-03-25 05:56:15',2,'product.php','cPath=1_8&product_type=1&action=new_product_preview&','76.221.246.255'),(897,'2010-03-25 05:56:17',2,'product.php','cPath=1_8&product_type=1&action=insert_product&','76.221.246.255'),(898,'2010-03-25 05:56:18',2,'categories.php','cPath=1_8&pID=51&','76.221.246.255'),(899,'2010-03-25 05:56:21',2,'categories.php','product_type=1&cPath=1_8&action=new_product&x=35&y=6&','76.221.246.255'),(900,'2010-03-25 05:56:22',2,'product.php','product_type=1&cPath=1_8&action=new_product&x=35&y=6&','76.221.246.255'),(901,'2010-03-25 05:57:06',2,'product.php','cPath=1_8&product_type=1&action=new_product_preview&','76.221.246.255'),(902,'2010-03-25 05:57:09',2,'product.php','cPath=1_8&product_type=1&action=insert_product&','76.221.246.255'),(903,'2010-03-25 05:57:09',2,'categories.php','cPath=1_8&pID=52&','76.221.246.255'),(904,'2010-03-25 05:57:24',2,'categories.php','product_type=1&cPath=1_8&action=new_product&x=59&y=7&','76.221.246.255'),(905,'2010-03-25 05:57:24',2,'product.php','product_type=1&cPath=1_8&action=new_product&x=59&y=7&','76.221.246.255'),(906,'2010-03-25 05:57:38',2,'product.php','cPath=1_8&product_type=1&action=new_product_preview&','76.221.246.255'),(907,'2010-03-25 05:57:48',2,'product.php','cPath=1_8&product_type=1&action=insert_product&','76.221.246.255'),(908,'2010-03-25 05:57:49',2,'categories.php','cPath=1_8&pID=53&','76.221.246.255'),(909,'2010-03-25 05:57:53',2,'categories.php','product_type=1&cPath=1_8&action=new_product&x=37&y=12&','76.221.246.255'),(910,'2010-03-25 05:57:54',2,'product.php','product_type=1&cPath=1_8&action=new_product&x=37&y=12&','76.221.246.255'),(911,'2010-03-25 05:58:07',2,'product.php','cPath=1_8&product_type=1&action=new_product_preview&','76.221.246.255'),(912,'2010-03-25 05:58:09',2,'product.php','cPath=1_8&product_type=1&action=insert_product&','76.221.246.255'),(913,'2010-03-25 05:58:10',2,'categories.php','cPath=1_8&pID=54&','76.221.246.255'),(914,'2010-03-25 05:58:14',2,'categories.php','product_type=1&cPath=1_8&action=new_product&x=82&y=12&','76.221.246.255'),(915,'2010-03-25 05:58:14',2,'product.php','product_type=1&cPath=1_8&action=new_product&x=82&y=12&','76.221.246.255'),(916,'2010-03-25 05:59:04',2,'product.php','cPath=1_8&product_type=1&action=new_product_preview&','76.221.246.255'),(917,'2010-03-25 05:59:07',2,'product.php','cPath=1_8&product_type=1&action=insert_product&','76.221.246.255'),(918,'2010-03-25 05:59:08',2,'categories.php','cPath=1_8&pID=55&','76.221.246.255'),(919,'2010-03-25 05:59:15',2,'categories.php','product_type=1&cPath=1_8&action=new_product&x=57&y=19&','76.221.246.255'),(920,'2010-03-25 05:59:15',2,'product.php','product_type=1&cPath=1_8&action=new_product&x=57&y=19&','76.221.246.255'),(921,'2010-03-25 05:59:52',2,'product.php','cPath=1_8&product_type=1&action=new_product_preview&','76.221.246.255'),(922,'2010-03-25 05:59:55',2,'product.php','cPath=1_8&product_type=1&action=insert_product&','76.221.246.255'),(923,'2010-03-25 05:59:55',2,'categories.php','cPath=1_8&pID=56&','76.221.246.255'),(924,'2010-03-25 06:00:00',2,'categories.php','cPath=1&cID=8&','76.221.246.255'),(925,'2010-03-25 06:00:25',2,'categories.php','cPath=1&action=new_category&','76.221.246.255'),(926,'2010-03-25 06:00:33',2,'categories.php','cPath=1&cID=8&','76.221.246.255'),(927,'2010-03-25 06:00:36',2,'categories.php','cPath=1&action=new_category&','76.221.246.255'),(928,'2010-03-25 06:00:50',2,'categories.php','action=insert_category&cPath=1&','76.221.246.255'),(929,'2010-03-25 06:00:50',2,'categories.php','cPath=1&cID=9&','76.221.246.255'),(930,'2010-03-25 06:01:09',2,'categories.php','cPath=1&cID=7&action=edit_category&','76.221.246.255'),(931,'2010-03-25 06:01:17',2,'categories.php','action=update_category&cPath=1&','76.221.246.255'),(932,'2010-03-25 06:01:18',2,'categories.php','cPath=1&cID=7&','76.221.246.255'),(933,'2010-03-25 06:01:31',2,'categories.php','cPath=1_9&','76.221.246.255'),(934,'2010-03-25 06:01:36',2,'categories.php','product_type=1&cPath=1_9&action=new_product&x=45&y=15&','76.221.246.255'),(935,'2010-03-25 06:01:37',2,'product.php','product_type=1&cPath=1_9&action=new_product&x=45&y=15&','76.221.246.255'),(936,'2010-03-25 06:01:56',2,'product.php','cPath=1_9&product_type=1&action=new_product_preview&','76.221.246.255'),(937,'2010-03-25 06:01:59',2,'product.php','cPath=1_9&product_type=1&action=insert_product&','76.221.246.255'),(938,'2010-03-25 06:01:59',2,'categories.php','cPath=1_9&pID=57&','76.221.246.255'),(939,'2010-03-25 06:02:01',2,'categories.php','product_type=1&cPath=1_9&action=new_product&x=72&y=11&','76.221.246.255'),(940,'2010-03-25 06:02:02',2,'product.php','product_type=1&cPath=1_9&action=new_product&x=72&y=11&','76.221.246.255'),(941,'2010-03-25 06:02:51',2,'product.php','cPath=1_9&product_type=1&action=new_product_preview&','76.221.246.255'),(942,'2010-03-25 06:02:53',2,'product.php','cPath=1_9&product_type=1&action=insert_product&','76.221.246.255'),(943,'2010-03-25 06:02:54',2,'categories.php','cPath=1_9&pID=58&','76.221.246.255'),(944,'2010-03-25 06:03:06',2,'categories.php','product_type=1&cPath=1_9&action=new_product&x=59&y=8&','76.221.246.255'),(945,'2010-03-25 06:03:06',2,'product.php','product_type=1&cPath=1_9&action=new_product&x=59&y=8&','76.221.246.255'),(946,'2010-03-25 06:03:19',2,'product.php','cPath=1_9&product_type=1&action=new_product_preview&','76.221.246.255'),(947,'2010-03-25 06:03:21',2,'product.php','cPath=1_9&product_type=1&action=insert_product&','76.221.246.255'),(948,'2010-03-25 06:03:21',2,'categories.php','cPath=1_9&pID=59&','76.221.246.255'),(949,'2010-03-25 06:03:36',2,'categories.php','product_type=1&cPath=1_9&action=new_product&x=84&y=10&','76.221.246.255'),(950,'2010-03-25 06:03:36',2,'product.php','product_type=1&cPath=1_9&action=new_product&x=84&y=10&','76.221.246.255'),(951,'2010-03-25 06:03:49',2,'product.php','cPath=1_9&product_type=1&action=new_product_preview&','76.221.246.255'),(952,'2010-03-25 06:03:51',2,'product.php','cPath=1_9&product_type=1&action=insert_product&','76.221.246.255'),(953,'2010-03-25 06:03:52',2,'categories.php','cPath=1_9&pID=60&','76.221.246.255'),(954,'2010-03-25 06:03:55',2,'categories.php','product_type=1&cPath=1_9&action=new_product&x=72&y=8&','76.221.246.255'),(955,'2010-03-25 06:03:55',2,'product.php','product_type=1&cPath=1_9&action=new_product&x=72&y=8&','76.221.246.255'),(956,'2010-03-25 06:04:15',2,'product.php','cPath=1_9&product_type=1&action=new_product_preview&','76.221.246.255'),(957,'2010-03-25 06:04:17',2,'product.php','cPath=1_9&product_type=1&action=insert_product&','76.221.246.255'),(958,'2010-03-25 06:04:18',2,'categories.php','cPath=1_9&pID=61&','76.221.246.255'),(959,'2010-03-25 06:04:21',2,'product.php','cPath=1_9&product_type=1&pID=60&action=new_product&','76.221.246.255'),(960,'2010-03-25 06:04:28',2,'product.php','cPath=1_9&product_type=1&pID=60&action=new_product_preview&','76.221.246.255'),(961,'2010-03-25 06:04:30',2,'product.php','cPath=1_9&product_type=1&pID=60&action=update_product&','76.221.246.255'),(962,'2010-03-25 06:04:31',2,'categories.php','cPath=1_9&pID=60&','76.221.246.255'),(963,'2010-03-25 06:04:34',2,'categories.php','product_type=1&cPath=1_9&action=new_product&x=30&y=10&','76.221.246.255'),(964,'2010-03-25 06:04:34',2,'product.php','product_type=1&cPath=1_9&action=new_product&x=30&y=10&','76.221.246.255'),(965,'2010-03-25 06:05:16',2,'product.php','cPath=1_9&product_type=1&action=new_product_preview&','76.221.246.255'),(966,'2010-03-25 06:05:18',2,'product.php','cPath=1_9&product_type=1&action=insert_product&','76.221.246.255'),(967,'2010-03-25 06:05:19',2,'categories.php','cPath=1_9&pID=62&','76.221.246.255'),(968,'2010-03-25 06:05:23',2,'categories.php','product_type=1&cPath=1_9&action=new_product&x=80&y=7&','76.221.246.255'),(969,'2010-03-25 06:05:24',2,'product.php','product_type=1&cPath=1_9&action=new_product&x=80&y=7&','76.221.246.255'),(970,'2010-03-25 06:06:31',2,'product.php','cPath=1_9&product_type=1&action=new_product_preview&','76.221.246.255'),(971,'2010-03-25 06:06:33',2,'product.php','cPath=1_9&product_type=1&action=insert_product&','76.221.246.255'),(972,'2010-03-25 06:06:33',2,'categories.php','cPath=1_9&pID=63&','76.221.246.255'),(973,'2010-03-25 06:06:37',2,'categories.php','product_type=1&cPath=1_9&action=new_product&x=61&y=3&','76.221.246.255'),(974,'2010-03-25 06:06:37',2,'product.php','product_type=1&cPath=1_9&action=new_product&x=61&y=3&','76.221.246.255'),(975,'2010-03-25 06:06:55',2,'product.php','cPath=1_9&product_type=1&action=new_product_preview&','76.221.246.255'),(976,'2010-03-25 06:06:57',2,'product.php','cPath=1_9&product_type=1&action=insert_product&','76.221.246.255'),(977,'2010-03-25 06:06:58',2,'categories.php','cPath=1_9&pID=64&','76.221.246.255'),(978,'2010-03-25 06:07:00',2,'categories.php','product_type=1&cPath=1_9&action=new_product&x=17&y=13&','76.221.246.255'),(979,'2010-03-25 06:07:01',2,'product.php','product_type=1&cPath=1_9&action=new_product&x=17&y=13&','76.221.246.255'),(980,'2010-03-25 06:07:56',2,'product.php','cPath=1_9&product_type=1&action=new_product_preview&','76.221.246.255'),(981,'2010-03-25 06:07:58',2,'product.php','cPath=1_9&product_type=1&action=insert_product&','76.221.246.255'),(982,'2010-03-25 06:07:59',2,'categories.php','cPath=1_9&pID=65&','76.221.246.255'),(983,'2010-03-25 06:08:01',2,'categories.php','product_type=1&cPath=1_9&action=new_product&x=57&y=7&','76.221.246.255'),(984,'2010-03-25 06:08:02',2,'product.php','product_type=1&cPath=1_9&action=new_product&x=57&y=7&','76.221.246.255'),(985,'2010-03-25 06:08:22',2,'product.php','cPath=1_9&product_type=1&action=new_product_preview&','76.221.246.255'),(986,'2010-03-25 06:08:24',2,'product.php','cPath=1_9&product_type=1&action=insert_product&','76.221.246.255'),(987,'2010-03-25 06:08:24',2,'categories.php','cPath=1_9&pID=66&','76.221.246.255'),(988,'2010-03-25 06:08:27',2,'categories.php','product_type=1&cPath=1_9&action=new_product&x=48&y=11&','76.221.246.255'),(989,'2010-03-25 06:08:27',2,'product.php','product_type=1&cPath=1_9&action=new_product&x=48&y=11&','76.221.246.255'),(990,'2010-03-25 06:08:51',2,'product.php','cPath=1_9&product_type=1&action=new_product_preview&','76.221.246.255'),(991,'2010-03-25 06:08:53',2,'product.php','cPath=1_9&product_type=1&action=insert_product&','76.221.246.255'),(992,'2010-03-25 06:08:54',2,'categories.php','cPath=1_9&pID=67&','76.221.246.255'),(993,'2010-03-25 06:08:58',2,'categories.php','cPath=1&cID=9&','76.221.246.255'),(994,'2010-03-25 06:14:34',2,'categories.php','cPath=1&cID=8&action=edit_category&','76.221.246.255'),(995,'2010-03-25 06:14:41',2,'categories.php','action=update_category&cPath=1&','76.221.246.255'),(996,'2010-03-25 06:14:42',2,'categories.php','cPath=1&cID=8&','76.221.246.255'),(997,'2010-03-25 06:14:45',2,'categories.php','cPath=1&cID=9&action=edit_category&','76.221.246.255'),(998,'2010-03-25 06:14:51',2,'categories.php','action=update_category&cPath=1&','76.221.246.255'),(999,'2010-03-25 06:14:52',2,'categories.php','cPath=1&cID=9&','76.221.246.255'),(1000,'2010-03-25 06:14:56',2,'categories.php','cPath=1&action=new_category&','76.221.246.255'),(1001,'2010-03-25 06:15:08',2,'categories.php','action=insert_category&cPath=1&','76.221.246.255'),(1002,'2010-03-25 06:15:08',2,'categories.php','cPath=1&cID=10&','76.221.246.255'),(1003,'2010-03-25 06:15:18',2,'categories.php','cPath=1_10&','76.221.246.255'),(1004,'2010-03-25 06:15:21',2,'categories.php','product_type=1&cPath=1_10&action=new_product&x=70&y=9&','76.221.246.255'),(1005,'2010-03-25 06:15:21',2,'product.php','product_type=1&cPath=1_10&action=new_product&x=70&y=9&','76.221.246.255'),(1006,'2010-03-25 06:15:52',2,'product.php','cPath=1_10&product_type=1&action=new_product_preview&','76.221.246.255'),(1007,'2010-03-25 06:15:54',2,'product.php','cPath=1_10&product_type=1&action=insert_product&','76.221.246.255'),(1008,'2010-03-25 06:15:55',2,'categories.php','cPath=1_10&pID=68&','76.221.246.255'),(1009,'2010-03-25 06:16:10',2,'categories.php','product_type=1&cPath=1_10&action=new_product&x=41&y=15&','76.221.246.255'),(1010,'2010-03-25 06:16:11',2,'product.php','product_type=1&cPath=1_10&action=new_product&x=41&y=15&','76.221.246.255'),(1011,'2010-03-25 06:16:55',2,'product.php','cPath=1_10&product_type=1&action=new_product_preview&','76.221.246.255'),(1012,'2010-03-25 06:16:57',2,'product.php','cPath=1_10&product_type=1&action=insert_product&','76.221.246.255'),(1013,'2010-03-25 06:16:57',2,'categories.php','cPath=1_10&pID=69&','76.221.246.255'),(1014,'2010-03-25 06:18:29',2,'categories.php','product_type=1&cPath=1_10&action=new_product&x=74&y=2&','76.221.246.255'),(1015,'2010-03-25 06:18:30',2,'product.php','product_type=1&cPath=1_10&action=new_product&x=74&y=2&','76.221.246.255'),(1016,'2010-03-25 06:18:58',2,'product.php','cPath=1_10&product_type=1&action=new_product_preview&','76.221.246.255'),(1017,'2010-03-25 06:19:01',2,'product.php','cPath=1_10&product_type=1&action=insert_product&','76.221.246.255'),(1018,'2010-03-25 06:19:01',2,'categories.php','cPath=1_10&pID=70&','76.221.246.255'),(1019,'2010-03-25 06:19:06',2,'categories.php','product_type=1&cPath=1_10&action=new_product&x=74&y=11&','76.221.246.255'),(1020,'2010-03-25 06:19:06',2,'product.php','product_type=1&cPath=1_10&action=new_product&x=74&y=11&','76.221.246.255'),(1021,'2010-03-25 06:19:56',2,'product.php','cPath=1_10&product_type=1&action=new_product_preview&','76.221.246.255'),(1022,'2010-03-25 06:19:59',2,'product.php','cPath=1_10&product_type=1&action=insert_product&','76.221.246.255'),(1023,'2010-03-25 06:19:59',2,'categories.php','cPath=1_10&pID=71&','76.221.246.255'),(1024,'2010-03-25 06:20:10',2,'categories.php','product_type=1&cPath=1_10&action=new_product&x=31&y=3&','76.221.246.255'),(1025,'2010-03-25 06:20:10',2,'product.php','product_type=1&cPath=1_10&action=new_product&x=31&y=3&','76.221.246.255'),(1026,'2010-03-25 06:20:25',2,'product.php','cPath=1_10&product_type=1&action=new_product_preview&','76.221.246.255'),(1027,'2010-03-25 06:20:28',2,'product.php','cPath=1_10&product_type=1&action=insert_product&','76.221.246.255'),(1028,'2010-03-25 06:20:29',2,'categories.php','cPath=1_10&pID=72&','76.221.246.255'),(1029,'2010-03-25 06:20:41',2,'categories.php','cPath=1&cID=10&','76.221.246.255'),(1030,'2010-03-25 06:20:49',2,'categories.php','cPath=1&action=new_category&','76.221.246.255'),(1031,'2010-03-25 06:21:03',2,'categories.php','action=insert_category&cPath=1&','76.221.246.255'),(1032,'2010-03-25 06:21:03',2,'categories.php','cPath=1&cID=11&','76.221.246.255'),(1033,'2010-03-25 06:21:07',2,'categories.php','cPath=1&cID=11&action=edit_category&','76.221.246.255'),(1034,'2010-03-25 06:21:14',2,'categories.php','action=update_category&cPath=1&','76.221.246.255'),(1035,'2010-03-25 06:21:14',2,'categories.php','cPath=1&cID=11&','76.221.246.255'),(1036,'2010-03-25 06:21:18',2,'categories.php','cPath=1_11&','76.221.246.255'),(1037,'2010-03-25 06:21:30',2,'categories.php','product_type=1&cPath=1_11&action=new_product&x=36&y=12&','76.221.246.255'),(1038,'2010-03-25 06:21:30',2,'product.php','product_type=1&cPath=1_11&action=new_product&x=36&y=12&','76.221.246.255'),(1039,'2010-03-25 06:22:34',2,'product.php','cPath=1_11&product_type=1&action=new_product_preview&','76.221.246.255'),(1040,'2010-03-25 06:22:36',2,'product.php','cPath=1_11&product_type=1&action=insert_product&','76.221.246.255'),(1041,'2010-03-25 06:22:37',2,'categories.php','cPath=1_11&pID=73&','76.221.246.255'),(1042,'2010-03-25 06:22:42',2,'categories.php','product_type=1&cPath=1_11&action=new_product&x=58&y=7&','76.221.246.255'),(1043,'2010-03-25 06:22:42',2,'product.php','product_type=1&cPath=1_11&action=new_product&x=58&y=7&','76.221.246.255'),(1044,'2010-03-25 06:23:08',2,'product.php','cPath=1_11&product_type=1&action=new_product_preview&','76.221.246.255'),(1045,'2010-03-25 06:23:18',2,'product.php','cPath=1_11&product_type=1&action=insert_product&','76.221.246.255'),(1046,'2010-03-25 06:23:19',2,'categories.php','cPath=1_11&pID=74&','76.221.246.255'),(1047,'2010-03-25 06:23:25',2,'categories.php','product_type=1&cPath=1_11&action=new_product&x=41&y=7&','76.221.246.255'),(1048,'2010-03-25 06:23:26',2,'product.php','product_type=1&cPath=1_11&action=new_product&x=41&y=7&','76.221.246.255'),(1049,'2010-03-25 06:24:15',2,'product.php','cPath=1_11&product_type=1&action=new_product_preview&','76.221.246.255'),(1050,'2010-03-25 06:24:17',2,'product.php','cPath=1_11&product_type=1&action=insert_product&','76.221.246.255'),(1051,'2010-03-25 06:24:17',2,'categories.php','cPath=1_11&pID=75&','76.221.246.255'),(1052,'2010-03-25 06:24:23',2,'categories.php','product_type=1&cPath=1_11&action=new_product&x=39&y=11&','76.221.246.255'),(1053,'2010-03-25 06:24:23',2,'product.php','product_type=1&cPath=1_11&action=new_product&x=39&y=11&','76.221.246.255'),(1054,'2010-03-25 06:24:45',2,'product.php','cPath=1_11&product_type=1&action=new_product_preview&','76.221.246.255'),(1055,'2010-03-25 06:24:47',2,'product.php','cPath=1_11&product_type=1&action=insert_product&','76.221.246.255'),(1056,'2010-03-25 06:24:47',2,'categories.php','cPath=1_11&pID=76&','76.221.246.255'),(1057,'2010-03-25 06:24:53',2,'categories.php','cPath=1&cID=11&','76.221.246.255'),(1058,'2010-03-25 06:25:05',2,'categories.php','cPath=1&action=new_category&','76.221.246.255'),(1059,'2010-03-25 06:25:23',2,'categories.php','action=insert_category&cPath=1&','76.221.246.255'),(1060,'2010-03-25 06:25:24',2,'categories.php','cPath=1&cID=12&','76.221.246.255'),(1061,'2010-03-25 06:25:29',2,'categories.php','cPath=1_12&','76.221.246.255'),(1062,'2010-03-25 06:25:32',2,'categories.php','product_type=1&cPath=1_12&action=new_product&x=51&y=4&','76.221.246.255'),(1063,'2010-03-25 06:25:32',2,'product.php','product_type=1&cPath=1_12&action=new_product&x=51&y=4&','76.221.246.255'),(1064,'2010-03-25 06:25:50',2,'product.php','cPath=1_12&product_type=1&action=new_product_preview&','76.221.246.255'),(1065,'2010-03-25 06:25:52',2,'product.php','cPath=1_12&product_type=1&action=insert_product&','76.221.246.255'),(1066,'2010-03-25 06:25:52',2,'categories.php','cPath=1_12&pID=77&','76.221.246.255'),(1067,'2010-03-25 06:25:55',2,'categories.php','product_type=1&cPath=1_12&action=new_product&x=60&y=13&','76.221.246.255'),(1068,'2010-03-25 06:25:56',2,'product.php','product_type=1&cPath=1_12&action=new_product&x=60&y=13&','76.221.246.255'),(1069,'2010-03-25 06:26:31',2,'product.php','cPath=1_12&product_type=1&action=new_product_preview&','76.221.246.255'),(1070,'2010-03-25 06:26:33',2,'product.php','cPath=1_12&product_type=1&action=insert_product&','76.221.246.255'),(1071,'2010-03-25 06:26:34',2,'categories.php','cPath=1_12&pID=78&','76.221.246.255'),(1072,'2010-03-25 06:26:50',2,'categories.php','product_type=1&cPath=1_12&action=new_product&x=61&y=12&','76.221.246.255'),(1073,'2010-03-25 06:26:51',2,'product.php','product_type=1&cPath=1_12&action=new_product&x=61&y=12&','76.221.246.255'),(1074,'2010-03-25 06:27:12',2,'product.php','cPath=1_12&product_type=1&action=new_product_preview&','76.221.246.255'),(1075,'2010-03-25 06:27:14',2,'product.php','cPath=1_12&product_type=1&action=insert_product&','76.221.246.255'),(1076,'2010-03-25 06:27:14',2,'categories.php','cPath=1_12&pID=79&','76.221.246.255'),(1077,'2010-03-25 06:27:19',2,'categories.php','product_type=1&cPath=1_12&action=new_product&x=35&y=8&','76.221.246.255'),(1078,'2010-03-25 06:27:19',2,'product.php','product_type=1&cPath=1_12&action=new_product&x=35&y=8&','76.221.246.255'),(1079,'2010-03-25 06:27:59',2,'product.php','cPath=1_12&product_type=1&action=new_product_preview&','76.221.246.255'),(1080,'2010-03-25 06:28:01',2,'product.php','cPath=1_12&product_type=1&action=insert_product&','76.221.246.255'),(1081,'2010-03-25 06:28:01',2,'categories.php','cPath=1_12&pID=80&','76.221.246.255'),(1082,'2010-03-25 06:28:05',2,'product.php','cPath=1_12&product_type=1&pID=80&action=new_product&','76.221.246.255'),(1083,'2010-03-25 06:28:12',2,'product.php','cPath=1_12&product_type=1&pID=80&action=new_product_preview&','76.221.246.255'),(1084,'2010-03-25 06:28:14',2,'product.php','cPath=1_12&product_type=1&pID=80&action=update_product&','76.221.246.255'),(1085,'2010-03-25 06:28:15',2,'categories.php','cPath=1_12&pID=80&','76.221.246.255'),(1086,'2010-03-25 06:28:23',2,'categories.php','product_type=1&cPath=1_12&action=new_product&x=36&y=5&','76.221.246.255'),(1087,'2010-03-25 06:28:23',2,'product.php','product_type=1&cPath=1_12&action=new_product&x=36&y=5&','76.221.246.255'),(1088,'2010-03-25 06:28:41',2,'product.php','cPath=1_12&product_type=1&action=new_product_preview&','76.221.246.255'),(1089,'2010-03-25 06:28:44',2,'product.php','cPath=1_12&product_type=1&action=insert_product&','76.221.246.255'),(1090,'2010-03-25 06:28:44',2,'categories.php','cPath=1_12&pID=81&','76.221.246.255'),(1091,'2010-03-25 06:28:52',2,'categories.php','cPath=1&cID=12&','76.221.246.255'),(1092,'2010-03-25 06:29:07',2,'categories.php','cPath=1&action=new_category&','76.221.246.255'),(1093,'2010-03-25 06:29:43',2,'categories.php','action=insert_category&cPath=1&','76.221.246.255'),(1094,'2010-03-25 06:29:43',2,'categories.php','cPath=1&cID=13&','76.221.246.255'),(1095,'2010-03-25 06:29:47',2,'categories.php','cPath=1&cID=12&action=edit_category&','76.221.246.255'),(1096,'2010-03-25 06:29:56',2,'categories.php','cPath=1&cID=13&action=edit_category&','76.221.246.255'),(1097,'2010-03-25 06:30:01',2,'categories.php','action=update_category&cPath=1&','76.221.246.255'),(1098,'2010-03-25 06:30:02',2,'categories.php','cPath=1&cID=13&','76.221.246.255'),(1099,'2010-03-25 06:30:16',2,'categories.php','cPath=1&cID=13&action=edit_category&','76.221.246.255'),(1100,'2010-03-25 06:30:23',2,'categories.php','action=update_category&cPath=1&','76.221.246.255'),(1101,'2010-03-25 06:30:23',2,'categories.php','cPath=1&cID=13&','76.221.246.255'),(1102,'2010-03-25 06:30:35',2,'categories.php','cPath=1_13&','76.221.246.255'),(1103,'2010-03-25 06:30:37',2,'categories.php','product_type=1&cPath=1_13&action=new_product&x=62&y=12&','76.221.246.255'),(1104,'2010-03-25 06:30:38',2,'product.php','product_type=1&cPath=1_13&action=new_product&x=62&y=12&','76.221.246.255'),(1105,'2010-03-25 06:30:48',2,'product.php','cPath=1_13&product_type=1&action=new_product_preview&','76.221.246.255'),(1106,'2010-03-25 06:30:51',2,'product.php','cPath=1_13&product_type=1&action=insert_product&','76.221.246.255'),(1107,'2010-03-25 06:30:51',2,'categories.php','cPath=1_13&pID=82&','76.221.246.255'),(1108,'2010-03-25 06:31:18',2,'categories.php','product_type=1&cPath=1_13&action=new_product&x=38&y=7&','76.221.246.255'),(1109,'2010-03-25 06:31:18',2,'product.php','product_type=1&cPath=1_13&action=new_product&x=38&y=7&','76.221.246.255'),(1110,'2010-03-25 06:31:31',2,'product.php','cPath=1_13&product_type=1&action=new_product_preview&','76.221.246.255'),(1111,'2010-03-25 06:31:33',2,'product.php','cPath=1_13&product_type=1&action=insert_product&','76.221.246.255'),(1112,'2010-03-25 06:31:34',2,'categories.php','cPath=1_13&pID=83&','76.221.246.255'),(1113,'2010-03-25 06:31:37',2,'categories.php','product_type=1&cPath=1_13&action=new_product&x=44&y=16&','76.221.246.255'),(1114,'2010-03-25 06:31:37',2,'product.php','product_type=1&cPath=1_13&action=new_product&x=44&y=16&','76.221.246.255'),(1115,'2010-03-25 06:31:57',2,'product.php','cPath=1_13&product_type=1&action=new_product_preview&','76.221.246.255'),(1116,'2010-03-25 06:31:59',2,'product.php','cPath=1_13&product_type=1&action=insert_product&','76.221.246.255'),(1117,'2010-03-25 06:31:59',2,'categories.php','cPath=1_13&pID=84&','76.221.246.255'),(1118,'2010-03-25 06:32:03',2,'categories.php','product_type=1&cPath=1_13&action=new_product&x=75&y=19&','76.221.246.255'),(1119,'2010-03-25 06:32:03',2,'product.php','product_type=1&cPath=1_13&action=new_product&x=75&y=19&','76.221.246.255'),(1120,'2010-03-25 06:32:24',2,'product.php','cPath=1_13&product_type=1&action=new_product_preview&','76.221.246.255'),(1121,'2010-03-25 06:32:25',2,'product.php','cPath=1_13&product_type=1&action=insert_product&','76.221.246.255'),(1122,'2010-03-25 06:32:26',2,'categories.php','cPath=1_13&pID=85&','76.221.246.255'),(1123,'2010-03-25 06:32:29',2,'categories.php','product_type=1&cPath=1_13&action=new_product&x=71&y=15&','76.221.246.255'),(1124,'2010-03-25 06:32:29',2,'product.php','product_type=1&cPath=1_13&action=new_product&x=71&y=15&','76.221.246.255'),(1125,'2010-03-25 06:32:46',2,'product.php','cPath=1_13&product_type=1&action=new_product_preview&','76.221.246.255'),(1126,'2010-03-25 06:32:48',2,'product.php','cPath=1_13&product_type=1&action=insert_product&','76.221.246.255'),(1127,'2010-03-25 06:32:48',2,'categories.php','cPath=1_13&pID=86&','76.221.246.255'),(1128,'2010-03-25 06:33:05',2,'product.php','page=1&product_type=1&cPath=1_13&pID=86&action=new_product&','76.221.246.255'),(1129,'2010-03-25 06:33:10',2,'product.php','cPath=1_13&product_type=1&pID=86&action=new_product_preview&page=1&','76.221.246.255'),(1130,'2010-03-25 06:33:13',2,'product.php','cPath=1_13&product_type=1&pID=86&action=update_product&page=1&','76.221.246.255'),(1131,'2010-03-25 06:33:13',2,'categories.php','cPath=1_13&pID=86&page=1&','76.221.246.255'),(1132,'2010-03-25 06:33:17',2,'categories.php','cPath=1&cID=13&','76.221.246.255'),(1133,'2010-03-25 06:33:20',2,'categories.php','cPath=1&action=new_category&','76.221.246.255'),(1134,'2010-03-25 06:34:47',2,'categories.php','action=insert_category&cPath=1&','76.221.246.255'),(1135,'2010-03-25 06:34:47',2,'categories.php','cPath=1&cID=14&','76.221.246.255'),(1136,'2010-03-25 06:34:52',2,'categories.php','cPath=1_14&','76.221.246.255'),(1137,'2010-03-25 06:34:53',2,'categories.php','product_type=1&cPath=1_14&action=new_product&x=44&y=15&','76.221.246.255'),(1138,'2010-03-25 06:34:54',2,'product.php','product_type=1&cPath=1_14&action=new_product&x=44&y=15&','76.221.246.255'),(1139,'2010-03-25 06:35:03',2,'product.php','cPath=1_14&product_type=1&action=new_product_preview&','76.221.246.255'),(1140,'2010-03-25 06:35:05',2,'product.php','cPath=1_14&product_type=1&action=insert_product&','76.221.246.255'),(1141,'2010-03-25 06:35:06',2,'categories.php','cPath=1_14&pID=87&','76.221.246.255'),(1142,'2010-03-25 06:35:11',2,'categories.php','product_type=1&cPath=1_14&action=new_product&x=17&y=11&','76.221.246.255'),(1143,'2010-03-25 06:35:12',2,'product.php','product_type=1&cPath=1_14&action=new_product&x=17&y=11&','76.221.246.255'),(1144,'2010-03-25 06:35:30',2,'product.php','cPath=1_14&product_type=1&action=new_product_preview&','76.221.246.255'),(1145,'2010-03-25 06:35:31',2,'product.php','cPath=1_14&product_type=1&action=insert_product&','76.221.246.255'),(1146,'2010-03-25 06:35:32',2,'categories.php','cPath=1_14&pID=88&','76.221.246.255'),(1147,'2010-03-25 06:35:38',2,'categories.php','product_type=1&cPath=1_14&action=new_product&x=64&y=7&','76.221.246.255'),(1148,'2010-03-25 06:35:38',2,'product.php','product_type=1&cPath=1_14&action=new_product&x=64&y=7&','76.221.246.255'),(1149,'2010-03-25 06:35:55',2,'product.php','cPath=1_14&product_type=1&action=new_product_preview&','76.221.246.255'),(1150,'2010-03-25 06:35:57',2,'product.php','cPath=1_14&product_type=1&action=insert_product&','76.221.246.255'),(1151,'2010-03-25 06:35:57',2,'categories.php','cPath=1_14&pID=89&','76.221.246.255'),(1152,'2010-03-25 06:36:00',2,'categories.php','product_type=1&cPath=1_14&action=new_product&x=59&y=5&','76.221.246.255'),(1153,'2010-03-25 06:36:01',2,'product.php','product_type=1&cPath=1_14&action=new_product&x=59&y=5&','76.221.246.255'),(1154,'2010-03-25 06:36:27',2,'product.php','cPath=1_14&product_type=1&action=new_product_preview&','76.221.246.255'),(1155,'2010-03-25 06:36:29',2,'product.php','cPath=1_14&product_type=1&action=insert_product&','76.221.246.255'),(1156,'2010-03-25 06:36:29',2,'categories.php','cPath=1_14&pID=90&','76.221.246.255'),(1157,'2010-03-25 06:36:34',2,'categories.php','product_type=1&cPath=1_14&action=new_product&x=82&y=19&','76.221.246.255'),(1158,'2010-03-25 06:36:35',2,'product.php','product_type=1&cPath=1_14&action=new_product&x=82&y=19&','76.221.246.255'),(1159,'2010-03-25 06:37:03',2,'product.php','cPath=1_14&product_type=1&action=new_product_preview&','76.221.246.255'),(1160,'2010-03-25 06:37:05',2,'product.php','cPath=1_14&product_type=1&action=insert_product&','76.221.246.255'),(1161,'2010-03-25 06:37:05',2,'categories.php','cPath=1_14&pID=91&','76.221.246.255'),(1162,'2010-03-25 06:37:15',2,'product.php','cPath=1_14&product_type=1&pID=91&action=new_product&','76.221.246.255'),(1163,'2010-03-25 06:37:25',2,'product.php','cPath=1_14&product_type=1&pID=91&action=new_product_preview&','76.221.246.255'),(1164,'2010-03-25 06:37:27',2,'product.php','cPath=1_14&product_type=1&pID=91&action=update_product&','76.221.246.255'),(1165,'2010-03-25 06:37:27',2,'categories.php','cPath=1_14&pID=91&','76.221.246.255'),(1166,'2010-03-25 06:37:41',2,'categories.php','cPath=1&cID=14&','76.221.246.255'),(1167,'2010-03-25 06:37:46',2,'categories.php','cPath=1&action=new_category&','76.221.246.255'),(1168,'2010-03-25 06:39:06',2,'categories.php','action=insert_category&cPath=1&','76.221.246.255'),(1169,'2010-03-25 06:39:07',2,'categories.php','cPath=1&cID=15&','76.221.246.255'),(1170,'2010-03-25 06:39:14',2,'categories.php','cPath=1_15&','76.221.246.255'),(1171,'2010-03-25 06:39:19',2,'categories.php','product_type=1&cPath=1_15&action=new_product&x=39&y=17&','76.221.246.255'),(1172,'2010-03-25 06:39:19',2,'product.php','product_type=1&cPath=1_15&action=new_product&x=39&y=17&','76.221.246.255'),(1173,'2010-03-25 06:39:41',2,'product.php','cPath=1_15&product_type=1&action=new_product_preview&','76.221.246.255'),(1174,'2010-03-25 06:39:44',2,'product.php','cPath=1_15&product_type=1&action=insert_product&','76.221.246.255'),(1175,'2010-03-25 06:39:44',2,'categories.php','cPath=1_15&pID=92&','76.221.246.255'),(1176,'2010-03-25 06:39:46',2,'categories.php','product_type=1&cPath=1_15&action=new_product&x=53&y=11&','76.221.246.255'),(1177,'2010-03-25 06:39:47',2,'product.php','product_type=1&cPath=1_15&action=new_product&x=53&y=11&','76.221.246.255'),(1178,'2010-03-25 06:40:04',2,'product.php','cPath=1_15&product_type=1&action=new_product_preview&','76.221.246.255'),(1179,'2010-03-25 06:40:08',2,'product.php','cPath=1_15&product_type=1&action=insert_product&','76.221.246.255'),(1180,'2010-03-25 06:40:08',2,'categories.php','cPath=1_15&pID=93&','76.221.246.255'),(1181,'2010-03-25 06:40:13',2,'categories.php','product_type=1&cPath=1_15&action=new_product&x=48&y=15&','76.221.246.255'),(1182,'2010-03-25 06:40:13',2,'product.php','product_type=1&cPath=1_15&action=new_product&x=48&y=15&','76.221.246.255'),(1183,'2010-03-25 06:40:31',2,'product.php','cPath=1_15&product_type=1&action=new_product_preview&','76.221.246.255'),(1184,'2010-03-25 06:40:33',2,'product.php','cPath=1_15&product_type=1&action=insert_product&','76.221.246.255'),(1185,'2010-03-25 06:40:34',2,'categories.php','cPath=1_15&pID=94&','76.221.246.255'),(1186,'2010-03-25 06:40:39',2,'categories.php','product_type=1&cPath=1_15&action=new_product&x=49&y=5&','76.221.246.255'),(1187,'2010-03-25 06:40:39',2,'product.php','product_type=1&cPath=1_15&action=new_product&x=49&y=5&','76.221.246.255'),(1188,'2010-03-25 06:40:54',2,'product.php','cPath=1_15&product_type=1&action=new_product_preview&','76.221.246.255'),(1189,'2010-03-25 06:40:56',2,'product.php','cPath=1_15&product_type=1&action=insert_product&','76.221.246.255'),(1190,'2010-03-25 06:40:56',2,'categories.php','cPath=1_15&pID=95&','76.221.246.255'),(1191,'2010-03-25 06:41:04',2,'product.php','cPath=1_15&product_type=1&pID=95&action=new_product&','76.221.246.255'),(1192,'2010-03-25 06:41:10',2,'product.php','cPath=1_15&product_type=1&pID=95&action=new_product_preview&','76.221.246.255'),(1193,'2010-03-25 06:41:12',2,'product.php','cPath=1_15&product_type=1&pID=95&action=update_product&','76.221.246.255'),(1194,'2010-03-25 06:41:12',2,'categories.php','cPath=1_15&pID=95&','76.221.246.255'),(1195,'2010-03-25 06:41:15',2,'categories.php','product_type=1&cPath=1_15&action=new_product&x=67&y=13&','76.221.246.255'),(1196,'2010-03-25 06:41:15',2,'product.php','product_type=1&cPath=1_15&action=new_product&x=67&y=13&','76.221.246.255'),(1197,'2010-03-25 06:41:35',2,'product.php','cPath=1_15&product_type=1&action=new_product_preview&','76.221.246.255'),(1198,'2010-03-25 06:41:38',2,'product.php','cPath=1_15&product_type=1&action=insert_product&','76.221.246.255'),(1199,'2010-03-25 06:41:38',2,'categories.php','cPath=1_15&pID=96&','76.221.246.255'),(1200,'2010-03-25 06:41:51',2,'categories.php','cPath=1&cID=15&','76.221.246.255'),(1201,'2010-03-25 06:41:55',2,'categories.php','cPath=1&action=new_category&','76.221.246.255'),(1202,'2010-03-25 06:42:13',2,'categories.php','action=insert_category&cPath=1&','76.221.246.255'),(1203,'2010-03-25 06:42:14',2,'categories.php','cPath=1&cID=16&','76.221.246.255'),(1204,'2010-03-25 06:42:19',2,'categories.php','cPath=1_16&','76.221.246.255'),(1205,'2010-03-25 06:42:31',2,'categories.php','cPath=1&cID=16&','76.221.246.255'),(1206,'2010-03-25 06:42:34',2,'categories.php','cPath=1&cID=16&action=edit_category&','76.221.246.255'),(1207,'2010-03-25 06:43:01',2,'categories.php','action=update_category&cPath=1&','76.221.246.255'),(1208,'2010-03-25 06:43:02',2,'categories.php','cPath=1&cID=16&','76.221.246.255'),(1209,'2010-03-25 06:43:06',2,'categories.php','cPath=1_16&','76.221.246.255'),(1210,'2010-03-25 06:43:09',2,'categories.php','product_type=1&cPath=1_16&action=new_product&x=26&y=12&','76.221.246.255'),(1211,'2010-03-25 06:43:09',2,'product.php','product_type=1&cPath=1_16&action=new_product&x=26&y=12&','76.221.246.255'),(1212,'2010-03-25 06:43:29',2,'product.php','cPath=1_16&product_type=1&action=new_product_preview&','76.221.246.255'),(1213,'2010-03-25 06:43:31',2,'product.php','cPath=1_16&product_type=1&action=insert_product&','76.221.246.255'),(1214,'2010-03-25 06:43:31',2,'categories.php','cPath=1_16&pID=97&','76.221.246.255'),(1215,'2010-03-25 06:43:33',2,'categories.php','product_type=1&cPath=1_16&action=new_product&x=32&y=18&','76.221.246.255'),(1216,'2010-03-25 06:43:34',2,'product.php','product_type=1&cPath=1_16&action=new_product&x=32&y=18&','76.221.246.255'),(1217,'2010-03-25 06:43:53',2,'product.php','cPath=1_16&product_type=1&action=new_product_preview&','76.221.246.255'),(1218,'2010-03-25 06:43:56',2,'product.php','cPath=1_16&product_type=1&action=insert_product&','76.221.246.255'),(1219,'2010-03-25 06:43:56',2,'categories.php','cPath=1_16&pID=98&','76.221.246.255'),(1220,'2010-03-25 06:43:58',2,'categories.php','product_type=1&cPath=1_16&action=new_product&x=77&y=6&','76.221.246.255'),(1221,'2010-03-25 06:43:59',2,'product.php','product_type=1&cPath=1_16&action=new_product&x=77&y=6&','76.221.246.255'),(1222,'2010-03-25 06:44:15',2,'product.php','cPath=1_16&product_type=1&action=new_product_preview&','76.221.246.255'),(1223,'2010-03-25 06:44:17',2,'product.php','cPath=1_16&product_type=1&action=insert_product&','76.221.246.255'),(1224,'2010-03-25 06:44:17',2,'categories.php','cPath=1_16&pID=99&','76.221.246.255'),(1225,'2010-03-25 06:44:20',2,'categories.php','product_type=1&cPath=1_16&action=new_product&x=13&y=10&','76.221.246.255'),(1226,'2010-03-25 06:44:21',2,'product.php','product_type=1&cPath=1_16&action=new_product&x=13&y=10&','76.221.246.255'),(1227,'2010-03-25 06:44:36',2,'product.php','cPath=1_16&product_type=1&action=new_product_preview&','76.221.246.255'),(1228,'2010-03-25 06:44:38',2,'product.php','cPath=1_16&product_type=1&action=insert_product&','76.221.246.255'),(1229,'2010-03-25 06:44:38',2,'categories.php','cPath=1_16&pID=100&','76.221.246.255'),(1230,'2010-03-25 06:44:44',2,'categories.php','product_type=1&cPath=1_16&action=new_product&x=83&y=21&','76.221.246.255'),(1231,'2010-03-25 06:44:44',2,'product.php','product_type=1&cPath=1_16&action=new_product&x=83&y=21&','76.221.246.255'),(1232,'2010-03-25 06:45:08',2,'product.php','cPath=1_16&product_type=1&action=new_product_preview&','76.221.246.255'),(1233,'2010-03-25 06:45:10',2,'product.php','cPath=1_16&product_type=1&action=insert_product&','76.221.246.255'),(1234,'2010-03-25 06:45:10',2,'categories.php','cPath=1_16&pID=101&','76.221.246.255'),(1235,'2010-03-25 06:45:17',2,'categories.php','cPath=1&cID=16&','76.221.246.255'),(1236,'2010-03-25 06:45:21',2,'categories.php','cPath=1&action=new_category&','76.221.246.255'),(1237,'2010-03-25 06:46:52',2,'categories.php','action=insert_category&cPath=1&','76.221.246.255'),(1238,'2010-03-25 06:46:52',2,'categories.php','cPath=1&cID=17&','76.221.246.255'),(1239,'2010-03-25 06:47:00',2,'categories.php','cPath=1&cID=15&action=edit_category&','76.221.246.255'),(1240,'2010-03-25 06:48:45',2,'categories.php','action=update_category&cPath=1&','76.221.246.255'),(1241,'2010-03-25 06:48:45',2,'categories.php','cPath=1&cID=15&','76.221.246.255'),(1242,'2010-03-25 06:48:54',2,'categories.php','cPath=1_16&','76.221.246.255'),(1243,'2010-03-25 06:48:59',2,'product.php','cPath=1_16&product_type=1&pID=97&action=move_product&','76.221.246.255'),(1244,'2010-03-25 06:49:05',2,'product.php','action=move_product_confirm&cPath=1_16&page=1&','76.221.246.255'),(1245,'2010-03-25 06:49:06',2,'categories.php','cPath=15&pID=97&page=1&','76.221.246.255'),(1246,'2010-03-25 06:49:10',2,'product.php','cPath=15&product_type=1&pID=94&action=new_product&','76.221.246.255'),(1247,'2010-03-25 06:49:23',2,'categories.php','cID=15&','76.221.246.255'),(1248,'2010-03-25 06:49:46',2,'categories.php','cID=15&','76.221.246.255'),(1249,'2010-03-25 06:49:59',2,'categories.php','cPath=1&','76.221.246.255'),(1250,'2010-03-25 06:50:11',2,'categories.php','cPath=1_16&','76.221.246.255'),(1251,'2010-03-25 06:50:16',2,'product.php','cPath=1_16&product_type=1&pID=98&action=move_product&','76.221.246.255'),(1252,'2010-03-25 06:50:21',2,'product.php','action=move_product_confirm&cPath=1_16&page=1&','76.221.246.255'),(1253,'2010-03-25 06:50:21',2,'categories.php','cPath=15&pID=98&page=1&','76.221.246.255'),(1254,'2010-03-25 06:50:26',2,'categories.php','cID=15&','76.221.246.255'),(1255,'2010-03-25 06:50:28',2,'categories.php','cPath=1&','76.221.246.255'),(1256,'2010-03-25 06:50:32',2,'categories.php','cPath=1_16&','76.221.246.255'),(1257,'2010-03-25 06:50:35',2,'product.php','cPath=1_16&product_type=1&pID=99&action=move_product&','76.221.246.255'),(1258,'2010-03-25 06:50:40',2,'product.php','action=move_product_confirm&cPath=1_16&page=1&','76.221.246.255'),(1259,'2010-03-25 06:50:40',2,'categories.php','cPath=15&pID=99&page=1&','76.221.246.255'),(1260,'2010-03-25 06:50:42',2,'categories.php','cID=15&','76.221.246.255'),(1261,'2010-03-25 06:50:45',2,'categories.php','cPath=1&','76.221.246.255'),(1262,'2010-03-25 06:50:49',2,'categories.php','cPath=1_16&','76.221.246.255'),(1263,'2010-03-25 06:50:52',2,'product.php','cPath=1_16&product_type=1&pID=100&action=move_product&','76.221.246.255'),(1264,'2010-03-25 06:50:59',2,'product.php','action=move_product_confirm&cPath=1_16&page=1&','76.221.246.255'),(1265,'2010-03-25 06:50:59',2,'categories.php','cPath=15&pID=100&page=1&','76.221.246.255'),(1266,'2010-03-25 06:51:05',2,'categories.php','cID=15&','76.221.246.255'),(1267,'2010-03-25 06:51:07',2,'categories.php','cPath=1&','76.221.246.255'),(1268,'2010-03-25 06:51:20',2,'categories.php','cPath=1_16&','76.221.246.255'),(1269,'2010-03-25 06:51:28',2,'product.php','cPath=1_16&product_type=1&pID=101&action=move_product&','76.221.246.255'),(1270,'2010-03-25 06:51:35',2,'product.php','action=move_product_confirm&cPath=1_16&page=1&','76.221.246.255'),(1271,'2010-03-25 06:51:35',2,'categories.php','cPath=15&pID=101&page=1&','76.221.246.255'),(1272,'2010-03-25 06:51:40',2,'categories.php','cID=15&','76.221.246.255'),(1273,'2010-03-25 06:51:42',2,'categories.php','cPath=1&','76.221.246.255'),(1274,'2010-03-25 06:51:45',2,'categories.php','cPath=1_16&','76.221.246.255'),(1275,'2010-03-25 06:51:54',2,'categories.php','cPath=1&cID=16&action=delete_category&','76.221.246.255'),(1276,'2010-03-25 06:51:57',2,'categories.php','action=delete_category_confirm&cPath=1&','76.221.246.255'),(1277,'2010-03-25 06:51:57',2,'categories.php','cPath=1&','76.221.246.255'),(1278,'2010-03-25 06:52:02',2,'categories.php','cPath=1_17&','76.221.246.255'),(1279,'2010-03-25 06:52:09',2,'categories.php','cPath=1&cID=17&action=edit_category&','76.221.246.255'),(1280,'2010-03-25 06:52:20',2,'categories.php','action=update_category&cPath=1&','76.221.246.255'),(1281,'2010-03-25 06:52:20',2,'categories.php','cPath=1&cID=17&','76.221.246.255'),(1282,'2010-03-25 06:52:43',2,'categories.php','cPath=1_15&','76.221.246.255'),(1283,'2010-03-25 06:53:02',2,'product.php','cPath=1_15&product_type=1&pID=97&action=new_product&','76.221.246.255'),(1284,'2010-03-25 06:53:10',2,'product.php','cPath=1_15&product_type=1&pID=97&action=new_product_preview&','76.221.246.255'),(1285,'2010-03-25 06:53:12',2,'product.php','cPath=1_15&product_type=1&pID=97&action=update_product&','76.221.246.255'),(1286,'2010-03-25 06:53:12',2,'categories.php','cPath=1_15&pID=97&','76.221.246.255'),(1287,'2010-03-25 06:53:20',2,'product.php','cPath=1_15&product_type=1&pID=98&action=new_product&','76.221.246.255'),(1288,'2010-03-25 06:53:26',2,'product.php','cPath=1_15&product_type=1&pID=98&action=new_product_preview&','76.221.246.255'),(1289,'2010-03-25 06:53:28',2,'product.php','cPath=1_15&product_type=1&pID=98&action=update_product&','76.221.246.255'),(1290,'2010-03-25 06:53:28',2,'categories.php','cPath=1_15&pID=98&','76.221.246.255'),(1291,'2010-03-25 06:53:38',2,'product.php','cPath=1_15&product_type=1&pID=99&action=new_product&','76.221.246.255'),(1292,'2010-03-25 06:53:43',2,'product.php','cPath=1_15&product_type=1&pID=99&action=new_product_preview&','76.221.246.255'),(1293,'2010-03-25 06:53:46',2,'product.php','cPath=1_15&product_type=1&pID=99&action=update_product&','76.221.246.255'),(1294,'2010-03-25 06:53:46',2,'categories.php','cPath=1_15&pID=99&','76.221.246.255'),(1295,'2010-03-25 06:54:07',2,'product.php','cPath=1_15&product_type=1&pID=100&action=new_product&','76.221.246.255'),(1296,'2010-03-25 06:54:14',2,'product.php','cPath=1_15&product_type=1&pID=100&action=new_product_preview&','76.221.246.255'),(1297,'2010-03-25 06:54:16',2,'product.php','cPath=1_15&product_type=1&pID=100&action=update_product&','76.221.246.255'),(1298,'2010-03-25 06:54:16',2,'categories.php','cPath=1_15&pID=100&','76.221.246.255'),(1299,'2010-03-25 06:54:29',2,'product.php','cPath=1_15&product_type=1&pID=101&action=new_product&','76.221.246.255'),(1300,'2010-03-25 06:54:35',2,'product.php','cPath=1_15&product_type=1&pID=101&action=new_product_preview&','76.221.246.255'),(1301,'2010-03-25 06:54:38',2,'product.php','cPath=1_15&product_type=1&pID=101&action=update_product&','76.221.246.255'),(1302,'2010-03-25 06:54:38',2,'categories.php','cPath=1_15&pID=101&','76.221.246.255'),(1303,'2010-03-25 06:54:47',2,'categories.php','cPath=1&cID=15&','76.221.246.255'),(1304,'2010-03-25 06:54:49',2,'categories.php','cPath=1_17&','76.221.246.255'),(1305,'2010-03-25 06:54:52',2,'categories.php','product_type=1&cPath=1_17&action=new_product&x=61&y=8&','76.221.246.255'),(1306,'2010-03-25 06:54:52',2,'product.php','product_type=1&cPath=1_17&action=new_product&x=61&y=8&','76.221.246.255'),(1307,'2010-03-25 06:55:12',2,'product.php','cPath=1_17&product_type=1&action=new_product_preview&','76.221.246.255'),(1308,'2010-03-25 06:55:14',2,'product.php','cPath=1_17&product_type=1&action=insert_product&','76.221.246.255'),(1309,'2010-03-25 06:55:15',2,'categories.php','cPath=1_17&pID=102&','76.221.246.255'),(1310,'2010-03-25 06:55:17',2,'categories.php','product_type=1&cPath=1_17&action=new_product&x=65&y=15&','76.221.246.255'),(1311,'2010-03-25 06:55:18',2,'product.php','product_type=1&cPath=1_17&action=new_product&x=65&y=15&','76.221.246.255'),(1312,'2010-03-25 06:55:40',2,'product.php','cPath=1_17&product_type=1&action=new_product_preview&','76.221.246.255'),(1313,'2010-03-25 06:55:42',2,'product.php','cPath=1_17&product_type=1&action=insert_product&','76.221.246.255'),(1314,'2010-03-25 06:55:42',2,'categories.php','cPath=1_17&pID=103&','76.221.246.255'),(1315,'2010-03-25 06:55:45',2,'categories.php','product_type=1&cPath=1_17&action=new_product&x=35&y=17&','76.221.246.255'),(1316,'2010-03-25 06:55:45',2,'product.php','product_type=1&cPath=1_17&action=new_product&x=35&y=17&','76.221.246.255'),(1317,'2010-03-25 06:56:04',2,'product.php','cPath=1_17&product_type=1&action=new_product_preview&','76.221.246.255'),(1318,'2010-03-25 06:56:06',2,'product.php','cPath=1_17&product_type=1&action=insert_product&','76.221.246.255'),(1319,'2010-03-25 06:56:07',2,'categories.php','cPath=1_17&pID=104&','76.221.246.255'),(1320,'2010-03-25 06:56:18',2,'categories.php','product_type=1&cPath=1_17&action=new_product&x=28&y=19&','76.221.246.255'),(1321,'2010-03-25 06:56:18',2,'product.php','product_type=1&cPath=1_17&action=new_product&x=28&y=19&','76.221.246.255'),(1322,'2010-03-25 06:56:33',2,'product.php','cPath=1_17&product_type=1&action=new_product_preview&','76.221.246.255'),(1323,'2010-03-25 06:56:35',2,'product.php','cPath=1_17&product_type=1&action=insert_product&','76.221.246.255'),(1324,'2010-03-25 06:56:35',2,'categories.php','cPath=1_17&pID=105&','76.221.246.255'),(1325,'2010-03-25 06:56:38',2,'categories.php','product_type=1&cPath=1_17&action=new_product&x=65&y=13&','76.221.246.255'),(1326,'2010-03-25 06:56:39',2,'product.php','product_type=1&cPath=1_17&action=new_product&x=65&y=13&','76.221.246.255'),(1327,'2010-03-25 06:57:02',2,'product.php','cPath=1_17&product_type=1&action=new_product_preview&','76.221.246.255'),(1328,'2010-03-25 06:57:04',2,'product.php','cPath=1_17&product_type=1&action=insert_product&','76.221.246.255'),(1329,'2010-03-25 06:57:05',2,'categories.php','cPath=1_17&pID=106&','76.221.246.255'),(1330,'2010-03-25 06:57:08',2,'categories.php','product_type=1&cPath=1_17&action=new_product&x=81&y=17&','76.221.246.255'),(1331,'2010-03-25 06:57:08',2,'product.php','product_type=1&cPath=1_17&action=new_product&x=81&y=17&','76.221.246.255'),(1332,'2010-03-25 06:57:33',2,'product.php','cPath=1_17&product_type=1&action=new_product_preview&','76.221.246.255'),(1333,'2010-03-25 06:57:35',2,'product.php','cPath=1_17&product_type=1&action=insert_product&','76.221.246.255'),(1334,'2010-03-25 06:57:35',2,'categories.php','cPath=1_17&pID=107&','76.221.246.255'),(1335,'2010-03-25 06:57:39',2,'categories.php','product_type=1&cPath=1_17&action=new_product&x=49&y=18&','76.221.246.255'),(1336,'2010-03-25 06:57:40',2,'product.php','product_type=1&cPath=1_17&action=new_product&x=49&y=18&','76.221.246.255'),(1337,'2010-03-25 06:58:00',2,'product.php','cPath=1_17&product_type=1&action=new_product_preview&','76.221.246.255'),(1338,'2010-03-25 06:58:02',2,'product.php','cPath=1_17&product_type=1&action=insert_product&','76.221.246.255'),(1339,'2010-03-25 06:58:02',2,'categories.php','cPath=1_17&pID=108&','76.221.246.255'),(1340,'2010-03-25 06:58:05',2,'categories.php','product_type=1&cPath=1_17&action=new_product&x=31&y=10&','76.221.246.255'),(1341,'2010-03-25 06:58:06',2,'product.php','product_type=1&cPath=1_17&action=new_product&x=31&y=10&','76.221.246.255'),(1342,'2010-03-25 06:58:33',2,'product.php','cPath=1_17&product_type=1&action=new_product_preview&','76.221.246.255'),(1343,'2010-03-25 06:58:36',2,'product.php','cPath=1_17&product_type=1&action=insert_product&','76.221.246.255'),(1344,'2010-03-25 06:58:36',2,'categories.php','cPath=1_17&pID=109&','76.221.246.255'),(1345,'2010-03-25 06:58:45',2,'product.php','cPath=1_17&product_type=1&pID=108&action=new_product&','76.221.246.255'),(1346,'2010-03-25 06:58:50',2,'product.php','cPath=1_17&product_type=1&pID=108&action=new_product_preview&','76.221.246.255'),(1347,'2010-03-25 06:58:52',2,'product.php','cPath=1_17&product_type=1&pID=108&action=update_product&','76.221.246.255'),(1348,'2010-03-25 06:58:52',2,'categories.php','cPath=1_17&pID=108&','76.221.246.255'),(1349,'2010-03-25 06:58:59',2,'categories.php','product_type=1&cPath=1_17&action=new_product&x=70&y=13&','76.221.246.255'),(1350,'2010-03-25 06:58:59',2,'product.php','product_type=1&cPath=1_17&action=new_product&x=70&y=13&','76.221.246.255'),(1351,'2010-03-25 06:59:25',2,'product.php','cPath=1_17&product_type=1&action=new_product_preview&','76.221.246.255'),(1352,'2010-03-25 06:59:27',2,'product.php','cPath=1_17&product_type=1&action=insert_product&','76.221.246.255'),(1353,'2010-03-25 06:59:27',2,'categories.php','cPath=1_17&pID=110&','76.221.246.255'),(1354,'2010-03-25 06:59:30',2,'categories.php','product_type=1&cPath=1_17&action=new_product&x=33&y=16&','76.221.246.255'),(1355,'2010-03-25 06:59:31',2,'product.php','product_type=1&cPath=1_17&action=new_product&x=33&y=16&','76.221.246.255'),(1356,'2010-03-25 06:59:51',2,'product.php','cPath=1_17&product_type=1&action=new_product_preview&','76.221.246.255'),(1357,'2010-03-25 06:59:53',2,'product.php','cPath=1_17&product_type=1&action=insert_product&','76.221.246.255'),(1358,'2010-03-25 06:59:53',2,'categories.php','cPath=1_17&pID=111&','76.221.246.255'),(1359,'2010-03-25 06:59:58',2,'categories.php','product_type=1&cPath=1_17&action=new_product&x=62&y=13&','76.221.246.255'),(1360,'2010-03-25 06:59:59',2,'product.php','product_type=1&cPath=1_17&action=new_product&x=62&y=13&','76.221.246.255'),(1361,'2010-03-25 07:00:22',2,'product.php','cPath=1_17&product_type=1&action=new_product_preview&','76.221.246.255'),(1362,'2010-03-25 07:00:24',2,'product.php','cPath=1_17&product_type=1&action=insert_product&','76.221.246.255'),(1363,'2010-03-25 07:00:24',2,'categories.php','cPath=1_17&pID=112&','76.221.246.255'),(1364,'2010-03-25 07:00:26',2,'categories.php','product_type=1&cPath=1_17&action=new_product&x=51&y=1&','76.221.246.255'),(1365,'2010-03-25 07:00:26',2,'product.php','product_type=1&cPath=1_17&action=new_product&x=51&y=1&','76.221.246.255'),(1366,'2010-03-25 07:00:55',2,'product.php','cPath=1_17&product_type=1&action=new_product_preview&','76.221.246.255'),(1367,'2010-03-25 07:00:57',2,'product.php','cPath=1_17&product_type=1&action=insert_product&','76.221.246.255'),(1368,'2010-03-25 07:00:57',2,'categories.php','cPath=1_17&pID=113&','76.221.246.255'),(1369,'2010-03-25 07:01:01',2,'product.php','cPath=1_17&product_type=1&pID=113&action=new_product&','76.221.246.255'),(1370,'2010-03-25 07:01:08',2,'product.php','cPath=1_17&product_type=1&pID=113&action=new_product_preview&','76.221.246.255'),(1371,'2010-03-25 07:01:10',2,'product.php','cPath=1_17&product_type=1&pID=113&action=update_product&','76.221.246.255'),(1372,'2010-03-25 07:01:11',2,'categories.php','cPath=1_17&pID=113&','76.221.246.255'),(1373,'2010-03-25 07:01:17',2,'categories.php','cPath=1&cID=17&','76.221.246.255'),(1374,'2010-03-25 07:01:22',2,'categories.php','cPath=1_15&','76.221.246.255'),(1375,'2010-03-25 07:01:31',2,'categories.php','cPath=1&cID=15&','76.221.246.255'),(1376,'2010-03-25 07:01:34',2,'categories.php','cPath=1_17&','76.221.246.255'),(1377,'2010-03-25 07:02:05',2,'categories.php','cPath=1&cID=17&','76.221.246.255'),(1378,'2010-03-25 07:02:08',2,'categories.php','cPath=1_15&','76.221.246.255'),(1379,'2010-03-25 07:02:13',2,'categories.php','cPath=1&cID=15&','76.221.246.255'),(1380,'2010-03-25 07:02:17',2,'categories.php','cPath=1_17&','76.221.246.255'),(1381,'2010-03-25 07:02:23',2,'categories.php','product_type=1&cPath=1_17&action=new_product&x=74&y=20&','76.221.246.255'),(1382,'2010-03-25 07:02:24',2,'product.php','product_type=1&cPath=1_17&action=new_product&x=74&y=20&','76.221.246.255'),(1383,'2010-03-25 07:02:55',2,'product.php','cPath=1_17&product_type=1&action=new_product_preview&','76.221.246.255'),(1384,'2010-03-25 07:02:58',2,'product.php','cPath=1_17&product_type=1&action=insert_product&','76.221.246.255'),(1385,'2010-03-25 07:02:58',2,'categories.php','cPath=1_17&pID=114&','76.221.246.255'),(1386,'2010-03-25 07:03:14',2,'product.php','cPath=1_17&product_type=1&pID=114&action=delete_product&','76.221.246.255'),(1387,'2010-03-25 07:03:18',2,'product.php','action=delete_product_confirm&product_type=1&cPath=1_17&page=2&','76.221.246.255'),(1388,'2010-03-25 07:03:18',2,'categories.php','cPath=1_17&','76.221.246.255'),(1389,'2010-03-25 07:03:23',2,'categories.php','cPath=1_17&page=2&','76.221.246.255'),(1390,'2010-03-25 07:03:59',2,'categories.php','cPath=1&cID=17&','76.221.246.255'),(1391,'2010-03-25 07:04:03',2,'categories.php','cPath=1_4&','76.221.246.255'),(1392,'2010-03-25 07:04:13',2,'categories.php','product_type=1&cPath=1_4&action=new_product&x=57&y=14&','76.221.246.255'),(1393,'2010-03-25 07:04:13',2,'product.php','product_type=1&cPath=1_4&action=new_product&x=57&y=14&','76.221.246.255'),(1394,'2010-03-25 07:04:59',2,'product.php','cPath=1_4&product_type=1&action=new_product_preview&','76.221.246.255'),(1395,'2010-03-25 07:05:03',2,'product.php','cPath=1_4&product_type=1&action=insert_product&','76.221.246.255'),(1396,'2010-03-25 07:05:03',2,'categories.php','cPath=1_4&pID=115&','76.221.246.255'),(1397,'2010-03-25 07:05:07',2,'product.php','page=1&product_type=1&cPath=1_4&pID=2&action=new_product&','76.221.246.255'),(1398,'2010-03-25 07:05:21',2,'categories.php','cPath=1_4&pID=2&page=1&','76.221.246.255'),(1399,'2010-03-25 07:05:24',2,'product.php','page=1&product_type=1&cPath=1_4&pID=1&action=new_product&','76.221.246.255'),(1400,'2010-03-25 07:05:58',2,'product.php','cPath=1_4&product_type=1&pID=1&action=new_product_preview&page=1&','76.221.246.255'),(1401,'2010-03-25 07:06:01',2,'product.php','cPath=1_4&product_type=1&pID=1&action=update_product&page=1&','76.221.246.255'),(1402,'2010-03-25 07:06:01',2,'categories.php','cPath=1_4&pID=1&page=1&','76.221.246.255'),(1403,'2010-03-25 07:06:09',2,'categories.php','product_type=1&cPath=1_4&action=new_product&x=47&y=4&','76.221.246.255'),(1404,'2010-03-25 07:06:09',2,'product.php','product_type=1&cPath=1_4&action=new_product&x=47&y=4&','76.221.246.255'),(1405,'2010-03-25 07:06:31',2,'product.php','cPath=1_4&product_type=1&action=new_product_preview&','76.221.246.255'),(1406,'2010-03-25 07:06:34',2,'product.php','cPath=1_4&product_type=1&action=insert_product&','76.221.246.255'),(1407,'2010-03-25 07:06:40',2,'product.php','cPath=1_4&product_type=1&action=new_product_preview&','76.221.246.255'),(1408,'2010-03-25 07:06:42',2,'product.php','cPath=1_4&product_type=1&action=insert_product&','76.221.246.255'),(1409,'2010-03-25 07:06:43',2,'categories.php','cPath=1_4&pID=116&','76.221.246.255'),(1410,'2010-03-25 07:06:54',2,'categories.php','product_type=1&cPath=1_4&action=new_product&x=23&y=9&','76.221.246.255'),(1411,'2010-03-25 07:06:55',2,'product.php','product_type=1&cPath=1_4&action=new_product&x=23&y=9&','76.221.246.255'),(1412,'2010-03-25 07:07:06',2,'product.php','cPath=1_4&product_type=1&action=new_product_preview&','76.221.246.255'),(1413,'2010-03-25 07:07:09',2,'product.php','cPath=1_4&product_type=1&action=insert_product&','76.221.246.255'),(1414,'2010-03-25 07:07:09',2,'categories.php','cPath=1_4&pID=117&','76.221.246.255'),(1415,'2010-03-25 07:07:25',2,'categories.php','product_type=1&cPath=1_4&action=new_product&x=44&y=10&','76.221.246.255'),(1416,'2010-03-25 07:07:26',2,'product.php','product_type=1&cPath=1_4&action=new_product&x=44&y=10&','76.221.246.255'),(1417,'2010-03-25 07:07:42',2,'product.php','cPath=1_4&product_type=1&action=new_product_preview&','76.221.246.255'),(1418,'2010-03-25 07:07:45',2,'product.php','cPath=1_4&product_type=1&action=insert_product&','76.221.246.255'),(1419,'2010-03-25 07:07:45',2,'categories.php','cPath=1_4&pID=118&','76.221.246.255'),(1420,'2010-03-25 07:08:01',2,'categories.php','product_type=1&cPath=1_4&action=new_product&x=18&y=9&','76.221.246.255'),(1421,'2010-03-25 07:08:01',2,'product.php','product_type=1&cPath=1_4&action=new_product&x=18&y=9&','76.221.246.255'),(1422,'2010-03-25 07:08:15',2,'product.php','cPath=1_4&product_type=1&action=new_product_preview&','76.221.246.255'),(1423,'2010-03-25 07:08:18',2,'product.php','cPath=1_4&product_type=1&action=insert_product&','76.221.246.255'),(1424,'2010-03-25 07:08:18',2,'categories.php','cPath=1_4&pID=119&','76.221.246.255'),(1425,'2010-03-25 07:08:26',2,'categories.php','product_type=1&cPath=1_4&action=new_product&x=61&y=11&','76.221.246.255'),(1426,'2010-03-25 07:08:27',2,'product.php','product_type=1&cPath=1_4&action=new_product&x=61&y=11&','76.221.246.255'),(1427,'2010-03-25 07:09:00',2,'product.php','cPath=1_4&product_type=1&action=new_product_preview&','76.221.246.255'),(1428,'2010-03-25 07:09:02',2,'product.php','cPath=1_4&product_type=1&action=insert_product&','76.221.246.255'),(1429,'2010-03-25 07:09:03',2,'categories.php','cPath=1_4&pID=120&','76.221.246.255'),(1430,'2010-03-25 07:09:06',2,'product.php','cPath=1_4&product_type=1&pID=119&action=new_product&','76.221.246.255'),(1431,'2010-03-25 07:09:14',2,'product.php','cPath=1_4&product_type=1&pID=120&action=new_product&','76.221.246.255'),(1432,'2010-03-25 07:09:22',2,'product.php','cPath=1_4&product_type=1&pID=120&action=new_product_preview&','76.221.246.255'),(1433,'2010-03-25 07:09:24',2,'product.php','cPath=1_4&product_type=1&pID=120&action=update_product&','76.221.246.255'),(1434,'2010-03-25 07:09:24',2,'categories.php','cPath=1_4&pID=120&','76.221.246.255'),(1435,'2010-03-25 07:09:29',2,'categories.php','product_type=1&cPath=1_4&action=new_product&x=73&y=5&','76.221.246.255'),(1436,'2010-03-25 07:09:30',2,'product.php','product_type=1&cPath=1_4&action=new_product&x=73&y=5&','76.221.246.255'),(1437,'2010-03-25 07:09:48',2,'product.php','cPath=1_4&product_type=1&action=new_product_preview&','76.221.246.255'),(1438,'2010-03-25 07:09:50',2,'product.php','cPath=1_4&product_type=1&action=insert_product&','76.221.246.255'),(1439,'2010-03-25 07:09:51',2,'categories.php','cPath=1_4&pID=121&','76.221.246.255'),(1440,'2010-03-25 07:10:03',2,'categories.php','product_type=1&cPath=1_4&action=new_product&x=33&y=16&','76.221.246.255'),(1441,'2010-03-25 07:10:04',2,'product.php','product_type=1&cPath=1_4&action=new_product&x=33&y=16&','76.221.246.255'),(1442,'2010-03-25 07:10:20',2,'product.php','cPath=1_4&product_type=1&action=new_product_preview&','76.221.246.255'),(1443,'2010-03-25 07:10:22',2,'product.php','cPath=1_4&product_type=1&action=insert_product&','76.221.246.255'),(1444,'2010-03-25 07:10:23',2,'categories.php','cPath=1_4&pID=122&','76.221.246.255'),(1445,'2010-03-25 07:10:50',2,'categories.php','cPath=1&cID=4&','76.221.246.255'),(1446,'2010-03-25 07:10:54',2,'categories.php','cPath=1_5&','76.221.246.255'),(1447,'2010-03-25 07:16:30',2,'product.php','page=1&product_type=1&cPath=1_5&pID=3&action=new_product&','76.221.246.255'),(1448,'2010-03-25 07:16:57',2,'categories.php','cPath=1_5&pID=3&page=1&','76.221.246.255'),(1449,'2010-03-25 07:16:59',2,'product.php','page=1&product_type=1&cPath=1_5&pID=4&action=new_product&','76.221.246.255'),(1450,'2010-03-25 07:17:14',2,'categories.php','cPath=1_5&pID=4&page=1&','76.221.246.255'),(1451,'2010-03-25 07:17:16',2,'product.php','page=1&product_type=1&cPath=1_5&pID=3&action=new_product&','76.221.246.255'),(1452,'2010-03-25 07:17:50',2,'product.php','cPath=1_5&product_type=1&pID=3&action=new_product_preview&page=1&','76.221.246.255'),(1453,'2010-03-25 07:17:53',2,'product.php','cPath=1_5&product_type=1&pID=3&action=update_product&page=1&','76.221.246.255'),(1454,'2010-03-25 07:17:54',2,'categories.php','cPath=1_5&pID=3&page=1&','76.221.246.255'),(1455,'2010-03-25 07:18:02',2,'categories.php','product_type=1&cPath=1_5&action=new_product&x=48&y=13&','76.221.246.255'),(1456,'2010-03-25 07:18:02',2,'product.php','product_type=1&cPath=1_5&action=new_product&x=48&y=13&','76.221.246.255'),(1457,'2010-03-25 07:18:45',2,'product.php','cPath=1_5&product_type=1&action=new_product_preview&','76.221.246.255'),(1458,'2010-03-25 07:18:48',2,'product.php','cPath=1_5&product_type=1&action=insert_product&','76.221.246.255'),(1459,'2010-03-25 07:18:49',2,'categories.php','cPath=1_5&pID=123&','76.221.246.255'),(1460,'2010-03-25 07:19:04',2,'categories.php','product_type=1&cPath=1_5&action=new_product&x=66&y=14&','76.221.246.255'),(1461,'2010-03-25 07:19:05',2,'product.php','product_type=1&cPath=1_5&action=new_product&x=66&y=14&','76.221.246.255'),(1462,'2010-03-25 07:19:16',2,'product.php','cPath=1_5&product_type=1&action=new_product_preview&','76.221.246.255'),(1463,'2010-03-25 07:19:23',2,'product.php','cPath=1_5&product_type=1&action=insert_product&','76.221.246.255'),(1464,'2010-03-25 07:19:23',2,'categories.php','cPath=1_5&pID=124&','76.221.246.255'),(1465,'2010-03-25 07:19:37',2,'categories.php','product_type=1&cPath=1_5&action=new_product&x=25&y=4&','76.221.246.255'),(1466,'2010-03-25 07:19:37',2,'product.php','product_type=1&cPath=1_5&action=new_product&x=25&y=4&','76.221.246.255'),(1467,'2010-03-25 07:19:49',2,'product.php','cPath=1_5&product_type=1&action=new_product_preview&','76.221.246.255'),(1468,'2010-03-25 07:19:52',2,'product.php','cPath=1_5&product_type=1&action=insert_product&','76.221.246.255'),(1469,'2010-03-25 07:19:53',2,'categories.php','cPath=1_5&pID=125&','76.221.246.255'),(1470,'2010-03-25 07:20:05',2,'categories.php','product_type=1&cPath=1_5&action=new_product&x=80&y=17&','76.221.246.255'),(1471,'2010-03-25 07:20:06',2,'product.php','product_type=1&cPath=1_5&action=new_product&x=80&y=17&','76.221.246.255'),(1472,'2010-03-25 07:20:34',2,'product.php','cPath=1_5&product_type=1&action=new_product_preview&','76.221.246.255'),(1473,'2010-03-25 07:20:36',2,'product.php','cPath=1_5&product_type=1&action=insert_product&','76.221.246.255'),(1474,'2010-03-25 07:20:36',2,'categories.php','cPath=1_5&pID=126&','76.221.246.255'),(1475,'2010-03-25 07:21:06',2,'categories.php','cPath=1&cID=5&','76.221.246.255'),(1476,'2010-03-25 07:21:15',2,'attributes_controller.php','','76.221.246.255'),(1477,'2010-03-25 07:21:28',2,'attributes_controller.php','securityToken=7586d280e545866093fc016ab389078e&current_category_id=5&products_filter=&action=new_cat&','76.221.246.255'),(1478,'2010-03-25 07:21:29',2,'attributes_controller.php','products_filter=4&current_category_id=5&','76.221.246.255'),(1479,'2010-03-25 07:21:51',2,'attributes_controller.php','action=set_products_filter&','76.221.246.255'),(1480,'2010-03-25 07:21:51',2,'attributes_controller.php','products_filter=3&current_category_id=5&','76.221.246.255'),(1481,'2010-03-25 07:22:29',2,'attributes_controller.php','action=add_product_attributes&attribute_page=1&products_filter=3&','76.221.246.255'),(1482,'2010-03-25 07:22:29',2,'attributes_controller.php','attribute_page=1&products_filter=3&current_category_id=5&','76.221.246.255'),(1483,'2010-03-25 07:23:14',2,'attributes_controller.php','action=set_products_filter&','76.221.246.255'),(1484,'2010-03-25 07:23:14',2,'attributes_controller.php','products_filter=4&current_category_id=5&','76.221.246.255'),(1485,'2010-03-25 07:50:28',2,'attributes_controller.php','action=set_products_filter&','76.221.246.255'),(1486,'2010-03-25 07:50:28',2,'attributes_controller.php','products_filter=123&current_category_id=5&','76.221.246.255'),(1487,'2010-03-25 07:50:52',2,'attributes_controller.php','action=add_product_attributes&attribute_page=1&products_filter=123&','76.221.246.255'),(1488,'2010-03-25 07:50:56',2,'attributes_controller.php','attribute_page=1&products_filter=123&current_category_id=5&','76.221.246.255'),(1489,'2010-03-25 07:51:25',2,'attributes_controller.php','action=add_product_attributes&attribute_page=1&products_filter=123&','76.221.246.255'),(1490,'2010-03-25 07:51:25',2,'attributes_controller.php','attribute_page=1&products_filter=123&current_category_id=5&','76.221.246.255'),(1491,'2010-03-25 07:51:50',2,'attributes_controller.php','action=add_product_attributes&attribute_page=1&products_filter=123&','76.221.246.255'),(1492,'2010-03-25 07:51:51',2,'attributes_controller.php','attribute_page=1&products_filter=123&current_category_id=5&','76.221.246.255'),(1493,'2010-03-25 07:51:57',2,'attributes_controller.php','action=set_products_filter&','76.221.246.255'),(1494,'2010-03-25 07:51:57',2,'attributes_controller.php','products_filter=125&current_category_id=5&','76.221.246.255'),(1495,'2010-03-25 07:52:12',2,'attributes_controller.php','action=add_product_attributes&attribute_page=1&products_filter=125&','76.221.246.255'),(1496,'2010-03-25 07:52:13',2,'attributes_controller.php','attribute_page=1&products_filter=125&current_category_id=5&','76.221.246.255'),(1497,'2010-03-25 07:52:33',2,'attributes_controller.php','action=add_product_attributes&attribute_page=1&products_filter=125&','76.221.246.255'),(1498,'2010-03-25 07:52:34',2,'attributes_controller.php','attribute_page=1&products_filter=125&current_category_id=5&','76.221.246.255'),(1499,'2010-03-25 07:52:58',2,'attributes_controller.php','action=add_product_attributes&attribute_page=1&products_filter=125&','76.221.246.255'),(1500,'2010-03-25 07:52:58',2,'attributes_controller.php','attribute_page=1&products_filter=125&current_category_id=5&','76.221.246.255'),(1501,'2010-03-25 07:53:07',2,'attributes_controller.php','products_filter=124&current_category_id=5&','76.221.246.255'),(1502,'2010-03-25 07:53:24',2,'attributes_controller.php','action=add_product_attributes&attribute_page=1&products_filter=124&','76.221.246.255'),(1503,'2010-03-25 07:53:25',2,'attributes_controller.php','attribute_page=1&products_filter=124&current_category_id=5&','76.221.246.255'),(1504,'2010-03-25 07:53:41',2,'attributes_controller.php','action=add_product_attributes&attribute_page=1&products_filter=124&','76.221.246.255'),(1505,'2010-03-25 07:53:43',2,'attributes_controller.php','attribute_page=1&products_filter=124&current_category_id=5&','76.221.246.255'),(1506,'2010-03-25 07:53:59',2,'attributes_controller.php','action=add_product_attributes&attribute_page=1&products_filter=124&','76.221.246.255'),(1507,'2010-03-25 07:53:59',2,'attributes_controller.php','attribute_page=1&products_filter=124&current_category_id=5&','76.221.246.255'),(1508,'2010-03-25 07:54:18',2,'categories.php','','76.221.246.255'),(1509,'2010-03-25 07:56:23',2,'attributes_controller.php','','76.221.246.255'),(1510,'2010-03-25 07:56:28',2,'attributes_controller.php','securityToken=7586d280e545866093fc016ab389078e&current_category_id=5&products_filter=&action=new_cat&','76.221.246.255'),(1511,'2010-03-25 07:56:28',2,'attributes_controller.php','products_filter=4&current_category_id=5&','76.221.246.255'),(1512,'2010-03-25 07:56:37',2,'attributes_controller.php','action=set_products_filter&','76.221.246.255'),(1513,'2010-03-25 07:56:38',2,'attributes_controller.php','products_filter=123&current_category_id=5&','76.221.246.255'),(1514,'2010-03-25 07:57:29',2,'attributes_controller.php','action=update_attribute&attribute_id=8&attribute_page=1&products_filter=123&current_category_id=5&','76.221.246.255'),(1515,'2010-03-25 07:57:40',2,'attributes_controller.php','action=update_product_attribute&attribute_page=1&products_filter=123&','76.221.246.255'),(1516,'2010-03-25 07:57:43',2,'attributes_controller.php','attribute_page=1&products_filter=123&current_category_id=5&','76.221.246.255'),(1517,'2010-03-25 07:57:53',2,'attributes_controller.php','action=update_attribute&attribute_id=9&attribute_page=1&products_filter=123&current_category_id=5&','76.221.246.255'),(1518,'2010-03-25 07:57:59',2,'attributes_controller.php','action=update_product_attribute&attribute_page=1&products_filter=123&','76.221.246.255'),(1519,'2010-03-25 07:58:00',2,'attributes_controller.php','attribute_page=1&products_filter=123&current_category_id=5&','76.221.246.255'),(1520,'2010-03-25 07:58:07',2,'attributes_controller.php','action=set_products_filter&','76.221.246.255'),(1521,'2010-03-25 07:58:07',2,'attributes_controller.php','products_filter=125&current_category_id=5&','76.221.246.255'),(1522,'2010-03-25 07:58:16',2,'attributes_controller.php','action=update_attribute&attribute_id=11&attribute_page=1&products_filter=125&current_category_id=5&','76.221.246.255'),(1523,'2010-03-25 07:58:21',2,'attributes_controller.php','action=update_product_attribute&attribute_page=1&products_filter=125&','76.221.246.255'),(1524,'2010-03-25 07:58:22',2,'attributes_controller.php','attribute_page=1&products_filter=125&current_category_id=5&','76.221.246.255'),(1525,'2010-03-25 07:58:27',2,'attributes_controller.php','action=update_attribute&attribute_id=12&attribute_page=1&products_filter=125&current_category_id=5&','76.221.246.255'),(1526,'2010-03-25 07:58:35',2,'attributes_controller.php','action=update_product_attribute&attribute_page=1&products_filter=125&','76.221.246.255'),(1527,'2010-03-25 07:58:35',2,'attributes_controller.php','attribute_page=1&products_filter=125&current_category_id=5&','76.221.246.255'),(1528,'2010-03-25 07:58:47',2,'attributes_controller.php','action=set_products_filter&','76.221.246.255'),(1529,'2010-03-25 07:58:47',2,'attributes_controller.php','products_filter=124&current_category_id=5&','76.221.246.255'),(1530,'2010-03-25 07:58:52',2,'attributes_controller.php','action=update_attribute&attribute_id=14&attribute_page=1&products_filter=124&current_category_id=5&','76.221.246.255'),(1531,'2010-03-25 07:58:58',2,'attributes_controller.php','action=update_product_attribute&attribute_page=1&products_filter=124&','76.221.246.255'),(1532,'2010-03-25 07:58:58',2,'attributes_controller.php','attribute_page=1&products_filter=124&current_category_id=5&','76.221.246.255'),(1533,'2010-03-25 07:59:04',2,'attributes_controller.php','action=update_attribute&attribute_id=15&attribute_page=1&products_filter=124&current_category_id=5&','76.221.246.255'),(1534,'2010-03-25 07:59:11',2,'attributes_controller.php','action=update_product_attribute&attribute_page=1&products_filter=124&','76.221.246.255'),(1535,'2010-03-25 07:59:11',2,'attributes_controller.php','attribute_page=1&products_filter=124&current_category_id=5&','76.221.246.255'),(1536,'2010-03-25 08:02:14',2,'options_name_manager.php','','76.221.246.255'),(1537,'2010-03-25 08:02:22',2,'options_name_manager.php','action=update_option&option_id=1&option_order_by=products_options_id&option_page=1&','76.221.246.255'),(1538,'2010-03-25 08:02:28',2,'options_name_manager.php','action=update_option_name&option_page=1&option_order_by=products_options_id&','76.221.246.255'),(1539,'2010-03-25 08:02:29',2,'options_name_manager.php','option_page=1&option_order_by=products_options_id&','76.221.246.255'),(1540,'2010-03-25 08:55:10',2,'categories.php','','76.221.246.255'),(1541,'2010-03-25 08:55:19',2,'categories.php','cPath=1&','76.221.246.255'),(1542,'2010-03-25 08:55:49',2,'categories.php','cID=1&','76.221.246.255'),(1543,'2010-03-25 08:55:52',2,'categories.php','cPath=&cID=1&action=edit_category&','76.221.246.255'),(1544,'2010-03-25 08:56:04',2,'categories.php','action=update_category&cPath=&','76.221.246.255'),(1545,'2010-03-25 08:56:04',2,'categories.php','cPath=&cID=1&','76.221.246.255'),(1546,'2010-03-25 08:56:08',2,'categories.php','cPath=&cID=2&action=edit_category&','76.221.246.255'),(1547,'2010-03-25 08:56:28',2,'categories.php','action=update_category&cPath=&','76.221.246.255'),(1548,'2010-03-25 08:56:28',2,'categories.php','cPath=&cID=2&','76.221.246.255'),(1549,'2010-03-25 08:56:33',2,'categories.php','cPath=3&','76.221.246.255'),(1550,'2010-03-25 08:56:41',2,'categories.php','cID=3&','76.221.246.255'),(1551,'2010-03-25 08:56:43',2,'categories.php','cPath=&cID=3&action=edit_category&','76.221.246.255'),(1552,'2010-03-25 08:56:59',2,'categories.php','action=update_category&cPath=&','76.221.246.255'),(1553,'2010-03-25 08:56:59',2,'categories.php','cPath=&cID=3&','76.221.246.255'),(1554,'2010-03-25 08:57:32',2,'configuration.php','gID=19&','76.221.246.255'),(1555,'2010-03-25 08:57:38',2,'configuration.php','gID=19&cID=412&','76.221.246.255'),(1556,'2010-03-25 08:57:42',2,'configuration.php','gID=19&cID=412&action=edit&','76.221.246.255'),(1557,'2010-03-25 08:57:51',2,'configuration.php','gID=19&cID=412&action=save&','76.221.246.255'),(1558,'2010-03-25 08:57:52',2,'configuration.php','gID=19&cID=412&','76.221.246.255'),(1559,'2010-03-25 09:04:25',2,'configuration.php','gID=19&cID=398&','76.221.246.255'),(1560,'2010-03-25 09:04:28',2,'configuration.php','gID=19&cID=398&action=edit&','76.221.246.255'),(1561,'2010-03-25 09:04:40',2,'configuration.php','gID=19&cID=398&action=save&','76.221.246.255'),(1562,'2010-03-25 09:04:40',2,'configuration.php','gID=19&cID=398&','76.221.246.255'),(1563,'2010-03-25 09:10:01',2,'categories.php','','76.221.246.255'),(1564,'2010-03-25 09:10:07',2,'categories.php','cPath=1&','76.221.246.255'),(1565,'2010-03-25 09:10:10',2,'categories.php','cPath=1_5&','76.221.246.255'),(1566,'2010-03-25 09:10:26',2,'categories.php','cPath=1&cID=5&action=edit_category&','76.221.246.255'),(1567,'2010-03-25 09:23:17',2,'categories.php','action=update_category&cPath=1&','76.221.246.255'),(1568,'2010-03-25 09:23:17',2,'categories.php','cPath=1&cID=5&','76.221.246.255'),(1569,'2010-03-25 09:24:52',2,'configuration.php','gID=8&','76.221.246.255'),(1570,'2010-03-25 09:24:58',2,'configuration.php','gID=8&cID=228&action=edit&','76.221.246.255'),(1571,'2010-03-25 09:25:01',2,'configuration.php','gID=8&cID=228&action=save&','76.221.246.255'),(1572,'2010-03-25 09:25:02',2,'configuration.php','gID=8&cID=228&','76.221.246.255'),(1573,'2010-03-25 09:25:56',2,'categories.php','','76.221.246.255'),(1574,'2010-03-25 09:26:00',2,'categories.php','cPath=1&','76.221.246.255'),(1575,'2010-03-25 09:26:04',2,'categories.php','cPath=1_7&','76.221.246.255'),(1576,'2010-03-25 09:26:12',2,'categories.php','cPath=1&cID=7&action=edit_category&','76.221.246.255'),(1577,'2010-03-25 09:26:22',2,'categories.php','action=update_category&cPath=1&','76.221.246.255'),(1578,'2010-03-25 09:26:22',2,'categories.php','cPath=1&cID=7&','76.221.246.255'),(1579,'2010-03-25 09:26:39',2,'categories.php','cPath=1&cID=6&action=edit_category&','76.221.246.255'),(1580,'2010-03-25 09:26:45',2,'categories.php','action=update_category&cPath=1&','76.221.246.255'),(1581,'2010-03-25 09:26:46',2,'categories.php','cPath=1&cID=6&','76.221.246.255'),(1582,'2010-03-25 09:26:51',2,'categories.php','cPath=1&cID=8&action=edit_category&','76.221.246.255'),(1583,'2010-03-25 09:27:10',2,'categories.php','action=update_category&cPath=1&','76.221.246.255'),(1584,'2010-03-25 09:27:11',2,'categories.php','cPath=1&cID=8&','76.221.246.255'),(1585,'2010-03-25 09:27:38',2,'categories.php','cPath=1&cID=5&action=edit_category&','76.221.246.255'),(1586,'2010-03-25 09:29:12',2,'categories.php','action=update_category&cPath=1&','76.221.246.255'),(1587,'2010-03-25 09:29:13',2,'categories.php','cPath=1&cID=5&','76.221.246.255'),(1588,'2010-03-25 09:29:47',2,'categories.php','cPath=1&cID=7&action=edit_category&','76.221.246.255'),(1589,'2010-03-25 09:29:54',2,'categories.php','action=update_category&cPath=1&','76.221.246.255'),(1590,'2010-03-25 09:29:54',2,'categories.php','cPath=1&cID=7&','76.221.246.255'),(1591,'2010-03-25 09:29:58',2,'categories.php','cPath=1&cID=6&action=edit_category&','76.221.246.255'),(1592,'2010-03-25 09:30:06',2,'categories.php','action=update_category&cPath=1&','76.221.246.255'),(1593,'2010-03-25 09:30:06',2,'categories.php','cPath=1&cID=6&','76.221.246.255'),(1594,'2010-03-25 09:30:11',2,'categories.php','cPath=1&cID=8&action=edit_category&','76.221.246.255'),(1595,'2010-03-25 09:30:48',2,'categories.php','action=update_category&cPath=1&','76.221.246.255'),(1596,'2010-03-25 09:30:48',2,'categories.php','cPath=1&cID=8&','76.221.246.255'),(1597,'2010-03-25 09:30:54',2,'categories.php','cPath=1&cID=10&action=edit_category&','76.221.246.255'),(1598,'2010-03-25 09:31:00',2,'categories.php','action=update_category&cPath=1&','76.221.246.255'),(1599,'2010-03-25 09:31:00',2,'categories.php','cPath=1&cID=10&','76.221.246.255'),(1600,'2010-03-25 09:31:59',2,'categories.php','cPath=1&cID=9&action=edit_category&','76.221.246.255'),(1601,'2010-03-25 09:32:05',2,'categories.php','action=update_category&cPath=1&','76.221.246.255'),(1602,'2010-03-25 09:32:05',2,'categories.php','cPath=1&cID=9&','76.221.246.255'),(1603,'2010-03-25 09:32:10',2,'categories.php','cPath=1&cID=10&action=edit_category&','76.221.246.255'),(1604,'2010-03-25 09:32:18',2,'categories.php','action=update_category&cPath=1&','76.221.246.255'),(1605,'2010-03-25 09:32:18',2,'categories.php','cPath=1&cID=10&','76.221.246.255'),(1606,'2010-03-25 09:34:11',2,'configuration.php','gID=19&','76.221.246.255'),(1607,'2010-03-25 09:34:51',2,'configuration.php','gID=8&','76.221.246.255'),(1608,'2010-03-25 09:35:28',2,'configuration.php','gID=18&','76.221.246.255'),(1609,'2010-03-25 09:36:19',2,'configuration.php','gID=3&','76.221.246.255'),(1610,'2010-03-25 09:37:05',2,'configuration.php','gID=3&cID=87&action=edit&','76.221.246.255'),(1611,'2010-03-25 09:37:11',2,'configuration.php','gID=3&cID=87&action=save&','76.221.246.255'),(1612,'2010-03-25 09:37:11',2,'configuration.php','gID=3&cID=87&','76.221.246.255'),(1613,'2010-03-25 09:38:20',2,'configuration.php','gID=3&cID=77&action=edit&','76.221.246.255'),(1614,'2010-03-25 09:38:25',2,'configuration.php','gID=3&cID=77&action=save&','76.221.246.255'),(1615,'2010-03-25 09:38:25',2,'configuration.php','gID=3&cID=77&','76.221.246.255'),(1616,'2010-03-25 09:40:07',2,'developers_tool_kit.php','','76.221.246.255'),(1617,'2010-03-25 09:40:18',2,'developers_tool_kit.php','action=locate_configuration&','76.221.246.255'),(1618,'2010-03-25 09:41:21',2,'developers_tool_kit.php','action=locate_all_files&','76.221.246.255'),(1619,'2010-03-25 10:30:58',2,'product_types.php','','76.221.246.255'),(1620,'2010-03-25 10:31:03',2,'product_types.php','page=1&ptID=1&action=layout&','76.221.246.255'),(1621,'2010-03-25 10:31:13',2,'product_types.php','ptID=1&cID=13&action=layout_edit&','76.221.246.255'),(1622,'2010-03-25 10:31:20',2,'product_types.php','ptID=1&cID=13&action=layout_save&','76.221.246.255'),(1623,'2010-03-25 10:31:24',2,'product_types.php','gID=&cID=13&ptID=1&action=layout&','76.221.246.255'),(1624,'2010-03-25 10:43:48',2,'categories.php','','76.221.246.255'),(1625,'2010-03-25 10:43:53',2,'categories.php','cPath=3&','76.221.246.255'),(1626,'2010-03-25 10:43:58',2,'categories.php','product_type=1&cPath=3&action=new_product&x=43&y=17&','76.221.246.255'),(1627,'2010-03-25 10:43:59',2,'product.php','product_type=1&cPath=3&action=new_product&x=43&y=17&','76.221.246.255'),(1628,'2010-03-25 10:47:21',2,'developers_tool_kit.php','','76.221.246.255'),(1629,'2010-03-25 10:47:34',2,'developers_tool_kit.php','action=locate_configuration&','76.221.246.255'),(1630,'2010-03-25 10:47:37',2,'developers_tool_kit.php','action=locate_all_files&','76.221.246.255'),(1631,'2010-03-25 10:47:45',2,'developers_tool_kit.php','action=locate_configuration&','76.221.246.255'),(1632,'2010-03-25 10:47:48',2,'developers_tool_kit.php','action=locate_all_files&','76.221.246.255'),(1633,'2010-03-25 10:47:53',2,'developers_tool_kit.php','action=locate_template&','76.221.246.255'),(1634,'2010-03-25 10:47:55',2,'developers_tool_kit.php','action=locate_class&','76.221.246.255'),(1635,'2010-03-25 10:47:57',2,'developers_tool_kit.php','action=locate_function&','76.221.246.255'),(1636,'2010-03-25 10:48:00',2,'developers_tool_kit.php','action=locate_configuration&','76.221.246.255'),(1637,'2010-03-25 10:48:50',2,'categories.php','','76.221.246.255'),(1638,'2010-03-25 10:48:53',2,'categories.php','cPath=3&','76.221.246.255'),(1639,'2010-03-25 10:48:55',2,'categories.php','product_type=1&cPath=3&action=new_product&x=96&y=7&','76.221.246.255'),(1640,'2010-03-25 10:48:55',2,'product.php','product_type=1&cPath=3&action=new_product&x=96&y=7&','76.221.246.255'),(1641,'2010-03-25 10:49:30',2,'product.php','cPath=3&product_type=1&action=new_product_preview&','76.221.246.255'),(1642,'2010-03-25 10:49:34',2,'product.php','cPath=3&product_type=1&action=insert_product&','76.221.246.255'),(1643,'2010-03-25 10:49:35',2,'categories.php','cPath=3&pID=127&','76.221.246.255'),(1644,'2010-03-25 10:50:35',2,'product.php','cPath=3&product_type=1&pID=127&action=delete_product&','76.221.246.255'),(1645,'2010-03-25 10:50:38',2,'product.php','action=delete_product_confirm&product_type=1&cPath=3&page=1&','76.221.246.255'),(1646,'2010-03-25 10:50:38',2,'categories.php','cPath=3&','76.221.246.255'),(1647,'2010-03-25 10:50:42',2,'categories.php','cID=3&','76.221.246.255'),(1648,'2010-03-25 10:50:59',2,'categories.php','securityToken=7586d280e545866093fc016ab389078e&reset_editor=2&cID=3&cPath=&pID=&page=&action=set_editor&','76.221.246.255'),(1649,'2010-03-25 10:50:59',2,'categories.php','cPath=&','76.221.246.255'),(1650,'2010-03-25 10:51:08',2,'categories.php','cPath=&cID=3&action=edit_category&','76.221.246.255'),(1651,'2010-03-25 10:56:08',2,'categories.php','action=update_category&cPath=&','76.221.246.255'),(1652,'2010-03-25 10:56:08',2,'categories.php','cPath=&cID=3&','76.221.246.255'),(1653,'2010-03-25 11:00:38',2,'categories.php','cPath=&cID=3&action=edit_category&','76.221.246.255'),(1654,'2010-03-25 11:01:55',2,'categories.php','action=update_category&cPath=&','76.221.246.255'),(1655,'2010-03-25 11:01:55',2,'categories.php','cPath=&cID=3&','76.221.246.255'),(1656,'2010-03-25 11:06:29',2,'ezpages.php','','76.221.246.255'),(1657,'2010-03-25 11:06:35',2,'ezpages.php','action=new&','76.221.246.255'),(1658,'2010-03-25 11:16:25',2,'ezpages.php','action=insert&','76.221.246.255'),(1659,'2010-03-25 11:16:47',2,'ezpages.php','action=insert&','76.221.246.255'),(1660,'2010-03-25 11:16:48',2,'ezpages.php','ezID=1&','76.221.246.255'),(1661,'2010-03-25 11:17:27',2,'ezpages.php','action=status_header&current=0&ezID=1&page=1&','76.221.246.255'),(1662,'2010-03-25 11:17:28',2,'ezpages.php','page=1&ezID=1&','76.221.246.255'),(1663,'2010-03-25 11:17:30',2,'ezpages.php','action=status_sidebox&current=0&ezID=1&page=1&','76.221.246.255'),(1664,'2010-03-25 11:17:30',2,'ezpages.php','page=1&ezID=1&','76.221.246.255'),(1665,'2010-03-25 11:17:32',2,'ezpages.php','action=status_footer&current=0&ezID=1&page=1&','76.221.246.255'),(1666,'2010-03-25 11:17:33',2,'ezpages.php','page=1&ezID=1&','76.221.246.255'),(1667,'2010-03-25 11:18:14',2,'ezpages.php','action=page_open_new_window&current=0&ezID=1&page=1&','76.221.246.255'),(1668,'2010-03-25 11:18:15',2,'ezpages.php','page=1&ezID=1&','76.221.246.255'),(1669,'2010-03-25 11:19:39',2,'ezpages.php','page=1&ezID=1&','76.221.246.255'),(1670,'2010-03-25 11:19:40',2,'ezpages.php','page=1&ezID=1&','76.221.246.255'),(1671,'2010-03-25 11:19:41',2,'ezpages.php','page=1&ezID=1&action=new&','76.221.246.255'),(1672,'2010-03-25 11:20:26',2,'ezpages.php','page=1&action=update&','76.221.246.255'),(1673,'2010-03-25 11:20:26',2,'ezpages.php','page=1&ezID=1&','76.221.246.255'),(1674,'2010-03-25 11:21:25',2,'ezpages.php','page=1&ezID=1&action=delete&','76.221.246.255'),(1675,'2010-03-25 11:21:29',2,'ezpages.php','page=1&ezID=1&action=deleteconfirm&','76.221.246.255'),(1676,'2010-03-25 11:21:29',2,'ezpages.php','page=1&','76.221.246.255'),(1677,'2010-03-25 12:57:30',0,'login.php ','','76.221.246.255'),(1678,'2010-03-25 12:57:44',0,'login.php jbadmin','','76.221.246.255'),(1679,'2010-03-25 12:57:54',2,'product_types.php','','76.221.246.255'),(1680,'2010-03-25 12:57:56',2,'product_types.php','page=1&ptID=1&action=layout&','76.221.246.255'),(1681,'2010-03-25 12:58:15',2,'configuration.php','gID=8&','76.221.246.255'),(1682,'2010-03-25 12:58:35',2,'configuration.php','gID=3&','76.221.246.255'),(1683,'2010-03-25 12:58:56',2,'configuration.php','gID=3&cID=87&action=edit&','76.221.246.255'),(1684,'2010-03-25 12:59:01',2,'configuration.php','gID=3&cID=87&action=save&','76.221.246.255'),(1685,'2010-03-25 12:59:02',2,'configuration.php','gID=3&cID=87&','76.221.246.255'),(1686,'2010-03-25 12:59:22',2,'configuration.php','gID=3&cID=87&action=edit&','76.221.246.255'),(1687,'2010-03-25 12:59:30',2,'configuration.php','gID=3&cID=87&action=save&','76.221.246.255'),(1688,'2010-03-25 12:59:30',2,'configuration.php','gID=3&cID=87&','76.221.246.255'),(1689,'2010-03-25 12:59:43',2,'configuration.php','gID=3&cID=77&action=edit&','76.221.246.255'),(1690,'2010-03-25 12:59:47',2,'configuration.php','gID=3&cID=77&action=save&','76.221.246.255'),(1691,'2010-03-25 12:59:47',2,'configuration.php','gID=3&cID=77&','76.221.246.255'),(1692,'2010-03-25 21:44:35',0,'login.php ','','76.221.246.255'),(1693,'2010-03-25 21:45:56',0,'login.php jbadmin','','76.221.246.255'),(1694,'2010-03-25 21:47:25',2,'alt_nav.php','','76.221.246.255'),(1695,'2010-03-25 21:47:32',2,'define_pages_editor.php','','76.221.246.255'),(1696,'2010-03-25 21:47:42',2,'define_pages_editor.php','','76.221.246.255'),(1697,'2010-03-25 21:55:25',2,'define_pages_editor.php','','76.221.246.255'),(1698,'2010-03-25 21:55:58',2,'define_pages_editor.php','','76.221.246.255'),(1699,'2010-03-25 22:53:59',2,'developers_tool_kit.php','','76.221.246.255'),(1700,'2010-03-25 22:54:22',2,'developers_tool_kit.php','action=locate_configuration&','76.221.246.255'),(1701,'2010-03-25 22:54:35',2,'developers_tool_kit.php','action=locate_all_files&','76.221.246.255'),(1702,'2010-03-25 22:57:37',2,'developers_tool_kit.php','action=locate_all_files&','76.221.246.255'),(1703,'2010-03-26 18:39:12',0,'login.php ','','76.221.246.255'),(1704,'2010-03-26 18:39:34',0,'login.php jbadmin','','76.221.246.255'),(1705,'2010-03-26 18:40:10',2,'developers_tool_kit.php','','76.221.246.255'),(1706,'2010-03-26 18:40:24',2,'developers_tool_kit.php','action=locate_configuration&','76.221.246.255'),(1707,'2010-03-26 18:40:28',2,'developers_tool_kit.php','action=locate_all_files&','76.221.246.255'),(1708,'2010-03-26 18:40:33',2,'developers_tool_kit.php','action=locate_template&','76.221.246.255'),(1709,'2010-03-26 18:40:37',2,'developers_tool_kit.php','action=locate_class&','76.221.246.255'),(1710,'2010-03-26 18:40:40',2,'developers_tool_kit.php','action=locate_function&','76.221.246.255'),(1711,'2010-03-26 18:40:43',2,'developers_tool_kit.php','action=locate_configuration&','76.221.246.255'),(1712,'2010-03-26 18:41:09',2,'developers_tool_kit.php','action=locate_configuration&','76.221.246.255'),(1713,'2010-03-26 18:41:54',2,'developers_tool_kit.php','action=locate_all_files&','76.221.246.255'),(1714,'2010-03-26 18:44:15',2,'categories.php','','76.221.246.255'),(1715,'2010-03-26 18:44:19',2,'categories.php','cPath=&cID=3&action=edit_category&','76.221.246.255'),(1716,'2010-03-26 18:45:07',2,'categories.php','action=update_category&cPath=&','76.221.246.255'),(1717,'2010-03-26 18:45:07',2,'categories.php','cPath=&cID=3&','76.221.246.255'),(1718,'2010-03-26 18:46:52',2,'developers_tool_kit.php','','76.221.246.255'),(1719,'2010-03-26 18:47:00',2,'developers_tool_kit.php','action=locate_configuration&','76.221.246.255'),(1720,'2010-03-26 18:47:08',2,'developers_tool_kit.php','action=locate_all_files&','76.221.246.255'),(1721,'2010-03-26 18:47:30',2,'developers_tool_kit.php','action=locate_configuration&','76.221.246.255'),(1722,'2010-03-26 18:47:34',2,'developers_tool_kit.php','action=locate_all_files&','76.221.246.255'),(1723,'2010-03-26 18:47:40',2,'developers_tool_kit.php','action=locate_template&','76.221.246.255'),(1724,'2010-03-26 18:47:42',2,'developers_tool_kit.php','action=locate_class&','76.221.246.255'),(1725,'2010-03-26 18:47:46',2,'developers_tool_kit.php','action=locate_function&','76.221.246.255'),(1726,'2010-03-26 18:47:49',2,'developers_tool_kit.php','action=locate_configuration&','76.221.246.255'),(1727,'2010-03-26 18:49:56',2,'developers_tool_kit.php','action=locate_configuration&','76.221.246.255'),(1728,'2010-03-26 18:50:01',2,'developers_tool_kit.php','action=locate_all_files&','76.221.246.255'),(1729,'2010-03-26 19:12:10',2,'developers_tool_kit.php','action=locate_configuration&','76.221.246.255'),(1730,'2010-03-26 19:12:16',2,'developers_tool_kit.php','action=locate_all_files&','76.221.246.255'),(1731,'2010-03-26 19:12:30',2,'developers_tool_kit.php','action=locate_all_files&','76.221.246.255'),(1732,'2010-03-26 19:35:21',2,'ezpages.php','','76.221.246.255'),(1733,'2010-03-26 19:35:40',2,'ezpages.php','securityToken=efe3b792fbc9c013ab8095e08e89e309&reset_ez_sort_order=2&action=set_ez_sort_order&','76.221.246.255'),(1734,'2010-03-26 19:35:43',2,'ezpages.php','page=&','76.221.246.255'),(1735,'2010-03-26 19:35:58',2,'ezpages.php','action=new&','76.221.246.255'),(1736,'2010-03-26 19:39:03',2,'ezpages.php','action=insert&','76.221.246.255'),(1737,'2010-03-26 19:39:13',2,'ezpages.php','action=insert&','76.221.246.255'),(1738,'2010-03-26 19:39:14',2,'ezpages.php','ezID=2&','76.221.246.255'),(1739,'2010-03-26 19:39:22',2,'ezpages.php','page=1&ezID=2&action=new&','76.221.246.255'),(1740,'2010-03-26 19:39:29',2,'ezpages.php','page=1&ezID=2&','76.221.246.255'),(1741,'2010-03-26 19:39:36',2,'ezpages.php','action=status_header&current=0&ezID=2&page=1&','76.221.246.255'),(1742,'2010-03-26 19:39:36',2,'ezpages.php','page=1&ezID=2&','76.221.246.255'),(1743,'2010-03-26 19:39:39',2,'ezpages.php','action=status_sidebox&current=0&ezID=2&page=1&','76.221.246.255'),(1744,'2010-03-26 19:39:39',2,'ezpages.php','page=1&ezID=2&','76.221.246.255'),(1745,'2010-03-26 19:39:43',2,'ezpages.php','action=status_footer&current=0&ezID=2&page=1&','76.221.246.255'),(1746,'2010-03-26 19:39:46',2,'ezpages.php','page=1&ezID=2&','76.221.246.255'),(1747,'2010-03-26 19:39:52',2,'ezpages.php','action=status_toc&current=0&ezID=2&page=1&','76.221.246.255'),(1748,'2010-03-26 19:39:53',2,'ezpages.php','page=1&ezID=2&','76.221.246.255'),(1749,'2010-03-26 19:40:25',2,'ezpages.php','page=1&ezID=2&action=delete&','76.221.246.255'),(1750,'2010-03-26 19:40:31',2,'ezpages.php','page=1&ezID=2&action=deleteconfirm&','76.221.246.255'),(1751,'2010-03-26 19:40:31',2,'ezpages.php','page=1&','76.221.246.255'),(1752,'2010-03-26 19:54:50',2,'developers_tool_kit.php','','76.221.246.255'),(1753,'2010-03-26 19:55:08',2,'developers_tool_kit.php','action=locate_configuration&','76.221.246.255'),(1754,'2010-03-26 19:55:11',2,'developers_tool_kit.php','action=locate_all_files&','76.221.246.255'),(1755,'2010-03-26 19:55:17',2,'developers_tool_kit.php','action=locate_template&','76.221.246.255'),(1756,'2010-03-26 19:55:20',2,'developers_tool_kit.php','action=locate_function&','76.221.246.255'),(1757,'2010-03-26 19:55:25',2,'developers_tool_kit.php','action=locate_class&','76.221.246.255'),(1758,'2010-03-26 19:55:41',2,'developers_tool_kit.php','action=locate_configuration&','76.221.246.255'),(1759,'2010-03-26 19:55:59',2,'developers_tool_kit.php','action=locate_configuration&','76.221.246.255'),(1760,'2010-03-26 19:56:02',2,'developers_tool_kit.php','action=locate_all_files&','76.221.246.255'),(1761,'2010-03-26 19:56:06',2,'developers_tool_kit.php','action=locate_template&','76.221.246.255'),(1762,'2010-03-26 19:56:14',2,'developers_tool_kit.php','action=locate_class&','76.221.246.255'),(1763,'2010-03-26 19:56:21',2,'developers_tool_kit.php','action=locate_class&','76.221.246.255'),(1764,'2010-03-26 19:57:01',2,'developers_tool_kit.php','action=locate_configuration&','76.221.246.255'),(1765,'2010-03-26 19:57:05',2,'developers_tool_kit.php','action=locate_all_files&','76.221.246.255'),(1766,'2010-03-26 19:57:26',2,'developers_tool_kit.php','action=locate_configuration&','76.221.246.255'),(1767,'2010-03-26 19:57:29',2,'developers_tool_kit.php','action=locate_all_files&','76.221.246.255'),(1768,'2010-03-26 20:00:24',2,'developers_tool_kit.php','action=locate_configuration&','76.221.246.255'),(1769,'2010-03-26 20:01:05',2,'developers_tool_kit.php','action=locate_all_files&','76.221.246.255'),(1770,'2010-03-26 22:26:37',0,'login.php ','','76.221.246.255'),(1771,'2010-03-26 22:26:57',0,'login.php jbadmin','','76.221.246.255'),(1772,'2010-03-26 22:27:07',2,'layout_controller.php','','76.221.246.255'),(1773,'2010-03-26 22:27:43',2,'layout_controller.php','page=&cID=84&action=edit&','76.221.246.255'),(1774,'2010-03-26 22:28:35',2,'layout_controller.php','page=&cID=84&action=save&layout_box_name=ezpages.php&','76.221.246.255'),(1775,'2010-03-26 22:28:36',2,'layout_controller.php','page=&cID=84&','76.221.246.255'),(1776,'2010-03-26 22:28:53',2,'layout_controller.php','page=&cID=84&action=edit&','76.221.246.255'),(1777,'2010-03-26 22:29:01',2,'layout_controller.php','page=&cID=84&action=save&layout_box_name=ezpages.php&','76.221.246.255'),(1778,'2010-03-26 22:29:02',2,'layout_controller.php','page=&cID=84&','76.221.246.255'),(1779,'2010-03-26 22:29:27',2,'ezpages.php','','76.221.246.255'),(1780,'2010-03-26 22:29:33',2,'ezpages.php','securityToken=1780f5c0189f7488f17666593267bb55&reset_ez_sort_order=2&action=set_ez_sort_order&','76.221.246.255'),(1781,'2010-03-26 22:29:34',2,'ezpages.php','page=&','76.221.246.255'),(1782,'2010-03-26 22:29:37',2,'ezpages.php','action=new&','76.221.246.255'),(1783,'2010-03-26 22:31:24',2,'ezpages.php','action=insert&','76.221.246.255'),(1784,'2010-03-26 22:31:27',2,'ezpages.php','ezID=3&','76.221.246.255'),(1785,'2010-03-26 22:31:39',2,'ezpages.php','action=status_header&current=0&ezID=3&page=1&','76.221.246.255'),(1786,'2010-03-26 22:31:40',2,'ezpages.php','page=1&ezID=3&','76.221.246.255'),(1787,'2010-03-26 22:31:44',2,'ezpages.php','action=status_sidebox&current=0&ezID=3&page=1&','76.221.246.255'),(1788,'2010-03-26 22:31:44',2,'ezpages.php','page=1&ezID=3&','76.221.246.255'),(1789,'2010-03-26 22:31:46',2,'ezpages.php','action=status_footer&current=0&ezID=3&page=1&','76.221.246.255'),(1790,'2010-03-26 22:31:50',2,'ezpages.php','page=1&ezID=3&','76.221.246.255'),(1791,'2010-03-26 22:31:51',2,'ezpages.php','action=status_toc&current=0&ezID=3&page=1&','76.221.246.255'),(1792,'2010-03-26 22:31:52',2,'ezpages.php','page=1&ezID=3&','76.221.246.255'),(1793,'2010-03-26 22:33:37',2,'ezpages.php','action=page_open_new_window&current=0&ezID=3&page=1&','76.221.246.255'),(1794,'2010-03-26 22:33:37',2,'ezpages.php','page=1&ezID=3&','76.221.246.255'),(1795,'2010-03-26 22:37:50',2,'ezpages.php','page=1&ezID=3&action=new&','76.221.246.255'),(1796,'2010-03-26 22:38:39',2,'ezpages.php','page=1&action=update&','76.221.246.255'),(1797,'2010-03-26 22:38:40',2,'ezpages.php','page=1&ezID=3&','76.221.246.255'),(1798,'2010-03-26 22:40:44',2,'ezpages.php','page=1&ezID=3&action=new&','76.221.246.255'),(1799,'2010-03-26 22:41:00',2,'ezpages.php','page=1&action=update&','76.221.246.255'),(1800,'2010-03-26 22:41:00',2,'ezpages.php','page=1&ezID=3&','76.221.246.255'),(1801,'2010-03-26 22:41:44',2,'ezpages.php','page=1&ezID=3&action=new&','76.221.246.255'),(1802,'2010-03-26 22:41:52',2,'ezpages.php','page=1&action=update&','76.221.246.255'),(1803,'2010-03-26 22:41:56',2,'ezpages.php','page=1&ezID=3&','76.221.246.255'),(1804,'2010-03-26 22:42:43',2,'ezpages.php','page=1&ezID=3&action=new&','76.221.246.255'),(1805,'2010-03-26 22:42:54',2,'ezpages.php','page=1&action=update&','76.221.246.255'),(1806,'2010-03-26 22:42:55',2,'ezpages.php','page=1&ezID=3&','76.221.246.255'),(1807,'2010-03-26 22:42:59',2,'ezpages.php','page=1&ezID=3&action=new&','76.221.246.255'),(1808,'2010-03-26 22:43:07',2,'ezpages.php','page=1&action=update&','76.221.246.255'),(1809,'2010-03-26 22:43:07',2,'ezpages.php','page=1&ezID=3&','76.221.246.255'),(1810,'2010-03-26 22:44:00',2,'ezpages.php','page=1&ezID=3&action=new&','76.221.246.255'),(1811,'2010-03-26 22:44:09',2,'ezpages.php','page=1&action=update&','76.221.246.255'),(1812,'2010-03-26 22:44:10',2,'ezpages.php','page=1&ezID=3&','76.221.246.255'),(1813,'2010-03-26 22:54:22',2,'developers_tool_kit.php','','76.221.246.255'),(1814,'2010-03-26 22:54:41',2,'developers_tool_kit.php','action=locate_configuration&','76.221.246.255'),(1815,'2010-03-26 22:54:47',2,'developers_tool_kit.php','action=locate_all_files&','76.221.246.255'),(1816,'2010-03-26 23:07:01',2,'ezpages.php','','76.221.246.255'),(1817,'2010-03-26 23:07:11',2,'ezpages.php','ezID=3&action=new&','76.221.246.255'),(1818,'2010-03-26 23:08:02',2,'ezpages.php','action=update&','76.221.246.255'),(1819,'2010-03-26 23:08:17',2,'ezpages.php','action=update&','76.221.246.255'),(1820,'2010-03-26 23:08:39',2,'ezpages.php','action=update&','76.221.246.255'),(1821,'2010-03-26 23:08:39',2,'ezpages.php','ezID=3&','76.221.246.255'),(1822,'2010-03-26 23:09:32',2,'ezpages.php','page=1&ezID=3&action=new&','76.221.246.255'),(1823,'2010-03-26 23:11:17',2,'ezpages.php','page=1&action=update&','76.221.246.255'),(1824,'2010-03-26 23:11:17',2,'ezpages.php','page=1&ezID=3&','76.221.246.255'),(1825,'2010-03-26 23:12:19',2,'ezpages.php','page=1&ezID=3&action=new&','76.221.246.255'),(1826,'2010-03-26 23:13:03',2,'ezpages.php','page=1&action=update&','76.221.246.255'),(1827,'2010-03-26 23:13:03',2,'ezpages.php','page=1&ezID=3&','76.221.246.255'),(1828,'2010-03-26 23:13:45',2,'ezpages.php','page=1&ezID=3&action=new&','76.221.246.255'),(1829,'2010-03-26 23:14:21',2,'ezpages.php','page=1&action=update&','76.221.246.255'),(1830,'2010-03-26 23:14:24',2,'ezpages.php','page=1&ezID=3&','76.221.246.255'),(1831,'2010-03-26 23:15:05',2,'ezpages.php','page=1&ezID=3&action=new&','76.221.246.255'),(1832,'2010-03-26 23:15:47',2,'ezpages.php','page=1&action=update&','76.221.246.255'),(1833,'2010-03-26 23:15:48',2,'ezpages.php','page=1&ezID=3&','76.221.246.255'),(1834,'2010-03-26 23:16:34',2,'ezpages.php','action=status_sidebox&current=0&ezID=3&page=1&','76.221.246.255'),(1835,'2010-03-26 23:16:35',2,'ezpages.php','page=1&ezID=3&','76.221.246.255'),(1836,'2010-03-26 23:17:06',2,'categories.php','','76.221.246.255'),(1837,'2010-03-26 23:19:56',2,'ezpages.php','','76.221.246.255'),(1838,'2010-03-26 23:20:01',2,'ezpages.php','page=1&ezID=3&action=new&','76.221.246.255'),(1839,'2010-03-26 23:20:28',2,'ezpages.php','page=1&action=update&','76.221.246.255'),(1840,'2010-03-26 23:20:29',2,'ezpages.php','page=1&ezID=3&','76.221.246.255'),(1841,'2010-03-26 23:21:10',2,'layout_controller.php','','76.221.246.255'),(1842,'2010-03-26 23:21:29',2,'layout_controller.php','page=&cID=84&action=edit&','76.221.246.255'),(1843,'2010-03-26 23:21:43',2,'layout_controller.php','page=&cID=84&action=save&layout_box_name=ezpages.php&','76.221.246.255'),(1844,'2010-03-26 23:21:43',2,'layout_controller.php','page=&cID=84&','76.221.246.255'),(1845,'2010-03-26 23:22:03',2,'layout_controller.php','page=&cID=84&action=edit&','76.221.246.255'),(1846,'2010-03-26 23:22:20',2,'layout_controller.php','page=&cID=84&action=save&layout_box_name=ezpages.php&','76.221.246.255'),(1847,'2010-03-26 23:22:20',2,'layout_controller.php','page=&cID=84&','76.221.246.255'),(1848,'2010-03-26 23:30:56',2,'categories.php','','76.221.246.255'),(1849,'2010-03-26 23:31:00',2,'categories.php','cPath=&cID=3&action=delete_category&','76.221.246.255'),(1850,'2010-03-26 23:31:05',2,'categories.php','action=delete_category_confirm&cPath=&','76.221.246.255'),(1851,'2010-03-26 23:31:05',2,'categories.php','cPath=&','76.221.246.255'),(1852,'2010-03-27 17:43:32',0,'login.php ','','76.221.246.255'),(1853,'2010-03-27 17:44:10',0,'login.php jbadmin','','76.221.246.255'),(1854,'2010-03-27 17:44:28',2,'developers_tool_kit.php','','76.221.246.255'),(1855,'2010-03-27 17:44:35',2,'developers_tool_kit.php','','76.221.246.255'),(1856,'2010-03-27 17:44:47',2,'developers_tool_kit.php','action=locate_configuration&','76.221.246.255'),(1857,'2010-03-27 17:44:54',2,'developers_tool_kit.php','action=locate_all_files&','76.221.246.255'),(1858,'2010-03-27 17:50:31',2,'ezpages.php','','76.221.246.255'),(1859,'2010-03-27 17:50:34',2,'ezpages.php','page=1&ezID=3&action=new&','76.221.246.255'),(1860,'2010-03-27 17:50:50',2,'ezpages.php','page=1&action=update&','76.221.246.255'),(1861,'2010-03-27 17:50:50',2,'ezpages.php','page=1&ezID=3&','76.221.246.255'),(1862,'2010-03-27 21:21:43',0,'login.php ','','76.221.246.255'),(1863,'2010-03-28 18:22:00',0,'login.php ','','76.221.246.255'),(1864,'2010-03-28 18:22:25',0,'login.php jbadmin','','76.221.246.255'),(1865,'2010-03-28 18:25:54',2,'categories.php','','76.221.246.255'),(1866,'2010-03-28 18:26:09',2,'categories.php','cPath=&action=new_category&','76.221.246.255'),(1867,'2010-03-28 18:26:50',2,'categories.php','action=insert_category&cPath=&','76.221.246.255'),(1868,'2010-03-28 18:26:51',2,'categories.php','cPath=&cID=18&','76.221.246.255'),(1869,'2010-03-28 18:27:04',2,'categories.php','cPath=&cID=2&action=edit_category&','76.221.246.255'),(1870,'2010-03-28 18:27:14',2,'categories.php','action=update_category&cPath=&','76.221.246.255'),(1871,'2010-03-28 18:27:15',2,'categories.php','cPath=&cID=2&','76.221.246.255'),(1872,'2010-03-28 18:27:30',2,'categories.php','cPath=18&','76.221.246.255'),(1873,'2010-03-28 18:27:36',2,'categories.php','product_type=1&cPath=18&action=new_product&x=27&y=17&','76.221.246.255'),(1874,'2010-03-28 18:27:36',2,'product.php','product_type=1&cPath=18&action=new_product&x=27&y=17&','76.221.246.255'),(1875,'2010-03-28 18:32:13',2,'product.php','cPath=18&product_type=1&action=new_product_preview&','76.221.246.255'),(1876,'2010-03-28 18:32:17',2,'product.php','cPath=18&product_type=1&action=insert_product&','76.221.246.255'),(1877,'2010-03-28 18:32:20',2,'categories.php','cPath=18&pID=128&','76.221.246.255'),(1878,'2010-03-28 18:32:27',2,'categories.php','securityToken=7c249f7bf8fca5ca3d4b843701ecddc7&reset_editor=2&cID=18&cPath=18&pID=128&page=&action=set_editor&','76.221.246.255'),(1879,'2010-03-28 18:32:27',2,'categories.php','cPath=18&pID=128&','76.221.246.255'),(1880,'2010-03-28 18:32:47',2,'product.php','page=1&product_type=1&cPath=18&pID=128&action=new_product&','76.221.246.255'),(1881,'2010-03-28 18:44:02',2,'product.php','cPath=18&product_type=1&pID=128&action=new_product_preview&page=1&','76.221.246.255'),(1882,'2010-03-28 18:44:14',2,'product.php','cPath=18&product_type=1&pID=128&action=update_product&page=1&','76.221.246.255'),(1883,'2010-03-28 18:44:14',2,'categories.php','cPath=18&pID=128&page=1&','76.221.246.255'),(1884,'2010-03-28 18:46:08',2,'product.php','page=1&product_type=1&cPath=18&pID=128&action=new_product&','76.221.246.255'),(1885,'2010-03-28 18:46:39',2,'categories.php','cPath=18&pID=128&page=1&','76.221.246.255'),(1886,'2010-03-28 18:46:50',2,'categories.php','securityToken=7c249f7bf8fca5ca3d4b843701ecddc7&reset_editor=1&cID=18&cPath=18&pID=128&page=1&action=set_editor&','76.221.246.255'),(1887,'2010-03-28 18:46:51',2,'categories.php','cPath=18&pID=128&page=1&','76.221.246.255'),(1888,'2010-03-28 18:47:10',2,'product.php','page=1&product_type=1&cPath=18&pID=128&action=new_product&','76.221.246.255'),(1889,'2010-03-28 18:54:00',2,'product.php','cPath=18&product_type=1&pID=128&action=new_product_preview&page=1&','76.221.246.255'),(1890,'2010-03-28 18:58:14',2,'product.php','cPath=18&product_type=1&pID=128&action=update_product&page=1&','76.221.246.255'),(1891,'2010-03-28 18:58:25',2,'product.php','cPath=18&product_type=1&pID=128&action=new_product_preview&page=1&','76.221.246.255'),(1892,'2010-03-28 18:58:38',2,'product.php','cPath=18&product_type=1&pID=128&action=update_product&page=1&','76.221.246.255'),(1893,'2010-03-28 18:58:39',2,'categories.php','cPath=18&pID=128&page=1&','76.221.246.255'),(1894,'2010-03-28 19:01:56',2,'product.php','page=1&product_type=1&cPath=18&pID=128&action=new_product&','76.221.246.255'),(1895,'2010-03-28 19:02:12',2,'product.php','cPath=18&product_type=1&pID=128&action=new_product_preview&page=1&','76.221.246.255'),(1896,'2010-03-28 19:02:20',2,'product.php','cPath=18&product_type=1&pID=128&action=update_product&page=1&','76.221.246.255'),(1897,'2010-03-28 19:02:20',2,'categories.php','cPath=18&pID=128&page=1&','76.221.246.255'),(1898,'2010-03-28 19:03:41',2,'attributes_controller.php','','76.221.246.255'),(1899,'2010-03-28 19:03:56',2,'attributes_controller.php','securityToken=7c249f7bf8fca5ca3d4b843701ecddc7&current_category_id=18&products_filter=&action=new_cat&','76.221.246.255'),(1900,'2010-03-28 19:03:59',2,'attributes_controller.php','products_filter=128&current_category_id=18&','76.221.246.255'),(1901,'2010-03-28 19:04:48',2,'options_name_manager.php','','76.221.246.255'),(1902,'2010-03-28 19:05:55',2,'options_name_manager.php','action=add_product_options&option_page=1&option_order_by=products_options_id&','76.221.246.255'),(1903,'2010-03-28 19:05:55',2,'options_name_manager.php','option_page=1&option_order_by=products_options_id&','76.221.246.255'),(1904,'2010-03-28 19:06:25',2,'options_values_manager.php','','76.221.246.255'),(1905,'2010-03-28 19:07:01',2,'attributes_controller.php','','76.221.246.255'),(1906,'2010-03-28 19:07:08',2,'attributes_controller.php','securityToken=7c249f7bf8fca5ca3d4b843701ecddc7&current_category_id=18&products_filter=&action=new_cat&','76.221.246.255'),(1907,'2010-03-28 19:07:08',2,'attributes_controller.php','products_filter=128&current_category_id=18&','76.221.246.255'),(1908,'2010-03-28 19:07:20',2,'options_name_manager.php','','76.221.246.255'),(1909,'2010-03-28 19:07:29',2,'options_name_manager.php','action=update_option&option_id=2&option_order_by=products_options_id&option_page=1&','76.221.246.255'),(1910,'2010-03-28 19:07:59',2,'options_name_manager.php','action=update_option_name&option_page=1&option_order_by=products_options_id&','76.221.246.255'),(1911,'2010-03-28 19:07:59',2,'options_name_manager.php','option_page=1&option_order_by=products_options_id&','76.221.246.255'),(1912,'2010-03-28 19:08:24',2,'options_values_manager.php','','76.221.246.255'),(1913,'2010-03-28 19:08:52',2,'options_values_manager.php','action=add_product_option_values&value_page=1&','76.221.246.255'),(1914,'2010-03-28 19:08:52',2,'options_values_manager.php','value_page=1&','76.221.246.255'),(1915,'2010-03-28 19:09:04',2,'options_values_manager.php','action=add_product_option_values&value_page=1&','76.221.246.255'),(1916,'2010-03-28 19:09:05',2,'options_values_manager.php','value_page=1&','76.221.246.255'),(1917,'2010-03-28 19:09:09',2,'options_values_manager.php','action=update_option_value&value_id=4&value_page=1&','76.221.246.255'),(1918,'2010-03-28 19:09:21',2,'options_values_manager.php','action=update_value&value_page=1&','76.221.246.255'),(1919,'2010-03-28 19:09:21',2,'options_values_manager.php','value_page=1&','76.221.246.255'),(1920,'2010-03-28 19:09:34',2,'options_values_manager.php','action=add_product_option_values&value_page=1&','76.221.246.255'),(1921,'2010-03-28 19:09:35',2,'options_values_manager.php','value_page=1&','76.221.246.255'),(1922,'2010-03-28 19:09:47',2,'options_values_manager.php','action=add_product_option_values&value_page=1&','76.221.246.255'),(1923,'2010-03-28 19:09:50',2,'options_values_manager.php','value_page=1&','76.221.246.255'),(1924,'2010-03-28 19:10:03',2,'options_values_manager.php','action=add_product_option_values&value_page=1&','76.221.246.255'),(1925,'2010-03-28 19:10:03',2,'options_values_manager.php','value_page=1&','76.221.246.255'),(1926,'2010-03-28 19:10:49',2,'options_values_manager.php','action=add_product_option_values&value_page=1&','76.221.246.255'),(1927,'2010-03-28 19:10:49',2,'options_values_manager.php','value_page=1&','76.221.246.255'),(1928,'2010-03-28 19:11:00',2,'options_values_manager.php','action=add_product_option_values&value_page=1&','76.221.246.255'),(1929,'2010-03-28 19:11:00',2,'options_values_manager.php','value_page=1&','76.221.246.255'),(1930,'2010-03-28 19:11:14',2,'options_values_manager.php','action=add_product_option_values&value_page=1&','76.221.246.255'),(1931,'2010-03-28 19:11:14',2,'options_values_manager.php','value_page=1&','76.221.246.255'),(1932,'2010-03-28 19:11:50',2,'options_values_manager.php','action=update_option_value&value_id=4&value_page=1&','76.221.246.255'),(1933,'2010-03-28 19:11:59',2,'options_values_manager.php','action=update_value&value_page=1&','76.221.246.255'),(1934,'2010-03-28 19:11:59',2,'options_values_manager.php','value_page=1&','76.221.246.255'),(1935,'2010-03-28 19:12:06',2,'options_values_manager.php','action=update_option_value&value_id=5&value_page=1&','76.221.246.255'),(1936,'2010-03-28 19:12:15',2,'options_values_manager.php','action=update_value&value_page=1&','76.221.246.255'),(1937,'2010-03-28 19:12:15',2,'options_values_manager.php','value_page=1&','76.221.246.255'),(1938,'2010-03-28 19:12:32',2,'options_values_manager.php','action=update_option_value&value_id=11&value_page=1&','76.221.246.255'),(1939,'2010-03-28 19:12:39',2,'options_values_manager.php','action=update_value&value_page=1&','76.221.246.255'),(1940,'2010-03-28 19:12:39',2,'options_values_manager.php','value_page=1&','76.221.246.255'),(1941,'2010-03-28 19:12:44',2,'options_values_manager.php','action=update_option_value&value_id=6&value_page=1&','76.221.246.255'),(1942,'2010-03-28 19:12:51',2,'options_values_manager.php','action=update_value&value_page=1&','76.221.246.255'),(1943,'2010-03-28 19:12:51',2,'options_values_manager.php','value_page=1&','76.221.246.255'),(1944,'2010-03-28 19:12:56',2,'options_values_manager.php','action=update_option_value&value_id=7&value_page=1&','76.221.246.255'),(1945,'2010-03-28 19:13:04',2,'options_values_manager.php','action=update_value&value_page=1&','76.221.246.255'),(1946,'2010-03-28 19:13:04',2,'options_values_manager.php','value_page=1&','76.221.246.255'),(1947,'2010-03-28 19:13:09',2,'options_values_manager.php','action=update_option_value&value_id=8&value_page=1&','76.221.246.255'),(1948,'2010-03-28 19:13:15',2,'options_values_manager.php','action=update_value&value_page=1&','76.221.246.255'),(1949,'2010-03-28 19:13:15',2,'options_values_manager.php','value_page=1&','76.221.246.255'),(1950,'2010-03-28 19:13:19',2,'options_values_manager.php','action=update_option_value&value_id=9&value_page=1&','76.221.246.255'),(1951,'2010-03-28 19:13:24',2,'options_values_manager.php','action=update_value&value_page=1&','76.221.246.255'),(1952,'2010-03-28 19:13:24',2,'options_values_manager.php','value_page=1&','76.221.246.255'),(1953,'2010-03-28 19:13:33',2,'options_values_manager.php','action=update_option_value&value_id=10&value_page=1&','76.221.246.255'),(1954,'2010-03-28 19:13:39',2,'options_values_manager.php','action=update_value&value_page=1&','76.221.246.255'),(1955,'2010-03-28 19:13:39',2,'options_values_manager.php','value_page=1&','76.221.246.255'),(1956,'2010-03-28 19:16:26',2,'attributes_controller.php','','76.221.246.255'),(1957,'2010-03-28 19:16:39',2,'attributes_controller.php','securityToken=7c249f7bf8fca5ca3d4b843701ecddc7&current_category_id=18&products_filter=&action=new_cat&','76.221.246.255'),(1958,'2010-03-28 19:16:39',2,'attributes_controller.php','products_filter=128&current_category_id=18&','76.221.246.255'),(1959,'2010-03-28 19:16:56',2,'options_name_manager.php','','76.221.246.255'),(1960,'2010-03-28 19:17:13',2,'options_name_manager.php','action=update_option&option_id=2&option_order_by=products_options_id&option_page=1&','76.221.246.255'),(1961,'2010-03-28 19:17:23',2,'options_name_manager.php','action=update_option_name&option_page=1&option_order_by=products_options_id&','76.221.246.255'),(1962,'2010-03-28 19:17:24',2,'options_name_manager.php','option_page=1&option_order_by=products_options_id&','76.221.246.255'),(1963,'2010-03-28 19:18:16',2,'categories.php','','76.221.246.255'),(1964,'2010-03-28 19:18:21',2,'categories.php','cPath=18&','76.221.246.255'),(1965,'2010-03-28 19:18:29',2,'product.php','page=1&product_type=1&cPath=18&pID=128&action=new_product&','76.221.246.255'),(1966,'2010-03-28 19:18:52',2,'categories.php','cPath=18&pID=128&page=1&','76.221.246.255'),(1967,'2010-03-28 19:19:25',2,'attributes_controller.php','','76.221.246.255'),(1968,'2010-03-28 19:19:41',2,'attributes_controller.php','securityToken=7c249f7bf8fca5ca3d4b843701ecddc7&current_category_id=18&products_filter=&action=new_cat&','76.221.246.255'),(1969,'2010-03-28 19:19:41',2,'attributes_controller.php','products_filter=128&current_category_id=18&','76.221.246.255'),(1970,'2010-03-28 19:19:57',2,'attributes_controller.php','action=set_products_filter&','76.221.246.255'),(1971,'2010-03-28 19:19:58',2,'attributes_controller.php','products_filter=128&current_category_id=18&','76.221.246.255'),(1972,'2010-03-28 19:20:59',2,'attributes_controller.php','action=add_product_attributes&attribute_page=1&products_filter=128&','76.221.246.255'),(1973,'2010-03-28 19:20:59',2,'attributes_controller.php','attribute_page=1&products_filter=128&current_category_id=18&','76.221.246.255'),(1974,'2010-03-28 19:21:28',2,'attributes_controller.php','action=add_product_attributes&attribute_page=1&products_filter=128&','76.221.246.255'),(1975,'2010-03-28 19:21:29',2,'attributes_controller.php','attribute_page=1&products_filter=128&current_category_id=18&','76.221.246.255'),(1976,'2010-03-28 19:21:45',2,'options_values_manager.php','','76.221.246.255'),(1977,'2010-03-28 19:22:08',2,'options_values_manager.php','action=add_product_option_values&value_page=1&','76.221.246.255'),(1978,'2010-03-28 19:22:09',2,'options_values_manager.php','value_page=1&','76.221.246.255'),(1979,'2010-03-28 19:22:23',2,'attributes_controller.php','','76.221.246.255'),(1980,'2010-03-28 19:22:29',2,'attributes_controller.php','securityToken=7c249f7bf8fca5ca3d4b843701ecddc7&current_category_id=18&products_filter=&action=new_cat&','76.221.246.255'),(1981,'2010-03-28 19:22:29',2,'attributes_controller.php','products_filter=128&current_category_id=18&','76.221.246.255'),(1982,'2010-03-28 19:22:56',2,'attributes_controller.php','action=add_product_attributes&attribute_page=1&products_filter=128&','76.221.246.255'),(1983,'2010-03-28 19:22:57',2,'attributes_controller.php','attribute_page=1&products_filter=128&current_category_id=18&','76.221.246.255'),(1984,'2010-03-28 19:23:22',2,'attributes_controller.php','action=add_product_attributes&attribute_page=1&products_filter=128&','76.221.246.255'),(1985,'2010-03-28 19:23:22',2,'attributes_controller.php','attribute_page=1&products_filter=128&current_category_id=18&','76.221.246.255'),(1986,'2010-03-28 19:24:04',2,'attributes_controller.php','action=add_product_attributes&attribute_page=1&products_filter=128&','76.221.246.255'),(1987,'2010-03-28 19:24:08',2,'attributes_controller.php','attribute_page=1&products_filter=128&current_category_id=18&','76.221.246.255'),(1988,'2010-03-28 19:24:52',2,'attributes_controller.php','action=add_product_attributes&attribute_page=1&products_filter=128&','76.221.246.255'),(1989,'2010-03-28 19:24:56',2,'attributes_controller.php','attribute_page=1&products_filter=128&current_category_id=18&','76.221.246.255'),(1990,'2010-03-28 19:41:39',2,'attributes_controller.php','action=add_product_attributes&attribute_page=1&products_filter=128&','76.221.246.255'),(1991,'2010-03-28 19:41:39',2,'attributes_controller.php','attribute_page=1&products_filter=128&current_category_id=18&','76.221.246.255'),(1992,'2010-03-28 19:42:24',2,'attributes_controller.php','action=add_product_attributes&attribute_page=1&products_filter=128&','76.221.246.255'),(1993,'2010-03-28 19:42:27',2,'attributes_controller.php','attribute_page=1&products_filter=128&current_category_id=18&','76.221.246.255'),(1994,'2010-03-28 19:43:21',2,'attributes_controller.php','action=add_product_attributes&attribute_page=1&products_filter=128&','76.221.246.255'),(1995,'2010-03-28 19:43:22',2,'attributes_controller.php','attribute_page=1&products_filter=128&current_category_id=18&','76.221.246.255'),(1996,'2010-03-28 19:45:37',2,'categories.php','','76.221.246.255'),(1997,'2010-03-28 19:46:27',2,'categories.php','cPath=18&','76.221.246.255'),(1998,'2010-03-28 19:46:33',2,'product.php','page=1&product_type=1&cPath=18&pID=128&action=new_product&','76.221.246.255'),(1999,'2010-03-28 19:46:57',2,'product.php','cPath=18&product_type=1&pID=128&action=new_product_preview&page=1&','76.221.246.255'),(2000,'2010-03-28 19:47:02',2,'product.php','cPath=18&product_type=1&pID=128&action=update_product&page=1&','76.221.246.255'),(2001,'2010-03-28 19:47:02',2,'categories.php','cPath=18&pID=128&page=1&','76.221.246.255'),(2002,'2010-03-28 19:47:19',2,'attributes_controller.php','','76.221.246.255'),(2003,'2010-03-28 19:47:26',2,'options_values_manager.php','','76.221.246.255'),(2004,'2010-03-28 19:48:04',2,'options_values_manager.php','value_page=2&','76.221.246.255'),(2005,'2010-03-28 19:48:17',2,'options_values_manager.php','option_order_by=&value_page=1&','76.221.246.255'),(2006,'2010-03-28 19:48:24',2,'options_values_manager.php','action=update_option_value&value_id=11&value_page=1&','76.221.246.255'),(2007,'2010-03-28 19:48:36',2,'options_values_manager.php','action=update_value&value_page=1&','76.221.246.255'),(2008,'2010-03-28 19:48:40',2,'options_values_manager.php','value_page=1&','76.221.246.255'),(2009,'2010-03-28 19:50:08',2,'attributes_controller.php','','76.221.246.255'),(2010,'2010-03-28 19:50:12',2,'attributes_controller.php','securityToken=7c249f7bf8fca5ca3d4b843701ecddc7&current_category_id=18&products_filter=&action=new_cat&','76.221.246.255'),(2011,'2010-03-28 19:50:13',2,'attributes_controller.php','products_filter=128&current_category_id=18&','76.221.246.255'),(2012,'2010-03-28 19:50:37',2,'attributes_controller.php','action=update_attribute&attribute_id=16&attribute_page=1&products_filter=128&current_category_id=18&','76.221.246.255'),(2013,'2010-03-28 19:50:52',2,'attributes_controller.php','action=update_product_attribute&attribute_page=1&products_filter=128&','76.221.246.255'),(2014,'2010-03-28 19:50:52',2,'attributes_controller.php','attribute_page=1&products_filter=128&current_category_id=18&','76.221.246.255'),(2015,'2010-03-28 19:53:16',2,'categories.php','','76.221.246.255'),(2016,'2010-03-28 19:53:28',2,'categories.php','cPath=18&','76.221.246.255'),(2017,'2010-03-28 19:54:06',2,'categories.php','product_type=1&cPath=18&action=new_product&x=52&y=15&','76.221.246.255'),(2018,'2010-03-28 19:54:10',2,'product.php','product_type=1&cPath=18&action=new_product&x=52&y=15&','76.221.246.255'),(2019,'2010-03-28 20:00:01',2,'product.php','cPath=18&product_type=1&action=new_product_preview&','76.221.246.255'),(2020,'2010-03-28 20:00:12',2,'product.php','cPath=18&product_type=1&action=insert_product&','76.221.246.255'),(2021,'2010-03-28 20:00:12',2,'categories.php','cPath=18&pID=129&','76.221.246.255'),(2022,'2010-03-28 20:00:43',2,'attributes_controller.php','','76.221.246.255'),(2023,'2010-03-28 20:00:59',2,'attributes_controller.php','securityToken=7c249f7bf8fca5ca3d4b843701ecddc7&current_category_id=18&products_filter=&action=new_cat&','76.221.246.255'),(2024,'2010-03-28 20:01:00',2,'attributes_controller.php','products_filter=128&current_category_id=18&','76.221.246.255'),(2025,'2010-03-28 20:01:11',2,'attributes_controller.php','action=set_products_filter&','76.221.246.255'),(2026,'2010-03-28 20:01:12',2,'attributes_controller.php','products_filter=129&current_category_id=18&','76.221.246.255'),(2027,'2010-03-28 20:01:59',2,'attributes_controller.php','action=add_product_attributes&attribute_page=1&products_filter=129&','76.221.246.255'),(2028,'2010-03-28 20:01:59',2,'attributes_controller.php','attribute_page=1&products_filter=129&current_category_id=18&','76.221.246.255'),(2029,'2010-03-28 20:36:38',2,'attributes_controller.php','action=add_product_attributes&attribute_page=1&products_filter=129&','76.221.246.255'),(2030,'2010-03-28 20:36:39',2,'attributes_controller.php','attribute_page=1&products_filter=129&current_category_id=18&','76.221.246.255'),(2031,'2010-03-28 20:36:58',2,'attributes_controller.php','action=add_product_attributes&attribute_page=1&products_filter=129&','76.221.246.255'),(2032,'2010-03-28 20:36:59',2,'attributes_controller.php','attribute_page=1&products_filter=129&current_category_id=18&','76.221.246.255'),(2033,'2010-03-28 20:37:23',2,'attributes_controller.php','action=add_product_attributes&attribute_page=1&products_filter=129&','76.221.246.255'),(2034,'2010-03-28 20:37:23',2,'attributes_controller.php','attribute_page=1&products_filter=129&current_category_id=18&','76.221.246.255'),(2035,'2010-03-28 20:37:52',2,'attributes_controller.php','action=add_product_attributes&attribute_page=1&products_filter=129&','76.221.246.255'),(2036,'2010-03-28 20:37:52',2,'attributes_controller.php','attribute_page=1&products_filter=129&current_category_id=18&','76.221.246.255'),(2037,'2010-03-28 20:38:26',2,'attributes_controller.php','action=add_product_attributes&attribute_page=1&products_filter=129&','76.221.246.255'),(2038,'2010-03-28 20:38:26',2,'attributes_controller.php','attribute_page=1&products_filter=129&current_category_id=18&','76.221.246.255'),(2039,'2010-03-28 20:38:50',2,'attributes_controller.php','action=add_product_attributes&attribute_page=1&products_filter=129&','76.221.246.255'),(2040,'2010-03-28 20:38:51',2,'attributes_controller.php','attribute_page=1&products_filter=129&current_category_id=18&','76.221.246.255'),(2041,'2010-03-28 20:39:21',2,'attributes_controller.php','action=add_product_attributes&attribute_page=1&products_filter=129&','76.221.246.255'),(2042,'2010-03-28 20:39:21',2,'attributes_controller.php','attribute_page=1&products_filter=129&current_category_id=18&','76.221.246.255'),(2043,'2010-03-28 20:39:47',2,'attributes_controller.php','action=add_product_attributes&attribute_page=1&products_filter=129&','76.221.246.255'),(2044,'2010-03-28 20:39:47',2,'attributes_controller.php','attribute_page=1&products_filter=129&current_category_id=18&','76.221.246.255'),(2045,'2010-03-28 20:40:11',2,'attributes_controller.php','action=add_product_attributes&attribute_page=1&products_filter=129&','76.221.246.255'),(2046,'2010-03-28 20:40:12',2,'attributes_controller.php','attribute_page=1&products_filter=129&current_category_id=18&','76.221.246.255'),(2047,'2010-03-28 20:40:55',2,'attributes_controller.php','action=add_product_attributes&attribute_page=1&products_filter=129&','76.221.246.255'),(2048,'2010-03-28 20:40:55',2,'attributes_controller.php','attribute_page=1&products_filter=129&current_category_id=18&','76.221.246.255'),(2049,'2010-03-28 20:41:17',2,'attributes_controller.php','action=update_attribute&attribute_id=31&attribute_page=1&products_filter=129&current_category_id=18&','76.221.246.255'),(2050,'2010-03-28 20:41:35',2,'attributes_controller.php','action=update_product_attribute&attribute_page=1&products_filter=129&','76.221.246.255'),(2051,'2010-03-28 20:41:39',2,'attributes_controller.php','attribute_page=1&products_filter=129&current_category_id=18&','76.221.246.255'),(2052,'2010-03-28 20:43:15',2,'categories.php','','76.221.246.255'),(2053,'2010-03-28 20:43:55',2,'categories.php','cPath=18&','76.221.246.255'),(2054,'2010-03-28 20:43:59',2,'product.php','page=1&product_type=1&cPath=18&pID=128&action=new_product&','76.221.246.255'),(2055,'2010-03-28 20:44:51',2,'product.php','cPath=18&product_type=1&pID=128&action=new_product_preview&page=1&','76.221.246.255'),(2056,'2010-03-28 20:45:02',2,'product.php','cPath=18&product_type=1&pID=128&action=update_product&page=1&','76.221.246.255'),(2057,'2010-03-28 20:45:35',2,'product.php','cPath=18&product_type=1&pID=128&action=new_product_preview&page=1&','76.221.246.255'),(2058,'2010-03-28 20:45:48',2,'product.php','cPath=18&product_type=1&pID=128&action=update_product&page=1&','76.221.246.255'),(2059,'2010-03-28 20:47:43',2,'product.php','cPath=18&product_type=1&pID=128&action=new_product_preview&page=1&','76.221.246.255'),(2060,'2010-03-28 20:48:17',2,'product.php','cPath=18&product_type=1&pID=128&action=update_product&page=1&','76.221.246.255'),(2061,'2010-03-28 20:48:39',2,'product.php','cPath=18&product_type=1&pID=128&action=new_product_preview&page=1&','76.221.246.255'),(2062,'2010-03-28 20:48:51',2,'product.php','cPath=18&product_type=1&pID=128&action=update_product&page=1&','76.221.246.255'),(2063,'2010-03-28 20:49:25',2,'product.php','cPath=18&product_type=1&pID=128&action=new_product_preview&page=1&','76.221.246.255'),(2064,'2010-03-28 20:49:50',2,'product.php','cPath=18&product_type=1&pID=128&action=update_product&page=1&','76.221.246.255'),(2065,'2010-03-28 20:50:15',2,'product.php','cPath=18&product_type=1&pID=128&action=new_product_preview&page=1&','76.221.246.255'),(2066,'2010-03-28 20:51:04',2,'product.php','cPath=18&product_type=1&pID=128&action=update_product&page=1&','76.221.246.255'),(2067,'2010-03-28 20:51:08',2,'categories.php','cPath=18&pID=128&page=1&','76.221.246.255'),(2068,'2010-03-28 20:51:12',2,'product.php','page=1&product_type=1&cPath=18&pID=129&action=new_product&','76.221.246.255'),(2069,'2010-03-28 20:52:20',2,'product.php','cPath=18&product_type=1&pID=129&action=new_product_preview&page=1&','76.221.246.255'),(2070,'2010-03-28 20:52:40',2,'product.php','cPath=18&product_type=1&pID=129&action=update_product&page=1&','76.221.246.255'),(2071,'2010-03-28 20:52:40',2,'categories.php','cPath=18&pID=129&page=1&','76.221.246.255'),(2072,'2010-03-28 20:53:55',2,'configuration.php','gID=3&','76.221.246.255'),(2073,'2010-03-28 20:54:14',2,'configuration.php','gID=8&','76.221.246.255'),(2074,'2010-03-28 20:54:34',2,'configuration.php','gID=19&','76.221.246.255'),(2075,'2010-03-28 20:54:46',2,'configuration.php','gID=19&cID=398&action=edit&','76.221.246.255'),(2076,'2010-03-28 20:55:00',2,'configuration.php','gID=19&cID=398&action=save&','76.221.246.255'),(2077,'2010-03-28 20:55:00',2,'configuration.php','gID=19&cID=398&','76.221.246.255'),(2078,'2010-03-28 20:55:10',2,'configuration.php','gID=19&cID=412&action=edit&','76.221.246.255'),(2079,'2010-03-28 20:55:25',2,'configuration.php','gID=19&cID=412&action=save&','76.221.246.255'),(2080,'2010-03-28 20:55:25',2,'configuration.php','gID=19&cID=412&','76.221.246.255'),(2081,'2010-03-28 23:12:05',0,'login.php ','','76.221.246.255'),(2082,'2010-03-28 23:12:31',0,'login.php jbadmin','','76.221.246.255'),(2083,'2010-03-28 23:12:46',2,'categories.php','','76.221.246.255'),(2084,'2010-03-28 23:18:06',2,'categories.php','cPath=2&','76.221.246.255'),(2085,'2010-03-28 23:18:17',2,'categories.php','cPath=&cID=2&action=edit_category&','76.221.246.255'),(2086,'2010-03-28 23:18:38',2,'categories.php','action=update_category&cPath=&','76.221.246.255'),(2087,'2010-03-28 23:18:39',2,'categories.php','cPath=&cID=2&','76.221.246.255'),(2088,'2010-03-28 23:20:55',2,'categories.php','cPath=&cID=2&action=edit_category&','76.221.246.255'),(2089,'2010-03-28 23:21:44',2,'categories.php','action=update_category&cPath=&','76.221.246.255'),(2090,'2010-03-28 23:21:48',2,'categories.php','cPath=&cID=2&','76.221.246.255'),(2091,'2010-03-28 23:22:13',2,'categories.php','cPath=&cID=2&action=edit_category&','76.221.246.255'),(2092,'2010-03-28 23:23:45',2,'categories.php','action=update_category&cPath=&','76.221.246.255'),(2093,'2010-03-28 23:23:45',2,'categories.php','cPath=&cID=2&','76.221.246.255'),(2094,'2010-03-28 23:24:20',2,'categories.php','cPath=2&','76.221.246.255'),(2095,'2010-03-28 23:24:24',2,'categories.php','product_type=1&cPath=2&action=new_product&x=68&y=17&','76.221.246.255'),(2096,'2010-03-28 23:24:25',2,'product.php','product_type=1&cPath=2&action=new_product&x=68&y=17&','76.221.246.255'),(2097,'2010-03-28 23:24:56',2,'categories.php','cPath=2&action=new_category&','76.221.246.255'),(2098,'2010-03-28 23:25:13',2,'categories.php','action=insert_category&cPath=2&','76.221.246.255'),(2099,'2010-03-28 23:25:14',2,'categories.php','cPath=2&cID=19&','76.221.246.255'),(2100,'2010-03-28 23:25:31',2,'categories.php','cPath=2&action=new_category&','76.221.246.255'),(2101,'2010-03-28 23:25:50',2,'categories.php','action=insert_category&cPath=2&','76.221.246.255'),(2102,'2010-03-28 23:25:51',2,'categories.php','cPath=2&cID=20&','76.221.246.255'),(2103,'2010-03-28 23:25:54',2,'categories.php','cPath=2&action=new_category&','76.221.246.255'),(2104,'2010-03-28 23:26:11',2,'categories.php','action=insert_category&cPath=2&','76.221.246.255'),(2105,'2010-03-28 23:26:11',2,'categories.php','cPath=2&cID=21&','76.221.246.255'),(2106,'2010-03-28 23:26:17',2,'categories.php','cPath=2&action=new_category&','76.221.246.255'),(2107,'2010-03-28 23:26:55',2,'categories.php','action=insert_category&cPath=2&','76.221.246.255'),(2108,'2010-03-28 23:26:56',2,'categories.php','cPath=2&cID=22&','76.221.246.255'),(2109,'2010-03-28 23:26:59',2,'categories.php','cPath=2&action=new_category&','76.221.246.255'),(2110,'2010-03-28 23:27:26',2,'categories.php','action=insert_category&cPath=2&','76.221.246.255'),(2111,'2010-03-28 23:27:27',2,'categories.php','cPath=2&cID=23&','76.221.246.255'),(2112,'2010-03-28 23:28:04',2,'categories.php','cPath=2&action=new_category&','76.221.246.255'),(2113,'2010-03-28 23:28:31',2,'categories.php','action=insert_category&cPath=2&','76.221.246.255'),(2114,'2010-03-28 23:28:32',2,'categories.php','cPath=2&cID=24&','76.221.246.255'),(2115,'2010-03-28 23:28:37',2,'categories.php','cPath=2&action=new_category&','76.221.246.255'),(2116,'2010-03-28 23:29:21',2,'categories.php','action=insert_category&cPath=2&','76.221.246.255'),(2117,'2010-03-28 23:29:22',2,'categories.php','cPath=2&cID=25&','76.221.246.255'),(2118,'2010-03-28 23:29:28',2,'categories.php','cPath=2_24&','76.221.246.255'),(2119,'2010-03-28 23:29:32',2,'categories.php','product_type=1&cPath=2_24&action=new_product&x=47&y=15&','76.221.246.255'),(2120,'2010-03-28 23:29:32',2,'product.php','product_type=1&cPath=2_24&action=new_product&x=47&y=15&','76.221.246.255'),(2121,'2010-03-28 23:31:02',2,'categories.php','cPath=2&cID=24&action=edit_category&','76.221.246.255'),(2122,'2010-03-28 23:31:18',2,'categories.php','action=update_category&cPath=2&','76.221.246.255'),(2123,'2010-03-28 23:31:19',2,'categories.php','cPath=2&cID=24&','76.221.246.255'),(2124,'2010-03-28 23:31:24',2,'categories.php','cPath=2&cID=25&action=edit_category&','76.221.246.255'),(2125,'2010-03-28 23:32:12',2,'categories.php','action=update_category&cPath=2&','76.221.246.255'),(2126,'2010-03-28 23:32:13',2,'categories.php','cPath=2&cID=25&','76.221.246.255'),(2127,'2010-03-28 23:32:16',2,'categories.php','cPath=2&action=new_category&','76.221.246.255'),(2128,'2010-03-28 23:32:48',2,'categories.php','action=insert_category&cPath=2&','76.221.246.255'),(2129,'2010-03-28 23:32:48',2,'categories.php','cPath=2&cID=26&','76.221.246.255'),(2130,'2010-03-28 23:32:56',2,'categories.php','cPath=2&cID=26&action=edit_category&','76.221.246.255'),(2131,'2010-03-28 23:33:08',2,'categories.php','action=update_category&cPath=2&','76.221.246.255'),(2132,'2010-03-28 23:33:08',2,'categories.php','cPath=2&cID=26&','76.221.246.255'),(2133,'2010-03-28 23:33:13',2,'categories.php','cPath=2&action=new_category&','76.221.246.255'),(2134,'2010-03-28 23:33:58',2,'categories.php','action=insert_category&cPath=2&','76.221.246.255'),(2135,'2010-03-28 23:33:58',2,'categories.php','cPath=2&cID=27&','76.221.246.255'),(2136,'2010-03-28 23:35:11',2,'categories.php','cPath=2_27&','76.221.246.255'),(2137,'2010-03-28 23:35:16',2,'categories.php','product_type=1&cPath=2_27&action=new_product&x=40&y=14&','76.221.246.255'),(2138,'2010-03-28 23:35:16',2,'product.php','product_type=1&cPath=2_27&action=new_product&x=40&y=14&','76.221.246.255'),(2139,'2010-03-28 23:36:12',2,'product.php','cPath=2_27&product_type=1&action=new_product_preview&','76.221.246.255'),(2140,'2010-03-28 23:36:15',2,'product.php','cPath=2_27&product_type=1&action=insert_product&','76.221.246.255'),(2141,'2010-03-28 23:36:16',2,'categories.php','cPath=2_27&pID=130&','76.221.246.255'),(2142,'2010-03-28 23:36:25',2,'categories.php','cPath=2&cID=27&','76.221.246.255'),(2143,'2010-03-28 23:36:29',2,'categories.php','cPath=2_27&','76.221.246.255'),(2144,'2010-03-28 23:36:41',2,'categories.php','cPath=2_27&','76.221.246.255'),(2145,'2010-03-28 23:36:45',2,'product.php','cPath=2_27&product_type=1&pID=130&action=new_product&','76.221.246.255'),(2146,'2010-03-28 23:37:03',2,'product.php','cPath=2_27&product_type=1&pID=130&action=new_product_preview&','76.221.246.255'),(2147,'2010-03-28 23:37:06',2,'product.php','cPath=2_27&product_type=1&pID=130&action=update_product&','76.221.246.255'),(2148,'2010-03-28 23:37:07',2,'categories.php','cPath=2_27&pID=130&','76.221.246.255'),(2149,'2010-03-28 23:37:11',2,'categories.php','cPath=2&cID=27&','76.221.246.255'),(2150,'2010-03-28 23:37:14',2,'categories.php','cPath=2_26&','76.221.246.255'),(2151,'2010-03-28 23:37:18',2,'categories.php','product_type=1&cPath=2_26&action=new_product&x=60&y=12&','76.221.246.255'),(2152,'2010-03-28 23:37:18',2,'product.php','product_type=1&cPath=2_26&action=new_product&x=60&y=12&','76.221.246.255'),(2153,'2010-03-28 23:37:30',2,'product.php','cPath=2_26&product_type=1&action=new_product_preview&','76.221.246.255'),(2154,'2010-03-28 23:37:33',2,'product.php','cPath=2_26&product_type=1&action=insert_product&','76.221.246.255'),(2155,'2010-03-28 23:37:33',2,'categories.php','cPath=2_26&pID=131&','76.221.246.255'),(2156,'2010-03-28 23:37:47',2,'categories.php','cPath=2&cID=26&','76.221.246.255'),(2157,'2010-03-28 23:37:52',2,'categories.php','cPath=2_25&','76.221.246.255'),(2158,'2010-03-28 23:37:54',2,'categories.php','product_type=1&cPath=2_25&action=new_product&x=34&y=16&','76.221.246.255'),(2159,'2010-03-28 23:37:54',2,'product.php','product_type=1&cPath=2_25&action=new_product&x=34&y=16&','76.221.246.255'),(2160,'2010-03-28 23:38:06',2,'product.php','cPath=2_25&product_type=1&action=new_product_preview&','76.221.246.255'),(2161,'2010-03-28 23:38:10',2,'product.php','cPath=2_25&product_type=1&action=insert_product&','76.221.246.255'),(2162,'2010-03-28 23:38:10',2,'categories.php','cPath=2_25&pID=132&','76.221.246.255'),(2163,'2010-03-28 23:38:15',2,'categories.php','cPath=2&cID=25&','76.221.246.255'),(2164,'2010-03-28 23:38:19',2,'categories.php','cPath=2_24&','76.221.246.255'),(2165,'2010-03-28 23:38:22',2,'categories.php','product_type=1&cPath=2_24&action=new_product&x=29&y=11&','76.221.246.255'),(2166,'2010-03-28 23:38:23',2,'product.php','product_type=1&cPath=2_24&action=new_product&x=29&y=11&','76.221.246.255'),(2167,'2010-03-28 23:38:34',2,'product.php','cPath=2_24&product_type=1&action=new_product_preview&','76.221.246.255'),(2168,'2010-03-28 23:38:37',2,'product.php','cPath=2_24&product_type=1&action=insert_product&','76.221.246.255'),(2169,'2010-03-28 23:38:38',2,'categories.php','cPath=2_24&pID=133&','76.221.246.255'),(2170,'2010-03-28 23:39:31',2,'attributes_controller.php','','76.221.246.255'),(2171,'2010-03-28 23:39:39',2,'attributes_controller.php','securityToken=3e3faffa837e5208859ad637297a74f3&current_category_id=2&products_filter=&action=new_cat&','76.221.246.255'),(2172,'2010-03-28 23:39:39',2,'attributes_controller.php','products_filter=&current_category_id=2&','76.221.246.255'),(2173,'2010-03-28 23:40:57',2,'options_name_manager.php','','76.221.246.255'),(2174,'2010-03-28 23:42:38',2,'options_name_manager.php','action=add_product_options&option_page=1&option_order_by=products_options_id&','76.221.246.255'),(2175,'2010-03-28 23:42:38',2,'options_name_manager.php','option_page=1&option_order_by=products_options_id&','76.221.246.255'),(2176,'2010-03-28 23:42:48',2,'options_values_manager.php','','76.221.246.255'),(2177,'2010-03-28 23:43:29',2,'options_values_manager.php','action=add_product_option_values&value_page=1&','76.221.246.255'),(2178,'2010-03-28 23:43:30',2,'options_values_manager.php','value_page=1&','76.221.246.255'),(2179,'2010-03-28 23:43:51',2,'options_values_manager.php','action=add_product_option_values&value_page=1&','76.221.246.255'),(2180,'2010-03-28 23:43:51',2,'options_values_manager.php','value_page=1&','76.221.246.255'),(2181,'2010-03-28 23:44:05',2,'options_values_manager.php','action=add_product_option_values&value_page=1&','76.221.246.255'),(2182,'2010-03-28 23:44:05',2,'options_values_manager.php','value_page=1&','76.221.246.255'),(2183,'2010-03-28 23:44:20',2,'options_values_manager.php','action=add_product_option_values&value_page=1&','76.221.246.255'),(2184,'2010-03-28 23:44:20',2,'options_values_manager.php','value_page=1&','76.221.246.255'),(2185,'2010-03-28 23:44:44',2,'attributes_controller.php','','76.221.246.255'),(2186,'2010-03-28 23:44:49',2,'attributes_controller.php','securityToken=3e3faffa837e5208859ad637297a74f3&current_category_id=2&products_filter=&action=new_cat&','76.221.246.255'),(2187,'2010-03-28 23:44:50',2,'attributes_controller.php','products_filter=&current_category_id=2&','76.221.246.255'),(2188,'2010-03-28 23:44:53',2,'options_name_manager.php','','76.221.246.255'),(2189,'2010-03-28 23:45:08',2,'options_name_manager.php','action=add_product_options&option_page=1&option_order_by=products_options_id&','76.221.246.255'),(2190,'2010-03-28 23:45:08',2,'options_name_manager.php','option_page=1&option_order_by=products_options_id&','76.221.246.255'),(2191,'2010-03-28 23:45:36',2,'options_name_manager.php','action=add_product_options&option_page=1&option_order_by=products_options_id&','76.221.246.255'),(2192,'2010-03-28 23:45:36',2,'options_name_manager.php','option_page=1&option_order_by=products_options_id&','76.221.246.255'),(2193,'2010-03-28 23:45:40',2,'options_name_manager.php','action=update_option&option_id=4&option_order_by=products_options_id&option_page=1&','76.221.246.255'),(2194,'2010-03-28 23:45:50',2,'options_name_manager.php','action=update_option_name&option_page=1&option_order_by=products_options_id&','76.221.246.255'),(2195,'2010-03-28 23:45:51',2,'options_name_manager.php','option_page=1&option_order_by=products_options_id&','76.221.246.255'),(2196,'2010-03-28 23:46:52',2,'options_name_manager.php','action=add_product_options&option_page=1&option_order_by=products_options_id&','76.221.246.255'),(2197,'2010-03-28 23:46:53',2,'options_name_manager.php','option_page=1&option_order_by=products_options_id&','76.221.246.255'),(2198,'2010-03-28 23:48:06',2,'options_name_manager.php','action=copy_options_values&option_order_by=products_options_id&','76.221.246.255'),(2199,'2010-03-28 23:48:34',2,'options_name_manager.php','action=copy_options_values&option_order_by=products_options_id&','76.221.246.255'),(2200,'2010-03-28 23:48:48',2,'options_name_manager.php','action=copy_options_values&option_order_by=products_options_id&','76.221.246.255'),(2201,'2010-03-28 23:49:06',2,'options_name_manager.php','action=copy_options_values&option_order_by=products_options_id&','76.221.246.255'),(2202,'2010-03-28 23:49:28',2,'attributes_controller.php','','76.221.246.255'),(2203,'2010-03-28 23:49:34',2,'attributes_controller.php','securityToken=3e3faffa837e5208859ad637297a74f3&current_category_id=2&products_filter=&action=new_cat&','76.221.246.255'),(2204,'2010-03-28 23:49:34',2,'attributes_controller.php','products_filter=&current_category_id=2&','76.221.246.255'),(2205,'2010-03-28 23:50:11',2,'attributes_controller.php','securityToken=3e3faffa837e5208859ad637297a74f3&current_category_id=24&products_filter=&action=new_cat&','76.221.246.255'),(2206,'2010-03-28 23:50:11',2,'attributes_controller.php','products_filter=133&current_category_id=24&','76.221.246.255'),(2207,'2010-03-28 23:51:10',2,'attributes_controller.php','action=add_product_attributes&attribute_page=1&products_filter=133&','76.221.246.255'),(2208,'2010-03-28 23:51:11',2,'attributes_controller.php','attribute_page=1&products_filter=133&current_category_id=24&','76.221.246.255'),(2209,'2010-03-28 23:51:40',2,'attributes_controller.php','action=set_products_filter&','76.221.246.255'),(2210,'2010-03-28 23:51:40',2,'attributes_controller.php','products_filter=133&current_category_id=24&','76.221.246.255'),(2211,'2010-03-28 23:51:53',2,'attributes_controller.php','action=delete_product_attribute&attribute_id=34&attribute_page=1&products_filter=133&current_category_id=24&','76.221.246.255'),(2212,'2010-03-28 23:52:00',2,'attributes_controller.php','action=delete_attribute&attribute_id=34&attribute_page=1&products_filter=133&current_category_id=24&','76.221.246.255'),(2213,'2010-03-28 23:52:01',2,'attributes_controller.php','attribute_page=1&products_filter=133&current_category_id=24&','76.221.246.255'),(2214,'2010-03-28 23:52:29',2,'attributes_controller.php','action=add_product_attributes&attribute_page=1&products_filter=133&','76.221.246.255'),(2215,'2010-03-28 23:52:29',2,'attributes_controller.php','attribute_page=1&products_filter=133&current_category_id=24&','76.221.246.255'),(2216,'2010-03-28 23:53:11',2,'attributes_controller.php','action=add_product_attributes&attribute_page=1&products_filter=133&','76.221.246.255'),(2217,'2010-03-28 23:53:12',2,'attributes_controller.php','attribute_page=1&products_filter=133&current_category_id=24&','76.221.246.255'),(2218,'2010-03-28 23:54:07',2,'attributes_controller.php','action=add_product_attributes&attribute_page=1&products_filter=133&','76.221.246.255'),(2219,'2010-03-28 23:54:07',2,'attributes_controller.php','attribute_page=1&products_filter=133&current_category_id=24&','76.221.246.255'),(2220,'2010-03-28 23:55:02',2,'attributes_controller.php','action=add_product_attributes&attribute_page=1&products_filter=133&','76.221.246.255'),(2221,'2010-03-28 23:55:03',2,'attributes_controller.php','attribute_page=1&products_filter=133&current_category_id=24&','76.221.246.255'),(2222,'2010-03-28 23:56:26',2,'categories.php','','76.221.246.255'),(2223,'2010-03-28 23:56:32',2,'categories.php','cPath=2&','76.221.246.255'),(2224,'2010-03-28 23:56:42',2,'categories.php','cPath=2_24&','76.221.246.255'),(2225,'2010-03-28 23:57:12',2,'categories.php','cPath=2&cID=24&action=edit_category&','76.221.246.255'),(2226,'2010-03-28 23:58:18',2,'configuration.php','gID=3&','76.221.246.255'),(2227,'2010-03-28 23:59:02',2,'categories.php','','76.221.246.255'),(2228,'2010-03-28 23:59:09',2,'categories.php','cPath=2&','76.221.246.255'),(2229,'2010-03-28 23:59:14',2,'categories.php','cPath=2_24&','76.221.246.255'),(2230,'2010-03-28 23:59:21',2,'categories.php','cPath=2&cID=24&','76.221.246.255'),(2231,'2010-03-28 23:59:32',2,'categories.php','cPath=2&cID=24&action=edit_category&','76.221.246.255'),(2232,'2010-03-28 23:59:57',2,'categories.php','action=update_category&cPath=2&','76.221.246.255'),(2233,'2010-03-28 23:59:58',2,'categories.php','cPath=2&cID=24&','76.221.246.255'),(2234,'2010-03-29 00:00:09',2,'attributes_controller.php','','76.221.246.255'),(2235,'2010-03-29 00:00:17',2,'attributes_controller.php','securityToken=3e3faffa837e5208859ad637297a74f3&current_category_id=24&products_filter=&action=new_cat&','76.221.246.255'),(2236,'2010-03-29 00:00:17',2,'attributes_controller.php','products_filter=133&current_category_id=24&','76.221.246.255'),(2237,'2010-03-29 00:01:29',2,'attributes_controller.php','action=add_product_attributes&attribute_page=1&products_filter=133&','76.221.246.255'),(2238,'2010-03-29 00:01:30',2,'attributes_controller.php','attribute_page=1&products_filter=133&current_category_id=24&','76.221.246.255'),(2239,'2010-03-29 00:02:33',2,'attributes_controller.php','action=add_product_attributes&attribute_page=1&products_filter=133&','76.221.246.255'),(2240,'2010-03-29 00:02:34',2,'attributes_controller.php','attribute_page=1&products_filter=133&current_category_id=24&','76.221.246.255'),(2241,'2010-03-29 00:03:05',2,'attributes_controller.php','action=add_product_attributes&attribute_page=1&products_filter=133&','76.221.246.255'),(2242,'2010-03-29 00:03:05',2,'attributes_controller.php','attribute_page=1&products_filter=133&current_category_id=24&','76.221.246.255'),(2243,'2010-03-29 00:03:48',2,'attributes_controller.php','action=add_product_attributes&attribute_page=1&products_filter=133&','76.221.246.255'),(2244,'2010-03-29 00:03:48',2,'attributes_controller.php','attribute_page=1&products_filter=133&current_category_id=24&','76.221.246.255'),(2245,'2010-03-29 00:04:35',2,'attributes_controller.php','action=add_product_attributes&attribute_page=1&products_filter=133&','76.221.246.255'),(2246,'2010-03-29 00:04:35',2,'attributes_controller.php','attribute_page=1&products_filter=133&current_category_id=24&','76.221.246.255'),(2247,'2010-03-29 00:06:10',2,'categories.php','','76.221.246.255'),(2248,'2010-03-29 00:06:14',2,'categories.php','cPath=2&','76.221.246.255'),(2249,'2010-03-29 00:06:41',2,'categories.php','cPath=2_24&','76.221.246.255'),(2250,'2010-03-29 00:06:47',2,'product.php','cPath=2_24&product_type=1&pID=133&action=new_product&','76.221.246.255'),(2251,'2010-03-29 00:07:42',2,'product.php','cPath=2_24&product_type=1&pID=133&action=new_product_preview&','76.221.246.255'),(2252,'2010-03-29 00:07:45',2,'product.php','cPath=2_24&product_type=1&pID=133&action=update_product&','76.221.246.255'),(2253,'2010-03-29 00:07:45',2,'categories.php','cPath=2_24&pID=133&','76.221.246.255'),(2254,'2010-03-29 09:32:22',0,'login.php ','','76.221.246.255'),(2255,'2010-03-29 12:41:38',0,'login.php jbadmin','','76.221.246.255'),(2256,'2010-03-29 12:42:04',0,'login.php jbadmin','','76.221.246.255'),(2257,'2010-03-29 12:45:36',0,'login.php ','','76.221.246.255'),(2258,'2010-03-29 12:46:02',0,'login.php jbadmin','','76.221.246.255'),(2259,'2010-03-29 12:49:00',2,'alt_nav.php','','76.221.246.255'),(2260,'2010-03-29 12:49:04',2,'attributes_controller.php','','76.221.246.255'),(2261,'2010-03-29 12:49:30',2,'attributes_controller.php','securityToken=3bf519f351e79b534556f8001574bbfd&current_category_id=24&products_filter=&action=new_cat&','76.221.246.255'),(2262,'2010-03-29 12:49:30',2,'attributes_controller.php','products_filter=133&current_category_id=24&','76.221.246.255'),(2263,'2010-03-29 12:50:00',2,'attributes_controller.php','action=update_attribute&attribute_id=39&attribute_page=1&products_filter=133&current_category_id=24&','76.221.246.255'),(2264,'2010-03-29 12:51:44',2,'attributes_controller.php','action=delete_product_attribute&attribute_id=39&attribute_page=1&products_filter=133&current_category_id=24&','76.221.246.255'),(2265,'2010-03-29 12:51:49',2,'attributes_controller.php','action=delete_attribute&attribute_id=39&attribute_page=1&products_filter=133&current_category_id=24&','76.221.246.255'),(2266,'2010-03-29 12:51:49',2,'attributes_controller.php','attribute_page=1&products_filter=133&current_category_id=24&','76.221.246.255'),(2267,'2010-03-29 12:51:55',2,'attributes_controller.php','action=delete_product_attribute&attribute_id=40&attribute_page=1&products_filter=133&current_category_id=24&','76.221.246.255'),(2268,'2010-03-29 12:52:00',2,'attributes_controller.php','action=delete_attribute&attribute_id=40&attribute_page=1&products_filter=133&current_category_id=24&','76.221.246.255'),(2269,'2010-03-29 12:52:00',2,'attributes_controller.php','attribute_page=1&products_filter=133&current_category_id=24&','76.221.246.255'),(2270,'2010-03-29 12:52:05',2,'attributes_controller.php','action=delete_product_attribute&attribute_id=41&attribute_page=1&products_filter=133&current_category_id=24&','76.221.246.255'),(2271,'2010-03-29 12:52:10',2,'attributes_controller.php','action=delete_attribute&attribute_id=41&attribute_page=1&products_filter=133&current_category_id=24&','76.221.246.255'),(2272,'2010-03-29 12:52:10',2,'attributes_controller.php','attribute_page=1&products_filter=133&current_category_id=24&','76.221.246.255'),(2273,'2010-03-29 12:52:15',2,'attributes_controller.php','action=delete_product_attribute&attribute_id=42&attribute_page=1&products_filter=133&current_category_id=24&','76.221.246.255'),(2274,'2010-03-29 12:52:19',2,'attributes_controller.php','action=delete_attribute&attribute_id=42&attribute_page=1&products_filter=133&current_category_id=24&','76.221.246.255'),(2275,'2010-03-29 12:52:20',2,'attributes_controller.php','attribute_page=1&products_filter=133&current_category_id=24&','76.221.246.255'),(2276,'2010-03-29 12:52:31',2,'categories.php','action=new_product&cPath=24&pID=133&product_type=1&','76.221.246.255'),(2277,'2010-03-29 12:52:31',2,'product.php','action=new_product&cPath=24&pID=133&product_type=1&','76.221.246.255'),(2278,'2010-03-29 12:52:50',2,'product.php','cPath=24&product_type=1&pID=133&action=new_product_preview&','76.221.246.255'),(2279,'2010-03-29 12:52:52',2,'product.php','cPath=24&product_type=1&pID=133&action=update_product&','76.221.246.255'),(2280,'2010-03-29 12:52:53',2,'categories.php','cPath=24&pID=133&','76.221.246.255'),(2281,'2010-03-29 12:53:04',2,'categories.php','cID=24&','76.221.246.255'),(2282,'2010-03-29 12:53:08',2,'categories.php','cPath=2&','76.221.246.255'),(2283,'2010-03-29 12:53:13',2,'categories.php','cPath=2_25&','76.221.246.255'),(2284,'2010-03-29 12:53:17',2,'categories.php','cPath=2&cID=25&','76.221.246.255'),(2285,'2010-03-29 12:53:25',2,'categories.php','cPath=2&cID=25&action=edit_category&','76.221.246.255'),(2286,'2010-03-29 12:53:39',2,'categories.php','cPath=2&cID=25&','76.221.246.255'),(2287,'2010-03-29 12:53:48',2,'attributes_controller.php','','76.221.246.255'),(2288,'2010-03-29 12:54:07',2,'attributes_controller.php','securityToken=3bf519f351e79b534556f8001574bbfd&current_category_id=24&products_filter=&action=new_cat&','76.221.246.255'),(2289,'2010-03-29 12:54:08',2,'attributes_controller.php','products_filter=133&current_category_id=24&','76.221.246.255'),(2290,'2010-03-29 12:54:15',2,'categories.php','','76.221.246.255'),(2291,'2010-03-29 12:54:20',2,'categories.php','cPath=2&','76.221.246.255'),(2292,'2010-03-29 12:54:25',2,'categories.php','cPath=2&cID=24&action=edit_category&','76.221.246.255'),(2293,'2010-03-29 12:54:34',2,'categories.php','action=update_category&cPath=2&','76.221.246.255'),(2294,'2010-03-29 12:54:34',2,'categories.php','cPath=2&cID=24&','76.221.246.255'),(2295,'2010-03-29 12:54:47',2,'attributes_controller.php','','76.221.246.255'),(2296,'2010-03-29 12:55:05',2,'attributes_controller.php','securityToken=3bf519f351e79b534556f8001574bbfd&current_category_id=24&products_filter=&action=new_cat&','76.221.246.255'),(2297,'2010-03-29 12:55:06',2,'attributes_controller.php','products_filter=133&current_category_id=24&','76.221.246.255'),(2298,'2010-03-29 12:55:50',2,'attributes_controller.php','securityToken=3bf519f351e79b534556f8001574bbfd&current_category_id=25&products_filter=133&action=new_cat&','76.221.246.255'),(2299,'2010-03-29 12:55:51',2,'attributes_controller.php','products_filter=132&current_category_id=25&','76.221.246.255'),(2300,'2010-03-29 12:56:36',2,'attributes_controller.php','action=add_product_attributes&attribute_page=1&products_filter=132&','76.221.246.255'),(2301,'2010-03-29 12:56:36',2,'attributes_controller.php','attribute_page=1&products_filter=132&current_category_id=25&','76.221.246.255'),(2302,'2010-03-29 12:57:01',2,'attributes_controller.php','action=add_product_attributes&attribute_page=1&products_filter=132&','76.221.246.255'),(2303,'2010-03-29 12:57:01',2,'attributes_controller.php','attribute_page=1&products_filter=132&current_category_id=25&','76.221.246.255'),(2304,'2010-03-29 12:57:30',2,'attributes_controller.php','action=add_product_attributes&attribute_page=1&products_filter=132&','76.221.246.255'),(2305,'2010-03-29 12:57:31',2,'attributes_controller.php','attribute_page=1&products_filter=132&current_category_id=25&','76.221.246.255'),(2306,'2010-03-29 12:57:57',2,'attributes_controller.php','action=add_product_attributes&attribute_page=1&products_filter=132&','76.221.246.255'),(2307,'2010-03-29 12:57:57',2,'attributes_controller.php','attribute_page=1&products_filter=132&current_category_id=25&','76.221.246.255'),(2308,'2010-03-29 12:58:40',2,'attributes_controller.php','action=add_product_attributes&attribute_page=1&products_filter=132&','76.221.246.255'),(2309,'2010-03-29 12:58:41',2,'attributes_controller.php','attribute_page=1&products_filter=132&current_category_id=25&','76.221.246.255'),(2310,'2010-03-29 12:58:56',2,'options_name_manager.php','','76.221.246.255'),(2311,'2010-03-29 12:59:01',2,'options_name_manager.php','action=update_option&option_id=4&option_order_by=products_options_id&option_page=1&','76.221.246.255'),(2312,'2010-03-29 13:00:51',2,'options_name_manager.php','action=update_option_name&option_page=1&option_order_by=products_options_id&','76.221.246.255'),(2313,'2010-03-29 13:00:51',2,'options_name_manager.php','option_page=1&option_order_by=products_options_id&','76.221.246.255'),(2314,'2010-03-29 13:01:57',2,'options_name_manager.php','action=update_option&option_id=4&option_order_by=products_options_id&option_page=1&','76.221.246.255'),(2315,'2010-03-29 13:02:05',2,'options_name_manager.php','action=update_option_name&option_page=1&option_order_by=products_options_id&','76.221.246.255'),(2316,'2010-03-29 13:02:06',2,'options_name_manager.php','option_page=1&option_order_by=products_options_id&','76.221.246.255'),(2317,'2010-03-29 13:02:22',2,'categories.php','','76.221.246.255'),(2318,'2010-03-29 13:02:26',2,'categories.php','cPath=2&','76.221.246.255'),(2319,'2010-03-29 13:02:36',2,'categories.php','cPath=2_25&','76.221.246.255'),(2320,'2010-03-29 13:02:40',2,'product.php','cPath=2_25&product_type=1&pID=132&action=new_product&','76.221.246.255'),(2321,'2010-03-29 13:03:00',2,'product.php','cPath=2_25&product_type=1&pID=132&action=new_product_preview&','76.221.246.255'),(2322,'2010-03-29 13:03:03',2,'product.php','cPath=2_25&product_type=1&pID=132&action=update_product&','76.221.246.255'),(2323,'2010-03-29 13:03:03',2,'categories.php','cPath=2_25&pID=132&','76.221.246.255'),(2324,'2010-03-29 13:03:42',2,'attributes_controller.php','','76.221.246.255'),(2325,'2010-03-29 13:03:48',2,'attributes_controller.php','securityToken=3bf519f351e79b534556f8001574bbfd&current_category_id=2&products_filter=&action=new_cat&','76.221.246.255'),(2326,'2010-03-29 13:03:48',2,'attributes_controller.php','products_filter=&current_category_id=2&','76.221.246.255'),(2327,'2010-03-29 13:03:56',2,'attributes_controller.php','securityToken=3bf519f351e79b534556f8001574bbfd&current_category_id=26&products_filter=&action=new_cat&','76.221.246.255'),(2328,'2010-03-29 13:03:57',2,'attributes_controller.php','products_filter=131&current_category_id=26&','76.221.246.255'),(2329,'2010-03-29 13:04:19',2,'attributes_controller.php','action=add_product_attributes&attribute_page=1&products_filter=131&','76.221.246.255'),(2330,'2010-03-29 13:04:19',2,'attributes_controller.php','attribute_page=1&products_filter=131&current_category_id=26&','76.221.246.255'),(2331,'2010-03-29 13:05:02',2,'attributes_controller.php','action=add_product_attributes&attribute_page=1&products_filter=131&','76.221.246.255'),(2332,'2010-03-29 13:05:02',2,'attributes_controller.php','attribute_page=1&products_filter=131&current_category_id=26&','76.221.246.255'),(2333,'2010-03-29 13:05:28',2,'attributes_controller.php','action=add_product_attributes&attribute_page=1&products_filter=131&','76.221.246.255'),(2334,'2010-03-29 13:05:28',2,'attributes_controller.php','attribute_page=1&products_filter=131&current_category_id=26&','76.221.246.255'),(2335,'2010-03-29 13:06:03',2,'attributes_controller.php','action=add_product_attributes&attribute_page=1&products_filter=131&','76.221.246.255'),(2336,'2010-03-29 13:06:03',2,'attributes_controller.php','attribute_page=1&products_filter=131&current_category_id=26&','76.221.246.255'),(2337,'2010-03-29 13:06:12',2,'attributes_controller.php','action=update_attribute&attribute_id=49&attribute_page=1&products_filter=131&current_category_id=26&','76.221.246.255'),(2338,'2010-03-29 13:06:26',2,'attributes_controller.php','action=update_product_attribute&attribute_page=1&products_filter=131&','76.221.246.255'),(2339,'2010-03-29 13:06:26',2,'attributes_controller.php','attribute_page=1&products_filter=131&current_category_id=26&','76.221.246.255'),(2340,'2010-03-29 13:06:37',2,'attributes_controller.php','securityToken=3bf519f351e79b534556f8001574bbfd&current_category_id=27&products_filter=131&action=new_cat&','76.221.246.255'),(2341,'2010-03-29 13:06:40',2,'attributes_controller.php','products_filter=130&current_category_id=27&','76.221.246.255'),(2342,'2010-03-29 13:07:04',2,'attributes_controller.php','action=add_product_attributes&attribute_page=1&products_filter=130&','76.221.246.255'),(2343,'2010-03-29 13:07:05',2,'attributes_controller.php','attribute_page=1&products_filter=130&current_category_id=27&','76.221.246.255'),(2344,'2010-03-29 13:07:35',2,'attributes_controller.php','action=add_product_attributes&attribute_page=1&products_filter=130&','76.221.246.255'),(2345,'2010-03-29 13:07:35',2,'attributes_controller.php','attribute_page=1&products_filter=130&current_category_id=27&','76.221.246.255'),(2346,'2010-03-29 13:08:06',2,'attributes_controller.php','action=add_product_attributes&attribute_page=1&products_filter=130&','76.221.246.255'),(2347,'2010-03-29 13:08:06',2,'attributes_controller.php','attribute_page=1&products_filter=130&current_category_id=27&','76.221.246.255'),(2348,'2010-03-29 13:08:29',2,'attributes_controller.php','action=add_product_attributes&attribute_page=1&products_filter=130&','76.221.246.255'),(2349,'2010-03-29 13:08:30',2,'attributes_controller.php','attribute_page=1&products_filter=130&current_category_id=27&','76.221.246.255'),(2350,'2010-03-29 13:08:58',2,'attributes_controller.php','action=add_product_attributes&attribute_page=1&products_filter=130&','76.221.246.255'),(2351,'2010-03-29 13:08:59',2,'attributes_controller.php','attribute_page=1&products_filter=130&current_category_id=27&','76.221.246.255'),(2352,'2010-03-29 13:09:57',2,'categories.php','','76.221.246.255'),(2353,'2010-03-29 13:09:59',2,'categories.php','cPath=2&','76.221.246.255'),(2354,'2010-03-29 13:10:03',2,'categories.php','cPath=2_26&','76.221.246.255'),(2355,'2010-03-29 13:10:07',2,'product.php','cPath=2_26&product_type=1&pID=131&action=new_product&','76.221.246.255'),(2356,'2010-03-29 13:10:27',2,'product.php','cPath=2_26&product_type=1&pID=131&action=new_product_preview&','76.221.246.255'),(2357,'2010-03-29 13:10:30',2,'product.php','cPath=2_26&product_type=1&pID=131&action=update_product&','76.221.246.255'),(2358,'2010-03-29 13:10:30',2,'categories.php','cPath=2_26&pID=131&','76.221.246.255'),(2359,'2010-03-29 13:10:38',2,'categories.php','cPath=2&cID=26&','76.221.246.255'),(2360,'2010-03-29 13:10:42',2,'categories.php','cPath=2_27&','76.221.246.255'),(2361,'2010-03-29 13:10:47',2,'product.php','cPath=2_27&product_type=1&pID=130&action=new_product&','76.221.246.255'),(2362,'2010-03-29 13:11:08',2,'product.php','cPath=2_27&product_type=1&pID=130&action=new_product_preview&','76.221.246.255'),(2363,'2010-03-29 13:11:12',2,'product.php','cPath=2_27&product_type=1&pID=130&action=update_product&','76.221.246.255'),(2364,'2010-03-29 13:11:25',2,'product.php','cPath=2_27&product_type=1&pID=130&action=new_product_preview&','76.221.246.255'),(2365,'2010-03-29 13:11:35',2,'product.php','cPath=2_27&product_type=1&pID=130&action=update_product&','76.221.246.255'),(2366,'2010-03-29 13:11:42',2,'product.php','cPath=2_27&product_type=1&pID=130&action=new_product_preview&','76.221.246.255'),(2367,'2010-03-29 13:11:46',2,'product.php','cPath=2_27&product_type=1&pID=130&action=update_product&','76.221.246.255'),(2368,'2010-03-29 13:11:46',2,'categories.php','cPath=2_27&pID=130&','76.221.246.255'),(2369,'2010-03-29 13:12:39',2,'categories.php','cPath=2&cID=27&','76.221.246.255'),(2370,'2010-03-29 13:12:51',2,'categories.php','cPath=2_19&','76.221.246.255'),(2371,'2010-03-29 13:21:29',2,'categories.php','product_type=1&cPath=2_19&action=new_product&x=65&y=12&','76.221.246.255'),(2372,'2010-03-29 13:21:29',2,'product.php','product_type=1&cPath=2_19&action=new_product&x=65&y=12&','76.221.246.255'),(2373,'2010-03-29 13:22:25',2,'product.php','cPath=2_19&product_type=1&action=new_product_preview&','76.221.246.255'),(2374,'2010-03-29 13:22:28',2,'product.php','cPath=2_19&product_type=1&action=insert_product&','76.221.246.255'),(2375,'2010-03-29 13:22:28',2,'categories.php','cPath=2_19&pID=134&','76.221.246.255'),(2376,'2010-03-29 13:22:33',2,'categories.php','product_type=1&cPath=2_19&action=new_product&x=80&y=10&','76.221.246.255'),(2377,'2010-03-29 13:22:33',2,'product.php','product_type=1&cPath=2_19&action=new_product&x=80&y=10&','76.221.246.255'),(2378,'2010-03-29 13:23:10',2,'product.php','cPath=2_19&product_type=1&action=new_product_preview&','76.221.246.255'),(2379,'2010-03-29 13:23:11',2,'product.php','cPath=2_19&product_type=1&action=insert_product&','76.221.246.255'),(2380,'2010-03-29 13:23:12',2,'categories.php','cPath=2_19&pID=135&','76.221.246.255'),(2381,'2010-03-29 13:23:20',2,'product.php','cPath=2_19&product_type=1&pID=135&action=new_product&','76.221.246.255'),(2382,'2010-03-29 13:23:34',2,'product.php','cPath=2_19&product_type=1&pID=135&action=new_product_preview&','76.221.246.255'),(2383,'2010-03-29 13:23:36',2,'product.php','cPath=2_19&product_type=1&pID=135&action=update_product&','76.221.246.255'),(2384,'2010-03-29 13:23:36',2,'categories.php','cPath=2_19&pID=135&','76.221.246.255'),(2385,'2010-03-29 13:23:40',2,'categories.php','product_type=1&cPath=2_19&action=new_product&x=25&y=9&','76.221.246.255'),(2386,'2010-03-29 13:23:41',2,'product.php','product_type=1&cPath=2_19&action=new_product&x=25&y=9&','76.221.246.255'),(2387,'2010-03-29 13:24:19',2,'product.php','cPath=2_19&product_type=1&action=new_product_preview&','76.221.246.255'),(2388,'2010-03-29 13:24:22',2,'product.php','cPath=2_19&product_type=1&action=insert_product&','76.221.246.255'),(2389,'2010-03-29 13:24:23',2,'categories.php','cPath=2_19&pID=136&','76.221.246.255'),(2390,'2010-03-29 13:24:28',2,'categories.php','product_type=1&cPath=2_19&action=new_product&x=81&y=19&','76.221.246.255'),(2391,'2010-03-29 13:24:29',2,'product.php','product_type=1&cPath=2_19&action=new_product&x=81&y=19&','76.221.246.255'),(2392,'2010-03-29 13:25:02',2,'product.php','cPath=2_19&product_type=1&action=new_product_preview&','76.221.246.255'),(2393,'2010-03-29 13:25:07',2,'product.php','cPath=2_19&product_type=1&action=insert_product&','76.221.246.255'),(2394,'2010-03-29 13:25:07',2,'categories.php','cPath=2_19&pID=137&','76.221.246.255'),(2395,'2010-03-29 13:25:12',2,'categories.php','product_type=1&cPath=2_19&action=new_product&x=95&y=16&','76.221.246.255'),(2396,'2010-03-29 13:25:12',2,'product.php','product_type=1&cPath=2_19&action=new_product&x=95&y=16&','76.221.246.255'),(2397,'2010-03-29 13:25:48',2,'product.php','cPath=2_19&product_type=1&action=new_product_preview&','76.221.246.255'),(2398,'2010-03-29 13:25:50',2,'product.php','cPath=2_19&product_type=1&action=insert_product&','76.221.246.255'),(2399,'2010-03-29 13:25:51',2,'categories.php','cPath=2_19&pID=138&','76.221.246.255'),(2400,'2010-03-29 13:25:53',2,'categories.php','product_type=1&cPath=2_19&action=new_product&x=64&y=14&','76.221.246.255'),(2401,'2010-03-29 13:25:54',2,'product.php','product_type=1&cPath=2_19&action=new_product&x=64&y=14&','76.221.246.255'),(2402,'2010-03-29 13:26:32',2,'product.php','cPath=2_19&product_type=1&action=new_product_preview&','76.221.246.255'),(2403,'2010-03-29 13:26:40',2,'product.php','cPath=2_19&product_type=1&action=insert_product&','76.221.246.255'),(2404,'2010-03-29 13:26:41',2,'categories.php','cPath=2_19&pID=139&','76.221.246.255'),(2405,'2010-03-29 13:26:44',2,'categories.php','product_type=1&cPath=2_19&action=new_product&x=81&y=13&','76.221.246.255'),(2406,'2010-03-29 13:26:45',2,'product.php','product_type=1&cPath=2_19&action=new_product&x=81&y=13&','76.221.246.255'),(2407,'2010-03-29 13:27:13',2,'product.php','cPath=2_19&product_type=1&action=new_product_preview&','76.221.246.255'),(2408,'2010-03-29 13:27:15',2,'product.php','cPath=2_19&product_type=1&action=insert_product&','76.221.246.255'),(2409,'2010-03-29 13:27:19',2,'categories.php','cPath=2_19&pID=140&','76.221.246.255'),(2410,'2010-03-29 13:27:41',2,'categories.php','product_type=1&cPath=2_19&action=new_product&x=59&y=12&','76.221.246.255'),(2411,'2010-03-29 13:27:41',2,'product.php','product_type=1&cPath=2_19&action=new_product&x=59&y=12&','76.221.246.255'),(2412,'2010-03-29 13:27:56',2,'product.php','cPath=2_19&product_type=1&action=new_product_preview&','76.221.246.255'),(2413,'2010-03-29 13:27:59',2,'product.php','cPath=2_19&product_type=1&action=insert_product&','76.221.246.255'),(2414,'2010-03-29 13:27:59',2,'categories.php','cPath=2_19&pID=141&','76.221.246.255'),(2415,'2010-03-29 13:28:13',2,'categories.php','product_type=1&cPath=2_19&action=new_product&x=82&y=11&','76.221.246.255'),(2416,'2010-03-29 13:28:13',2,'product.php','product_type=1&cPath=2_19&action=new_product&x=82&y=11&','76.221.246.255'),(2417,'2010-03-29 13:28:28',2,'product.php','cPath=2_19&product_type=1&action=new_product_preview&','76.221.246.255'),(2418,'2010-03-29 13:28:30',2,'product.php','cPath=2_19&product_type=1&action=insert_product&','76.221.246.255'),(2419,'2010-03-29 13:28:31',2,'categories.php','cPath=2_19&pID=142&','76.221.246.255'),(2420,'2010-03-29 13:28:45',2,'categories.php','product_type=1&cPath=2_19&action=new_product&x=85&y=1&','76.221.246.255'),(2421,'2010-03-29 13:28:45',2,'product.php','product_type=1&cPath=2_19&action=new_product&x=85&y=1&','76.221.246.255'),(2422,'2010-03-29 13:29:13',2,'product.php','cPath=2_19&product_type=1&action=new_product_preview&','76.221.246.255'),(2423,'2010-03-29 13:29:16',2,'product.php','cPath=2_19&product_type=1&action=insert_product&','76.221.246.255'),(2424,'2010-03-29 13:29:17',2,'categories.php','cPath=2_19&pID=143&','76.221.246.255'),(2425,'2010-03-29 13:29:26',2,'categories.php','product_type=1&cPath=2_19&action=new_product&x=61&y=21&','76.221.246.255'),(2426,'2010-03-29 13:29:27',2,'product.php','product_type=1&cPath=2_19&action=new_product&x=61&y=21&','76.221.246.255'),(2427,'2010-03-29 13:29:51',2,'product.php','cPath=2_19&product_type=1&action=new_product_preview&','76.221.246.255'),(2428,'2010-03-29 13:29:53',2,'product.php','cPath=2_19&product_type=1&action=insert_product&','76.221.246.255'),(2429,'2010-03-29 13:29:53',2,'categories.php','cPath=2_19&pID=144&','76.221.246.255'),(2430,'2010-03-29 13:29:58',2,'categories.php','product_type=1&cPath=2_19&action=new_product&x=58&y=16&','76.221.246.255'),(2431,'2010-03-29 13:29:58',2,'product.php','product_type=1&cPath=2_19&action=new_product&x=58&y=16&','76.221.246.255'),(2432,'2010-03-29 13:30:26',2,'product.php','cPath=2_19&product_type=1&action=new_product_preview&','76.221.246.255'),(2433,'2010-03-29 13:30:27',2,'product.php','cPath=2_19&product_type=1&action=insert_product&','76.221.246.255'),(2434,'2010-03-29 13:30:31',2,'categories.php','cPath=2_19&pID=145&','76.221.246.255'),(2435,'2010-03-29 13:30:34',2,'categories.php','product_type=1&cPath=2_19&action=new_product&x=53&y=10&','76.221.246.255'),(2436,'2010-03-29 13:30:35',2,'product.php','product_type=1&cPath=2_19&action=new_product&x=53&y=10&','76.221.246.255'),(2437,'2010-03-29 13:31:00',2,'product.php','cPath=2_19&product_type=1&action=new_product_preview&','76.221.246.255'),(2438,'2010-03-29 13:31:03',2,'product.php','cPath=2_19&product_type=1&action=insert_product&','76.221.246.255'),(2439,'2010-03-29 13:31:03',2,'categories.php','cPath=2_19&pID=146&','76.221.246.255'),(2440,'2010-03-29 13:31:07',2,'categories.php','product_type=1&cPath=2_19&action=new_product&x=85&y=17&','76.221.246.255'),(2441,'2010-03-29 13:31:08',2,'product.php','product_type=1&cPath=2_19&action=new_product&x=85&y=17&','76.221.246.255'),(2442,'2010-03-29 13:31:31',2,'product.php','cPath=2_19&product_type=1&action=new_product_preview&','76.221.246.255'),(2443,'2010-03-29 13:31:33',2,'product.php','cPath=2_19&product_type=1&action=insert_product&','76.221.246.255'),(2444,'2010-03-29 13:31:34',2,'categories.php','cPath=2_19&pID=147&','76.221.246.255'),(2445,'2010-03-29 13:31:39',2,'categories.php','cPath=2&cID=19&','76.221.246.255'),(2446,'2010-03-29 13:31:48',2,'categories.php','cPath=2_20&','76.221.246.255'),(2447,'2010-03-29 13:31:51',2,'categories.php','product_type=1&cPath=2_20&action=new_product&x=75&y=15&','76.221.246.255'),(2448,'2010-03-29 13:31:51',2,'product.php','product_type=1&cPath=2_20&action=new_product&x=75&y=15&','76.221.246.255'),(2449,'2010-03-29 13:32:43',2,'product.php','cPath=2_20&product_type=1&action=new_product_preview&','76.221.246.255'),(2450,'2010-03-29 13:32:48',2,'product.php','cPath=2_20&product_type=1&action=insert_product&','76.221.246.255'),(2451,'2010-03-29 13:32:48',2,'categories.php','cPath=2_20&pID=148&','76.221.246.255'),(2452,'2010-03-29 13:32:51',2,'categories.php','product_type=1&cPath=2_20&action=new_product&x=33&y=15&','76.221.246.255'),(2453,'2010-03-29 13:32:51',2,'product.php','product_type=1&cPath=2_20&action=new_product&x=33&y=15&','76.221.246.255'),(2454,'2010-03-29 13:33:24',2,'product.php','cPath=2_20&product_type=1&action=new_product_preview&','76.221.246.255'),(2455,'2010-03-29 13:33:27',2,'product.php','cPath=2_20&product_type=1&action=insert_product&','76.221.246.255'),(2456,'2010-03-29 13:33:27',2,'categories.php','cPath=2_20&pID=149&','76.221.246.255'),(2457,'2010-03-29 13:33:30',2,'categories.php','product_type=1&cPath=2_20&action=new_product&x=68&y=9&','76.221.246.255'),(2458,'2010-03-29 13:33:30',2,'product.php','product_type=1&cPath=2_20&action=new_product&x=68&y=9&','76.221.246.255'),(2459,'2010-03-29 13:33:55',2,'product.php','cPath=2_20&product_type=1&action=new_product_preview&','76.221.246.255'),(2460,'2010-03-29 13:33:58',2,'product.php','cPath=2_20&product_type=1&action=insert_product&','76.221.246.255'),(2461,'2010-03-29 13:33:58',2,'categories.php','cPath=2_20&pID=150&','76.221.246.255'),(2462,'2010-03-29 13:34:01',2,'categories.php','product_type=1&cPath=2_20&action=new_product&x=98&y=15&','76.221.246.255'),(2463,'2010-03-29 13:34:02',2,'product.php','product_type=1&cPath=2_20&action=new_product&x=98&y=15&','76.221.246.255'),(2464,'2010-03-29 13:34:26',2,'product.php','cPath=2_20&product_type=1&action=new_product_preview&','76.221.246.255'),(2465,'2010-03-29 13:34:29',2,'product.php','cPath=2_20&product_type=1&action=insert_product&','76.221.246.255'),(2466,'2010-03-29 13:34:29',2,'categories.php','cPath=2_20&pID=151&','76.221.246.255'),(2467,'2010-03-29 13:35:20',2,'categories.php','product_type=1&cPath=2_20&action=new_product&x=58&y=15&','76.221.246.255'),(2468,'2010-03-29 13:35:20',2,'product.php','product_type=1&cPath=2_20&action=new_product&x=58&y=15&','76.221.246.255'),(2469,'2010-03-29 13:35:50',2,'product.php','cPath=2_20&product_type=1&action=new_product_preview&','76.221.246.255'),(2470,'2010-03-29 13:35:52',2,'product.php','cPath=2_20&product_type=1&action=insert_product&','76.221.246.255'),(2471,'2010-03-29 13:35:52',2,'categories.php','cPath=2_20&pID=152&','76.221.246.255'),(2472,'2010-03-29 13:35:58',2,'categories.php','product_type=1&cPath=2_20&action=new_product&x=41&y=8&','76.221.246.255'),(2473,'2010-03-29 13:35:58',2,'product.php','product_type=1&cPath=2_20&action=new_product&x=41&y=8&','76.221.246.255'),(2474,'2010-03-29 13:36:37',2,'product.php','cPath=2_20&product_type=1&action=new_product_preview&','76.221.246.255'),(2475,'2010-03-29 13:36:44',2,'product.php','cPath=2_20&product_type=1&action=insert_product&','76.221.246.255'),(2476,'2010-03-29 13:36:44',2,'categories.php','cPath=2_20&pID=153&','76.221.246.255'),(2477,'2010-03-29 13:36:52',2,'product.php','cPath=2_20&product_type=1&pID=152&action=new_product&','76.221.246.255'),(2478,'2010-03-29 13:37:01',2,'product.php','cPath=2_20&product_type=1&pID=152&action=new_product_preview&','76.221.246.255'),(2479,'2010-03-29 13:37:03',2,'product.php','cPath=2_20&product_type=1&pID=152&action=update_product&','76.221.246.255'),(2480,'2010-03-29 13:37:03',2,'categories.php','cPath=2_20&pID=152&','76.221.246.255'),(2481,'2010-03-29 13:37:26',2,'categories.php','cPath=2&cID=20&','76.221.246.255'),(2482,'2010-03-29 13:37:31',2,'categories.php','cPath=2_21&','76.221.246.255'),(2483,'2010-03-29 13:37:34',2,'categories.php','product_type=1&cPath=2_21&action=new_product&x=37&y=13&','76.221.246.255'),(2484,'2010-03-29 13:37:34',2,'product.php','product_type=1&cPath=2_21&action=new_product&x=37&y=13&','76.221.246.255'),(2485,'2010-03-29 13:38:11',2,'product.php','cPath=2_21&product_type=1&action=new_product_preview&','76.221.246.255'),(2486,'2010-03-29 13:38:14',2,'product.php','cPath=2_21&product_type=1&action=insert_product&','76.221.246.255'),(2487,'2010-03-29 13:38:15',2,'categories.php','cPath=2_21&pID=154&','76.221.246.255'),(2488,'2010-03-29 13:38:19',2,'categories.php','product_type=1&cPath=2_21&action=new_product&x=43&y=14&','76.221.246.255'),(2489,'2010-03-29 13:38:19',2,'product.php','product_type=1&cPath=2_21&action=new_product&x=43&y=14&','76.221.246.255'),(2490,'2010-03-29 13:38:53',2,'product.php','cPath=2_21&product_type=1&action=new_product_preview&','76.221.246.255'),(2491,'2010-03-29 13:38:56',2,'product.php','cPath=2_21&product_type=1&action=insert_product&','76.221.246.255'),(2492,'2010-03-29 13:38:56',2,'categories.php','cPath=2_21&pID=155&','76.221.246.255'),(2493,'2010-03-29 13:39:01',2,'categories.php','product_type=1&cPath=2_21&action=new_product&x=44&y=11&','76.221.246.255'),(2494,'2010-03-29 13:39:01',2,'product.php','product_type=1&cPath=2_21&action=new_product&x=44&y=11&','76.221.246.255'),(2495,'2010-03-29 13:39:33',2,'product.php','cPath=2_21&product_type=1&action=new_product_preview&','76.221.246.255'),(2496,'2010-03-29 13:39:36',2,'product.php','cPath=2_21&product_type=1&action=insert_product&','76.221.246.255'),(2497,'2010-03-29 13:39:36',2,'categories.php','cPath=2_21&pID=156&','76.221.246.255'),(2498,'2010-03-29 13:39:39',2,'categories.php','product_type=1&cPath=2_21&action=new_product&x=81&y=6&','76.221.246.255'),(2499,'2010-03-29 13:39:40',2,'product.php','product_type=1&cPath=2_21&action=new_product&x=81&y=6&','76.221.246.255'),(2500,'2010-03-29 13:40:05',2,'product.php','cPath=2_21&product_type=1&action=new_product_preview&','76.221.246.255'),(2501,'2010-03-29 13:40:08',2,'product.php','cPath=2_21&product_type=1&action=insert_product&','76.221.246.255'),(2502,'2010-03-29 13:40:08',2,'categories.php','cPath=2_21&pID=157&','76.221.246.255'),(2503,'2010-03-29 13:40:14',2,'categories.php','cPath=2&cID=21&','76.221.246.255'),(2504,'2010-03-29 13:40:19',2,'categories.php','cPath=2_22&','76.221.246.255'),(2505,'2010-03-29 13:40:37',2,'categories.php','product_type=1&cPath=2_22&action=new_product&x=34&y=14&','76.221.246.255'),(2506,'2010-03-29 13:40:37',2,'product.php','product_type=1&cPath=2_22&action=new_product&x=34&y=14&','76.221.246.255'),(2507,'2010-03-29 13:41:00',2,'product.php','cPath=2_22&product_type=1&action=new_product_preview&','76.221.246.255'),(2508,'2010-03-29 13:46:55',2,'product.php','cPath=2_22&product_type=1&action=insert_product&','76.221.246.255'),(2509,'2010-03-29 13:46:55',2,'categories.php','cPath=2_22&pID=158&','76.221.246.255'),(2510,'2010-03-29 13:46:58',2,'categories.php','product_type=1&cPath=2_22&action=new_product&x=40&y=7&','76.221.246.255'),(2511,'2010-03-29 13:46:58',2,'product.php','product_type=1&cPath=2_22&action=new_product&x=40&y=7&','76.221.246.255'),(2512,'2010-03-29 13:47:31',2,'product.php','cPath=2_22&product_type=1&action=new_product_preview&','76.221.246.255'),(2513,'2010-03-29 13:47:34',2,'product.php','cPath=2_22&product_type=1&action=insert_product&','76.221.246.255'),(2514,'2010-03-29 13:47:35',2,'categories.php','cPath=2_22&pID=159&','76.221.246.255'),(2515,'2010-03-29 13:47:39',2,'categories.php','product_type=1&cPath=2_22&action=new_product&x=73&y=11&','76.221.246.255'),(2516,'2010-03-29 13:47:39',2,'product.php','product_type=1&cPath=2_22&action=new_product&x=73&y=11&','76.221.246.255'),(2517,'2010-03-29 13:48:08',2,'product.php','cPath=2_22&product_type=1&action=new_product_preview&','76.221.246.255'),(2518,'2010-03-29 13:48:11',2,'product.php','cPath=2_22&product_type=1&action=insert_product&','76.221.246.255'),(2519,'2010-03-29 13:48:12',2,'categories.php','cPath=2_22&pID=160&','76.221.246.255'),(2520,'2010-03-29 13:48:16',2,'categories.php','product_type=1&cPath=2_22&action=new_product&x=58&y=10&','76.221.246.255'),(2521,'2010-03-29 13:48:17',2,'product.php','product_type=1&cPath=2_22&action=new_product&x=58&y=10&','76.221.246.255'),(2522,'2010-03-29 13:48:58',2,'product.php','cPath=2_22&product_type=1&action=new_product_preview&','76.221.246.255'),(2523,'2010-03-29 13:49:00',2,'product.php','cPath=2_22&product_type=1&action=insert_product&','76.221.246.255'),(2524,'2010-03-29 13:49:01',2,'categories.php','cPath=2_22&pID=161&','76.221.246.255'),(2525,'2010-03-29 13:49:16',2,'categories.php','cPath=2&cID=22&','76.221.246.255'),(2526,'2010-03-29 13:49:52',2,'categories.php','cPath=2_23&','76.221.246.255'),(2527,'2010-03-29 13:49:55',2,'categories.php','product_type=1&cPath=2_23&action=new_product&x=44&y=17&','76.221.246.255'),(2528,'2010-03-29 13:49:55',2,'product.php','product_type=1&cPath=2_23&action=new_product&x=44&y=17&','76.221.246.255'),(2529,'2010-03-29 13:50:12',2,'product.php','cPath=2_23&product_type=1&action=new_product_preview&','76.221.246.255'),(2530,'2010-03-29 13:50:15',2,'product.php','cPath=2_23&product_type=1&action=insert_product&','76.221.246.255'),(2531,'2010-03-29 13:50:18',2,'categories.php','cPath=2_23&pID=162&','76.221.246.255'),(2532,'2010-03-29 13:50:20',2,'categories.php','product_type=1&cPath=2_23&action=new_product&x=77&y=10&','76.221.246.255'),(2533,'2010-03-29 13:50:21',2,'product.php','product_type=1&cPath=2_23&action=new_product&x=77&y=10&','76.221.246.255'),(2534,'2010-03-29 13:51:58',2,'product.php','cPath=2_23&product_type=1&action=new_product_preview&','76.221.246.255'),(2535,'2010-03-29 13:52:01',2,'product.php','cPath=2_23&product_type=1&action=insert_product&','76.221.246.255'),(2536,'2010-03-29 13:52:01',2,'categories.php','cPath=2_23&pID=163&','76.221.246.255'),(2537,'2010-03-29 13:52:05',2,'categories.php','product_type=1&cPath=2_23&action=new_product&x=46&y=15&','76.221.246.255'),(2538,'2010-03-29 13:52:06',2,'product.php','product_type=1&cPath=2_23&action=new_product&x=46&y=15&','76.221.246.255'),(2539,'2010-03-29 13:52:37',2,'product.php','cPath=2_23&product_type=1&action=new_product_preview&','76.221.246.255'),(2540,'2010-03-29 13:52:39',2,'product.php','cPath=2_23&product_type=1&action=insert_product&','76.221.246.255'),(2541,'2010-03-29 13:52:40',2,'categories.php','cPath=2_23&pID=164&','76.221.246.255'),(2542,'2010-03-29 14:03:31',2,'categories.php','cPath=2&cID=23&','76.221.246.255'),(2543,'2010-03-29 14:03:35',2,'categories.php','cPath=2_19&','76.221.246.255'),(2544,'2010-03-29 14:03:46',2,'categories.php','cPath=2&cID=19&action=edit_category&','76.221.246.255'),(2545,'2010-03-29 14:04:42',2,'categories.php','action=update_category&cPath=2&','76.221.246.255'),(2546,'2010-03-29 14:04:42',2,'categories.php','cPath=2&cID=19&','76.221.246.255'),(2547,'2010-03-29 19:14:10',0,'login.php ','','76.221.246.255'),(2548,'2010-03-29 20:03:43',0,'login.php jbadmin','','76.221.246.255'),(2549,'2010-03-29 20:04:22',2,'developers_tool_kit.php','','76.221.246.255'),(2550,'2010-03-29 20:05:10',2,'developers_tool_kit.php','action=locate_configuration&','76.221.246.255'),(2551,'2010-03-29 20:05:18',2,'developers_tool_kit.php','action=locate_configuration&','76.221.246.255'),(2552,'2010-04-02 06:18:14',0,'login.php ','','76.221.246.255'),(2553,'2010-04-02 06:18:59',0,'login.php jbadmin','','76.221.246.255'),(2554,'2010-04-02 06:19:08',2,'configuration.php','gID=8&','76.221.246.255'),(2555,'2010-04-02 06:20:00',2,'configuration.php','gID=8&cID=229&','76.221.246.255'),(2556,'2010-04-02 06:20:03',2,'configuration.php','gID=8&cID=229&action=edit&','76.221.246.255'),(2557,'2010-04-02 06:20:13',2,'configuration.php','gID=8&cID=229&action=save&','76.221.246.255'),(2558,'2010-04-02 06:20:13',2,'configuration.php','gID=8&cID=229&','76.221.246.255'),(2559,'2010-04-02 06:20:17',2,'configuration.php','gID=8&cID=230&','76.221.246.255'),(2560,'2010-04-02 06:20:21',2,'configuration.php','gID=8&cID=230&action=edit&','76.221.246.255'),(2561,'2010-04-02 06:20:25',2,'configuration.php','gID=8&cID=230&action=save&','76.221.246.255'),(2562,'2010-04-02 06:20:26',2,'configuration.php','gID=8&cID=230&','76.221.246.255'),(2563,'2010-04-02 06:22:05',2,'configuration.php','gID=8&cID=230&action=edit&','76.221.246.255'),(2564,'2010-04-02 06:22:08',2,'configuration.php','gID=8&cID=230&action=save&','76.221.246.255'),(2565,'2010-04-02 06:22:09',2,'configuration.php','gID=8&cID=230&','76.221.246.255'),(2566,'2010-04-02 06:22:12',2,'configuration.php','gID=8&cID=229&','76.221.246.255'),(2567,'2010-04-02 06:22:15',2,'configuration.php','gID=8&cID=229&action=edit&','76.221.246.255'),(2568,'2010-04-02 06:22:18',2,'configuration.php','gID=8&cID=229&action=save&','76.221.246.255'),(2569,'2010-04-02 06:22:18',2,'configuration.php','gID=8&cID=229&','76.221.246.255'),(2570,'2010-04-02 06:22:23',2,'configuration.php','gID=8&cID=212&action=edit&','76.221.246.255'),(2571,'2010-04-02 06:22:42',2,'configuration.php','gID=8&cID=212&action=save&','76.221.246.255'),(2572,'2010-04-02 06:22:42',2,'configuration.php','gID=8&cID=212&','76.221.246.255'),(2573,'2010-04-02 06:23:20',2,'configuration.php','gID=8&cID=212&action=edit&','76.221.246.255'),(2574,'2010-04-02 06:23:24',2,'configuration.php','gID=8&cID=212&action=save&','76.221.246.255'),(2575,'2010-04-02 06:23:25',2,'configuration.php','gID=8&cID=212&','76.221.246.255'),(2576,'2010-04-02 06:23:28',2,'configuration.php','gID=4&','76.221.246.255'),(2577,'2010-04-02 06:23:52',2,'configuration.php','gID=4&cID=125&','76.221.246.255'),(2578,'2010-04-02 06:23:59',2,'configuration.php','gID=4&cID=125&action=edit&','76.221.246.255'),(2579,'2010-04-02 06:24:03',2,'configuration.php','gID=4&cID=125&action=save&','76.221.246.255'),(2580,'2010-04-02 06:24:03',2,'configuration.php','gID=4&cID=125&','76.221.246.255'),(2581,'2010-04-02 06:36:20',2,'modules.php','set=shipping&','76.221.246.255'),(2582,'2010-04-02 06:37:01',2,'modules.php','set=shipping&module=flat&action=remove&','76.221.246.255'),(2583,'2010-04-02 06:37:02',2,'modules.php','set=shipping&module=flat&','76.221.246.255'),(2584,'2010-04-02 06:37:09',2,'modules.php','set=shipping&module=freeshipper&','76.221.246.255'),(2585,'2010-04-02 06:37:11',2,'modules.php','set=shipping&module=freeshipper&action=remove&','76.221.246.255'),(2586,'2010-04-02 06:37:12',2,'modules.php','set=shipping&module=freeshipper&','76.221.246.255'),(2587,'2010-04-02 06:37:15',2,'modules.php','set=shipping&module=item&','76.221.246.255'),(2588,'2010-04-02 06:37:18',2,'modules.php','set=shipping&module=item&action=remove&','76.221.246.255'),(2589,'2010-04-02 06:37:18',2,'modules.php','set=shipping&module=item&','76.221.246.255'),(2590,'2010-04-02 06:39:18',2,'modules.php','set=shipping&module=storepickup&','76.221.246.255'),(2591,'2010-04-02 06:39:20',2,'modules.php','set=shipping&module=storepickup&action=remove&','76.221.246.255'),(2592,'2010-04-02 06:39:20',2,'modules.php','set=shipping&module=storepickup&','76.221.246.255'),(2593,'2010-04-02 06:40:27',2,'modules.php','set=ordertotal&','76.221.246.255'),(2594,'2010-04-02 06:40:45',2,'modules.php','set=ordertotal&module=ot_shipping&','76.221.246.255'),(2595,'2010-04-02 06:40:52',2,'modules.php','set=ordertotal&module=ot_shipping&action=remove&','76.221.246.255'),(2596,'2010-04-02 06:40:52',2,'modules.php','set=ordertotal&module=ot_shipping&','76.221.246.255'),(2597,'2010-04-02 06:44:58',2,'modules.php','set=ordertotal&module=ot_shipping&action=install&','76.221.246.255'),(2598,'2010-04-02 06:44:59',2,'modules.php','set=ordertotal&module=ot_shipping&action=edit&','76.221.246.255'),(2599,'2010-04-02 06:45:19',2,'modules.php','set=ordertotal&module=ot_shipping&action=save&','76.221.246.255'),(2600,'2010-04-02 06:45:20',2,'modules.php','set=ordertotal&module=ot_shipping&','76.221.246.255'),(2601,'2010-04-02 06:45:34',2,'categories.php','','76.221.246.255'),(2602,'2010-04-02 06:45:41',2,'categories.php','cPath=1&','76.221.246.255'),(2603,'2010-04-02 06:45:52',2,'categories.php','cPath=1_4&','76.221.246.255'),(2604,'2010-04-02 06:46:06',2,'product.php','cPath=1_4&product_type=1&pID=1&action=new_product&','76.221.246.255'),(2605,'2010-04-02 06:47:08',2,'product.php','cPath=1_4&product_type=1&pID=1&action=new_product_preview&','76.221.246.255'),(2606,'2010-04-02 06:47:27',2,'product.php','cPath=1_4&product_type=1&pID=1&action=update_product&','76.221.246.255'),(2607,'2010-04-02 06:47:28',2,'categories.php','cPath=1_4&pID=1&','76.221.246.255'),(2608,'2010-04-02 06:57:03',0,'login.php ','','76.221.246.255'),(2609,'2010-04-02 06:57:23',0,'login.php jbadmin','','76.221.246.255'),(2610,'2010-04-02 06:57:39',2,'modules.php','set=shipping&','76.221.246.255'),(2611,'2010-04-02 06:57:57',2,'configuration.php','gID=7&','76.221.246.255'),(2612,'2010-04-02 06:58:32',2,'configuration.php','gID=8&','76.221.246.255'),(2613,'2010-04-02 06:58:54',2,'configuration.php','gID=1&','76.221.246.255'),(2614,'2010-04-02 06:59:02',2,'configuration.php','gID=1&cID=4&','76.221.246.255'),(2615,'2010-04-02 06:59:06',2,'configuration.php','gID=1&cID=4&action=edit&','76.221.246.255'),(2616,'2010-04-02 06:59:13',2,'configuration.php','gID=1&cID=4&action=save&','76.221.246.255'),(2617,'2010-04-02 06:59:14',2,'configuration.php','gID=1&cID=4&','76.221.246.255'),(2618,'2010-04-02 07:00:03',2,'modules.php','set=ordertotal&','76.221.246.255'),(2619,'2010-04-02 07:00:09',2,'modules.php','set=ordertotal&module=ot_shipping&','76.221.246.255'),(2620,'2010-04-02 07:00:12',2,'modules.php','set=ordertotal&module=ot_shipping&action=remove&','76.221.246.255'),(2621,'2010-04-02 07:00:13',2,'modules.php','set=ordertotal&module=ot_shipping&','76.221.246.255'),(2622,'2010-04-02 07:11:14',2,'configuration.php','gID=19&','76.221.246.255'),(2623,'2010-04-02 07:11:36',2,'layout_controller.php','','76.221.246.255'),(2624,'2010-04-02 07:12:14',2,'layout_controller.php','page=&cID=92&action=edit&','76.221.246.255'),(2625,'2010-04-02 07:12:28',2,'layout_controller.php','page=&cID=92&action=save&layout_box_name=order_history.php&','76.221.246.255'),(2626,'2010-04-02 07:12:29',2,'layout_controller.php','page=&cID=92&','76.221.246.255'),(2627,'2010-04-02 07:13:41',2,'layout_controller.php','page=&cID=98&action=edit&','76.221.246.255'),(2628,'2010-04-02 07:13:49',2,'layout_controller.php','page=&cID=98&action=save&layout_box_name=shopping_cart.php&','76.221.246.255'),(2629,'2010-04-02 07:13:49',2,'layout_controller.php','page=&cID=98&','76.221.246.255'),(2630,'2010-04-02 07:14:49',2,'layout_controller.php','page=&cID=102&action=edit&','76.221.246.255'),(2631,'2010-04-02 07:14:58',2,'layout_controller.php','page=&cID=102&action=save&layout_box_name=whos_online.php&','76.221.246.255'),(2632,'2010-04-02 07:14:58',2,'layout_controller.php','page=&cID=102&','76.221.246.255'),(2633,'2010-04-02 07:16:18',2,'configuration.php','gID=19&','76.221.246.255'),(2634,'2010-04-02 07:16:28',2,'configuration.php','gID=19&cID=436&action=edit&','76.221.246.255'),(2635,'2010-04-02 07:16:31',2,'configuration.php','gID=19&cID=436&action=save&','76.221.246.255'),(2636,'2010-04-02 07:16:32',2,'configuration.php','gID=19&cID=436&','76.221.246.255'),(2637,'2010-04-03 07:16:33',0,'login.php ','','76.221.246.255'),(2638,'2010-04-03 07:17:16',0,'login.php jbadmin','','76.221.246.255'),(2639,'2010-04-03 07:18:16',2,'developers_tool_kit.php','','76.221.246.255'),(2640,'2010-04-03 07:18:31',2,'developers_tool_kit.php','action=locate_configuration&','76.221.246.255'),(2641,'2010-04-03 07:29:57',2,'developers_tool_kit.php','action=locate_configuration&','76.221.246.255'),(2642,'2010-04-03 07:30:14',2,'developers_tool_kit.php','action=locate_all_files&','76.221.246.255'),(2643,'2010-04-03 08:11:37',2,'layout_controller.php','','76.221.246.255'),(2644,'2010-04-03 08:12:36',2,'layout_controller.php','page=&cID=92&action=edit&','76.221.246.255'),(2645,'2010-04-03 08:12:53',2,'layout_controller.php','page=&cID=92&action=save&layout_box_name=order_history.php&','76.221.246.255'),(2646,'2010-04-03 08:12:53',2,'layout_controller.php','page=&cID=92&','76.221.246.255'),(2647,'2010-04-03 08:13:11',2,'layout_controller.php','page=&cID=92&action=edit&','76.221.246.255'),(2648,'2010-04-03 08:13:15',2,'layout_controller.php','page=&cID=92&action=save&layout_box_name=order_history.php&','76.221.246.255'),(2649,'2010-04-03 08:13:15',2,'layout_controller.php','page=&cID=92&','76.221.246.255'),(2650,'2010-04-03 08:13:19',2,'layout_controller.php','page=&cID=98&action=edit&','76.221.246.255'),(2651,'2010-04-03 08:13:29',2,'layout_controller.php','page=&cID=98&action=save&layout_box_name=shopping_cart.php&','76.221.246.255'),(2652,'2010-04-03 08:13:30',2,'layout_controller.php','page=&cID=98&','76.221.246.255'),(2653,'2010-04-03 08:13:51',2,'layout_controller.php','page=&cID=98&action=edit&','76.221.246.255'),(2654,'2010-04-03 08:14:01',2,'layout_controller.php','page=&cID=98&action=save&layout_box_name=shopping_cart.php&','76.221.246.255'),(2655,'2010-04-03 08:14:02',2,'layout_controller.php','page=&cID=98&','76.221.246.255'),(2656,'2010-04-03 08:14:15',2,'layout_controller.php','page=&cID=80&action=edit&','76.221.246.255'),(2657,'2010-04-03 08:14:25',2,'layout_controller.php','page=&cID=80&action=save&layout_box_name=best_sellers.php&','76.221.246.255'),(2658,'2010-04-03 08:14:25',2,'layout_controller.php','page=&cID=80&','76.221.246.255'),(2659,'2010-04-03 08:14:38',2,'layout_controller.php','page=&cID=88&action=edit&','76.221.246.255'),(2660,'2010-04-03 08:14:42',2,'layout_controller.php','page=&cID=88&action=save&layout_box_name=manufacturer_info.php&','76.221.246.255'),(2661,'2010-04-03 08:14:43',2,'layout_controller.php','page=&cID=88&','76.221.246.255'),(2662,'2010-04-03 08:14:49',2,'layout_controller.php','page=&cID=88&action=edit&','76.221.246.255'),(2663,'2010-04-03 08:14:54',2,'layout_controller.php','page=&cID=88&action=save&layout_box_name=manufacturer_info.php&','76.221.246.255'),(2664,'2010-04-03 08:14:54',2,'layout_controller.php','page=&cID=88&','76.221.246.255'),(2665,'2010-04-03 08:14:59',2,'layout_controller.php','page=&cID=93&action=edit&','76.221.246.255'),(2666,'2010-04-03 08:15:04',2,'layout_controller.php','page=&cID=93&action=save&layout_box_name=product_notifications.php&','76.221.246.255'),(2667,'2010-04-03 08:15:05',2,'layout_controller.php','page=&cID=93&','76.221.246.255'),(2668,'2010-04-03 08:15:52',2,'layout_controller.php','page=&cID=96&action=edit&','76.221.246.255'),(2669,'2010-04-03 08:15:58',2,'layout_controller.php','page=&cID=96&action=save&layout_box_name=search.php&','76.221.246.255'),(2670,'2010-04-03 08:15:58',2,'layout_controller.php','page=&cID=96&','76.221.246.255'),(2671,'2010-04-03 08:16:09',2,'layout_controller.php','page=&cID=79&action=edit&','76.221.246.255'),(2672,'2010-04-03 08:16:17',2,'layout_controller.php','page=&cID=79&action=save&layout_box_name=banner_box_all.php&','76.221.246.255'),(2673,'2010-04-03 08:16:20',2,'layout_controller.php','page=&cID=79&','76.221.246.255'),(2674,'2010-04-03 08:17:00',2,'layout_controller.php','page=&cID=78&action=edit&','76.221.246.255'),(2675,'2010-04-03 08:17:08',2,'layout_controller.php','page=&cID=78&action=save&layout_box_name=banner_box2.php&','76.221.246.255'),(2676,'2010-04-03 08:17:08',2,'layout_controller.php','page=&cID=78&','76.221.246.255'),(2677,'2010-04-03 08:27:02',2,'configuration.php','gID=19&','76.221.246.255'),(2678,'2010-04-03 08:27:13',2,'configuration.php','gID=19&cID=411&','76.221.246.255'),(2679,'2010-04-03 08:27:20',2,'configuration.php','gID=19&cID=411&action=edit&','76.221.246.255'),(2680,'2010-04-03 08:27:24',2,'configuration.php','gID=19&cID=411&action=save&','76.221.246.255'),(2681,'2010-04-03 08:27:24',2,'configuration.php','gID=19&cID=411&','76.221.246.255'),(2682,'2010-05-02 13:18:47',0,'login.php ','','67.142.161.26'),(2683,'2010-05-02 13:18:51',0,'login.php ','','67.142.161.26'),(2684,'2010-05-02 13:19:26',0,'login.php jbadmin','','67.142.161.26'),(2685,'2010-05-02 13:26:08',2,'define_pages_editor.php','','67.142.161.26'),(2686,'2010-05-02 13:26:18',2,'define_pages_editor.php','securityToken=1c9ae8df438aae9eff59791ec4feb71d&define_it=2&action=new_page&','67.142.161.26'),(2687,'2010-05-02 13:35:53',2,'define_pages_editor.php','securityToken=1c9ae8df438aae9eff59791ec4feb71d&define_it=2&action=new_page&','67.142.161.26'),(2688,'2010-05-02 13:57:38',2,'define_pages_editor.php','securityToken=1c9ae8df438aae9eff59791ec4feb71d&define_it=2&action=new_page&','67.142.161.19'),(2689,'2010-05-02 13:57:58',2,'define_pages_editor.php','lngdir=english&filename=define_conditions.php&action=save&','67.142.161.19'),(2690,'2010-05-02 13:57:59',2,'define_pages_editor.php','','67.142.161.19'),(2691,'2010-05-02 13:59:21',2,'define_pages_editor.php','securityToken=1c9ae8df438aae9eff59791ec4feb71d&define_it=2&action=new_page&','67.142.161.19'),(2692,'2010-05-02 14:02:00',2,'define_pages_editor.php','lngdir=english&filename=define_conditions.php&action=save&','67.142.161.19'),(2693,'2010-05-02 14:02:00',2,'define_pages_editor.php','','67.142.161.19'),(2694,'2010-05-02 14:03:37',2,'define_pages_editor.php','securityToken=1c9ae8df438aae9eff59791ec4feb71d&define_it=2&action=new_page&','67.142.161.19'),(2695,'2010-05-02 14:03:47',2,'define_pages_editor.php','lngdir=english&filename=define_conditions.php&action=save&','67.142.161.19'),(2696,'2010-05-02 14:03:48',2,'define_pages_editor.php','','67.142.161.19'),(2697,'2010-05-02 14:07:02',2,'define_pages_editor.php','securityToken=1c9ae8df438aae9eff59791ec4feb71d&define_it=10&action=new_page&','67.142.161.19'),(2698,'2010-05-02 14:07:20',2,'define_pages_editor.php','lngdir=english&filename=define_privacy.php&action=save&','67.142.161.19'),(2699,'2010-05-02 14:07:20',2,'define_pages_editor.php','','67.142.161.19'),(2700,'2010-05-02 14:18:04',2,'configuration.php','gID=25&','67.142.161.19'),(2701,'2010-05-02 14:18:27',2,'configuration.php','gID=25&cID=523&','67.142.161.19'),(2702,'2010-05-02 14:18:33',2,'configuration.php','gID=25&cID=523&action=edit&','67.142.161.19'),(2703,'2010-05-02 14:18:38',2,'configuration.php','gID=25&cID=523&action=save&','67.142.161.19'),(2704,'2010-05-02 14:18:38',2,'configuration.php','gID=25&cID=523&','67.142.161.19'),(2705,'2010-05-02 14:20:04',2,'developers_tool_kit.php','','67.142.161.19'),(2706,'2010-05-02 14:20:24',2,'developers_tool_kit.php','','67.142.161.19'),(2707,'2010-05-02 14:20:37',2,'developers_tool_kit.php','action=locate_configuration&','67.142.161.19'),(2708,'2010-05-02 14:21:09',2,'developers_tool_kit.php','action=locate_all_files&','67.142.161.19'),(2709,'2010-05-02 14:40:14',2,'define_pages_editor.php','','67.142.161.19'),(2710,'2010-05-02 14:41:06',2,'define_pages_editor.php','securityToken=1c9ae8df438aae9eff59791ec4feb71d&define_it=11&action=new_page&','67.142.161.19'),(2711,'2010-05-02 14:41:19',2,'define_pages_editor.php','lngdir=english&filename=define_shippinginfo.php&action=save&','67.142.161.19'),(2712,'2010-05-02 14:41:20',2,'define_pages_editor.php','','67.142.161.19'),(2713,'2010-05-02 14:56:00',2,'define_pages_editor.php','securityToken=1c9ae8df438aae9eff59791ec4feb71d&define_it=11&action=new_page&','67.142.161.19'),(2714,'2010-05-02 14:56:10',2,'define_pages_editor.php','lngdir=english&filename=define_shippinginfo.php&action=save&','67.142.161.19'),(2715,'2010-05-02 14:56:10',2,'define_pages_editor.php','','67.142.161.19'),(2716,'2010-05-02 14:57:08',2,'define_pages_editor.php','securityToken=1c9ae8df438aae9eff59791ec4feb71d&define_it=11&action=new_page&','67.142.161.19'),(2717,'2010-05-02 14:58:03',2,'define_pages_editor.php','lngdir=english&filename=define_shippinginfo.php&action=save&','67.142.161.19'),(2718,'2010-05-02 14:58:03',2,'define_pages_editor.php','','67.142.161.19'),(2719,'2010-05-02 14:58:39',2,'define_pages_editor.php','securityToken=1c9ae8df438aae9eff59791ec4feb71d&define_it=11&action=new_page&','67.142.161.19'),(2720,'2010-05-02 14:59:02',2,'define_pages_editor.php','lngdir=english&filename=define_shippinginfo.php&action=save&','67.142.161.19'),(2721,'2010-05-02 14:59:02',2,'define_pages_editor.php','','67.142.161.19'),(2722,'2010-05-02 15:01:14',2,'developers_tool_kit.php','','67.142.161.19'),(2723,'2010-05-02 15:01:31',2,'developers_tool_kit.php','action=locate_configuration&','67.142.161.19'),(2724,'2010-05-02 15:01:36',2,'developers_tool_kit.php','action=locate_all_files&','67.142.161.19'),(2725,'2010-05-02 15:48:58',0,'login.php ','','67.142.161.23'),(2726,'2010-05-02 18:44:06',0,'login.php ','','67.142.161.22'),(2727,'2010-05-02 18:44:59',0,'login.php jbadmin','','67.142.161.22'),(2728,'2010-05-02 18:50:33',2,'developers_tool_kit.php','','67.142.161.22'),(2729,'2010-05-02 18:50:48',2,'developers_tool_kit.php','action=locate_configuration&','67.142.161.22'),(2730,'2010-05-02 18:50:56',2,'developers_tool_kit.php','action=locate_all_files&','67.142.161.22'),(2731,'2010-05-02 18:52:05',2,'developers_tool_kit.php','action=locate_configuration&','67.142.161.22'),(2732,'2010-05-02 19:00:35',2,'define_pages_editor.php','','67.142.161.22'),(2733,'2010-05-02 19:00:41',2,'define_pages_editor.php','securityToken=90070d17d8aa41df8e8144219e0d1eba&define_it=11&action=new_page&','67.142.161.22'),(2734,'2010-05-02 19:01:21',2,'define_pages_editor.php','lngdir=english&filename=define_shippinginfo.php&action=save&','67.142.161.22'),(2735,'2010-05-02 19:01:21',2,'define_pages_editor.php','','67.142.161.22'),(2736,'2010-05-02 19:01:59',2,'define_pages_editor.php','securityToken=90070d17d8aa41df8e8144219e0d1eba&define_it=11&action=new_page&','67.142.161.22'),(2737,'2010-05-02 19:03:13',2,'define_pages_editor.php','lngdir=english&filename=define_shippinginfo.php&action=save&','67.142.161.22'),(2738,'2010-05-02 19:03:14',2,'define_pages_editor.php','','67.142.161.22'),(2739,'2010-05-02 19:09:29',2,'configuration.php','gID=1&','67.142.161.22'),(2740,'2010-05-02 19:09:57',2,'configuration.php','gID=1&cID=1&action=edit&','67.142.161.22'),(2741,'2010-05-02 19:10:55',2,'configuration.php','gID=1&cID=12&action=edit&','67.142.161.22'),(2742,'2010-05-02 19:13:19',2,'configuration.php','gID=1&cID=12&action=save&','67.142.161.22'),(2743,'2010-05-02 19:13:20',2,'configuration.php','gID=1&cID=12&','67.142.161.22'),(2744,'2010-05-02 19:13:48',2,'define_pages_editor.php','','67.142.161.22'),(2745,'2010-05-02 19:13:56',2,'define_pages_editor.php','securityToken=90070d17d8aa41df8e8144219e0d1eba&define_it=3&action=new_page&','67.142.161.22'),(2746,'2010-05-02 19:16:58',2,'define_pages_editor.php','lngdir=english&filename=define_contact_us.php&action=save&','67.142.161.22'),(2747,'2010-05-02 19:16:59',2,'define_pages_editor.php','','67.142.161.22'),(2748,'2010-05-02 19:21:52',2,'define_pages_editor.php','','67.142.161.22'),(2749,'2010-05-02 19:21:57',2,'define_pages_editor.php','securityToken=90070d17d8aa41df8e8144219e0d1eba&define_it=6&action=new_page&','67.142.161.22'),(2750,'2010-05-02 19:22:33',2,'define_pages_editor.php','lngdir=english&filename=define_page_2.php&action=save&','67.142.161.22'),(2751,'2010-05-02 19:22:33',2,'define_pages_editor.php','','67.142.161.22'),(2752,'2010-05-02 19:22:42',2,'define_pages_editor.php','securityToken=90070d17d8aa41df8e8144219e0d1eba&define_it=7&action=new_page&','67.142.161.22'),(2753,'2010-05-02 19:22:57',2,'define_pages_editor.php','lngdir=english&filename=define_page_3.php&action=save&','67.142.161.22'),(2754,'2010-05-02 19:22:58',2,'define_pages_editor.php','','67.142.161.22'),(2755,'2010-05-02 19:23:06',2,'define_pages_editor.php','securityToken=90070d17d8aa41df8e8144219e0d1eba&define_it=8&action=new_page&','67.142.161.22'),(2756,'2010-05-02 19:23:20',2,'define_pages_editor.php','lngdir=english&filename=define_page_4.php&action=save&','67.142.161.22'),(2757,'2010-05-02 19:23:20',2,'define_pages_editor.php','','67.142.161.22'),(2758,'2010-05-02 20:47:13',0,'login.php ','','67.142.161.24'),(2759,'2010-05-02 20:48:17',0,'login.php jbadmin','','67.142.161.24'),(2760,'2010-05-02 20:48:23',2,'developers_tool_kit.php','','67.142.161.24'),(2761,'2010-05-02 20:48:39',2,'developers_tool_kit.php','action=locate_configuration&','67.142.161.24'),(2762,'2010-05-02 21:15:24',2,'layout_controller.php','','67.142.161.24'),(2763,'2010-05-02 21:15:46',2,'layout_controller.php','page=&cID=96&action=edit&','67.142.161.24'),(2764,'2010-05-02 21:15:53',2,'layout_controller.php','page=&cID=96&action=save&layout_box_name=search.php&','67.142.161.24'),(2765,'2010-05-02 21:15:53',2,'layout_controller.php','page=&cID=96&','67.142.161.24'),(2766,'2010-05-02 21:17:26',2,'define_pages_editor.php','','67.142.161.24'),(2767,'2010-05-02 21:17:33',2,'define_pages_editor.php','securityToken=3d7e3cb07c50bdb6a97014965d8f19d5&define_it=10&action=new_page&','67.142.161.24'),(2768,'2010-05-02 21:17:39',2,'define_pages_editor.php','securityToken=3d7e3cb07c50bdb6a97014965d8f19d5&define_it=2&action=new_page&','67.142.161.24'),(2769,'2010-05-02 21:17:58',2,'define_pages_editor.php','lngdir=english&filename=define_conditions.php&action=save&','67.142.161.24'),(2770,'2010-05-02 21:17:58',2,'define_pages_editor.php','','67.142.161.24'),(2771,'2010-05-02 21:18:35',2,'define_pages_editor.php','securityToken=3d7e3cb07c50bdb6a97014965d8f19d5&define_it=2&action=new_page&','67.142.161.24'),(2772,'2010-05-02 21:19:30',2,'define_pages_editor.php','lngdir=english&filename=define_conditions.php&action=save&','67.142.161.24'),(2773,'2010-05-02 21:19:30',2,'define_pages_editor.php','','67.142.161.24'),(2774,'2010-05-02 21:23:16',2,'define_pages_editor.php','securityToken=3d7e3cb07c50bdb6a97014965d8f19d5&define_it=2&action=new_page&','67.142.161.24'),(2775,'2010-05-02 21:25:03',2,'define_pages_editor.php','lngdir=english&filename=define_conditions.php&action=save&','67.142.161.24'),(2776,'2010-05-02 21:25:03',2,'define_pages_editor.php','','67.142.161.24'),(2777,'2010-05-02 21:25:35',2,'define_pages_editor.php','securityToken=3d7e3cb07c50bdb6a97014965d8f19d5&define_it=2&action=new_page&','67.142.161.24'),(2778,'2010-05-02 21:27:09',2,'define_pages_editor.php','lngdir=english&filename=define_conditions.php&action=save&','67.142.161.24'),(2779,'2010-05-02 21:27:09',2,'define_pages_editor.php','','67.142.161.24'),(2780,'2010-05-03 10:41:44',0,'login.php ','','67.142.161.21'),(2781,'2010-05-03 10:41:46',0,'login.php ','','67.142.161.21'),(2782,'2010-05-03 10:42:05',0,'login.php jbadmin','','67.142.161.21'),(2783,'2010-05-03 10:42:12',2,'define_pages_editor.php','','67.142.161.21'),(2784,'2010-05-03 10:42:20',2,'define_pages_editor.php','securityToken=3fcd8932e14f7af66735b9015fb448ec&define_it=2&action=new_page&','67.142.161.21'),(2785,'2010-05-03 10:43:44',2,'define_pages_editor.php','lngdir=english&filename=define_conditions.php&action=save&','67.142.161.21'),(2786,'2010-05-03 10:43:44',2,'define_pages_editor.php','','67.142.161.21'),(2787,'2010-05-03 18:32:27',0,'login.php ','','67.142.161.26'),(2788,'2011-01-08 09:05:56',0,'login.php ','','97.146.164.10'),(2789,'2011-01-08 09:06:28',0,'login.php jbadmin','','97.146.164.10'),(2790,'2011-01-08 09:07:03',2,'modules.php','set=payment&','97.146.164.10'),(2791,'2011-01-08 09:07:16',2,'modules.php','set=payment&module=googlecheckout&','97.146.164.10'),(2792,'2011-01-08 09:07:25',2,'modules.php','set=payment&module=googlecheckout&action=install&','97.146.164.10'),(2793,'2011-01-08 09:07:25',2,'modules.php','set=payment&module=googlecheckout&action=edit&','97.146.164.10'),(2794,'2011-01-08 09:35:31',2,'modules.php','set=payment&module=googlecheckout&action=save&','97.146.164.10'),(2795,'2011-01-08 09:35:31',2,'modules.php','set=payment&module=googlecheckout&','97.146.164.10'),(2796,'2011-01-08 09:56:33',2,'configuration.php','gID=1&','97.146.164.10'),(2797,'2011-01-08 09:57:00',2,'alt_nav.php','','97.146.164.10'),(2798,'2011-01-08 09:57:10',2,'configuration.php','gID=5&','97.146.164.10'),(2799,'2011-01-08 09:57:16',2,'configuration.php','gID=5&cID=129&action=edit&','97.146.164.10'),(2800,'2011-01-08 09:57:22',2,'configuration.php','gID=5&cID=129&action=save&','97.146.164.10'),(2801,'2011-01-08 09:57:22',2,'configuration.php','gID=5&cID=129&','97.146.164.10'),(2802,'2011-01-08 10:49:19',2,'modules.php','set=payment&','97.146.164.10'),(2803,'2011-01-08 10:49:26',2,'modules.php','set=payment&module=googlecheckout&','97.146.164.10'),(2804,'2011-01-08 10:49:31',2,'modules.php','set=payment&module=googlecheckout&action=edit&','97.146.164.10'),(2805,'2011-01-08 10:50:28',2,'modules.php','set=payment&module=googlecheckout&action=save&','97.146.164.10'),(2806,'2011-01-08 10:50:28',2,'modules.php','set=payment&module=googlecheckout&','97.146.164.10'),(2807,'2011-01-08 10:50:37',2,'modules.php','set=payment&module=linkpoint_api&','97.146.164.10'),(2808,'2011-01-08 10:50:44',2,'modules.php','set=payment&module=googlecheckout&','97.146.164.10'),(2809,'2011-01-08 14:11:22',0,'login.php ','','67.142.161.32'),(2810,'2011-01-08 14:11:23',0,'login.php ','','67.142.161.32'),(2811,'2011-01-08 14:11:46',0,'login.php jbadmin','','67.142.161.32'),(2812,'2011-01-08 14:11:47',0,'login.php ','','67.142.161.32'),(2813,'2011-01-08 14:12:12',2,'configuration.php','gID=17&','67.142.161.32'),(2814,'2011-01-08 14:12:39',2,'configuration.php','gID=17&cID=320&action=edit&','67.142.161.32'),(2815,'2011-01-08 14:12:46',2,'configuration.php','gID=17&cID=320&','67.142.161.32'),(2816,'2011-01-08 14:12:56',2,'modules.php','set=payment&','67.142.161.32'),(2817,'2011-01-08 14:13:09',2,'modules.php','set=payment&module=freecharger&','67.142.161.32'),(2818,'2011-01-08 14:13:13',2,'modules.php','set=payment&module=freecharger&action=remove&','67.142.161.32'),(2819,'2011-01-08 14:13:13',2,'modules.php','set=payment&module=freecharger&','67.142.161.32'),(2820,'2011-01-08 14:13:25',2,'modules.php','set=payment&module=cc&','67.142.161.32'),(2821,'2011-01-08 14:13:32',2,'modules.php','set=payment&module=cc&action=remove&','67.142.161.32'),(2822,'2011-01-08 14:13:32',2,'modules.php','set=payment&module=cc&','67.142.161.32'),(2823,'2011-01-08 14:13:37',2,'modules.php','set=payment&module=moneyorder&','67.142.161.32'),(2824,'2011-01-08 14:13:41',2,'modules.php','set=payment&module=moneyorder&action=remove&','67.142.161.32'),(2825,'2011-01-08 14:13:41',2,'modules.php','set=payment&module=moneyorder&','67.142.161.32'),(2826,'2011-01-08 14:15:25',2,'modules.php','set=payment&module=cc&','67.142.161.32'),(2827,'2011-01-08 14:15:29',2,'modules.php','set=payment&module=cc&action=install&','67.142.161.32'),(2828,'2011-01-08 14:15:29',2,'modules.php','set=payment&module=cc&action=edit&','67.142.161.32'),(2829,'2011-01-08 14:16:11',2,'modules.php','set=payment&module=cc&action=save&','67.142.161.32'),(2830,'2011-01-08 14:16:11',2,'modules.php','set=payment&module=cc&','67.142.161.32'),(2831,'2011-01-08 17:02:50',0,'login.php ','','97.179.75.77'),(2832,'2011-01-08 17:03:08',0,'login.php jbadmin','','97.179.75.77'),(2833,'2011-01-08 17:03:16',2,'modules.php','set=payment&','97.179.75.77'),(2834,'2011-01-08 17:03:24',2,'modules.php','set=payment&module=googlecheckout&','97.179.75.77'),(2835,'2011-01-08 17:03:47',2,'modules.php','set=payment&module=googlecheckout&action=edit&','97.179.75.77'),(2836,'2011-01-08 17:07:36',2,'modules.php','set=payment&module=googlecheckout&action=save&','97.179.75.77'),(2837,'2011-01-08 17:07:37',2,'modules.php','set=payment&module=googlecheckout&','97.179.75.77'),(2838,'2011-05-24 07:50:04',0,'login.php ','','184.61.202.44'),(2839,'2011-05-24 07:58:15',0,'login.php jbadmin','','184.61.202.44'),(2840,'2011-05-24 08:03:08',2,'downloads_manager.php','','184.61.202.44'),(2841,'2011-05-24 08:03:50',2,'options_name_manager.php','','184.61.202.44'),(2842,'2011-05-24 19:42:11',0,'login.php ','','184.61.202.44'),(2843,'2011-05-24 19:42:39',0,'login.php surpro','','184.61.202.44'),(2844,'2011-05-24 19:43:00',0,'login.php surpro','','184.61.202.44'),(2845,'2011-05-24 19:44:51',0,'login.php nsadmin','','184.61.202.44'),(2846,'2011-05-24 19:45:00',0,'login.php nsadmin','','184.61.202.44'),(2847,'2011-05-24 19:45:22',0,'login.php nsadmin','','184.61.202.44'),(2848,'2011-05-24 19:46:17',0,'login.php jbadmin','','184.61.202.44'),(2849,'2011-05-24 19:49:19',2,'options_name_manager.php','','184.61.202.44'),(2850,'2011-05-24 19:53:52',2,'options_name_manager.php','action=add_product_options&option_page=1&option_order_by=products_options_id&','184.61.202.44'),(2851,'2011-05-24 19:53:52',2,'options_name_manager.php','option_page=1&option_order_by=products_options_id&','184.61.202.44'),(2852,'2011-05-24 19:53:57',2,'options_values_manager.php','','184.61.202.44'),(2853,'2011-05-24 19:54:18',2,'options_values_manager.php','action=add_product_option_values&value_page=1&','184.61.202.44'),(2854,'2011-05-24 19:54:19',2,'options_values_manager.php','value_page=1&','184.61.202.44'),(2855,'2011-05-24 19:55:12',2,'attributes_controller.php','','184.61.202.44'),(2856,'2011-05-24 19:55:29',2,'options_values_manager.php','value_page=1&','184.61.202.44'),(2857,'2011-05-24 19:55:32',2,'attributes_controller.php','','184.61.202.44'),(2858,'2011-05-24 19:55:35',2,'options_values_manager.php','value_page=1&','184.61.202.44'),(2859,'2011-05-24 19:56:36',2,'attributes_controller.php','','184.61.202.44'),(2860,'2011-05-24 19:57:10',2,'options_values_manager.php','','184.61.202.44'),(2861,'2011-05-24 19:57:24',2,'options_values_manager.php','action=update_option_value&value_id=29&value_page=1&','184.61.202.44'),(2862,'2011-05-24 19:57:41',2,'options_values_manager.php','value_page=1&','184.61.202.44'),(2863,'2011-05-24 20:00:19',2,'attributes_controller.php','','184.61.202.44'),(2864,'2011-05-24 20:00:42',2,'attributes_controller.php','securityToken=f71f04eed491ac155a0921296fcf96c4&current_category_id=15&products_filter=&action=new_cat&','184.61.202.44'),(2865,'2011-05-24 20:00:42',2,'attributes_controller.php','products_filter=95&current_category_id=15&','184.61.202.44'),(2866,'2011-05-24 20:01:08',2,'attributes_controller.php','products_filter=95&current_category_id=15&','184.61.202.44'),(2867,'2011-05-24 20:01:19',2,'attributes_controller.php','','184.61.202.44'),(2868,'2011-05-24 20:01:23',2,'options_values_manager.php','value_page=1&','184.61.202.44'),(2869,'2011-05-24 20:07:07',2,'categories.php','','184.61.202.44'),(2870,'2011-05-24 20:07:11',2,'categories.php','cPath=&action=new_category&','184.61.202.44'),(2871,'2011-05-24 20:09:36',2,'categories.php','cPath=&','184.61.202.44'),(2872,'2011-05-24 20:58:14',0,'login.php ','','184.61.202.44'),(2873,'2011-05-24 20:58:26',0,'login.php jbadmin','','184.61.202.44'),(2874,'2011-05-24 20:58:33',2,'categories.php','','184.61.202.44'),(2875,'2011-05-24 20:58:37',2,'categories.php','cPath=&action=new_category&','184.61.202.44'),(2876,'2011-05-24 20:58:46',2,'categories.php','action=insert_category&cPath=&','184.61.202.44'),(2877,'2011-05-24 20:58:47',2,'categories.php','cPath=&cID=28&','184.61.202.44'),(2878,'2011-05-24 20:58:56',2,'categories.php','cPath=28&','184.61.202.44'),(2879,'2011-05-24 20:59:03',2,'categories.php','cPath=&cID=28&','184.61.202.44'),(2880,'2011-05-24 20:59:07',2,'categories.php','cPath=28&','184.61.202.44'),(2881,'2011-05-24 20:59:11',2,'categories.php','x=73&y=13&product_type=1&cPath=28&action=new_product&','184.61.202.44'),(2882,'2011-05-24 20:59:11',2,'product.php','x=73&y=13&product_type=1&cPath=28&action=new_product&','184.61.202.44'),(2883,'2011-05-24 21:03:17',2,'product.php','cPath=28&product_type=1&action=new_product_preview&','184.61.202.44'),(2884,'2011-05-24 21:04:04',2,'product.php','cPath=28&product_type=1&action=insert_product&','184.61.202.44'),(2885,'2011-05-24 21:04:09',2,'product.php','cPath=28&product_type=1&action=new_product_preview&','184.61.202.44'),(2886,'2011-05-24 21:04:12',2,'product.php','cPath=28&product_type=1&action=insert_product&','184.61.202.44'),(2887,'2011-05-24 21:04:14',2,'categories.php','cPath=28&pID=165&','184.61.202.44'),(2888,'2011-05-24 21:05:35',2,'attributes_controller.php','products_filter=165&current_category_id=28&','184.61.202.44'),(2889,'2011-05-24 21:07:46',2,'attributes_controller.php','action=add_product_attributes&attribute_page=1&products_filter=165&','184.61.202.44'),(2890,'2011-05-24 21:07:46',2,'attributes_controller.php','attribute_page=1&products_filter=165&current_category_id=28&','184.61.202.44'),(2891,'2011-05-24 21:10:43',2,'attributes_controller.php','action=add_product_attributes&attribute_page=1&products_filter=165&','184.61.202.44'),(2892,'2011-05-24 21:10:43',2,'attributes_controller.php','attribute_page=1&products_filter=165&current_category_id=28&','184.61.202.44'),(2893,'2011-05-24 21:11:09',2,'downloads_manager.php','','184.61.202.44'),(2894,'2011-05-24 21:14:35',2,'modules.php','set=payment&','184.61.202.44'),(2895,'2011-05-24 21:14:40',2,'modules.php','set=payment&module=paypalwpp&','184.61.202.44'),(2896,'2011-05-24 21:14:51',2,'modules.php','set=payment&module=paypalwpp&action=install&','184.61.202.44'),(2897,'2011-05-24 21:14:52',2,'modules.php','set=payment&module=paypalwpp&action=edit&','184.61.202.44'),(2898,'2011-05-24 21:28:56',2,'modules.php','set=payment&module=paypalwpp&action=save&','184.61.202.44'),(2899,'2011-05-24 21:28:58',2,'modules.php','set=payment&module=paypalwpp&','184.61.202.44'),(2900,'2011-05-24 21:29:08',2,'modules.php','set=payment&module=googlecheckout&','184.61.202.44'),(2901,'2011-05-24 21:30:53',2,'modules.php','set=payment&module=googlecheckout&','184.61.202.44'),(2902,'2011-05-24 21:31:04',2,'modules.php','set=payment&module=googlecheckout&action=edit&','184.61.202.44'),(2903,'2011-05-24 21:31:17',2,'modules.php','set=payment&module=googlecheckout&','184.61.202.44'),(2904,'2011-05-24 21:31:20',2,'modules.php','set=payment&module=googlecheckout&action=remove&','184.61.202.44'),(2905,'2011-05-24 21:31:20',2,'modules.php','set=payment&module=googlecheckout&','184.61.202.44'),(2906,'2011-05-24 21:31:30',2,'modules.php','set=payment&module=googlecheckout&','184.61.202.44'),(2907,'2011-05-24 21:32:50',2,'modules.php','set=payment&module=paypalwpp&','184.61.202.44'),(2908,'2011-05-24 21:33:08',2,'modules.php','set=payment&module=paypalwpp&action=edit&','184.61.202.44'),(2909,'2011-05-24 21:33:44',2,'modules.php','set=payment&module=paypalwpp&action=save&','184.61.202.44'),(2910,'2011-05-24 21:33:44',2,'modules.php','set=payment&module=paypalwpp&','184.61.202.44'),(2911,'2011-05-24 21:34:00',2,'modules.php','set=payment&module=paypalwpp&action=edit&','184.61.202.44'),(2912,'2011-05-24 21:35:03',2,'modules.php','set=payment&module=paypalwpp&action=save&','184.61.202.44'),(2913,'2011-05-24 21:35:04',2,'modules.php','set=payment&module=paypalwpp&','184.61.202.44'),(2914,'2011-05-24 21:38:15',2,'categories.php','','184.61.202.44'),(2915,'2011-05-24 21:38:18',2,'categories.php','cPath=28&','184.61.202.44'),(2916,'2011-05-24 21:38:24',2,'product.php','cPath=28&product_type=1&pID=165&action=new_product&','184.61.202.44'),(2917,'2011-05-24 21:38:49',2,'product.php','cPath=28&product_type=1&pID=165&action=new_product_preview&','184.61.202.44'),(2918,'2011-05-24 21:39:15',2,'product.php','cPath=28&product_type=1&pID=165&action=update_product&','184.61.202.44'),(2919,'2011-05-24 21:39:18',2,'product.php','cPath=28&product_type=1&pID=165&action=update_product&','184.61.202.44'),(2920,'2011-05-24 21:39:18',2,'categories.php','cPath=28&pID=165&','184.61.202.44'),(2921,'2011-05-24 22:19:01',2,'modules.php','set=payment&','184.61.202.44'),(2922,'2011-05-24 22:19:16',2,'modules.php','set=payment&','184.61.202.44'),(2923,'2011-05-24 22:19:27',2,'modules.php','set=payment&module=cc&','184.61.202.44'),(2924,'2011-05-24 22:19:46',2,'modules.php','set=payment&','184.61.202.44'),(2925,'2011-05-24 22:39:18',0,'login.php ','','184.61.202.44'),(2926,'2011-05-24 22:39:33',0,'login.php jbadmin','','184.61.202.44'),(2927,'2011-05-24 22:39:43',2,'modules.php','set=shipping&','184.61.202.44'),(2928,'2011-05-24 22:40:00',2,'modules.php','set=shipping&module=freeoptions&','184.61.202.44'),(2929,'2011-05-24 22:40:03',2,'modules.php','set=shipping&module=freeoptions&action=install&','184.61.202.44'),(2930,'2011-05-24 22:40:04',2,'modules.php','set=shipping&module=freeoptions&action=edit&','184.61.202.44'),(2931,'2011-05-24 22:40:26',2,'modules.php','set=shipping&module=freeoptions&','184.61.202.44'),(2932,'2011-05-24 22:40:30',2,'modules.php','set=shipping&module=freeshipper&','184.61.202.44'),(2933,'2011-05-24 22:40:34',2,'modules.php','set=shipping&module=freeshipper&action=install&','184.61.202.44'),(2934,'2011-05-24 22:40:35',2,'modules.php','set=shipping&module=freeshipper&action=edit&','184.61.202.44'),(2935,'2011-05-24 22:40:44',2,'modules.php','set=shipping&module=freeshipper&action=save&','184.61.202.44'),(2936,'2011-05-24 22:40:44',2,'modules.php','set=shipping&module=freeshipper&','184.61.202.44'),(2937,'2011-05-24 22:40:47',2,'modules.php','set=shipping&module=freeoptions&','184.61.202.44'),(2938,'2011-05-24 22:40:55',2,'modules.php','set=shipping&module=freeoptions&action=remove&','184.61.202.44'),(2939,'2011-05-24 22:40:55',2,'modules.php','set=shipping&module=freeoptions&','184.61.202.44'),(2940,'2011-05-24 22:43:30',2,'customers.php','','184.61.202.44'),(2941,'2011-05-24 22:43:52',2,'customers.php','page=1&cID=3&action=edit&','184.61.202.44'),(2942,'2011-05-24 22:49:15',2,'modules.php','set=shipping&','184.61.202.44'),(2943,'2011-05-24 22:49:27',2,'modules.php','set=shipping&module=freeoptions&','184.61.202.44'),(2944,'2011-05-24 22:49:31',2,'modules.php','set=shipping&module=freeoptions&action=install&','184.61.202.44'),(2945,'2011-05-24 22:49:32',2,'modules.php','set=shipping&module=freeoptions&action=edit&','184.61.202.44'),(2946,'2011-05-24 22:49:56',2,'modules.php','set=shipping&module=freeoptions&','184.61.202.44'),(2947,'2011-05-24 22:49:59',2,'modules.php','set=shipping&module=freeoptions&action=remove&','184.61.202.44'),(2948,'2011-05-24 22:50:00',2,'modules.php','set=shipping&module=freeoptions&','184.61.202.44'),(2949,'2011-05-24 22:50:06',2,'attributes_controller.php','','184.61.202.44'),(2950,'2011-05-24 22:50:19',2,'categories.php','','184.61.202.44'),(2951,'2011-05-24 22:50:22',2,'categories.php','cPath=28&','184.61.202.44'),(2952,'2011-05-24 22:50:31',2,'product.php','cPath=28&product_type=1&pID=165&action=new_product&','184.61.202.44'),(2953,'2011-05-24 22:51:44',2,'product.php','cPath=28&product_type=1&pID=165&action=new_product_preview&','184.61.202.44'),(2954,'2011-05-24 22:51:54',2,'product.php','cPath=28&product_type=1&pID=165&action=update_product&','184.61.202.44'),(2955,'2011-05-24 22:51:55',2,'categories.php','cPath=28&pID=165&','184.61.202.44'),(2956,'2011-05-24 22:52:03',2,'categories.php','set_display_categories_dropdown=1&cID=&cPath=28&','184.61.202.44'),(2957,'2011-05-25 22:06:14',0,'login.php ','','184.61.202.44'),(2958,'2011-05-25 22:06:28',0,'login.php jbadmin','','184.61.202.44'),(2959,'2011-05-25 22:09:24',2,'attributes_controller.php','','184.61.202.44'),(2960,'2011-05-25 22:09:29',2,'options_name_manager.php','','184.61.202.44'),(2961,'2011-05-25 22:09:33',2,'options_name_manager.php','action=update_option&option_id=7&option_order_by=products_options_id&option_page=1&','184.61.202.44'),(2962,'2011-05-25 22:10:02',2,'options_name_manager.php','option_page=1&option_order_by=products_options_id&','184.61.202.44'),(2963,'2011-05-25 22:10:04',2,'attributes_controller.php','','184.61.202.44'),(2964,'2011-05-25 22:10:17',2,'attributes_controller.php','securityToken=6ee2c4ad1c83502037d5619b7f08afab&current_category_id=28&products_filter=&action=new_cat&','184.61.202.44'),(2965,'2011-05-25 22:10:18',2,'attributes_controller.php','products_filter=165&current_category_id=28&','184.61.202.44'),(2966,'2011-05-25 22:13:42',2,'attributes_controller.php','action=add_product_attributes&attribute_page=1&products_filter=165&','184.61.202.44'),(2967,'2011-05-25 22:13:42',2,'attributes_controller.php','attribute_page=1&products_filter=165&current_category_id=28&','184.61.202.44'),(2968,'2011-05-25 22:15:24',2,'attributes_controller.php','action=add_product_attributes&attribute_page=1&products_filter=165&','184.61.202.44'),(2969,'2011-05-25 22:15:24',2,'attributes_controller.php','attribute_page=1&products_filter=165&current_category_id=28&','184.61.202.44'),(2970,'2011-05-25 22:16:12',2,'attributes_controller.php','','184.61.202.44'),(2971,'2011-05-25 22:16:49',2,'categories.php','','184.61.202.44'),(2972,'2011-05-25 22:16:59',2,'categories.php','cPath=28&','184.61.202.44'),(2973,'2011-05-25 22:17:05',2,'product.php','cPath=28&product_type=1&pID=165&action=new_product&','184.61.202.44'),(2974,'2011-05-25 22:18:03',2,'product.php','cPath=28&product_type=1&pID=165&action=new_product_preview&','184.61.202.44'),(2975,'2011-05-25 22:18:08',2,'product.php','cPath=28&product_type=1&pID=165&action=update_product&','184.61.202.44'),(2976,'2011-05-25 22:18:08',2,'categories.php','cPath=28&pID=165&','184.61.202.44'),(2977,'2011-05-25 22:18:17',2,'product.php','cPath=28&product_type=1&pID=165&action=new_product&','184.61.202.44'),(2978,'2011-05-25 22:18:22',2,'product.php','cPath=28&product_type=1&pID=165&action=new_product_preview&','184.61.202.44'),(2979,'2011-05-25 22:18:43',2,'modules.php','set=shipping&','184.61.202.44'),(2980,'2011-05-25 22:25:17',2,'product_types.php','','184.61.202.44'),(2981,'2011-05-25 22:25:29',2,'product_types.php','page=1&ptID=4&','184.61.202.44'),(2982,'2011-05-25 22:25:47',2,'product_types.php','page=1&ptID=1&','184.61.202.44'),(2983,'2011-05-25 22:25:52',2,'product_types.php','page=1&ptID=1&action=edit&','184.61.202.44'),(2984,'2011-05-25 22:26:07',2,'product_types.php','ptID=3&','184.61.202.44'),(2985,'2011-05-25 22:26:11',2,'product_types.php','page=1&ptID=3&action=edit&','184.61.202.44'),(2986,'2011-05-25 22:26:19',2,'product_types.php','page=1&ptID=3&','184.61.202.44'),(2987,'2011-05-25 22:26:25',2,'categories.php','','184.61.202.44'),(2988,'2011-05-25 22:26:31',2,'categories.php','cPath=&cID=28&action=edit_category&search=&','184.61.202.44'),(2989,'2011-05-25 22:26:53',2,'categories.php','action=update_category&cPath=&','184.61.202.44'),(2990,'2011-05-25 22:26:54',2,'categories.php','cPath=&cID=28&','184.61.202.44'),(2991,'2011-05-25 22:27:04',2,'categories.php','cPath=28&','184.61.202.44'),(2992,'2011-05-25 22:27:10',2,'product.php','cPath=28&product_type=1&pID=165&action=new_product&','184.61.202.44'),(2993,'2011-05-25 22:29:28',2,'product.php','cPath=28&product_type=1&pID=165&action=new_product_preview&','184.61.202.44'),(2994,'2011-05-25 22:29:36',2,'product.php','cPath=28&product_type=1&pID=165&action=update_product&','184.61.202.44'),(2995,'2011-05-25 22:29:36',2,'categories.php','cPath=28&pID=165&','184.61.202.44'),(2996,'2011-05-25 22:32:32',2,'categories.php','','184.61.202.44'),(2997,'2011-05-25 22:32:37',2,'categories.php','cPath=28&','184.61.202.44'),(2998,'2011-05-25 22:32:41',2,'product.php','cPath=28&product_type=1&pID=165&action=new_product&','184.61.202.44'),(2999,'2011-05-25 22:33:07',2,'product.php','cPath=28&product_type=1&pID=165&action=new_product_preview&','184.61.202.44'),(3000,'2011-05-25 22:33:16',2,'product.php','cPath=28&product_type=1&pID=165&action=update_product&','184.61.202.44'),(3001,'2011-05-25 22:33:16',2,'categories.php','cPath=28&pID=165&','184.61.202.44'),(3002,'2011-05-25 22:33:26',2,'downloads_manager.php','','184.61.202.44'),(3003,'2011-05-25 22:34:08',2,'attributes_controller.php','products_filter=165&','184.61.202.44'),(3004,'2011-05-25 22:34:23',2,'options_name_manager.php','','184.61.202.44'),(3005,'2011-05-25 22:34:33',2,'options_name_manager.php','action=update_option&option_id=7&option_order_by=products_options_id&option_page=1&','184.61.202.44'),(3006,'2011-05-25 22:34:48',2,'options_name_manager.php','action=update_option_name&option_page=1&option_order_by=products_options_id&','184.61.202.44'),(3007,'2011-05-25 22:34:48',2,'options_name_manager.php','option_page=1&option_order_by=products_options_id&','184.61.202.44'),(3008,'2011-05-25 22:34:54',2,'options_values_manager.php','','184.61.202.44'),(3009,'2011-05-25 22:35:12',2,'options_values_manager.php','action=update_option_value&value_id=29&value_page=1&','184.61.202.44'),(3010,'2011-05-25 22:35:28',2,'options_values_manager.php','action=update_value&value_page=1&','184.61.202.44'),(3011,'2011-05-25 22:35:29',2,'options_values_manager.php','value_page=1&','184.61.202.44'),(3012,'2011-05-25 22:36:19',2,'options_values_manager.php','action=copy_options_values_one_to_another&','184.61.202.44'),(3013,'2011-05-25 22:36:43',2,'options_values_manager.php','action=copy_options_values_one_to_another&','184.61.202.44'),(3014,'2011-05-25 22:38:39',2,'categories.php','','184.61.202.44'),(3015,'2011-05-25 22:38:47',2,'attributes_controller.php','','184.61.202.44'),(3016,'2011-05-25 22:38:52',2,'downloads_manager.php','','184.61.202.44'),(3017,'2011-05-25 22:38:58',2,'downloads_manager.php','page=1&padID=56&action=edit&','184.61.202.44'),(3018,'2011-05-25 22:39:04',2,'downloads_manager.php','padID=56&page=1&','184.61.202.44'),(3019,'2011-05-25 22:39:06',2,'attributes_controller.php','products_filter=165&','184.61.202.44'),(3020,'2011-05-25 22:39:55',2,'attributes_controller.php','action=add_product_attributes&attribute_page=1&products_filter=165&','184.61.202.44'),(3021,'2011-05-25 22:39:55',2,'attributes_controller.php','attribute_page=1&products_filter=165&current_category_id=28&','184.61.202.44'),(3022,'2011-05-25 22:40:06',2,'options_name_manager.php','','184.61.202.44'),(3023,'2011-05-25 22:40:41',2,'options_name_manager.php','action=update_options_values&update_to=1&update_action=0&option_order_by=products_options_id&','184.61.202.44'),(3024,'2011-05-25 22:40:41',2,'options_name_manager.php','option_order_by=products_options_id&','184.61.202.44'),(3025,'2011-05-25 22:40:49',2,'downloads_manager.php','','184.61.202.44'),(3026,'2011-05-25 22:41:15',2,'options_name_manager.php','','184.61.202.44'),(3027,'2011-05-25 22:41:48',2,'options_name_manager.php','action=update_options_values&update_to=2&update_action=0&option_order_by=products_options_id&','184.61.202.44'),(3028,'2011-05-25 22:41:48',2,'options_name_manager.php','option_order_by=products_options_id&','184.61.202.44'),(3029,'2011-05-25 22:41:56',2,'downloads_manager.php','','184.61.202.44'),(3030,'2011-05-25 22:44:44',2,'attributes_controller.php','','184.61.202.44'),(3031,'2011-05-25 22:44:52',2,'attributes_controller.php','securityToken=6ee2c4ad1c83502037d5619b7f08afab&current_category_id=28&products_filter=&action=new_cat&','184.61.202.44'),(3032,'2011-05-25 22:44:52',2,'attributes_controller.php','products_filter=165&current_category_id=28&','184.61.202.44'),(3033,'2011-05-25 22:44:59',2,'attributes_controller.php','action=set_products_filter&','184.61.202.44'),(3034,'2011-05-25 22:44:59',2,'attributes_controller.php','products_filter=165&current_category_id=28&','184.61.202.44'),(3035,'2011-05-25 22:47:11',2,'categories.php','','184.61.202.44'),(3036,'2011-05-25 22:47:14',2,'categories.php','cPath=28&','184.61.202.44'),(3037,'2011-05-25 22:47:22',2,'categories.php','cID=28&','184.61.202.44'),(3038,'2011-05-25 22:47:25',2,'categories.php','cPath=&cID=28&action=edit_category&search=&','184.61.202.44'),(3039,'2011-05-25 22:47:44',2,'categories.php','','184.61.202.44'),(3040,'2011-05-25 22:47:47',2,'categories.php','cPath=28&','184.61.202.44'),(3041,'2011-05-25 22:47:51',2,'product.php','cPath=28&product_type=1&pID=165&action=new_product&','184.61.202.44'),(3042,'2011-05-25 23:41:05',2,'modules.php','set=payment&','184.61.202.44'),(3043,'2011-05-25 23:41:15',2,'modules.php','set=payment&module=paypalwpp&','184.61.202.44'),(3044,'2011-05-25 23:41:20',2,'modules.php','set=payment&module=paypalwpp&action=edit&','184.61.202.44'),(3045,'2011-06-02 22:05:55',0,'login.php ','','97.30.171.94'),(3046,'2011-06-02 22:06:15',0,'login.php surpro','','97.30.171.94'),(3047,'2011-06-02 22:06:36',0,'login.php surpro','','97.30.171.94'),(3048,'2011-06-02 22:06:54',0,'login.php surpro','','97.30.171.94'),(3049,'2011-06-05 17:56:33',0,'login.php ','','184.61.202.44'),(3050,'2011-06-05 17:56:45',0,'login.php surpro','','184.61.202.44'),(3051,'2011-06-05 17:57:04',0,'login.php surpro','','184.61.202.44');
/*!40000 ALTER TABLE `zen_admin_activity_log` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_authorizenet`
--

DROP TABLE IF EXISTS `zen_authorizenet`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_authorizenet` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `customer_id` int(11) NOT NULL DEFAULT '0',
  `order_id` int(11) NOT NULL DEFAULT '0',
  `response_code` int(1) NOT NULL DEFAULT '0',
  `response_text` varchar(255) NOT NULL DEFAULT '',
  `authorization_type` varchar(50) NOT NULL DEFAULT '',
  `transaction_id` bigint(20) DEFAULT NULL,
  `sent` longtext NOT NULL,
  `received` longtext NOT NULL,
  `time` varchar(50) NOT NULL DEFAULT '',
  `session_id` varchar(255) NOT NULL DEFAULT '',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_authorizenet`
--

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

--
-- Table structure for table `zen_banners`
--

DROP TABLE IF EXISTS `zen_banners`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_banners` (
  `banners_id` int(11) NOT NULL AUTO_INCREMENT,
  `banners_title` varchar(64) NOT NULL DEFAULT '',
  `banners_url` varchar(255) NOT NULL DEFAULT '',
  `banners_image` varchar(64) NOT NULL DEFAULT '',
  `banners_group` varchar(15) NOT NULL DEFAULT '',
  `banners_html_text` text,
  `expires_impressions` int(7) DEFAULT '0',
  `expires_date` datetime DEFAULT NULL,
  `date_scheduled` datetime DEFAULT NULL,
  `date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `date_status_change` datetime DEFAULT NULL,
  `status` int(1) NOT NULL DEFAULT '1',
  `banners_open_new_windows` int(1) NOT NULL DEFAULT '1',
  `banners_on_ssl` int(1) NOT NULL DEFAULT '1',
  `banners_sort_order` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`banners_id`),
  KEY `idx_status_group_zen` (`status`,`banners_group`),
  KEY `idx_expires_date_zen` (`expires_date`),
  KEY `idx_date_scheduled_zen` (`date_scheduled`)
) ENGINE=MyISAM AUTO_INCREMENT=10 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_banners`
--

LOCK TABLES `zen_banners` WRITE;
/*!40000 ALTER TABLE `zen_banners` DISABLE KEYS */;
INSERT INTO `zen_banners` VALUES (1,'Let\'s Have Chinese Tonight!','http://www.1chinesedelight.com','tonight.jpg','Wide-Banners','',0,NULL,NULL,'2004-01-11 20:59:12',NULL,1,1,1,0),(2,'Chinese Delight','http://www.1chinesedelight.com','coup160.jpg','SideBox-Banners','',0,NULL,NULL,'2004-01-11 20:59:12',NULL,1,1,1,2),(3,'Chinese Delight Coupons Food Deals','http://www.1chinesedelight.com','coup2160.jpg','SideBox-Banners','',0,NULL,NULL,'2004-01-11 20:59:12',NULL,1,1,1,0),(4,'Chinese Delight','http://www.1chinesedelight.com','tonight.jpg','Wide-Banners','',0,NULL,NULL,'2004-01-12 20:53:18',NULL,1,1,1,0),(5,'Chinese Delight','http://www.1chinesedelight.com','cookie.gif','BannersAll','',0,NULL,NULL,'2005-05-13 10:54:38',NULL,1,1,1,10),(6,'Chinese Delight','http://www.1chinesedelight.com','tonight.jpg','Wide-Banners','',0,NULL,NULL,'2006-03-13 11:02:43',NULL,1,1,1,0),(7,'chinese Delight','http://www.1chinesedelight.com','tonight.jpg','Wide-Banners','',0,NULL,NULL,'2007-02-10 00:00:00',NULL,1,1,1,1),(8,'Chinese Delight','http://www.1chinesedelight.com','coup160.jpg','SideBox-Banners','',0,NULL,NULL,'2007-02-10 00:00:00',NULL,1,1,1,1),(9,'Chinese Delight','http://www.1chinesedelight.com','togo.jpg','BannersAll','',0,NULL,NULL,'2007-02-10 00:00:00',NULL,1,1,1,5);
/*!40000 ALTER TABLE `zen_banners` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_banners_history`
--

DROP TABLE IF EXISTS `zen_banners_history`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_banners_history` (
  `banners_history_id` int(11) NOT NULL AUTO_INCREMENT,
  `banners_id` int(11) NOT NULL DEFAULT '0',
  `banners_shown` int(5) NOT NULL DEFAULT '0',
  `banners_clicked` int(5) NOT NULL DEFAULT '0',
  `banners_history_date` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  PRIMARY KEY (`banners_history_id`),
  KEY `idx_banners_id_zen` (`banners_id`)
) ENGINE=MyISAM AUTO_INCREMENT=331 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_banners_history`
--

LOCK TABLES `zen_banners_history` WRITE;
/*!40000 ALTER TABLE `zen_banners_history` DISABLE KEYS */;
INSERT INTO `zen_banners_history` VALUES (7,2,58,0,'2010-03-04 18:43:35'),(8,5,95,0,'2010-03-04 18:43:35'),(9,9,95,0,'2010-03-04 18:43:35'),(10,6,28,0,'2010-03-04 18:43:35'),(11,3,68,0,'2010-03-04 18:44:15'),(12,7,25,0,'2010-03-04 18:44:15'),(13,4,22,0,'2010-03-04 18:44:17'),(14,8,64,0,'2010-03-04 18:44:21'),(15,1,20,0,'2010-03-04 19:17:02'),(16,2,110,0,'2010-03-05 00:00:03'),(17,5,161,0,'2010-03-05 00:00:04'),(18,9,161,0,'2010-03-05 00:00:04'),(19,4,36,0,'2010-03-05 00:00:04'),(20,8,89,0,'2010-03-05 08:14:51'),(21,3,123,0,'2010-03-05 08:21:39'),(22,6,46,0,'2010-03-05 08:21:39'),(23,7,44,0,'2010-03-05 08:23:20'),(24,1,35,0,'2010-03-05 08:32:09'),(25,3,63,0,'2010-03-06 00:31:59'),(26,9,103,0,'2010-03-06 00:31:59'),(27,5,103,0,'2010-03-06 00:31:59'),(28,8,75,0,'2010-03-06 00:31:59'),(29,4,29,0,'2010-03-06 00:31:59'),(30,7,32,1,'2010-03-06 00:33:16'),(31,2,68,0,'2010-03-06 00:33:22'),(32,1,21,0,'2010-03-06 00:34:31'),(33,6,21,0,'2010-03-06 00:46:13'),(34,8,4,0,'2010-03-07 12:35:31'),(35,9,5,0,'2010-03-07 12:35:31'),(36,5,5,0,'2010-03-07 12:35:31'),(37,7,1,0,'2010-03-07 12:35:31'),(38,3,4,0,'2010-03-07 12:36:14'),(39,4,3,0,'2010-03-07 12:36:14'),(40,2,2,0,'2010-03-07 12:36:22'),(41,1,1,0,'2010-03-07 12:36:31'),(42,8,6,0,'2010-03-15 15:06:38'),(43,9,11,0,'2010-03-15 15:06:38'),(44,5,11,0,'2010-03-15 15:06:38'),(45,2,8,0,'2010-03-15 15:06:38'),(46,4,4,0,'2010-03-15 15:06:38'),(47,3,8,0,'2010-03-15 15:06:44'),(48,7,3,0,'2010-03-15 15:06:44'),(49,6,3,0,'2010-03-15 15:06:50'),(50,1,1,0,'2010-03-15 15:07:15'),(51,8,2,0,'2010-03-21 16:22:44'),(52,9,6,0,'2010-03-21 16:22:44'),(53,5,6,0,'2010-03-21 16:22:44'),(54,2,6,0,'2010-03-21 16:22:44'),(55,1,5,0,'2010-03-21 16:22:44'),(56,3,4,0,'2010-03-21 16:23:38'),(57,6,1,0,'2010-03-21 16:24:41'),(58,3,3,0,'2010-03-23 20:27:48'),(59,9,7,0,'2010-03-23 20:27:48'),(60,5,7,0,'2010-03-23 20:27:48'),(61,2,2,0,'2010-03-23 20:27:48'),(62,4,2,0,'2010-03-23 20:27:49'),(63,8,9,0,'2010-03-23 20:28:07'),(64,6,2,0,'2010-03-23 21:12:28'),(65,1,3,0,'2010-03-23 21:13:05'),(66,2,17,0,'2010-03-24 20:03:43'),(67,9,18,0,'2010-03-24 20:03:44'),(68,5,18,0,'2010-03-24 20:03:44'),(69,3,9,0,'2010-03-24 20:03:44'),(70,1,4,0,'2010-03-24 20:03:44'),(71,8,10,0,'2010-03-24 20:04:00'),(72,7,5,0,'2010-03-24 20:04:48'),(73,6,6,0,'2010-03-24 21:46:20'),(74,4,3,0,'2010-03-24 21:46:36'),(75,8,86,0,'2010-03-25 07:23:55'),(76,9,157,0,'2010-03-25 07:23:55'),(77,5,157,0,'2010-03-25 07:23:55'),(78,3,116,1,'2010-03-25 07:23:55'),(79,7,38,0,'2010-03-25 07:23:55'),(80,2,112,0,'2010-03-25 07:47:01'),(81,1,36,0,'2010-03-25 07:47:01'),(82,4,33,0,'2010-03-25 07:47:21'),(83,6,50,0,'2010-03-25 07:55:29'),(84,2,43,0,'2010-03-26 18:37:12'),(85,9,73,0,'2010-03-26 18:37:12'),(86,5,73,0,'2010-03-26 18:37:12'),(87,6,16,0,'2010-03-26 18:37:12'),(88,8,60,0,'2010-03-26 18:39:56'),(89,7,22,0,'2010-03-26 18:39:56'),(90,1,18,0,'2010-03-26 18:39:59'),(91,3,43,0,'2010-03-26 18:45:24'),(92,4,17,0,'2010-03-26 19:06:42'),(93,2,7,0,'2010-03-27 17:49:57'),(94,9,14,0,'2010-03-27 17:49:57'),(95,5,14,0,'2010-03-27 17:49:57'),(96,3,14,0,'2010-03-27 17:49:57'),(97,1,5,0,'2010-03-27 17:49:57'),(98,4,3,0,'2010-03-27 17:50:00'),(99,8,7,0,'2010-03-27 17:50:02'),(100,6,4,0,'2010-03-27 17:50:02'),(101,7,2,0,'2010-03-27 17:51:59'),(102,3,22,0,'2010-03-28 18:45:01'),(103,9,29,0,'2010-03-28 18:45:01'),(104,5,29,0,'2010-03-28 18:45:01'),(105,2,16,0,'2010-03-28 18:45:01'),(106,1,10,0,'2010-03-28 18:45:01'),(107,7,8,0,'2010-03-28 18:45:31'),(108,8,20,0,'2010-03-28 18:58:53'),(109,4,5,0,'2010-03-28 18:58:53'),(110,6,6,0,'2010-03-28 19:44:17'),(111,8,27,0,'2010-03-29 00:04:48'),(112,9,38,0,'2010-03-29 00:04:48'),(113,5,38,0,'2010-03-29 00:04:48'),(114,1,5,0,'2010-03-29 00:04:48'),(115,3,24,0,'2010-03-29 00:05:42'),(116,2,25,0,'2010-03-29 00:05:42'),(117,4,12,0,'2010-03-29 00:05:42'),(118,6,5,0,'2010-03-29 00:08:00'),(119,7,16,0,'2010-03-29 12:43:08'),(120,8,15,0,'2010-03-31 19:14:21'),(121,9,23,0,'2010-03-31 19:14:21'),(122,5,23,0,'2010-03-31 19:14:21'),(123,3,15,0,'2010-03-31 19:14:21'),(124,7,6,0,'2010-03-31 19:14:21'),(125,2,16,0,'2010-03-31 19:14:47'),(126,6,9,0,'2010-03-31 19:14:47'),(127,1,6,0,'2010-03-31 19:15:29'),(128,4,2,0,'2010-03-31 19:15:48'),(129,3,61,0,'2010-04-02 05:00:23'),(130,9,95,0,'2010-04-02 05:00:23'),(131,5,95,0,'2010-04-02 05:00:23'),(132,1,22,0,'2010-04-02 05:00:23'),(133,2,65,0,'2010-04-02 05:00:31'),(134,8,64,0,'2010-04-02 05:00:31'),(135,7,18,0,'2010-04-02 05:00:31'),(136,4,29,0,'2010-04-02 05:46:37'),(137,6,26,0,'2010-04-02 05:47:15'),(138,3,59,0,'2010-04-03 06:59:39'),(139,9,51,0,'2010-04-03 06:59:39'),(140,5,51,0,'2010-04-03 06:59:39'),(141,7,27,0,'2010-04-03 06:59:39'),(142,2,56,0,'2010-04-03 07:00:20'),(143,8,47,0,'2010-04-03 07:00:20'),(144,1,26,0,'2010-04-03 07:00:20'),(145,6,31,0,'2010-04-03 07:01:21'),(146,4,26,0,'2010-04-03 07:09:15'),(147,8,1,0,'2010-04-20 14:27:43'),(148,4,1,0,'2010-04-20 14:27:43'),(149,2,5,0,'2010-04-30 13:47:49'),(150,6,2,0,'2010-04-30 13:47:49'),(151,1,6,0,'2010-04-30 13:53:03'),(152,3,4,0,'2010-04-30 13:53:06'),(153,7,2,0,'2010-04-30 13:53:07'),(154,8,4,0,'2010-04-30 13:53:14'),(155,4,3,0,'2010-04-30 14:09:44'),(156,8,4,0,'2010-05-01 18:40:03'),(157,7,3,0,'2010-05-01 18:40:03'),(158,2,7,0,'2010-05-01 18:40:27'),(159,6,6,0,'2010-05-01 18:40:28'),(160,4,3,0,'2010-05-01 18:40:43'),(161,1,3,0,'2010-05-01 18:40:50'),(162,3,4,0,'2010-05-01 18:41:31'),(163,2,30,0,'2010-05-02 13:17:38'),(164,7,25,0,'2010-05-02 13:17:38'),(165,6,27,0,'2010-05-02 13:17:38'),(166,3,35,0,'2010-05-02 13:17:38'),(167,8,28,0,'2010-05-02 13:18:24'),(168,4,22,0,'2010-05-02 13:20:23'),(169,1,15,0,'2010-05-02 13:20:47'),(170,2,7,0,'2010-05-03 10:37:36'),(171,4,4,0,'2010-05-03 10:37:36'),(172,3,8,0,'2010-05-03 10:38:09'),(173,1,7,0,'2010-05-03 10:38:09'),(174,6,2,0,'2010-05-03 10:51:57'),(175,8,6,0,'2010-05-03 18:32:45'),(176,7,8,0,'2010-05-03 18:34:11'),(177,8,1,0,'2010-05-06 13:45:47'),(178,1,1,0,'2010-05-06 13:45:47'),(179,2,1,0,'2010-05-07 15:31:05'),(180,1,1,0,'2010-05-07 15:31:05'),(181,8,1,0,'2010-05-07 15:31:11'),(182,4,1,0,'2010-05-07 15:31:11'),(183,8,5,0,'2010-05-21 12:26:56'),(184,4,3,0,'2010-05-21 12:26:56'),(185,3,3,0,'2010-05-21 12:27:13'),(186,7,3,0,'2010-05-21 12:27:13'),(187,2,5,0,'2010-05-21 12:27:43'),(188,1,3,0,'2010-05-21 12:27:45'),(189,6,4,0,'2010-05-21 14:13:05'),(190,3,1,0,'2010-05-26 19:44:26'),(191,4,4,0,'2010-05-26 19:44:26'),(192,8,2,0,'2010-05-26 19:44:53'),(193,1,1,0,'2010-05-26 19:44:53'),(194,2,3,0,'2010-05-26 20:57:42'),(195,7,1,0,'2010-05-26 20:57:42'),(196,8,1,0,'2010-06-04 19:53:55'),(197,1,1,0,'2010-06-04 19:53:55'),(198,3,8,0,'2010-06-06 12:06:49'),(199,6,3,0,'2010-06-06 12:06:49'),(200,7,6,0,'2010-06-06 12:07:03'),(201,8,2,0,'2010-06-06 12:23:25'),(202,1,3,0,'2010-06-06 12:23:25'),(203,2,3,0,'2010-06-06 12:23:41'),(204,4,1,0,'2010-06-06 12:24:40'),(205,3,1,0,'2010-06-21 21:56:15'),(206,6,1,0,'2010-06-21 21:56:15'),(207,8,2,0,'2010-08-22 13:26:14'),(208,4,3,0,'2010-08-22 13:26:14'),(209,2,1,0,'2010-08-22 13:26:38'),(210,7,2,0,'2010-08-22 13:26:38'),(211,3,4,0,'2010-08-22 13:27:00'),(212,1,1,0,'2010-08-22 13:27:00'),(213,6,1,0,'2010-08-22 13:27:24'),(214,2,4,0,'2010-09-13 13:11:18'),(215,4,3,0,'2010-09-13 13:11:18'),(216,1,5,0,'2010-09-13 13:11:43'),(217,3,3,0,'2010-09-13 13:12:51'),(218,8,3,0,'2010-09-13 13:12:58'),(219,7,2,0,'2010-09-13 13:13:07'),(220,8,4,0,'2010-09-22 09:15:00'),(221,7,3,0,'2010-09-22 09:15:00'),(222,6,1,0,'2010-09-22 09:15:16'),(223,3,4,0,'2010-09-22 09:15:22'),(224,1,4,0,'2010-09-22 09:15:22'),(225,4,1,0,'2010-09-22 12:08:16'),(226,2,1,0,'2010-09-22 12:09:00'),(227,3,11,0,'2010-10-26 09:40:43'),(228,1,5,0,'2010-10-26 09:40:43'),(229,8,7,0,'2010-10-26 09:41:02'),(230,6,4,0,'2010-10-26 09:41:02'),(231,7,10,0,'2010-10-26 09:41:08'),(232,2,6,0,'2010-10-26 09:41:15'),(233,4,5,0,'2010-10-26 09:41:37'),(234,8,4,0,'2010-10-27 20:51:01'),(235,7,3,0,'2010-10-27 20:51:01'),(236,6,4,0,'2010-10-27 20:52:11'),(237,3,2,0,'2010-10-27 20:53:21'),(238,2,2,0,'2010-10-27 20:54:00'),(239,1,1,0,'2010-10-27 20:54:00'),(240,2,4,0,'2011-01-07 12:53:51'),(241,1,5,0,'2011-01-07 12:53:51'),(242,3,3,0,'2011-01-07 12:54:06'),(243,4,3,0,'2011-01-07 12:54:06'),(244,8,2,0,'2011-01-07 12:55:40'),(245,6,1,0,'2011-01-07 12:55:55'),(246,8,34,0,'2011-01-08 09:05:47'),(247,4,31,0,'2011-01-08 09:05:47'),(248,6,28,1,'2011-01-08 09:26:37'),(249,3,38,0,'2011-01-08 09:27:10'),(250,2,35,0,'2011-01-08 09:37:21'),(251,1,23,0,'2011-01-08 09:37:21'),(252,7,25,0,'2011-01-08 09:37:31'),(253,3,2,0,'2011-01-15 09:06:59'),(254,1,2,0,'2011-01-15 09:06:59'),(255,2,2,0,'2011-01-15 09:07:28'),(256,4,2,0,'2011-01-15 09:07:28'),(257,6,1,0,'2011-01-15 09:07:51'),(258,8,1,0,'2011-01-15 09:08:28'),(259,8,5,0,'2011-01-19 22:33:55'),(260,7,3,0,'2011-01-19 22:33:55'),(261,2,3,0,'2011-01-19 22:34:04'),(262,1,4,0,'2011-01-19 22:34:04'),(263,3,2,0,'2011-01-19 22:34:33'),(264,4,3,0,'2011-01-19 22:34:34'),(265,2,4,0,'2011-02-19 18:39:14'),(266,4,2,0,'2011-02-19 18:39:14'),(267,3,7,0,'2011-02-19 18:39:48'),(268,7,5,1,'2011-02-19 18:39:48'),(269,8,4,0,'2011-02-19 18:39:50'),(270,6,5,0,'2011-02-19 18:40:16'),(271,1,3,0,'2011-02-19 18:41:01'),(272,2,4,0,'2011-02-20 16:03:20'),(273,4,3,0,'2011-02-20 16:03:20'),(274,6,2,0,'2011-02-20 16:03:25'),(275,8,1,0,'2011-02-20 16:03:32'),(276,8,1,0,'2011-04-05 18:04:48'),(277,7,1,0,'2011-04-05 18:04:48'),(278,8,14,0,'2011-05-24 07:45:49'),(279,4,10,0,'2011-05-24 07:45:49'),(280,2,17,0,'2011-05-24 07:46:01'),(281,1,15,0,'2011-05-24 07:46:03'),(282,3,21,0,'2011-05-24 07:46:32'),(283,7,13,0,'2011-05-24 07:47:04'),(284,6,14,0,'2011-05-24 07:47:51'),(285,3,4,0,'2011-05-25 22:16:27'),(286,4,2,0,'2011-05-25 22:16:27'),(287,8,5,0,'2011-05-25 22:16:29'),(288,1,5,0,'2011-05-25 22:16:35'),(289,2,4,0,'2011-05-25 22:19:04'),(290,6,5,0,'2011-05-25 22:29:47'),(291,7,1,0,'2011-05-25 22:56:20'),(292,2,6,0,'2011-07-05 14:22:40'),(293,7,5,0,'2011-07-05 14:22:40'),(294,1,5,0,'2011-07-05 14:23:03'),(295,3,7,0,'2011-07-05 14:23:15'),(296,8,6,0,'2011-07-05 14:23:43'),(297,4,4,0,'2011-07-05 14:23:43'),(298,6,5,0,'2011-07-05 14:24:18'),(299,8,27,0,'2011-07-06 14:30:43'),(300,6,23,0,'2011-07-06 14:30:43'),(301,2,26,0,'2011-07-06 14:31:45'),(302,7,14,0,'2011-07-06 14:32:35'),(303,1,11,0,'2011-07-06 14:32:50'),(304,4,19,0,'2011-07-06 14:48:45'),(305,3,14,0,'2011-07-06 17:31:23'),(306,8,28,1,'2011-07-07 19:20:34'),(307,4,19,0,'2011-07-07 19:20:34'),(308,3,22,0,'2011-07-07 19:20:54'),(309,1,23,0,'2011-07-07 19:20:54'),(310,2,20,0,'2011-07-07 19:22:20'),(311,6,14,0,'2011-07-07 19:22:20'),(312,7,13,0,'2011-07-07 19:31:16'),(313,3,4,0,'2011-07-11 13:29:52'),(314,6,2,0,'2011-07-11 13:29:52'),(315,8,4,0,'2011-07-11 13:29:57'),(316,4,3,0,'2011-07-11 13:29:57'),(317,1,2,0,'2011-07-11 13:30:54'),(318,7,1,0,'2011-07-11 13:31:14'),(319,3,1,0,'2011-07-12 12:42:05'),(320,1,1,0,'2011-07-12 12:42:06'),(321,8,2,0,'2011-08-08 09:31:54'),(322,4,1,0,'2011-08-08 09:31:56'),(323,7,1,0,'2011-08-08 09:33:32'),(324,2,4,0,'2011-11-01 18:38:51'),(325,1,3,0,'2011-11-01 18:38:51'),(326,3,5,0,'2011-11-01 18:42:43'),(327,6,4,0,'2011-11-01 18:42:43'),(328,4,1,0,'2011-11-01 18:43:45'),(329,8,1,0,'2011-11-01 18:44:24'),(330,7,2,0,'2011-11-01 18:44:24');
/*!40000 ALTER TABLE `zen_banners_history` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_categories`
--

DROP TABLE IF EXISTS `zen_categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_categories` (
  `categories_id` int(11) NOT NULL AUTO_INCREMENT,
  `categories_image` varchar(64) DEFAULT NULL,
  `parent_id` int(11) NOT NULL DEFAULT '0',
  `sort_order` int(3) DEFAULT NULL,
  `date_added` datetime DEFAULT NULL,
  `last_modified` datetime DEFAULT NULL,
  `categories_status` tinyint(1) NOT NULL DEFAULT '1',
  PRIMARY KEY (`categories_id`),
  KEY `idx_parent_id_cat_id_zen` (`parent_id`,`categories_id`),
  KEY `idx_status_zen` (`categories_status`),
  KEY `idx_sort_order_zen` (`sort_order`)
) ENGINE=MyISAM AUTO_INCREMENT=29 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_categories`
--

LOCK TABLES `zen_categories` WRITE;
/*!40000 ALTER TABLE `zen_categories` DISABLE KEYS */;
INSERT INTO `zen_categories` VALUES (1,NULL,0,0,'2010-03-04 21:25:06','2010-03-25 08:56:04',1),(2,NULL,0,2,'2010-03-04 21:26:00','2010-03-28 23:23:45',1),(4,'categories/salad.jpg',1,0,'2010-03-04 21:29:08',NULL,1),(5,'categories/soup.jpg',1,1,'2010-03-04 21:29:38','2010-03-25 09:29:12',1),(6,'categories/seafood.jpg',1,3,'2010-03-04 21:30:03','2010-03-25 09:30:06',1),(7,NULL,1,2,'2010-03-24 20:09:01','2010-03-25 09:29:54',1),(8,NULL,1,4,'2010-03-25 05:42:09','2010-03-25 09:30:48',1),(9,NULL,1,5,'2010-03-25 06:00:50','2010-03-25 09:32:05',1),(10,NULL,1,6,'2010-03-25 06:15:08','2010-03-25 09:32:18',1),(11,NULL,1,7,'2010-03-25 06:21:03','2010-03-25 06:21:14',1),(12,NULL,1,8,'2010-03-25 06:25:23',NULL,1),(13,NULL,1,9,'2010-03-25 06:29:43','2010-03-25 06:30:23',1),(14,NULL,1,10,'2010-03-25 06:34:47',NULL,1),(15,NULL,1,11,'2010-03-25 06:39:06','2010-03-25 06:48:45',1),(17,NULL,1,12,'2010-03-25 06:46:52','2010-03-25 06:52:20',1),(18,NULL,0,1,'2010-03-28 18:26:50',NULL,1),(19,NULL,2,0,'2010-03-28 23:25:13','2010-03-29 14:04:42',1),(20,NULL,2,1,'2010-03-28 23:25:50',NULL,1),(21,NULL,2,2,'2010-03-28 23:26:11',NULL,1),(22,NULL,2,4,'2010-03-28 23:26:55',NULL,1),(23,NULL,2,5,'2010-03-28 23:27:26',NULL,1),(24,NULL,2,6,'2010-03-28 23:28:31','2010-03-29 12:54:34',1),(25,NULL,2,7,'2010-03-28 23:29:21','2010-03-28 23:32:12',1),(26,NULL,2,8,'2010-03-28 23:32:48','2010-03-28 23:33:08',1),(27,NULL,2,9,'2010-03-28 23:33:58',NULL,1),(28,NULL,0,0,'2011-05-24 20:58:46','2011-05-25 22:26:53',1);
/*!40000 ALTER TABLE `zen_categories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_categories_description`
--

DROP TABLE IF EXISTS `zen_categories_description`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_categories_description` (
  `categories_id` int(11) NOT NULL DEFAULT '0',
  `language_id` int(11) NOT NULL DEFAULT '1',
  `categories_name` varchar(32) NOT NULL DEFAULT '',
  `categories_description` text NOT NULL,
  PRIMARY KEY (`categories_id`,`language_id`),
  KEY `idx_categories_name_zen` (`categories_name`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_categories_description`
--

LOCK TABLES `zen_categories_description` WRITE;
/*!40000 ALTER TABLE `zen_categories_description` DISABLE KEYS */;
INSERT INTO `zen_categories_description` VALUES (1,1,'MENU',''),(2,1,'LUNCHEON SPECIALS','<div align=\"center\"><strong>Monday -  Saturday: 11:00    a.m. ~ 3:30 p.m.    Sunday:12:00 a.m. ~    3:30 p.m.</strong> <br />\r\n  <strong>Served    with Soup</strong> (EGG DROP, HOT    &amp; SOUR OR WON TON)<br />\r\n  <strong>Appetizer</strong>  (EGG ROLL OR CRABMEAT CHEESE)<br />\r\n  <strong>and Rice</strong> ( FRIED RICE OR WHITE RICE)\r\n</div>'),(18,1,'DELIGHTFUL FAMILY DINNERS',''),(4,1,'Appetizers & Salad',''),(5,1,'Soup','<strong>*   Represents Hot and Spicy - May be altered according to your taste.\r\n</br></br>  MOST ENTRIES CAN BE PREPARED IN THE VEGETARIAN MANNER</strong>'),(6,1,'Seafood','<strong>*   Represents Hot and Spicy - May be altered according to your taste.\r\n</br></br>  MOST ENTRIES CAN BE PREPARED IN THE VEGETARIAN MANNER</strong>'),(7,1,'House Specialties','<strong>*   Represents Hot and Spicy - May be altered according to your taste.\r\n</br></br>  MOST ENTRIES CAN BE PREPARED IN THE VEGETARIAN MANNER</strong>'),(8,1,'Poultry','<strong>*   Represents Hot and Spicy - May be altered according to your taste.\r\n</br></br>  MOST ENTRIES CAN BE PREPARED IN THE VEGETARIAN MANNER</strong>'),(9,1,'Beef','<strong>*   Represents Hot and Spicy - May be altered according to your taste.\r\n</br></br>  MOST ENTRIES CAN BE PREPARED IN THE VEGETARIAN MANNER</strong>'),(10,1,'Pork','<strong>*   Represents Hot and Spicy - May be altered according to your taste.\r\n</br></br>  MOST ENTRIES CAN BE PREPARED IN THE VEGETARIAN MANNER</strong>'),(11,1,'Vegetables',''),(12,1,'Special Diet Dish',''),(13,1,'Egg Foo Young','(2 Patties)'),(14,1,'Pan Fried Chow Mein','(Hong Kong Style Golden Noodle)'),(15,1,'Chop Suey & Chow Mein','(Chop Suey Served with Rice)\r\n</br>(Chow Mein Served with Cantonese Crispy Chow Mein)'),(17,1,'Fried Rice & Soft Noodle',''),(19,1,'Poultry','MOST OF ENTRÉES CAN BE PREPARED IN THE VEGETARIAN MANNER</br></br>* Represents Hot and Spicy -May be altered according to your taste.'),(20,1,'Beef',''),(21,1,'Pork',''),(22,1,'Seafood',''),(23,1,'Vegetables & Diet Dish',''),(24,1,'Fried Rice',''),(25,1,'Soft Noodle','(Stir fried soft noodle)'),(26,1,'Chop Suey','(Served with Rice)'),(27,1,'Chow Mein','(Served with Hard Noodle)'),(28,1,'TEST','');
/*!40000 ALTER TABLE `zen_categories_description` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_configuration`
--

DROP TABLE IF EXISTS `zen_configuration`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_configuration` (
  `configuration_id` int(11) NOT NULL AUTO_INCREMENT,
  `configuration_title` text NOT NULL,
  `configuration_key` varchar(255) NOT NULL DEFAULT '',
  `configuration_value` text NOT NULL,
  `configuration_description` text NOT NULL,
  `configuration_group_id` int(11) NOT NULL DEFAULT '0',
  `sort_order` int(5) DEFAULT NULL,
  `last_modified` datetime DEFAULT NULL,
  `date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `use_function` text,
  `set_function` text,
  PRIMARY KEY (`configuration_id`),
  UNIQUE KEY `unq_config_key_zen` (`configuration_key`),
  KEY `idx_key_value_zen` (`configuration_key`,`configuration_value`(10)),
  KEY `idx_cfg_grp_id_zen` (`configuration_group_id`)
) ENGINE=MyISAM AUTO_INCREMENT=635 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_configuration`
--

LOCK TABLES `zen_configuration` WRITE;
/*!40000 ALTER TABLE `zen_configuration` DISABLE KEYS */;
INSERT INTO `zen_configuration` VALUES (1,'Store Name','STORE_NAME','nsconstruct.com','The name of my store',1,1,NULL,'2010-03-04 18:39:23',NULL,NULL),(2,'Store Owner','STORE_OWNER','admin','The name of my store owner',1,2,NULL,'2010-03-04 18:39:23',NULL,NULL),(3,'Country','STORE_COUNTRY','223','The country my store is located in <br /><br /><strong>Note: Please remember to update the store zone.</strong>',1,6,NULL,'2010-03-04 18:39:23','zen_get_country_name','zen_cfg_pull_down_country_list('),(4,'Zone','STORE_ZONE','33','The zone my store is located in',1,7,'2010-04-02 06:59:13','2010-03-04 18:39:23','zen_cfg_get_zone_name','zen_cfg_pull_down_zone_list('),(5,'Expected Sort Order','EXPECTED_PRODUCTS_SORT','desc','This is the sort order used in the expected products box.',1,8,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'asc\', \'desc\'), '),(6,'Expected Sort Field','EXPECTED_PRODUCTS_FIELD','date_expected','The column to sort by in the expected products box.',1,9,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'products_name\', \'date_expected\'), '),(7,'Switch To Default Language Currency','USE_DEFAULT_LANGUAGE_CURRENCY','false','Automatically switch to the language\'s currency when it is changed',1,10,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(8,'Language Selector','LANGUAGE_DEFAULT_SELECTOR','Default','Should the default language be based on the Store preferences, or the customer\'s browser settings?<br /><br />Default: Store\'s default settings',1,11,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'Default\', \'Browser\'), '),(9,'Use Search-Engine Safe URLs (still in development)','SEARCH_ENGINE_FRIENDLY_URLS','false','Use search-engine safe urls for all site links',6,12,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(10,'Display Cart After Adding Product','DISPLAY_CART','true','Display the shopping cart after adding a product (or return back to their origin)',1,14,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(11,'Default Search Operator','ADVANCED_SEARCH_DEFAULT_OPERATOR','and','Default search operators',1,17,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'and\', \'or\'), '),(12,'Store Address and Phone','STORE_NAME_ADDRESS','Chinese Delight Restaurant\r\n 111 East Grand River Avenue\r\n Howell, MI  48843\r\n (517) 545-9988','This is the Store Name, Address and Phone used on printable documents and displayed online',1,18,'2010-05-02 19:13:19','2010-03-04 18:39:23',NULL,'zen_cfg_textarea('),(13,'Show Category Counts','SHOW_COUNTS','false','Count recursively how many products are in each category',1,19,'2010-03-05 12:00:57','2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(14,'Tax Decimal Places','TAX_DECIMAL_PLACES','0','Pad the tax value this amount of decimal places',1,20,NULL,'2010-03-04 18:39:23',NULL,NULL),(15,'Display Prices with Tax','DISPLAY_PRICE_WITH_TAX','false','Display prices with tax included (true) or add the tax at the end (false)',1,21,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(16,'Display Prices with Tax in Admin','DISPLAY_PRICE_WITH_TAX_ADMIN','false','Display prices with tax included (true) or add the tax at the end (false) in Admin(Invoices)',1,21,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(17,'Basis of Product Tax','STORE_PRODUCT_TAX_BASIS','Shipping','On what basis is Product Tax calculated. Options are<br />Shipping - Based on customers Shipping Address<br />Billing Based on customers Billing address<br />Store - Based on Store address if Billing/Shipping Zone equals Store zone',1,21,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'Shipping\', \'Billing\', \'Store\'), '),(18,'Basis of Shipping Tax','STORE_SHIPPING_TAX_BASIS','Shipping','On what basis is Shipping Tax calculated. Options are<br />Shipping - Based on customers Shipping Address<br />Billing Based on customers Billing address<br />Store - Based on Store address if Billing/Shipping Zone equals Store zone - Can be overriden by correctly written Shipping Module',1,21,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'Shipping\', \'Billing\', \'Store\'), '),(19,'Sales Tax Display Status','STORE_TAX_DISPLAY_STATUS','0','Always show Sales Tax even when amount is $0.00?<br />0= Off<br />1= On',1,21,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(20,'Admin Session Time Out in Seconds','SESSION_TIMEOUT_ADMIN','3600','Enter the time in seconds. Default=3600<br />Example: 3600= 1 hour<br /><br />Note: Too few seconds can result in timeout issues when adding/editing products',1,40,NULL,'2010-03-04 18:39:23',NULL,NULL),(21,'Admin Set max_execution_time for processes','GLOBAL_SET_TIME_LIMIT','60','Enter the time in seconds for how long the max_execution_time of processes should be. Default=60<br />Example: 60= 1 minute<br /><br />Note: Changing the time limit is only needed if you are having problems with the execution time of a process',1,42,NULL,'2010-03-04 18:39:23',NULL,NULL),(22,'Show if version update available','SHOW_VERSION_UPDATE_IN_HEADER','true','Automatically check to see if a new version of Zen Cart is available. Enabling this can sometimes slow down the loading of Admin pages. (Displayed on main Index page after login, and Server Info page.)',1,44,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(23,'Store Status','STORE_STATUS','0','What is your Store Status<br />0= Normal Store<br />1= Showcase no prices<br />2= Showcase with prices',1,25,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\'), '),(24,'Server Uptime','DISPLAY_SERVER_UPTIME','true','Displaying Server uptime can cause entries in error logs on some servers. (true = Display, false = don\'t display)',1,46,'2003-11-08 20:24:47','0001-01-01 00:00:00','','zen_cfg_select_option(array(\'true\', \'false\'),'),(25,'Missing Page Check','MISSING_PAGE_CHECK','Page Not Found','Zen Cart can check for missing pages in the URL and redirect to Index page. For debugging you may want to turn this off. <br /><br /><strong>Default=On</strong><br />On = Send missing pages to \'index\'<br />Off = Don\'t check for missing pages<br />Page Not Found = display the Page-Not-Found page',1,48,'2003-11-08 20:24:47','0001-01-01 00:00:00','','zen_cfg_select_option(array(\'On\', \'Off\', \'Page Not Found\'),'),(26,'cURL Proxy Status','CURL_PROXY_REQUIRED','False','Does your host require that you use a proxy for cURL communication?',1,50,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'True\', \'False\'), '),(27,'cURL Proxy Address','CURL_PROXY_SERVER_DETAILS','','If you have GoDaddy hosting or other hosting services that require use of a proxy to talk to external sites via cURL, enter their proxy address here.<br />format: address:port<br />ie: for GoDaddy, enter: <strong>proxy.shr.secureserver.net:3128</strong> or possibly 64.202.165.130:3128',1,51,NULL,'2010-03-04 18:39:23',NULL,NULL),(28,'HTML Editor','HTML_EDITOR_PREFERENCE','NONE','Please select the HTML/Rich-Text editor you wish to use for composing Admin-related emails, newsletters, and product descriptions',1,110,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_pull_down_htmleditors('),(29,'Enable phpBB linkage?','PHPBB_LINKS_ENABLED','','Should Zen Cart synchronize new account information to your (already-installed) phpBB forum?',1,120,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(30,'Show Category Counts - Admin','SHOW_COUNTS_ADMIN','true','Show Category Counts in Admin?',1,19,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(31,'Currency Conversion Ratio','CURRENCY_UPLIFT_RATIO','1.05','When auto-updating currencies, what \"uplift\" ratio should be used to calculate the exchange rate used by your store?<br />ie: the bank rate is obtained from the currency-exchange servers; how much extra do you want to charge in order to make up the difference between the bank rate and the consumer rate?<br /><br /><strong>Default: 1.05 </strong><br />This will cause the published bank rate to be multiplied by 1.05 to set the currency rates in your store.',1,55,NULL,'2010-03-04 18:39:23',NULL,NULL),(32,'First Name','ENTRY_FIRST_NAME_MIN_LENGTH','2','Minimum length of first name',2,1,NULL,'2010-03-04 18:39:23',NULL,NULL),(33,'Last Name','ENTRY_LAST_NAME_MIN_LENGTH','2','Minimum length of last name',2,2,NULL,'2010-03-04 18:39:23',NULL,NULL),(34,'Date of Birth','ENTRY_DOB_MIN_LENGTH','10','Minimum length of date of birth',2,3,NULL,'2010-03-04 18:39:23',NULL,NULL),(35,'E-Mail Address','ENTRY_EMAIL_ADDRESS_MIN_LENGTH','6','Minimum length of e-mail address',2,4,NULL,'2010-03-04 18:39:23',NULL,NULL),(36,'Street Address','ENTRY_STREET_ADDRESS_MIN_LENGTH','5','Minimum length of street address',2,5,NULL,'2010-03-04 18:39:23',NULL,NULL),(37,'Company','ENTRY_COMPANY_MIN_LENGTH','0','Minimum length of company name',2,6,NULL,'2010-03-04 18:39:23',NULL,NULL),(38,'Post Code','ENTRY_POSTCODE_MIN_LENGTH','4','Minimum length of post code',2,7,NULL,'2010-03-04 18:39:23',NULL,NULL),(39,'City','ENTRY_CITY_MIN_LENGTH','2','Minimum length of city',2,8,NULL,'2010-03-04 18:39:23',NULL,NULL),(40,'State','ENTRY_STATE_MIN_LENGTH','2','Minimum length of state',2,9,NULL,'2010-03-04 18:39:23',NULL,NULL),(41,'Telephone Number','ENTRY_TELEPHONE_MIN_LENGTH','3','Minimum length of telephone number',2,10,NULL,'2010-03-04 18:39:23',NULL,NULL),(42,'Password','ENTRY_PASSWORD_MIN_LENGTH','5','Minimum length of password',2,11,NULL,'2010-03-04 18:39:23',NULL,NULL),(43,'Credit Card Owner Name','CC_OWNER_MIN_LENGTH','3','Minimum length of credit card owner name',2,12,NULL,'2010-03-04 18:39:23',NULL,NULL),(44,'Credit Card Number','CC_NUMBER_MIN_LENGTH','10','Minimum length of credit card number',2,13,NULL,'2010-03-04 18:39:23',NULL,NULL),(45,'Credit Card CVV Number','CC_CVV_MIN_LENGTH','3','Minimum length of credit card CVV number',2,13,NULL,'2010-03-04 18:39:23',NULL,NULL),(46,'Product Review Text','REVIEW_TEXT_MIN_LENGTH','50','Minimum length of product review text',2,14,NULL,'2010-03-04 18:39:23',NULL,NULL),(47,'Best Sellers','MIN_DISPLAY_BESTSELLERS','1','Minimum number of best sellers to display',2,15,NULL,'2010-03-04 18:39:23',NULL,NULL),(48,'Also Purchased Products','MIN_DISPLAY_ALSO_PURCHASED','1','Minimum number of products to display in the \'This Customer Also Purchased\' box',2,16,NULL,'2010-03-04 18:39:23',NULL,NULL),(49,'Nick Name','ENTRY_NICK_MIN_LENGTH','3','Minimum length of Nick Name',2,1,NULL,'2010-03-04 18:39:23',NULL,NULL),(50,'Address Book Entries','MAX_ADDRESS_BOOK_ENTRIES','5','Maximum address book entries a customer is allowed to have',3,1,NULL,'2010-03-04 18:39:23',NULL,NULL),(51,'Search Results Per Page','MAX_DISPLAY_SEARCH_RESULTS','20','Number of products to list on a search result page',3,2,NULL,'2010-03-04 18:39:23',NULL,NULL),(52,'Prev/Next Navigation Page Links','MAX_DISPLAY_PAGE_LINKS','5','Number of \'number\' links use for page-sets',3,3,NULL,'2010-03-04 18:39:23',NULL,NULL),(53,'Products on Special ','MAX_DISPLAY_SPECIAL_PRODUCTS','9','Number of products on special to display',3,4,NULL,'2010-03-04 18:39:23',NULL,NULL),(54,'New Products Module','MAX_DISPLAY_NEW_PRODUCTS','9','Number of new products to display in a category',3,5,NULL,'2010-03-04 18:39:23',NULL,NULL),(55,'Upcoming Products ','MAX_DISPLAY_UPCOMING_PRODUCTS','10','Number of \'upcoming\' products to display',3,6,NULL,'2010-03-04 18:39:23',NULL,NULL),(56,'Manufacturers List - Scroll Box Size/Style','MAX_MANUFACTURERS_LIST','3','Number of manufacturers names to be displayed in the scroll box window. Setting this to 1 or 0 will display a dropdown list.',3,7,NULL,'2010-03-04 18:39:23',NULL,NULL),(57,'Manufacturers List - Verify Product Exist','PRODUCTS_MANUFACTURERS_STATUS','1','Verify that at least 1 product exists and is active for the manufacturer name to show<br /><br />Note: When this feature is ON it can produce slower results on sites with a large number of products and/or manufacturers<br />0= off 1= on',3,7,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(58,'Music Genre List - Scroll Box Size/Style','MAX_MUSIC_GENRES_LIST','3','Number of music genre names to be displayed in the scroll box window. Setting this to 1 or 0 will display a dropdown list.',3,7,NULL,'2010-03-04 18:39:23',NULL,NULL),(59,'Record Company List - Scroll Box Size/Style','MAX_RECORD_COMPANY_LIST','3','Number of record company names to be displayed in the scroll box window. Setting this to 1 or 0 will display a dropdown list.',3,7,NULL,'2010-03-04 18:39:23',NULL,NULL),(60,'Length of Record Company Name','MAX_DISPLAY_RECORD_COMPANY_NAME_LEN','15','Used in record companies box; maximum length of record company name to display. Longer names will be truncated.',3,8,NULL,'2010-03-04 18:39:23',NULL,NULL),(61,'Length of Music Genre Name','MAX_DISPLAY_MUSIC_GENRES_NAME_LEN','15','Used in music genres box; maximum length of music genre name to display. Longer names will be truncated.',3,8,NULL,'2010-03-04 18:39:23',NULL,NULL),(62,'Length of Manufacturers Name','MAX_DISPLAY_MANUFACTURER_NAME_LEN','15','Used in manufacturers box; maximum length of manufacturers name to display. Longer names will be truncated.',3,8,NULL,'2010-03-04 18:39:23',NULL,NULL),(63,'New Product Reviews Per Page','MAX_DISPLAY_NEW_REVIEWS','6','Number of new reviews to display on each page',3,9,NULL,'2010-03-04 18:39:23',NULL,NULL),(64,'Random Product Reviews for SideBox','MAX_RANDOM_SELECT_REVIEWS','1','Number of random product REVIEWS to rotate in the sidebox<br />Enter the number of products to display in this sidebox at one time.<br /><br />How many products do you want to display in this sidebox?',3,10,NULL,'2010-03-04 18:39:23',NULL,NULL),(65,'Random New Products for SideBox','MAX_RANDOM_SELECT_NEW','3','Number of random NEW products to rotate in the sidebox<br />Enter the number of products to display in this sidebox at one time.<br /><br />How many products do you want to display in this sidebox?',3,11,NULL,'2010-03-04 18:39:23',NULL,NULL),(66,'Random Products On Special for SideBox','MAX_RANDOM_SELECT_SPECIALS','2','Number of random products on SPECIAL to rotate in the sidebox<br />Enter the number of products to display in this sidebox at one time.<br /><br />How many products do you want to display in this sidebox?',3,12,NULL,'2010-03-04 18:39:23',NULL,NULL),(67,'Categories To List Per Row','MAX_DISPLAY_CATEGORIES_PER_ROW','3','How many categories to list per row',3,13,NULL,'2010-03-04 18:39:23',NULL,NULL),(68,'New Products Listing- Number Per Page','MAX_DISPLAY_PRODUCTS_NEW','10','Number of new products listed per page',3,14,NULL,'2010-03-04 18:39:23',NULL,NULL),(69,'Best Sellers For Box','MAX_DISPLAY_BESTSELLERS','10','Number of best sellers to display in box',3,15,NULL,'2010-03-04 18:39:23',NULL,NULL),(70,'Also Purchased Products','MAX_DISPLAY_ALSO_PURCHASED','6','Number of products to display in the \'This Customer Also Purchased\' box',3,16,NULL,'2010-03-04 18:39:23',NULL,NULL),(71,'Recent Purchases Box- NOTE: box is disabled ','MAX_DISPLAY_PRODUCTS_IN_ORDER_HISTORY_BOX','6','Number of products to display in the recent purchases box',3,17,NULL,'2010-03-04 18:39:23',NULL,NULL),(72,'Customer Order History List Per Page','MAX_DISPLAY_ORDER_HISTORY','10','Number of orders to display in the order history list in \'My Account\'',3,18,NULL,'2010-03-04 18:39:23',NULL,NULL),(73,'Maximum Display of Customers on Customers Page','MAX_DISPLAY_SEARCH_RESULTS_CUSTOMER','20','',3,19,NULL,'2010-03-04 18:39:23',NULL,NULL),(74,'Maximum Display of Orders on Orders Page','MAX_DISPLAY_SEARCH_RESULTS_ORDERS','20','',3,20,NULL,'2010-03-04 18:39:23',NULL,NULL),(75,'Maximum Display of Products on Reports','MAX_DISPLAY_SEARCH_RESULTS_REPORTS','20','',3,21,NULL,'2010-03-04 18:39:23',NULL,NULL),(76,'Maximum Categories Products Display List','MAX_DISPLAY_RESULTS_CATEGORIES','10','Number of products to list per screen',3,22,NULL,'2010-03-04 18:39:23',NULL,NULL),(77,'Products Listing- Number Per Page','MAX_DISPLAY_PRODUCTS_LISTING','30','Maximum Number of Products to list per page on main page',3,30,'2010-03-25 12:59:47','2010-03-04 18:39:23',NULL,NULL),(78,'Products Attributes - Option Names and Values Display','MAX_ROW_LISTS_OPTIONS','10','Maximum number of option names and values to display in the products attributes page',3,24,NULL,'2010-03-04 18:39:23',NULL,NULL),(79,'Products Attributes - Attributes Controller Display','MAX_ROW_LISTS_ATTRIBUTES_CONTROLLER','30','Maximum number of attributes to display in the Attributes Controller page',3,25,NULL,'2010-03-04 18:39:23',NULL,NULL),(80,'Products Attributes - Downloads Manager Display','MAX_DISPLAY_SEARCH_RESULTS_DOWNLOADS_MANAGER','30','Maximum number of attributes downloads to display in the Downloads Manager page',3,26,NULL,'2010-03-04 18:39:23',NULL,NULL),(81,'Featured Products - Number to Display Admin','MAX_DISPLAY_SEARCH_RESULTS_FEATURED_ADMIN','10','Number of featured products to list per screen - Admin',3,27,NULL,'2010-03-04 18:39:23',NULL,NULL),(82,'Maximum Display of Featured Products - Main Page','MAX_DISPLAY_SEARCH_RESULTS_FEATURED','9','Number of featured products to list on main page',3,28,NULL,'2010-03-04 18:39:23',NULL,NULL),(83,'Maximum Display of Featured Products Page','MAX_DISPLAY_PRODUCTS_FEATURED_PRODUCTS','10','Number of featured products to list per screen',3,29,NULL,'2010-03-04 18:39:23',NULL,NULL),(84,'Random Featured Products for SideBox','MAX_RANDOM_SELECT_FEATURED_PRODUCTS','2','Number of random FEATURED products to rotate in the sidebox<br />Enter the number of products to display in this sidebox at one time.<br /><br />How many products do you want to display in this sidebox?',3,30,NULL,'2010-03-04 18:39:23',NULL,NULL),(85,'Maximum Display of Specials Products - Main Page','MAX_DISPLAY_SPECIAL_PRODUCTS_INDEX','9','Number of special products to list on main page',3,31,NULL,'2010-03-04 18:39:23',NULL,NULL),(86,'New Product Listing - Limited to ...','SHOW_NEW_PRODUCTS_LIMIT','0','Limit the New Product Listing to<br />0= All Products<br />1= Current Month<br />7= 7 Days<br />14= 14 Days<br />30= 30 Days<br />60= 60 Days<br />90= 90 Days<br />120= 120 Days',3,40,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'7\', \'14\', \'30\', \'60\', \'90\', \'120\'), '),(87,'Maximum Display of Products All Page','MAX_DISPLAY_PRODUCTS_ALL','30','Number of products to list per screen',3,45,'2010-03-25 12:59:30','2010-03-04 18:39:23',NULL,NULL),(88,'Maximum Display of Language Flags in Language Side Box','MAX_LANGUAGE_FLAGS_COLUMNS','3','Number of Language Flags per Row',3,50,NULL,'2010-03-04 18:39:23',NULL,NULL),(89,'Maximum File Upload Size','MAX_FILE_UPLOAD_SIZE','2048000','What is the Maximum file size for uploads?<br />Default= 2048000',3,60,NULL,'2010-03-04 18:39:23',NULL,NULL),(90,'Allowed Filename Extensions for uploading','UPLOAD_FILENAME_EXTENSIONS','jpg,jpeg,gif,png,eps,cdr,ai,pdf,tif,tiff,bmp,zip','List the permissible filetypes (filename extensions) to be allowed when files are uploaded to your site by customers. Separate multiple values with commas(,). Do not include the dot(.).<br /><br />Suggested setting: \"jpg,jpeg,gif,png,eps,cdr,ai,pdf,tif,tiff,bmp,zip\"',3,61,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_textarea('),(91,'Maximum Orders Detail Display on Admin Orders Listing','MAX_DISPLAY_RESULTS_ORDERS_DETAILS_LISTING','0','Maximum number of Order Details<br />0 = Unlimited',3,65,NULL,'2010-03-04 18:39:23',NULL,NULL),(92,'Maximum PayPal IPN Display on Admin Listing','MAX_DISPLAY_SEARCH_RESULTS_PAYPAL_IPN','20','Maximum number of PayPal IPN Lisings in Admin<br />Default is 20',3,66,NULL,'2010-03-04 18:39:23',NULL,NULL),(93,'Maximum Display Columns Products to Multiple Categories Manager','MAX_DISPLAY_PRODUCTS_TO_CATEGORIES_COLUMNS','3','Maximum Display Columns Products to Multiple Categories Manager<br />3 = Default',3,70,NULL,'2010-03-04 18:39:23',NULL,NULL),(94,'Maximum Display EZ-Pages','MAX_DISPLAY_SEARCH_RESULTS_EZPAGE','20','Maximum Display EZ-Pages<br />20 = Default',3,71,NULL,'2010-03-04 18:39:23',NULL,NULL),(95,'Small Image Width','SMALL_IMAGE_WIDTH','100','The pixel width of small images',4,1,NULL,'2010-03-04 18:39:23',NULL,NULL),(96,'Small Image Height','SMALL_IMAGE_HEIGHT','80','The pixel height of small images',4,2,NULL,'2010-03-04 18:39:23',NULL,NULL),(97,'Heading Image Width - Admin','HEADING_IMAGE_WIDTH','57','The pixel width of heading images in the Admin<br />NOTE: Presently, this adjusts the spacing on the pages in the Admin Pages or could be used to add images to the heading in the Admin',4,3,NULL,'2010-03-04 18:39:23',NULL,NULL),(98,'Heading Image Height - Admin','HEADING_IMAGE_HEIGHT','40','The pixel height of heading images in the Admin<br />NOTE: Presently, this adjusts the spacing on the pages in the Admin Pages or could be used to add images to the heading in the Admin',4,4,NULL,'2010-03-04 18:39:23',NULL,NULL),(99,'Subcategory Image Width','SUBCATEGORY_IMAGE_WIDTH','100','The pixel width of subcategory images',4,5,NULL,'2010-03-04 18:39:23',NULL,NULL),(100,'Subcategory Image Height','SUBCATEGORY_IMAGE_HEIGHT','57','The pixel height of subcategory images',4,6,NULL,'2010-03-04 18:39:23',NULL,NULL),(101,'Calculate Image Size','CONFIG_CALCULATE_IMAGE_SIZE','true','Calculate the size of images?',4,7,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(102,'Image Required','IMAGE_REQUIRED','true','Enable to display broken images. Good for development.',4,8,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(103,'Image - Shopping Cart Status','IMAGE_SHOPPING_CART_STATUS','1','Show product image in the shopping cart?<br />0= off 1= on',4,9,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(104,'Image - Shopping Cart Width','IMAGE_SHOPPING_CART_WIDTH','50','Default = 50',4,10,NULL,'2010-03-04 18:39:23',NULL,NULL),(105,'Image - Shopping Cart Height','IMAGE_SHOPPING_CART_HEIGHT','40','Default = 40',4,11,NULL,'2010-03-04 18:39:23',NULL,NULL),(106,'Category Icon Image Width - Product Info Pages','CATEGORY_ICON_IMAGE_WIDTH','57','The pixel width of Category Icon heading images for Product Info Pages',4,13,NULL,'2010-03-04 18:39:23',NULL,NULL),(107,'Category Icon Image Height - Product Info Pages','CATEGORY_ICON_IMAGE_HEIGHT','40','The pixel height of Category Icon heading images for Product Info Pages',4,14,NULL,'2010-03-04 18:39:23',NULL,NULL),(108,'Top Subcategory Image Width','SUBCATEGORY_IMAGE_TOP_WIDTH','150','The pixel width of Top subcategory images<br />Top subcategory is when the Category contains subcategories',4,15,NULL,'2010-03-04 18:39:23',NULL,NULL),(109,'Top Subcategory Image Height','SUBCATEGORY_IMAGE_TOP_HEIGHT','85','The pixel height of Top subcategory images<br />Top subcategory is when the Category contains subcategories',4,16,NULL,'2010-03-04 18:39:23',NULL,NULL),(110,'Product Info - Image Width','MEDIUM_IMAGE_WIDTH','150','The pixel width of Product Info images',4,20,NULL,'2010-03-04 18:39:23',NULL,NULL),(111,'Product Info - Image Height','MEDIUM_IMAGE_HEIGHT','120','The pixel height of Product Info images',4,21,NULL,'2010-03-04 18:39:23',NULL,NULL),(112,'Product Info - Image Medium Suffix','IMAGE_SUFFIX_MEDIUM','_MED','Product Info Medium Image Suffix<br />Default = _MED',4,22,NULL,'2010-03-04 18:39:23',NULL,NULL),(113,'Product Info - Image Large Suffix','IMAGE_SUFFIX_LARGE','_LRG','Product Info Large Image Suffix<br />Default = _LRG',4,23,NULL,'2010-03-04 18:39:23',NULL,NULL),(114,'Product Info - Number of Additional Images per Row','IMAGES_AUTO_ADDED','3','Product Info - Enter the number of additional images to display per row<br />Default = 3',4,30,NULL,'2010-03-04 18:39:23',NULL,NULL),(115,'Image - Product Listing Width','IMAGE_PRODUCT_LISTING_WIDTH','100','Default = 100',4,40,NULL,'2010-03-04 18:39:23',NULL,NULL),(116,'Image - Product Listing Height','IMAGE_PRODUCT_LISTING_HEIGHT','80','Default = 80',4,41,NULL,'2010-03-04 18:39:23',NULL,NULL),(117,'Image - Product New Listing Width','IMAGE_PRODUCT_NEW_LISTING_WIDTH','100','Default = 100',4,42,NULL,'2010-03-04 18:39:23',NULL,NULL),(118,'Image - Product New Listing Height','IMAGE_PRODUCT_NEW_LISTING_HEIGHT','80','Default = 80',4,43,NULL,'2010-03-04 18:39:23',NULL,NULL),(119,'Image - New Products Width','IMAGE_PRODUCT_NEW_WIDTH','100','Default = 100',4,44,NULL,'2010-03-04 18:39:23',NULL,NULL),(120,'Image - New Products Height','IMAGE_PRODUCT_NEW_HEIGHT','80','Default = 80',4,45,NULL,'2010-03-04 18:39:23',NULL,NULL),(121,'Image - Featured Products Width','IMAGE_FEATURED_PRODUCTS_LISTING_WIDTH','100','Default = 100',4,46,NULL,'2010-03-04 18:39:23',NULL,NULL),(122,'Image - Featured Products Height','IMAGE_FEATURED_PRODUCTS_LISTING_HEIGHT','80','Default = 80',4,47,NULL,'2010-03-04 18:39:23',NULL,NULL),(123,'Image - Product All Listing Width','IMAGE_PRODUCT_ALL_LISTING_WIDTH','100','Default = 100',4,48,NULL,'2010-03-04 18:39:23',NULL,NULL),(124,'Image - Product All Listing Height','IMAGE_PRODUCT_ALL_LISTING_HEIGHT','80','Default = 80',4,49,NULL,'2010-03-04 18:39:23',NULL,NULL),(125,'Product Image - No Image Status','PRODUCTS_IMAGE_NO_IMAGE_STATUS','0','Use automatic No Image when none is added to product<br />0= off<br />1= On',4,60,'2010-04-02 06:24:03','2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(126,'Product Image - No Image picture','PRODUCTS_IMAGE_NO_IMAGE','no_picture.gif','Use automatic No Image when none is added to product<br />Default = no_picture.gif',4,61,NULL,'2010-03-04 18:39:23',NULL,NULL),(127,'Image - Use Proportional Images on Products and Categories','PROPORTIONAL_IMAGES_STATUS','1','Use Proportional Images on Products and Categories?<br /><br />NOTE: Do not use 0 height or width settings for Proportion Images<br />0= off 1= on',4,75,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(128,'Email Salutation','ACCOUNT_GENDER','true','Display salutation choice during account creation and with account information',5,1,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(129,'Date of Birth','ACCOUNT_DOB','false','Display date of birth field during account creation and with account information<br />NOTE: Set Minimum Value Date of Birth to blank for not required<br />Set Minimum Value Date of Birth > 0 to require',5,2,'2011-01-08 09:57:22','2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(130,'Company','ACCOUNT_COMPANY','true','Display company field during account creation and with account information',5,3,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(131,'Address Line 2','ACCOUNT_SUBURB','true','Display address line 2 field during account creation and with account information',5,4,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(132,'State','ACCOUNT_STATE','true','Display state field during account creation and with account information',5,5,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(133,'State - Always display as pulldown?','ACCOUNT_STATE_DRAW_INITIAL_DROPDOWN','false','When state field is displayed, should it always be a pulldown menu?',5,5,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(134,'Create Account Default Country ID','SHOW_CREATE_ACCOUNT_DEFAULT_COUNTRY','223','Set Create Account Default Country ID to:<br />Default is 223',5,6,NULL,'2010-03-04 18:39:23','zen_get_country_name','zen_cfg_pull_down_country_list_none('),(135,'Fax Number','ACCOUNT_FAX_NUMBER','true','Display fax number field during account creation and with account information',5,10,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(136,'Show Newsletter Checkbox','ACCOUNT_NEWSLETTER_STATUS','1','Show Newsletter Checkbox<br />0= off<br />1= Display Unchecked<br />2= Display Checked<br /><strong>Note: Defaulting this to accepted may be in violation of certain regulations for your state or country</strong>',5,45,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\'), '),(137,'Customer Default Email Preference','ACCOUNT_EMAIL_PREFERENCE','0','Set the Default Customer Default Email Preference<br />0= Text<br />1= HTML<br />',5,46,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(138,'Customer Product Notification Status','CUSTOMERS_PRODUCTS_NOTIFICATION_STATUS','1','Customer should be asked about product notifications after checkout success and in account preferences<br />0= Never ask<br />1= Ask (ignored on checkout if has already selected global notifications)<br /><br />Note: Sidebox must be turned off separately',5,50,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(139,'Customer Shop Status - View Shop and Prices','CUSTOMERS_APPROVAL','0','Customer must be approved to shop<br />0= Not required<br />1= Must login to browse<br />2= May browse but no prices unless logged in<br />3= Showroom Only<br /><br />It is recommended that Option 2 be used for the purposes of Spiders if you wish customers to login to see prices.',5,55,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\'), '),(140,'Customer Approval Status - Authorization Pending','CUSTOMERS_APPROVAL_AUTHORIZATION','0','Customer must be Authorized to shop<br />0= Not required<br />1= Must be Authorized to Browse<br />2= May browse but no prices unless Authorized<br />3= Customer May Browse and May see Prices but Must be Authorized to Buy<br /><br />It is recommended that Option 2 or 3 be used for the purposes of Spiders',5,65,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\'), '),(141,'Customer Authorization: filename','CUSTOMERS_AUTHORIZATION_FILENAME','customers_authorization','Customer Authorization filename<br />Note: Do not include the extension<br />Default=customers_authorization',5,66,NULL,'2010-03-04 18:39:23',NULL,''),(142,'Customer Authorization: Hide Header','CUSTOMERS_AUTHORIZATION_HEADER_OFF','false','Customer Authorization: Hide Header <br />(true=hide false=show)',5,67,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(143,'Customer Authorization: Hide Column Left','CUSTOMERS_AUTHORIZATION_COLUMN_LEFT_OFF','false','Customer Authorization: Hide Column Left <br />(true=hide false=show)',5,68,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(144,'Customer Authorization: Hide Column Right','CUSTOMERS_AUTHORIZATION_COLUMN_RIGHT_OFF','false','Customer Authorization: Hide Column Right <br />(true=hide false=show)',5,69,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(145,'Customer Authorization: Hide Footer','CUSTOMERS_AUTHORIZATION_FOOTER_OFF','false','Customer Authorization: Hide Footer <br />(true=hide false=show)',5,70,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(146,'Customer Authorization: Hide Prices','CUSTOMERS_AUTHORIZATION_PRICES_OFF','false','Customer Authorization: Hide Prices <br />(true=hide false=show)',5,71,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(147,'Customers Referral Status','CUSTOMERS_REFERRAL_STATUS','0','Customers Referral Code is created from<br />0= Off<br />1= 1st Discount Coupon Code used<br />2= Customer can add during create account or edit if blank<br /><br />NOTE: Once the Customers Referral Code has been set it can only be changed in the Admin Customer',5,80,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\'), '),(148,'Installed Modules','MODULE_PAYMENT_INSTALLED','cc.php;paypalwpp.php','List of payment module filenames separated by a semi-colon. This is automatically updated. No need to edit. (Example: cc.php;cod.php;paypal.php)',6,0,'2011-05-24 21:31:22','2010-03-04 18:39:23',NULL,NULL),(149,'Installed Modules','MODULE_ORDER_TOTAL_INSTALLED','ot_subtotal.php;ot_coupon.php;ot_group_pricing.php;ot_tax.php;ot_loworderfee.php;ot_gv.php;ot_total.php','List of order_total module filenames separated by a semi-colon. This is automatically updated. No need to edit. (Example: ot_subtotal.php;ot_tax.php;ot_shipping.php;ot_total.php)',6,0,'2010-04-02 07:00:13','2010-03-04 18:39:23',NULL,NULL),(150,'Installed Modules','MODULE_SHIPPING_INSTALLED','freeshipper.php','List of shipping module filenames separated by a semi-colon. This is automatically updated. No need to edit. (Example: ups.php;flat.php;item.php)',6,0,'2011-05-24 22:50:00','2010-03-04 18:39:23',NULL,NULL),(580,'Live or Sandbox','MODULE_PAYMENT_PAYPALWPP_SERVER','live','<strong>Live: </strong> Used to process Live transactions<br><strong>Sandbox: </strong>For developers and testing',6,25,NULL,'2011-05-24 21:14:51',NULL,'zen_cfg_select_option(array(\'live\', \'sandbox\'), '),(581,'Express Checkout: Require Confirmed Address','MODULE_PAYMENT_PAYPALWPP_CONFIRMED_ADDRESS','No','Do you want to require that your customers use a *confirmed* address when choosing their shipping address in PayPal?',6,25,NULL,'2011-05-24 21:14:51',NULL,'zen_cfg_select_option(array(\'Yes\', \'No\'), '),(582,'Express Checkout: Select Cheapest Shipping Automatically','MODULE_PAYMENT_PAYPALWPP_AUTOSELECT_CHEAPEST_SHIPPING','Yes','When customer returns from PayPal, do we want to automatically select the Cheapest shipping method and skip the shipping page? (making it more *express*)<br />Note: enabling this means the customer does *not* have easy access to select an alternate shipping method (without going back to the Checkout-Step-1 page)',6,25,NULL,'2011-05-24 21:14:51',NULL,'zen_cfg_select_option(array(\'Yes\', \'No\'), '),(576,'Sort order of display.','MODULE_PAYMENT_CC_SORT_ORDER','0','Sort order of display. Lowest is displayed first.',6,134,NULL,'2011-01-08 14:15:29',NULL,NULL),(577,'Payment Zone','MODULE_PAYMENT_CC_ZONE','0','If a zone is selected, only enable this payment method for that zone.',6,135,NULL,'2011-01-08 14:15:29','zen_get_zone_class_title','zen_cfg_pull_down_zone_classes('),(578,'Set Order Status','MODULE_PAYMENT_CC_ORDER_STATUS_ID','0','Set the status of orders made with this payment module to this value',6,136,NULL,'2011-01-08 14:15:29','zen_get_order_status_name','zen_cfg_pull_down_order_statuses('),(621,'Sort Order','MODULE_SHIPPING_FREESHIPPER_SORT_ORDER','0','Sort order of display.',6,0,NULL,'2011-05-24 22:40:34',NULL,NULL),(583,'Express Checkout: Skip Payment Page','MODULE_PAYMENT_PAYPALWPP_SKIP_PAYMENT_PAGE','Yes','If the customer is checking out with Express Checkout, do you want to skip the checkout payment page, making things more *express*? <br /><strong>(NOTE: The Payment Page will auto-display regardless of this setting if you have Coupons or Gift Certificates enabled in your store.)</strong>',6,25,NULL,'2011-05-24 21:14:51',NULL,'zen_cfg_select_option(array(\'Yes\', \'No\'), '),(575,'Collect & store the CVV number','MODULE_PAYMENT_CC_COLLECT_CVV','False','Do you want to collect the CVV number. Note: If you do the CVV number will be stored in the database in an encoded format. Be sure to check with your merchant account provider about whether you need this information or not, as storing CVV data is often a violation of TOS.',6,132,NULL,'2011-01-08 14:15:29',NULL,'zen_cfg_select_option(array(\'True\', \'False\'), '),(574,'Split Credit Card Email Address','MODULE_PAYMENT_CC_EMAIL','jbrake@nsconstruct.com','If an email address is entered, the middle digits of the credit card number will be sent to the email address (the outside digits are stored in the database with the middle digits censored)',6,131,NULL,'2011-01-08 14:15:29',NULL,NULL),(186,'Include Tax','MODULE_ORDER_TOTAL_GROUP_PRICING_INC_TAX','false','Include Tax value in amount before discount calculation?',6,6,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(187,'This module is installed','MODULE_ORDER_TOTAL_GROUP_PRICING_STATUS','true','',6,1,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'true\'), '),(188,'Sort Order','MODULE_ORDER_TOTAL_GROUP_PRICING_SORT_ORDER','290','Sort order of display.',6,2,NULL,'2010-03-04 18:39:23',NULL,NULL),(189,'Include Shipping','MODULE_ORDER_TOTAL_GROUP_PRICING_INC_SHIPPING','false','Include Shipping value in amount before discount calculation?',6,5,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(190,'Re-calculate Tax','MODULE_ORDER_TOTAL_GROUP_PRICING_CALC_TAX','Standard','Re-Calculate Tax',6,7,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'None\', \'Standard\', \'Credit Note\'), '),(191,'Tax Class','MODULE_ORDER_TOTAL_GROUP_PRICING_TAX_CLASS','0','Use the following tax class when treating Group Discount as Credit Note.',6,0,NULL,'2010-03-04 18:39:23','zen_get_tax_class_title','zen_cfg_pull_down_tax_classes('),(616,'Enable Free Shipping','MODULE_SHIPPING_FREESHIPPER_STATUS','True','Do you want to offer Free shipping?',6,0,NULL,'2011-05-24 22:40:34',NULL,'zen_cfg_select_option(array(\'True\', \'False\'), '),(617,'Free Shipping Cost','MODULE_SHIPPING_FREESHIPPER_COST','0.00','What is the Shipping cost?',6,6,NULL,'2011-05-24 22:40:34',NULL,NULL),(618,'Handling Fee','MODULE_SHIPPING_FREESHIPPER_HANDLING','0','Handling fee for this shipping method.',6,0,NULL,'2011-05-24 22:40:34',NULL,NULL),(619,'Tax Class','MODULE_SHIPPING_FREESHIPPER_TAX_CLASS','0','Use the following tax class on the shipping fee.',6,0,NULL,'2011-05-24 22:40:34','zen_get_tax_class_title','zen_cfg_pull_down_tax_classes('),(620,'Shipping Zone','MODULE_SHIPPING_FREESHIPPER_ZONE','0','If a zone is selected, only enable this shipping method for that zone.',6,0,NULL,'2011-05-24 22:40:34','zen_get_zone_class_title','zen_cfg_pull_down_zone_classes('),(198,'Default Currency','DEFAULT_CURRENCY','USD','Default Currency',6,0,NULL,'2010-03-04 18:39:23',NULL,NULL),(199,'Default Language','DEFAULT_LANGUAGE','en','Default Language',6,0,NULL,'2010-03-04 18:39:23',NULL,NULL),(200,'Default Order Status For New Orders','DEFAULT_ORDERS_STATUS_ID','1','When a new order is created, this order status will be assigned to it.',6,0,NULL,'2010-03-04 18:39:23',NULL,NULL),(201,'Admin configuration_key shows','ADMIN_CONFIGURATION_KEY_ON','0','Manually switch to value of 1 to see the configuration_key name in configuration displays',6,0,NULL,'2010-03-04 18:39:23',NULL,NULL),(202,'Country of Origin','SHIPPING_ORIGIN_COUNTRY','223','Select the country of origin to be used in shipping quotes.',7,1,NULL,'2010-03-04 18:39:23','zen_get_country_name','zen_cfg_pull_down_country_list('),(203,'Postal Code','SHIPPING_ORIGIN_ZIP','48843','Enter the Postal Code (ZIP) of the Store to be used in shipping quotes. NOTE: For USA zip codes, only use your 5 digit zip code.',7,2,'2010-03-04 23:04:07','2010-03-04 18:39:23',NULL,NULL),(204,'Enter the Maximum Package Weight you will ship','SHIPPING_MAX_WEIGHT','50','Carriers have a max weight limit for a single package. This is a common one for all.',7,3,NULL,'2010-03-04 18:39:23',NULL,NULL),(205,'Package Tare Small to Medium - added percentage:weight','SHIPPING_BOX_WEIGHT','0:3','What is the weight of typical packaging of small to medium packages?<br />Example: 10% + 1lb 10:1<br />10% + 0lbs 10:0<br />0% + 5lbs 0:5<br />0% + 0lbs 0:0',7,4,NULL,'2010-03-04 18:39:23',NULL,NULL),(206,'Larger packages - added packaging percentage:weight','SHIPPING_BOX_PADDING','10:0','What is the weight of typical packaging for Large packages?<br />Example: 10% + 1lb 10:1<br />10% + 0lbs 10:0<br />0% + 5lbs 0:5<br />0% + 0lbs 0:0',7,5,NULL,'2010-03-04 18:39:23',NULL,NULL),(207,'Display Number of Boxes and Weight Status','SHIPPING_BOX_WEIGHT_DISPLAY','0','Display Shipping Weight and Number of Boxes?<br /><br />0= off<br />1= Boxes Only<br />2= Weight Only<br />3= Both Boxes and Weight',7,15,'2010-03-04 23:04:34','2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\'), '),(208,'Shipping Estimator Display Settings for Shopping Cart','SHOW_SHIPPING_ESTIMATOR_BUTTON','0','<br />0= Off<br />1= Display as Button on Shopping Cart<br />2= Display as Listing on Shopping Cart Page',7,20,'2010-03-05 09:04:40','2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\'), '),(209,'Display Order Comments on Admin Invoice','ORDER_COMMENTS_INVOICE','1','Do you want to display the Order Comments on the Admin Invoice?<br />0= OFF<br />1= First Comment by Customer only<br />2= All Comments for the Order',7,25,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\'), '),(210,'Display Order Comments on Admin Packing Slip','ORDER_COMMENTS_PACKING_SLIP','1','Do you want to display the Order Comments on the Admin Packing Slip?<br />0= OFF<br />1= First Comment by Customer only<br />2= All Comments for the Order',7,26,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\'), '),(211,'Order Free Shipping 0 Weight Status','ORDER_WEIGHT_ZERO_STATUS','0','If there is no weight to the order, does the order have Free Shipping?<br />0= no<br />1= yes<br /><br />Note: When using Free Shipping, Enable the Free Shipping Module this will only show when shipping is free.',7,15,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(212,'Display Product Image','PRODUCT_LIST_IMAGE','0','Do you want to display the Product Image?',8,1,'2010-04-02 06:23:24','2010-03-04 18:39:23',NULL,NULL),(213,'Display Product Manufacturer Name','PRODUCT_LIST_MANUFACTURER','0','Do you want to display the Product Manufacturer Name?',8,2,NULL,'2010-03-04 18:39:23',NULL,NULL),(214,'Display Product Model','PRODUCT_LIST_MODEL','0','Do you want to display the Product Model?',8,3,NULL,'2010-03-04 18:39:23',NULL,NULL),(215,'Display Product Name','PRODUCT_LIST_NAME','2','Do you want to display the Product Name?',8,4,NULL,'2010-03-04 18:39:23',NULL,NULL),(216,'Display Product Price/Add to Cart','PRODUCT_LIST_PRICE','3','Do you want to display the Product Price/Add to Cart',8,5,NULL,'2010-03-04 18:39:23',NULL,NULL),(217,'Display Product Quantity','PRODUCT_LIST_QUANTITY','0','Do you want to display the Product Quantity?',8,6,NULL,'2010-03-04 18:39:23',NULL,NULL),(218,'Display Product Weight','PRODUCT_LIST_WEIGHT','0','Do you want to display the Product Weight?',8,7,NULL,'2010-03-04 18:39:23',NULL,NULL),(219,'Display Product Price/Add to Cart Column Width','PRODUCTS_LIST_PRICE_WIDTH','125','Define the width of the Price/Add to Cart column<br />Default= 125',8,8,NULL,'2010-03-04 18:39:23',NULL,NULL),(220,'Display Category/Manufacturer Filter (0=off; 1=on)','PRODUCT_LIST_FILTER','1','Do you want to display the Category/Manufacturer Filter?',8,9,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(221,'Prev/Next Split Page Navigation (1-top, 2-bottom, 3-both)','PREV_NEXT_BAR_LOCATION','3','Sets the location of the Prev/Next Split Page Navigation',8,10,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'1\', \'2\', \'3\'), '),(222,'Display Product Listing Default Sort Order','PRODUCT_LISTING_DEFAULT_SORT_ORDER','','Product Listing Default sort order?<br />NOTE: Leave Blank for Product Sort Order. Sort the Product Listing in the order you wish for the default display to start in to get the sort order setting. Example: 2a',8,15,NULL,'2010-03-04 18:39:23',NULL,NULL),(223,'Display Product Add to Cart Button (0=off; 1=on; 2=on with Qty Box per Product)','PRODUCT_LIST_PRICE_BUY_NOW','1','Do you want to display the Add to Cart Button?<br /><br /><strong>NOTE:</strong> Turn OFF Display Multiple Products Qty Box Status to use Option 2 on with Qty Box per Product',8,20,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\'), '),(224,'Display Multiple Products Qty Box Status and Set Button Location','PRODUCT_LISTING_MULTIPLE_ADD_TO_CART','3','Do you want to display Add Multiple Products Qty Box and Set Button Location?<br />0= off<br />1= Top<br />2= Bottom<br />3= Both',8,25,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\'), '),(225,'Display Product Description','PRODUCT_LIST_DESCRIPTION','150','Do you want to display the Product Description?<br /><br />0= OFF<br />150= Suggested Length, or enter the maximum number of characters to display',8,30,NULL,'2010-03-04 18:39:23',NULL,NULL),(226,'Product Listing Ascending Sort Order','PRODUCT_LIST_SORT_ORDER_ASCENDING','+','What do you want to use to indicate Sort Order Ascending?<br />Default = +',8,40,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_textarea_small('),(227,'Product Listing Descending Sort Order','PRODUCT_LIST_SORT_ORDER_DESCENDING','-','What do you want to use to indicate Sort Order Descending?<br />Default = -',8,41,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_textarea_small('),(228,'Include Product Listing Alpha Sorter Dropdown','PRODUCT_LIST_ALPHA_SORTER','false','Do you want to include an Alpha Filter dropdown on the Product Listing?',8,50,'2010-03-25 09:25:01','2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(229,'Include Product Listing Sub Categories Image','PRODUCT_LIST_CATEGORIES_IMAGE_STATUS','true','Do you want to include the Sub Categories Image on the Product Listing?',8,52,'2010-04-02 06:22:18','2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(230,'Include Product Listing Top Categories Image','PRODUCT_LIST_CATEGORIES_IMAGE_STATUS_TOP','true','Do you want to include the Top Categories Image on the Product Listing?',8,53,'2010-04-02 06:22:08','2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(231,'Show SubCategories on Main Page while navigating','PRODUCT_LIST_CATEGORY_ROW_STATUS','1','Show Sub-Categories on Main Page while navigating through Categories<br /><br />0= off<br />1= on',8,60,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(232,'Check stock level','STOCK_CHECK','false','Check to see if sufficent stock is available',9,1,'2010-03-04 21:50:32','2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(233,'Subtract stock','STOCK_LIMITED','false','Subtract product in stock by product orders',9,2,'2010-03-04 21:50:23','2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(234,'Allow Checkout','STOCK_ALLOW_CHECKOUT','true','Allow customer to checkout even if there is insufficient stock',9,3,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(235,'Mark product out of stock','STOCK_MARK_PRODUCT_OUT_OF_STOCK','***','Display something on screen so customer can see which product has insufficient stock',9,4,'2010-03-04 22:13:52','2010-03-04 18:39:23',NULL,NULL),(236,'Stock Re-order level','STOCK_REORDER_LEVEL','5','Define when stock needs to be re-ordered',9,5,NULL,'2010-03-04 18:39:23',NULL,NULL),(237,'Products status in Catalog when out of stock should be set to','SHOW_PRODUCTS_SOLD_OUT','1','Show Products when out of stock<br /><br />0= set product status to OFF<br />1= leave product status ON',9,10,'2010-03-04 22:12:51','2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(238,'Show Sold Out Image in place of Add to Cart','SHOW_PRODUCTS_SOLD_OUT_IMAGE','0','Show Sold Out Image instead of Add to Cart Button<br /><br />0= off<br />1= on',9,11,'2010-03-04 21:50:59','2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(239,'Product Quantity Decimals','QUANTITY_DECIMALS','0','Allow how many decimals on Quantity<br /><br />0= off',9,15,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\'), '),(240,'Show Shopping Cart - Delete Checkboxes or Delete Button','SHOW_SHOPPING_CART_DELETE','3','Show on Shopping Cart Delete Button and/or Checkboxes<br /><br />1= Delete Button Only<br />2= Checkbox Only<br />3= Both Delete Button and Checkbox',9,20,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'1\', \'2\', \'3\'), '),(241,'Show Shopping Cart - Update Cart Button Location','SHOW_SHOPPING_CART_UPDATE','3','Show on Shopping Cart Update Cart Button Location as:<br /><br />1= Next to each Qty Box<br />2= Below all Products<br />3= Both Next to each Qty Box and Below all Products',9,22,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'1\', \'2\', \'3\'), '),(242,'Show New Products on empty Shopping Cart Page','SHOW_SHOPPING_CART_EMPTY_NEW_PRODUCTS','1','Show New Products on empty Shopping Cart Page<br />0= off or set the sort order',9,30,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\', \'4\'), '),(243,'Show Featured Products on empty Shopping Cart Page','SHOW_SHOPPING_CART_EMPTY_FEATURED_PRODUCTS','2','Show Featured Products on empty Shopping Cart Page<br />0= off or set the sort order',9,31,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\', \'4\'), '),(244,'Show Special Products on empty Shopping Cart Page','SHOW_SHOPPING_CART_EMPTY_SPECIALS_PRODUCTS','3','Show Special Products on empty Shopping Cart Page<br />0= off or set the sort order',9,32,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\', \'4\'), '),(245,'Show Upcoming Products on empty Shopping Cart Page','SHOW_SHOPPING_CART_EMPTY_UPCOMING','4','Show Upcoming Products on empty Shopping Cart Page<br />0= off or set the sort order',9,33,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\', \'4\'), '),(246,'Show Notice of Combining Shopping Cart on Login','SHOW_SHOPPING_CART_COMBINED','1','When a customer logs in and has a previously stored shopping cart, the products are combined with the existing shopping cart.<br /><br />Do you wish to display a Notice to the customer?<br /><br />0= OFF, do not display a notice<br />1= Yes show notice and go to shopping cart<br />2= Yes show notice, but do not go to shopping cart',9,35,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\'), '),(247,'Store Page Parse Time','STORE_PAGE_PARSE_TIME','false','Store the time it takes to parse a page',10,1,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(248,'Log Destination','STORE_PAGE_PARSE_TIME_LOG','/home/nsadmin/public_html/chinese_delight/cache/page_parse_time.log','Directory and filename of the page parse time log',10,2,NULL,'2010-03-04 18:39:23',NULL,NULL),(249,'Log Date Format','STORE_PARSE_DATE_TIME_FORMAT','%d/%m/%Y %H:%M:%S','The date format',10,3,NULL,'2010-03-04 18:39:23',NULL,NULL),(250,'Display The Page Parse Time','DISPLAY_PAGE_PARSE_TIME','false','Display the page parse time on the bottom of each page<br />You do not need to store the times to display them in the Catalog',10,4,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(251,'Store Database Queries','STORE_DB_TRANSACTIONS','false','Store the database queries in the page parse time log (PHP4 only)',10,5,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(252,'E-Mail Transport Method','EMAIL_TRANSPORT','PHP','Defines the method for sending mail.<br /><strong>PHP</strong> is the default, and uses built-in PHP wrappers for processing.<br />Servers running on Windows and MacOS should change this setting to <strong>SMTP</strong>.<br /><br /><strong>SMTPAUTH</strong> should only be used if your server requires SMTP authorization to send messages. You must also configure your SMTPAUTH settings in the appropriate fields in this admin section.<br /><br /><strong>sendmail</strong> is for linux/unix hosts using the sendmail program on the server<br /><strong>\"sendmail-f\"</strong> is only for servers which require the use of the -f parameter to send mail. This is a security setting often used to prevent spoofing. Will cause errors if your host mailserver is not configured to use it.<br /><br /><strong>Qmail</strong> is used for linux/unix hosts running Qmail as sendmail wrapper at /var/qmail/bin/sendmail.',12,1,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'PHP\', \'sendmail\', \'sendmail-f\', \'smtp\', \'smtpauth\', \'Qmail\'),'),(253,'SMTP Email Account Mailbox','EMAIL_SMTPAUTH_MAILBOX','YourEmailAccountNameHere','Enter the mailbox account name (me@mydomain.com) supplied by your host. This is the account name that your host requires for SMTP authentication.<br />Only required if using SMTP Authentication for email.',12,101,NULL,'2010-03-04 18:39:23',NULL,NULL),(254,'SMTP Email Account Password','EMAIL_SMTPAUTH_PASSWORD','YourPasswordHere','Enter the password for your SMTP mailbox. <br />Only required if using SMTP Authentication for email.',12,101,NULL,'2010-03-04 18:39:23','zen_cfg_password_display',NULL),(255,'SMTP Email Mail Host','EMAIL_SMTPAUTH_MAIL_SERVER','mail.EnterYourDomain.com','Enter the DNS name of your SMTP mail server.<br />ie: mail.mydomain.com<br />or 55.66.77.88<br />Only required if using SMTP Authentication for email.',12,101,NULL,'2010-03-04 18:39:23',NULL,NULL),(256,'SMTP Email Mail Server Port','EMAIL_SMTPAUTH_MAIL_SERVER_PORT','25','Enter the IP port number that your SMTP mailserver operates on.<br />Only required if using SMTP Authentication for email.',12,101,NULL,'2010-03-04 18:39:23',NULL,NULL),(257,'Convert currencies for Text emails','CURRENCIES_TRANSLATIONS','&pound;,Â£:&euro;,â‚¬','What currency conversions do you need for Text emails?<br />Default = &amp;pound;,Â£:&amp;euro;,â‚¬',12,120,NULL,'2003-11-21 00:00:00',NULL,'zen_cfg_textarea_small('),(258,'E-Mail Linefeeds','EMAIL_LINEFEED','LF','Defines the character sequence used to separate mail headers.',12,2,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'LF\', \'CRLF\'),'),(259,'Use MIME HTML When Sending Emails','EMAIL_USE_HTML','false','Send e-mails in HTML format',12,3,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(260,'Verify E-Mail Addresses Through DNS','ENTRY_EMAIL_ADDRESS_CHECK','false','Verify e-mail address through a DNS server',6,6,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(261,'Send E-Mails','SEND_EMAILS','true','Send out e-mails',12,5,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(262,'Email Archiving Active?','EMAIL_ARCHIVE','false','If you wish to have email messages archived/stored when sent, set this to \"true\".',12,6,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(263,'E-Mail Friendly-Errors','EMAIL_FRIENDLY_ERRORS','false','Do you want to display friendly errors if emails fail?  Setting this to false will display PHP errors and likely cause the script to fail. Only set to false while troubleshooting, and true for a live shop.',12,7,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(264,'Email Address (Displayed to Contact you)','STORE_OWNER_EMAIL_ADDRESS','jbrake@nsconstruct.com','Email address of Store Owner.  Used as \"display only\" when informing customers of how to contact you.',12,10,NULL,'2010-03-04 18:39:23',NULL,NULL),(265,'Email Address (sent FROM)','EMAIL_FROM','jbrake@nsconstruct.com','Address from which email messages will be \"sent\" by default. Can be over-ridden at compose-time in admin modules.',12,11,NULL,'2010-03-04 18:39:23',NULL,NULL),(266,'Emails must send from known domain?','EMAIL_SEND_MUST_BE_STORE','Yes','Does your mailserver require that all outgoing emails have their \"from\" address match a known domain that exists on your webserver?<br /><br />This is often required in order to prevent spoofing and spam broadcasts.  If set to Yes, this will cause the email address (sent FROM) to be used as the \"from\" address on all outgoing mail.',12,11,NULL,'0001-01-01 00:00:00',NULL,'zen_cfg_select_option(array(\'No\', \'Yes\'), '),(267,'Email Admin Format?','ADMIN_EXTRA_EMAIL_FORMAT','TEXT','Please select the Admin extra email format',12,12,NULL,'0001-01-01 00:00:00',NULL,'zen_cfg_select_option(array(\'TEXT\', \'HTML\'), '),(268,'Send Copy of Order Confirmation Emails To','SEND_EXTRA_ORDER_EMAILS_TO','jbrake@nsconstruct.com','Send COPIES of order confirmation emails to the following email addresses, in this format: Name 1 &lt;email@address1&gt;, Name 2 &lt;email@address2&gt;',12,12,NULL,'2010-03-04 18:39:23',NULL,NULL),(269,'Send Copy of Create Account Emails To - Status','SEND_EXTRA_CREATE_ACCOUNT_EMAILS_TO_STATUS','0','Send copy of Create Account Status<br />0= off 1= on',12,13,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\'),'),(270,'Send Copy of Create Account Emails To','SEND_EXTRA_CREATE_ACCOUNT_EMAILS_TO','jbrake@nsconstruct.com','Send copy of Create Account emails to the following email addresses, in this format: Name 1 &lt;email@address1&gt;, Name 2 &lt;email@address2&gt;',12,14,NULL,'2010-03-04 18:39:23',NULL,NULL),(271,'Send Copy of Tell a Friend Emails To - Status','SEND_EXTRA_TELL_A_FRIEND_EMAILS_TO_STATUS','0','Send copy of Tell a Friend Status<br />0= off 1= on',12,15,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\'),'),(272,'Send Copy of Tell a Friend Emails To','SEND_EXTRA_TELL_A_FRIEND_EMAILS_TO','jbrake@nsconstruct.com','Send copy of Tell a Friend emails to the following email addresses, in this format: Name 1 &lt;email@address1&gt;, Name 2 &lt;email@address2&gt;',12,16,NULL,'2010-03-04 18:39:23',NULL,NULL),(273,'Send Copy of Customer GV Send Emails To - Status','SEND_EXTRA_GV_CUSTOMER_EMAILS_TO_STATUS','0','Send copy of Customer GV Send Status<br />0= off 1= on',12,17,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\'),'),(274,'Send Copy of Customer GV Send Emails To','SEND_EXTRA_GV_CUSTOMER_EMAILS_TO','jbrake@nsconstruct.com','Send copy of Customer GV Send emails to the following email addresses, in this format: Name 1 &lt;email@address1&gt;, Name 2 &lt;email@address2&gt;',12,18,NULL,'2010-03-04 18:39:23',NULL,NULL),(275,'Send Copy of Admin GV Mail Emails To - Status','SEND_EXTRA_GV_ADMIN_EMAILS_TO_STATUS','0','Send copy of Admin GV Mail Status<br />0= off 1= on',12,19,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\'),'),(276,'Send Copy of Customer Admin GV Mail Emails To','SEND_EXTRA_GV_ADMIN_EMAILS_TO','jbrake@nsconstruct.com','Send copy of Admin GV Mail emails to the following email addresses, in this format: Name 1 &lt;email@address1&gt;, Name 2 &lt;email@address2&gt;',12,20,NULL,'2010-03-04 18:39:23',NULL,NULL),(277,'Send Copy of Admin Discount Coupon Mail Emails To - Status','SEND_EXTRA_DISCOUNT_COUPON_ADMIN_EMAILS_TO_STATUS','0','Send copy of Admin Discount Coupon Mail Status<br />0= off 1= on',12,21,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\'),'),(278,'Send Copy of Customer Admin Discount Coupon Mail Emails To','SEND_EXTRA_DISCOUNT_COUPON_ADMIN_EMAILS_TO','jbrake@nsconstruct.com','Send copy of Admin Discount Coupon Mail emails to the following email addresses, in this format: Name 1 &lt;email@address1&gt;, Name 2 &lt;email@address2&gt;',12,22,NULL,'2010-03-04 18:39:23',NULL,NULL),(279,'Send Copy of Admin Orders Status Emails To - Status','SEND_EXTRA_ORDERS_STATUS_ADMIN_EMAILS_TO_STATUS','0','Send copy of Admin Orders Status Status<br />0= off 1= on',12,23,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\'),'),(280,'Send Copy of Admin Orders Status Emails To','SEND_EXTRA_ORDERS_STATUS_ADMIN_EMAILS_TO','jbrake@nsconstruct.com','Send copy of Admin Orders Status emails to the following email addresses, in this format: Name 1 &lt;email@address1&gt;, Name 2 &lt;email@address2&gt;',12,24,NULL,'2010-03-04 18:39:23',NULL,NULL),(281,'Send Notice of Pending Reviews Emails To - Status','SEND_EXTRA_REVIEW_NOTIFICATION_EMAILS_TO_STATUS','0','Send copy of Pending Reviews Status<br />0= off 1= on',12,25,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\'),'),(282,'Send Notice of Pending Reviews Emails To','SEND_EXTRA_REVIEW_NOTIFICATION_EMAILS_TO','jbrake@nsconstruct.com','Send copy of Pending Reviews emails to the following email addresses, in this format: Name 1 &lt;email@address1&gt;, Name 2 &lt;email@address2&gt;',12,26,NULL,'2010-03-04 18:39:23',NULL,NULL),(283,'Set \"Contact Us\" Email Dropdown List','CONTACT_US_LIST','','On the \"Contact Us\" Page, set the list of email addresses , in this format: Name 1 &lt;email@address1&gt;, Name 2 &lt;email@address2&gt;',12,40,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_textarea('),(284,'Allow Guest To Tell A Friend','ALLOW_GUEST_TO_TELL_A_FRIEND','false','Allow guests to tell a friend about a product. <br />If set to [false], then tell-a-friend will prompt for login if user is not already logged in.',12,50,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(285,'Contact Us - Show Store Name and Address','CONTACT_US_STORE_NAME_ADDRESS','1','Include Store Name and Address<br />0= off 1= on',12,50,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(286,'Send Low Stock Emails','SEND_LOWSTOCK_EMAIL','0','When stock level is at or below low stock level send an email<br />0= off<br />1= on',12,60,'2010-03-04 18:39:23','2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\'),'),(287,'Send Low Stock Emails To','SEND_EXTRA_LOW_STOCK_EMAILS_TO','jbrake@nsconstruct.com','When stock level is at or below low stock level send an email to this address, in this format: Name 1 &lt;email@address1&gt;, Name 2 &lt;email@address2&gt;',12,61,NULL,'2010-03-04 18:39:23',NULL,NULL),(288,'Display \"Newsletter Unsubscribe\" Link?','SHOW_NEWSLETTER_UNSUBSCRIBE_LINK','true','Show \"Newsletter Unsubscribe\" link in the \"Information\" side-box?',12,70,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(289,'Audience-Select Count Display','AUDIENCE_SELECT_DISPLAY_COUNTS','true','When displaying lists of available audiences/recipients, should the recipients-count be included? <br /><em>(This may make things slower if you have a lot of customers or complex audience queries)</em>',12,90,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(290,'Enable Downloads','DOWNLOAD_ENABLED','true','Enable the products download functions.',13,1,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(291,'Download by Redirect','DOWNLOAD_BY_REDIRECT','true','Use browser redirection for download. Disable on non-Unix systems.<br /><br />Note: Set /pub to 777 when redirect is true',13,2,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(292,'Download by streaming','DOWNLOAD_IN_CHUNKS','false','If download-by-redirect is disabled, and your PHP memory_limit setting is under 8 MB, you might need to enable this setting so that files are streamed in smaller segments to the browser.<br /><br />Has no effect if Download By Redirect is enabled.',13,2,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(293,'Download Expiration (Number of Days)','DOWNLOAD_MAX_DAYS','7','Set number of days before the download link expires. 0 means no limit.',13,3,NULL,'2010-03-04 18:39:23',NULL,''),(294,'Number of Downloads Allowed - Per Product','DOWNLOAD_MAX_COUNT','5','Set the maximum number of downloads. 0 means no download authorized.',13,4,NULL,'2010-03-04 18:39:23',NULL,''),(295,'Downloads Controller Update Status Value','DOWNLOADS_ORDERS_STATUS_UPDATED_VALUE','4','What orders_status resets the Download days and Max Downloads - Default is 4',13,10,'2010-03-04 18:39:23','2010-03-04 18:39:23',NULL,NULL),(296,'Downloads Controller Order Status Value >= lower value','DOWNLOADS_CONTROLLER_ORDERS_STATUS','2','Downloads Controller Order Status Value - Default >= 2<br /><br />Downloads are available for checkout based on the orders status. Orders with orders status greater than this value will be available for download. The orders status is set for an order by the Payment Modules. Set the lower range for this range.',13,12,'2010-03-04 18:39:23','2010-03-04 18:39:23',NULL,NULL),(297,'Downloads Controller Order Status Value <= upper value','DOWNLOADS_CONTROLLER_ORDERS_STATUS_END','4','Downloads Controller Order Status Value - Default <= 4<br /><br />Downloads are available for checkout based on the orders status. Orders with orders status less than this value will be available for download. The orders status is set for an order by the Payment Modules.  Set the upper range for this range.',13,13,'2010-03-04 18:39:23','2010-03-04 18:39:23',NULL,NULL),(298,'Enable Price Factor','ATTRIBUTES_ENABLED_PRICE_FACTOR','true','Enable the Attributes Price Factor.',13,25,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(299,'Enable Qty Price Discount','ATTRIBUTES_ENABLED_QTY_PRICES','true','Enable the Attributes Quantity Price Discounts.',13,26,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(300,'Enable Attribute Images','ATTRIBUTES_ENABLED_IMAGES','true','Enable the Attributes Images.',13,28,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(301,'Enable Text Pricing by word or letter','ATTRIBUTES_ENABLED_TEXT_PRICES','true','Enable the Attributes Text Pricing by word or letter.',13,35,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(302,'Text Pricing - Spaces are Free','TEXT_SPACES_FREE','1','On Text pricing Spaces are Free<br /><br />0= off 1= on',13,36,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(303,'Read Only option type - Ignore for Add to Cart','PRODUCTS_OPTIONS_TYPE_READONLY_IGNORED','1','When a Product only uses READONLY attributes, should the Add to Cart button be On or Off?<br />0= OFF<br />1= ON',13,37,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(304,'Enable GZip Compression','GZIP_LEVEL','0','0= off 1= on',14,1,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\'),'),(305,'Session Directory','SESSION_WRITE_DIRECTORY','/home/nsadmin/public_html/chinese_delight/cache','If sessions are file based, store them in this directory.',15,1,NULL,'2010-03-04 18:39:23',NULL,NULL),(306,'Cookie Domain','SESSION_USE_FQDN','True','If True the full domain name will be used to store the cookie, e.g. www.mydomain.com. If False only a partial domain name will be used, e.g. mydomain.com. If you are unsure about this, always leave set to true.',15,2,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'True\', \'False\'), '),(307,'Force Cookie Use','SESSION_FORCE_COOKIE_USE','False','Force the use of sessions when cookies are only enabled.',15,2,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'True\', \'False\'), '),(308,'Check SSL Session ID','SESSION_CHECK_SSL_SESSION_ID','False','Validate the SSL_SESSION_ID on every secure HTTPS page request.',15,3,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'True\', \'False\'), '),(309,'Check User Agent','SESSION_CHECK_USER_AGENT','False','Validate the clients browser user agent on every page request.',15,4,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'True\', \'False\'), '),(310,'Check IP Address','SESSION_CHECK_IP_ADDRESS','False','Validate the clients IP address on every page request.',15,5,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'True\', \'False\'), '),(311,'Prevent Spider Sessions','SESSION_BLOCK_SPIDERS','True','Prevent known spiders from starting a session.',15,6,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'True\', \'False\'), '),(312,'Recreate Session','SESSION_RECREATE','True','Recreate the session to generate a new session ID when the customer logs on or creates an account (PHP >=4.1 needed).',15,7,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'True\', \'False\'), '),(313,'IP to Host Conversion Status','SESSION_IP_TO_HOST_ADDRESS','true','Convert IP Address to Host Address<br /><br />Note: on some servers this can slow down the initial start of a session or execution of Emails',15,10,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(314,'Length of the redeem code','SECURITY_CODE_LENGTH','10','Enter the length of the redeem code<br />The longer the more secure',16,1,NULL,'2010-03-04 18:39:23',NULL,NULL),(315,'Default Order Status For Zero Balance Orders','DEFAULT_ZERO_BALANCE_ORDERS_STATUS_ID','2','When an order\'s balance is zero, this order status will be assigned to it.',16,0,NULL,'2010-03-04 18:39:23','zen_get_order_status_name','zen_cfg_pull_down_order_statuses('),(316,'New Signup Discount Coupon ID#','NEW_SIGNUP_DISCOUNT_COUPON','','Select the coupon<br />',16,75,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_coupon_id('),(317,'New Signup Gift Voucher Amount','NEW_SIGNUP_GIFT_VOUCHER_AMOUNT','','Leave blank for none<br />Or enter an amount ie. 10 for $10.00',16,76,NULL,'2010-03-04 18:39:23',NULL,NULL),(318,'Maximum Discount Coupons Per Page','MAX_DISPLAY_SEARCH_RESULTS_DISCOUNT_COUPONS','20','Number of Discount Coupons to list per Page',16,81,NULL,'2010-03-04 18:39:23',NULL,NULL),(319,'Maximum Discount Coupon Report Results Per Page','MAX_DISPLAY_SEARCH_RESULTS_DISCOUNT_COUPONS_REPORTS','20','Number of Discount Coupons to list on Reports Page',16,81,NULL,'2010-03-04 18:39:23',NULL,NULL),(320,'Credit Card Enable Status - VISA','CC_ENABLED_VISA','1','Accept VISA 0= off 1= on',17,1,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(321,'Credit Card Enable Status - MasterCard','CC_ENABLED_MC','1','Accept MasterCard 0= off 1= on',17,2,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(322,'Credit Card Enable Status - AmericanExpress','CC_ENABLED_AMEX','0','Accept AmericanExpress 0= off 1= on',17,3,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(323,'Credit Card Enable Status - Diners Club','CC_ENABLED_DINERS_CLUB','0','Accept Diners Club 0= off 1= on',17,4,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(324,'Credit Card Enable Status - Discover Card','CC_ENABLED_DISCOVER','0','Accept Discover Card 0= off 1= on',17,5,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(325,'Credit Card Enable Status - JCB','CC_ENABLED_JCB','0','Accept JCB 0= off 1= on',17,6,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(326,'Credit Card Enable Status - AUSTRALIAN BANKCARD','CC_ENABLED_AUSTRALIAN_BANKCARD','0','Accept AUSTRALIAN BANKCARD 0= off 1= on',17,7,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(327,'Credit Card Enable Status - SOLO','CC_ENABLED_SOLO','0','Accept SOLO Card 0= off 1= on',17,8,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(328,'Credit Card Enable Status - Switch','CC_ENABLED_SWITCH','0','Accept SWITCH Card 0= off 1= on',17,9,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(329,'Credit Card Enable Status - Maestro','CC_ENABLED_MAESTRO','0','Accept MAESTRO Card 0= off 1= on',17,10,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(330,'Credit Card Enabled - Show on Payment','SHOW_ACCEPTED_CREDIT_CARDS','0','Show accepted credit cards on Payment page?<br />0= off<br />1= As Text<br />2= As Images<br /><br />Note: images and text must be defined in both the database and language file for specific credit card types.',17,50,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\'), '),(331,'This module is installed','MODULE_ORDER_TOTAL_GV_STATUS','true','',6,1,NULL,'2003-10-30 22:16:40',NULL,'zen_cfg_select_option(array(\'true\'),'),(332,'Sort Order','MODULE_ORDER_TOTAL_GV_SORT_ORDER','840','Sort order of display.',6,2,NULL,'2003-10-30 22:16:40',NULL,NULL),(333,'Queue Purchases','MODULE_ORDER_TOTAL_GV_QUEUE','true','Do you want to queue purchases of the Gift Voucher?',6,3,NULL,'2003-10-30 22:16:40',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(334,'Include Shipping','MODULE_ORDER_TOTAL_GV_INC_SHIPPING','true','Include Shipping in calculation',6,5,NULL,'2003-10-30 22:16:40',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(335,'Include Tax','MODULE_ORDER_TOTAL_GV_INC_TAX','true','Include Tax in calculation.',6,6,NULL,'2003-10-30 22:16:40',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(336,'Re-calculate Tax','MODULE_ORDER_TOTAL_GV_CALC_TAX','None','Re-Calculate Tax',6,7,NULL,'2003-10-30 22:16:40',NULL,'zen_cfg_select_option(array(\'None\', \'Standard\', \'Credit Note\'),'),(337,'Tax Class','MODULE_ORDER_TOTAL_GV_TAX_CLASS','0','Use the following tax class when treating Gift Voucher as Credit Note.',6,0,NULL,'2003-10-30 22:16:40','zen_get_tax_class_title','zen_cfg_pull_down_tax_classes('),(338,'Credit including Tax','MODULE_ORDER_TOTAL_GV_CREDIT_TAX','false','Add tax to purchased Gift Voucher when crediting to Account',6,8,NULL,'2003-10-30 22:16:40',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(339,'Set Order Status','MODULE_ORDER_TOTAL_GV_ORDER_STATUS_ID','0','Set the status of orders made where GV covers full payment',6,0,NULL,'2010-03-04 18:39:23','zen_get_order_status_name','zen_cfg_pull_down_order_statuses('),(340,'This module is installed','MODULE_ORDER_TOTAL_LOWORDERFEE_STATUS','true','',6,1,NULL,'2003-10-30 22:16:43',NULL,'zen_cfg_select_option(array(\'true\'),'),(341,'Sort Order','MODULE_ORDER_TOTAL_LOWORDERFEE_SORT_ORDER','400','Sort order of display.',6,2,NULL,'2003-10-30 22:16:43',NULL,NULL),(342,'Allow Low Order Fee','MODULE_ORDER_TOTAL_LOWORDERFEE_LOW_ORDER_FEE','false','Do you want to allow low order fees?',6,3,NULL,'2003-10-30 22:16:43',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(343,'Order Fee For Orders Under','MODULE_ORDER_TOTAL_LOWORDERFEE_ORDER_UNDER','50','Add the low order fee to orders under this amount.',6,4,NULL,'2003-10-30 22:16:43','currencies->format',NULL),(344,'Order Fee','MODULE_ORDER_TOTAL_LOWORDERFEE_FEE','5','For Percentage Calculation - include a % Example: 10%<br />For a flat amount just enter the amount - Example: 5 for $5.00',6,5,NULL,'2003-10-30 22:16:43','',NULL),(345,'Attach Low Order Fee On Orders Made','MODULE_ORDER_TOTAL_LOWORDERFEE_DESTINATION','both','Attach low order fee for orders sent to the set destination.',6,6,NULL,'2003-10-30 22:16:43',NULL,'zen_cfg_select_option(array(\'national\', \'international\', \'both\'),'),(346,'Tax Class','MODULE_ORDER_TOTAL_LOWORDERFEE_TAX_CLASS','0','Use the following tax class on the low order fee.',6,7,NULL,'2003-10-30 22:16:43','zen_get_tax_class_title','zen_cfg_pull_down_tax_classes('),(347,'No Low Order Fee on Virtual Products','MODULE_ORDER_TOTAL_LOWORDERFEE_VIRTUAL','false','Do not charge Low Order Fee when cart is Virtual Products Only',6,8,NULL,'2004-04-20 22:16:43',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(348,'No Low Order Fee on Gift Vouchers','MODULE_ORDER_TOTAL_LOWORDERFEE_GV','false','Do not charge Low Order Fee when cart is Gift Vouchers Only',6,9,NULL,'2004-04-20 22:16:43',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(549,'Show Split Tax Lines','SHOW_SPLIT_TAX_CHECKOUT','false','If multiple tax rates apply, show each rate as a separate line at checkout',1,22,NULL,'2010-06-06 12:04:30',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(354,'This module is installed','MODULE_ORDER_TOTAL_SUBTOTAL_STATUS','true','',6,1,NULL,'2003-10-30 22:16:49',NULL,'zen_cfg_select_option(array(\'true\'),'),(355,'Sort Order','MODULE_ORDER_TOTAL_SUBTOTAL_SORT_ORDER','100','Sort order of display.',6,2,NULL,'2003-10-30 22:16:49',NULL,NULL),(356,'This module is installed','MODULE_ORDER_TOTAL_TAX_STATUS','true','',6,1,NULL,'2003-10-30 22:16:52',NULL,'zen_cfg_select_option(array(\'true\'),'),(357,'Sort Order','MODULE_ORDER_TOTAL_TAX_SORT_ORDER','300','Sort order of display.',6,2,NULL,'2003-10-30 22:16:52',NULL,NULL),(358,'This module is installed','MODULE_ORDER_TOTAL_TOTAL_STATUS','true','',6,1,NULL,'2003-10-30 22:16:55',NULL,'zen_cfg_select_option(array(\'true\'),'),(359,'Sort Order','MODULE_ORDER_TOTAL_TOTAL_SORT_ORDER','999','Sort order of display.',6,2,NULL,'2003-10-30 22:16:55',NULL,NULL),(360,'Tax Class','MODULE_ORDER_TOTAL_COUPON_TAX_CLASS','0','Use the following tax class when treating Discount Coupon as Credit Note.',6,0,NULL,'2003-10-30 22:16:36','zen_get_tax_class_title','zen_cfg_pull_down_tax_classes('),(361,'Include Tax','MODULE_ORDER_TOTAL_COUPON_INC_TAX','false','Include Tax in calculation.',6,6,NULL,'2003-10-30 22:16:36',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(362,'Sort Order','MODULE_ORDER_TOTAL_COUPON_SORT_ORDER','280','Sort order of display.',6,2,NULL,'2003-10-30 22:16:36',NULL,NULL),(363,'Include Shipping','MODULE_ORDER_TOTAL_COUPON_INC_SHIPPING','false','Include Shipping in calculation',6,5,NULL,'2003-10-30 22:16:36',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(364,'This module is installed','MODULE_ORDER_TOTAL_COUPON_STATUS','true','',6,1,NULL,'2003-10-30 22:16:36',NULL,'zen_cfg_select_option(array(\'true\'),'),(365,'Re-calculate Tax','MODULE_ORDER_TOTAL_COUPON_CALC_TAX','Standard','Re-Calculate Tax',6,7,NULL,'2003-10-30 22:16:36',NULL,'zen_cfg_select_option(array(\'None\', \'Standard\', \'Credit Note\'),'),(366,'Admin Demo Status','ADMIN_DEMO','0','Admin Demo should be on?<br />0= off 1= on',6,0,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(367,'Product option type Select','PRODUCTS_OPTIONS_TYPE_SELECT','0','The number representing the Select type of product option.',0,NULL,'2010-03-04 18:39:23','2010-03-04 18:39:23',NULL,NULL),(368,'Text product option type','PRODUCTS_OPTIONS_TYPE_TEXT','1','Numeric value of the text product option type',6,NULL,'2010-03-04 18:39:23','2010-03-04 18:39:23',NULL,NULL),(369,'Radio button product option type','PRODUCTS_OPTIONS_TYPE_RADIO','2','Numeric value of the radio button product option type',6,NULL,'2010-03-04 18:39:23','2010-03-04 18:39:23',NULL,NULL),(370,'Check box product option type','PRODUCTS_OPTIONS_TYPE_CHECKBOX','3','Numeric value of the check box product option type',6,NULL,'2010-03-04 18:39:23','2010-03-04 18:39:23',NULL,NULL),(371,'File product option type','PRODUCTS_OPTIONS_TYPE_FILE','4','Numeric value of the file product option type',6,NULL,'2010-03-04 18:39:23','2010-03-04 18:39:23',NULL,NULL),(372,'ID for text and file products options values','PRODUCTS_OPTIONS_VALUES_TEXT_ID','0','Numeric value of the products_options_values_id used by the text and file attributes.',6,NULL,'2010-03-04 18:39:23','2010-03-04 18:39:23',NULL,NULL),(373,'Upload prefix','UPLOAD_PREFIX','upload_','Prefix used to differentiate between upload options and other options',0,NULL,'2010-03-04 18:39:23','2010-03-04 18:39:23',NULL,NULL),(374,'Text prefix','TEXT_PREFIX','txt_','Prefix used to differentiate between text option values and other option values',0,NULL,'2010-03-04 18:39:23','2010-03-04 18:39:23',NULL,NULL),(375,'Read Only option type','PRODUCTS_OPTIONS_TYPE_READONLY','5','Numeric value of the file product option type',6,NULL,'2010-03-04 18:39:23','2010-03-04 18:39:23',NULL,NULL),(376,'Products Info - Products Option Name Sort Order','PRODUCTS_OPTIONS_SORT_ORDER','0','Sort order of Option Names for Products Info<br />0= Sort Order, Option Name<br />1= Option Name',18,35,'2010-03-04 18:39:23','2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\'),'),(377,'Products Info - Product Option Value of Attributes Sort Order','PRODUCTS_OPTIONS_SORT_BY_PRICE','1','Sort order of Product Option Values of Attributes for Products Info<br />0= Sort Order, Price<br />1= Sort Order, Option Value Name',18,36,'2010-03-04 18:39:23','2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\'),'),(378,'Product Info - Show Option Values Name Below Attributes Image','PRODUCT_IMAGES_ATTRIBUTES_NAMES','1','Product Info - Show the name of the Option Value beneath the Attribute Image?<br />0= off 1= on',18,41,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(379,'Product Info - Show Sales Discount Savings Status','SHOW_SALE_DISCOUNT_STATUS','1','Product Info - Show the amount of discount savings?<br />0= off 1= on',18,45,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(380,'Product Info - Show Sales Discount Savings Dollars or Percentage','SHOW_SALE_DISCOUNT','1','Product Info - Show the amount of discount savings display as:<br />1= % off 2= $amount off',18,46,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'1\', \'2\'), '),(381,'Product Info - Show Sales Discount Savings Percentage Decimals','SHOW_SALE_DISCOUNT_DECIMALS','0','Product Info - Show discount savings display as a Percentage with how many decimals?:<br />Default= 0',18,47,NULL,'2010-03-04 18:39:23',NULL,NULL),(382,'Product Info - Price is Free Image or Text Status','OTHER_IMAGE_PRICE_IS_FREE_ON','1','Product Info - Show the Price is Free Image or Text on Displayed Price<br />0= Text<br />1= Image',18,50,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(383,'Product Info - Price is Call for Price Image or Text Status','PRODUCTS_PRICE_IS_CALL_IMAGE_ON','1','Product Info - Show the Price is Call for Price Image or Text on Displayed Price<br />0= Text<br />1= Image',18,51,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(384,'Product Quantity Box Status - Adding New Products','PRODUCTS_QTY_BOX_STATUS','1','What should the Default Quantity Box Status be set to when adding New Products?<br /><br />0= off<br />1= on<br />NOTE: This will show a Qty Box when ON and default the Add to Cart to 1',18,55,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(385,'Product Reviews Require Approval','REVIEWS_APPROVAL','1','Do product reviews require approval?<br /><br />Note: When Review Status is off, it will also not show<br /><br />0= off 1= on',18,62,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(386,'Meta Tags - Include Product Model in Title','META_TAG_INCLUDE_MODEL','1','Do you want to include the Product Model in the Meta Tag Title?<br /><br />0= off 1= on',18,69,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(387,'Meta Tags - Include Product Price in Title','META_TAG_INCLUDE_PRICE','1','Do you want to include the Product Price in the Meta Tag Title?<br /><br />0= off 1= on',18,70,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(388,'Meta Tags Generated Description Maximum Length?','MAX_META_TAG_DESCRIPTION_LENGTH','50','Set Generated Meta Tag Description Maximum Length to (words) Default 50:',18,71,NULL,'2010-03-04 18:39:23','',''),(389,'Also Purchased Products Columns per Row','SHOW_PRODUCT_INFO_COLUMNS_ALSO_PURCHASED_PRODUCTS','3','Also Purchased Products Columns per Row<br />0= off or set the sort order',18,72,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\', \'4\', \'5\', \'6\', \'7\', \'8\', \'9\', \'10\', \'11\', \'12\'), '),(390,'Previous Next - Navigation Bar Position','PRODUCT_INFO_PREVIOUS_NEXT','1','Location of Previous/Next Navigation Bar<br />0= off<br />1= Top of Page<br />2= Bottom of Page<br />3= Both Top and Bottom of Page',18,21,'2010-03-04 18:39:23','2010-03-04 18:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'0\', \'text\'=>\'Off\'), array(\'id\'=>\'1\', \'text\'=>\'Top of Page\'), array(\'id\'=>\'2\', \'text\'=>\'Bottom of Page\'), array(\'id\'=>\'3\', \'text\'=>\'Both Top & Bottom of Page\')),'),(391,'Previous Next - Sort Order','PRODUCT_INFO_PREVIOUS_NEXT_SORT','1','Products Display Order by<br />0= Product ID<br />1= Product Name<br />2= Model<br />3= Price, Product Name<br />4= Price, Model<br />5= Product Name, Model<br />6= Product Sort Order',18,22,'2010-03-04 18:39:23','2010-03-04 18:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'0\', \'text\'=>\'Product ID\'), array(\'id\'=>\'1\', \'text\'=>\'Name\'), array(\'id\'=>\'2\', \'text\'=>\'Product Model\'), array(\'id\'=>\'3\', \'text\'=>\'Product Price - Name\'), array(\'id\'=>\'4\', \'text\'=>\'Product Price - Model\'), array(\'id\'=>\'5\', \'text\'=>\'Product Name - Model\'), array(\'id\'=>\'6\', \'text\'=>\'Product Sort Order\')),'),(392,'Previous Next - Button and Image Status','SHOW_PREVIOUS_NEXT_STATUS','0','Button and Product Image status settings are:<br />0= Off<br />1= On',18,20,'2010-03-04 18:39:23','2010-03-04 18:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'0\', \'text\'=>\'Off\'), array(\'id\'=>\'1\', \'text\'=>\'On\')),'),(393,'Previous Next - Button and Image Settings','SHOW_PREVIOUS_NEXT_IMAGES','0','Show Previous/Next Button and Product Image Settings<br />0= Button Only<br />1= Button and Product Image<br />2= Product Image Only',18,21,'2010-03-04 18:39:23','2010-03-04 18:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'0\', \'text\'=>\'Button Only\'), array(\'id\'=>\'1\', \'text\'=>\'Button and Product Image\'), array(\'id\'=>\'2\', \'text\'=>\'Product Image Only\')),'),(394,'Previous Next - Image Width?','PREVIOUS_NEXT_IMAGE_WIDTH','50','Previous/Next Image Width?',18,22,NULL,'2010-03-04 18:39:23','',''),(395,'Previous Next - Image Height?','PREVIOUS_NEXT_IMAGE_HEIGHT','40','Previous/Next Image Height?',18,23,NULL,'2010-03-04 18:39:23','',''),(396,'Previous Next - Navigation Includes Category Position','PRODUCT_INFO_CATEGORIES','1','Product\'s Category Image and Name Alignment Above Previous/Next Navigation Bar<br />0= off<br />1= Align Left<br />2= Align Center<br />3= Align Right',18,20,'2010-03-04 18:39:23','2010-03-04 18:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'0\', \'text\'=>\'Off\'), array(\'id\'=>\'1\', \'text\'=>\'Align Left\'), array(\'id\'=>\'2\', \'text\'=>\'Align Center\'), array(\'id\'=>\'3\', \'text\'=>\'Align Right\')),'),(397,'Previous Next - Navigation Includes Category Name and Image Status','PRODUCT_INFO_CATEGORIES_IMAGE_STATUS','2','Product\'s Category Image and Name Status<br />0= Category Name and Image always shows<br />1= Category Name only<br />2= Category Name and Image when not blank',18,20,'2010-03-04 18:39:23','2010-03-04 18:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'0\', \'text\'=>\'Category Name and Image Always\'), array(\'id\'=>\'1\', \'text\'=>\'Category Name only\'), array(\'id\'=>\'2\', \'text\'=>\'Category Name and Image when not blank\')),'),(398,'Column Width - Left Boxes','BOX_WIDTH_LEFT','222px','Width of the Left Column Boxes<br />px may be included<br />Default = 150px',19,1,'2010-03-28 20:55:00','2003-11-21 22:16:36',NULL,NULL),(399,'Column Width - Right Boxes','BOX_WIDTH_RIGHT','150px','Width of the Right Column Boxes<br />px may be included<br />Default = 150px',19,2,NULL,'2003-11-21 22:16:36',NULL,NULL),(400,'Bread Crumbs Navigation Separator','BREAD_CRUMBS_SEPARATOR','&nbsp;::&nbsp;','Enter the separator symbol to appear between the Navigation Bread Crumb trail<br />Note: Include spaces with the &amp;nbsp; symbol if you want them part of the separator.<br />Default = &amp;nbsp;::&amp;nbsp;',19,3,NULL,'2003-11-21 22:16:36',NULL,'zen_cfg_textarea_small('),(401,'Define Breadcrumb Status','DEFINE_BREADCRUMB_STATUS','1','Enable the Breadcrumb Trail Links?<br />0= OFF<br />1= ON<br />2= Off for Home Page Only',19,4,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\'), '),(402,'Bestsellers - Number Padding','BEST_SELLERS_FILLER','&nbsp;','What do you want to Pad the numbers with?<br />Default = &amp;nbsp;',19,5,NULL,'2003-11-21 22:16:36',NULL,'zen_cfg_textarea_small('),(403,'Bestsellers - Truncate Product Names','BEST_SELLERS_TRUNCATE','35','What size do you want to truncate the Product Names?<br />Default = 35',19,6,NULL,'2003-11-21 22:16:36',NULL,NULL),(404,'Bestsellers - Truncate Product Names followed by ...','BEST_SELLERS_TRUNCATE_MORE','true','When truncated Product Names follow with ...<br />Default = true',19,7,'2003-03-21 13:08:25','2003-03-21 11:42:47',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(405,'Categories Box - Show Specials Link','SHOW_CATEGORIES_BOX_SPECIALS','true','Show Specials Link in the Categories Box',19,8,'2003-03-21 13:08:25','2003-03-21 11:42:47',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(406,'Categories Box - Show Products New Link','SHOW_CATEGORIES_BOX_PRODUCTS_NEW','false','Show Products New Link in the Categories Box',19,9,'2010-03-04 22:01:44','2003-03-21 11:42:47',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(407,'Shopping Cart Box Status','SHOW_SHOPPING_CART_BOX_STATUS','1','Shopping Cart Shows<br />0= Always<br />1= Only when full<br />2= Only when full but not when viewing the Shopping Cart',19,10,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\'), '),(408,'Categories Box - Show Featured Products Link','SHOW_CATEGORIES_BOX_FEATURED_PRODUCTS','true','Show Featured Products Link in the Categories Box',19,11,'2003-03-21 13:08:25','2003-03-21 11:42:47',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(409,'Categories Box - Show Products All Link','SHOW_CATEGORIES_BOX_PRODUCTS_ALL','true','Show Products All Link in the Categories Box',19,12,'2003-03-21 13:08:25','2003-03-21 11:42:47',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(410,'Column Left Status - Global','COLUMN_LEFT_STATUS','1','Show Column Left, unless page override exists?<br />0= Column Left is always off<br />1= Column Left is on, unless page override',19,15,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(411,'Column Right Status - Global','COLUMN_RIGHT_STATUS','0','Show Column Right, unless page override exists?<br />0= Column Right is always off<br />1= Column Right is on, unless page override',19,16,'2010-04-03 08:27:24','2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(412,'Column Width - Left','COLUMN_WIDTH_LEFT','222px','Width of the Left Column<br />px may be included<br />Default = 150px',19,20,'2010-03-28 20:55:25','2003-11-21 22:16:36',NULL,NULL),(413,'Column Width - Right','COLUMN_WIDTH_RIGHT','150px','Width of the Right Column<br />px may be included<br />Default = 150px',19,21,NULL,'2003-11-21 22:16:36',NULL,NULL),(414,'Categories Separator between links Status','SHOW_CATEGORIES_SEPARATOR_LINK','1','Show Category Separator between Category Names and Links?<br />0= off<br />1= on',19,24,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(415,'Categories Separator between the Category Name and Count','CATEGORIES_SEPARATOR','-&gt;','What separator do you want between the Category name and the count?<br />Default = -&amp;gt;',19,25,NULL,'2003-11-21 22:16:36',NULL,'zen_cfg_textarea_small('),(416,'Categories Separator between the Category Name and Sub Categories','CATEGORIES_SEPARATOR_SUBS','|_&nbsp;','What separator do you want between the Category name and Sub Category Name?<br />Default = |_&amp;nbsp;',19,26,NULL,'2004-03-25 22:16:36',NULL,'zen_cfg_textarea_small('),(417,'Categories Count Prefix','CATEGORIES_COUNT_PREFIX','&nbsp;(','What do you want to Prefix the count with?<br />Default= (',19,27,NULL,'2003-01-21 22:16:36',NULL,'zen_cfg_textarea_small('),(418,'Categories Count Suffix','CATEGORIES_COUNT_SUFFIX',')','What do you want as a Suffix to the count?<br />Default= )',19,28,NULL,'2003-01-21 22:16:36',NULL,'zen_cfg_textarea_small('),(419,'Categories SubCategories Indent','CATEGORIES_SUBCATEGORIES_INDENT','&nbsp;&nbsp;','What do you want to use as the subcategories indent?<br />Default= &nbsp;&nbsp;',19,29,NULL,'2004-06-24 22:16:36',NULL,'zen_cfg_textarea_small('),(420,'Categories with 0 Products Status','CATEGORIES_COUNT_ZERO','0','Show Category Count for 0 Products?<br />0= off<br />1= on',19,30,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(421,'Split Categories Box','CATEGORIES_SPLIT_DISPLAY','True','Split the categories box display by product type',19,31,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'True\', \'False\'), '),(422,'Shopping Cart - Show Totals','SHOW_TOTALS_IN_CART','3','Show Totals Above Shopping Cart?<br />0= off<br />1= on: Items Weight Amount<br />2= on: Items Weight Amount, but no weight when 0<br />3= on: Items Amount',19,31,'2010-03-04 23:08:21','2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\'), '),(423,'Customer Greeting - Show on Index Page','SHOW_CUSTOMER_GREETING','1','Always Show Customer Greeting on Index?<br />0= off<br />1= on',19,40,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(424,'Categories - Always Show on Main Page','SHOW_CATEGORIES_ALWAYS','0','Always Show Categories on Main Page<br />0= off<br />1= on<br />Default category can be set to Top Level or a Specific Top Level',19,45,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(425,'Main Page - Opens with Category','CATEGORIES_START_MAIN','0','0= Top Level Categories<br />Or enter the Category ID#<br />Note: Sub Categories can also be used Example: 3_10',19,46,NULL,'2010-03-04 18:39:23','',''),(426,'Categories - Always Open to Show SubCategories','SHOW_CATEGORIES_SUBCATEGORIES_ALWAYS','1','Always Show Categories and SubCategories<br />0= off, just show Top Categories<br />1= on, Always show Categories and SubCategories when selected',19,47,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(427,'Banner Display Groups - Header Position 1','SHOW_BANNERS_GROUP_SET1','','The Banner Display Groups can be from 1 Banner Group or Multiple Banner Groups<br /><br />For Multiple Banner Groups enter the Banner Group Name separated by a colon <strong>:</strong><br /><br />Example: Wide-Banners:SideBox-Banners<br /><br />What Banner Group(s) do you want to use in the Header Position 1?<br />Leave blank for none',19,55,NULL,'2010-03-04 18:39:23','',''),(428,'Banner Display Groups - Header Position 2','SHOW_BANNERS_GROUP_SET2','','The Banner Display Groups can be from 1 Banner Group or Multiple Banner Groups<br /><br />For Multiple Banner Groups enter the Banner Group Name separated by a colon <strong>:</strong><br /><br />Example: Wide-Banners:SideBox-Banners<br /><br />What Banner Group(s) do you want to use in the Header Position 2?<br />Leave blank for none',19,56,NULL,'2010-03-04 18:39:23','',''),(429,'Banner Display Groups - Header Position 3','SHOW_BANNERS_GROUP_SET3','','The Banner Display Groups can be from 1 Banner Group or Multiple Banner Groups<br /><br />For Multiple Banner Groups enter the Banner Group Name separated by a colon <strong>:</strong><br /><br />Example: Wide-Banners:SideBox-Banners<br /><br />What Banner Group(s) do you want to use in the Header Position 3?<br />Leave blank for none',19,57,NULL,'2010-03-04 18:39:23','',''),(430,'Banner Display Groups - Footer Position 1','SHOW_BANNERS_GROUP_SET4','','The Banner Display Groups can be from 1 Banner Group or Multiple Banner Groups<br /><br />For Multiple Banner Groups enter the Banner Group Name separated by a colon <strong>:</strong><br /><br />Example: Wide-Banners:SideBox-Banners<br /><br />What Banner Group(s) do you want to use in the Footer Position 1?<br />Leave blank for none',19,65,NULL,'2010-03-04 18:39:23','',''),(431,'Banner Display Groups - Footer Position 2','SHOW_BANNERS_GROUP_SET5','','The Banner Display Groups can be from 1 Banner Group or Multiple Banner Groups<br /><br />For Multiple Banner Groups enter the Banner Group Name separated by a colon <strong>:</strong><br /><br />Example: Wide-Banners:SideBox-Banners<br /><br />What Banner Group(s) do you want to use in the Footer Position 2?<br />Leave blank for none',19,66,NULL,'2010-03-04 18:39:23','',''),(432,'Banner Display Groups - Footer Position 3','SHOW_BANNERS_GROUP_SET6','Wide-Banners','The Banner Display Groups can be from 1 Banner Group or Multiple Banner Groups<br /><br />For Multiple Banner Groups enter the Banner Group Name separated by a colon <strong>:</strong><br /><br />Example: Wide-Banners:SideBox-Banners<br /><br />Default Group is Wide-Banners<br /><br />What Banner Group(s) do you want to use in the Footer Position 3?<br />Leave blank for none',19,67,NULL,'2010-03-04 18:39:23','',''),(433,'Banner Display Groups - Side Box banner_box','SHOW_BANNERS_GROUP_SET7','SideBox-Banners','The Banner Display Groups can be from 1 Banner Group or Multiple Banner Groups<br /><br />For Multiple Banner Groups enter the Banner Group Name separated by a colon <strong>:</strong><br /><br />Example: Wide-Banners:SideBox-Banners<br />Default Group is SideBox-Banners<br /><br />What Banner Group(s) do you want to use in the Side Box - banner_box?<br />Leave blank for none',19,70,NULL,'2010-03-04 18:39:23','',''),(434,'Banner Display Groups - Side Box banner_box2','SHOW_BANNERS_GROUP_SET8','SideBox-Banners','The Banner Display Groups can be from 1 Banner Group or Multiple Banner Groups<br /><br />For Multiple Banner Groups enter the Banner Group Name separated by a colon <strong>:</strong><br /><br />Example: Wide-Banners:SideBox-Banners<br />Default Group is SideBox-Banners<br /><br />What Banner Group(s) do you want to use in the Side Box - banner_box2?<br />Leave blank for none',19,71,NULL,'2010-03-04 18:39:23','',''),(435,'Banner Display Group - Side Box banner_box_all','SHOW_BANNERS_GROUP_SET_ALL','BannersAll','The Banner Display Group may only be from one (1) Banner Group for the Banner All sidebox<br /><br />Default Group is BannersAll<br /><br />What Banner Group do you want to use in the Side Box - banner_box_all?<br />Leave blank for none',19,72,NULL,'2010-03-04 18:39:23','',''),(436,'Footer - Show IP Address status','SHOW_FOOTER_IP','0','Show Customer IP Address in the Footer<br />0= off<br />1= on<br />Should the Customer IP Address show in the footer?',19,80,'2010-04-02 07:16:31','2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(437,'Product Discount Quantities - Add how many blank discounts?','DISCOUNT_QTY_ADD','5','How many blank discount quantities should be added for Product Pricing?',19,90,NULL,'2010-03-04 18:39:23','',''),(438,'Product Discount Quantities - Display how many per row?','DISCOUNT_QUANTITY_PRICES_COLUMN','5','How many discount quantities should show per row on Product Info Pages?',19,95,NULL,'2010-03-04 18:39:23','',''),(439,'Categories/Products Display Sort Order','CATEGORIES_PRODUCTS_SORT_ORDER','0','Categories/Products Display Sort Order<br />0= Categories/Products Sort Order/Name<br />1= Categories/Products Name<br />2= Products Model<br />3= Products Qty+, Products Name<br />4= Products Qty-, Products Name<br />5= Products Price+, Products Name<br />6= Products Price-, Products Name',19,100,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\', \'4\', \'5\', \'6\'), '),(440,'Option Names and Values Global Add, Copy and Delete Features Status','OPTION_NAMES_VALUES_GLOBAL_STATUS','1','Option Names and Values Global Add, Copy and Delete Features Status<br />0= Hide Features<br />1= Show Features<br />2= Products Model',19,110,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(441,'Categories-Tabs Menu ON/OFF','CATEGORIES_TABS_STATUS','1','Categories-Tabs<br />This enables the display of your store\'s categories as a menu across the top of your header. There are many potential creative uses for this.<br />0= Hide Categories Tabs<br />1= Show Categories Tabs',19,112,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(442,'Site Map - include My Account Links?','SHOW_ACCOUNT_LINKS_ON_SITE_MAP','No','Should the links to My Account show up on the site-map?<br />Note: Spiders will try to index this page, and likely should not be sent to secure pages, since there is no benefit in indexing a login page.<br /><br />Default: false',19,115,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'Yes\', \'No\'), '),(443,'Skip 1-prod Categories','SKIP_SINGLE_PRODUCT_CATEGORIES','True','Skip single-product categories<br />If this option is set to True, then if the customer clicks on a link to a category which only contains a single item, then Zen Cart will take them directly to that product-page, rather than present them with another link to click in order to see the product.<br />Default: True',19,120,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'True\', \'False\'), '),(444,'Use split-login page','USE_SPLIT_LOGIN_MODE','False','The login page can be displayed in two modes: Split or Vertical.<br />In Split mode, the create-account options are accessed by clicking a button to get to the create-account page.  In Vertical mode, the create-account input fields are all displayed inline, below the login field, making one less click for the customer to create their account.<br />Default: False',19,121,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'True\', \'False\'), '),(445,'CSS Buttons','IMAGE_USE_CSS_BUTTONS','No','CSS Buttons<br />Use CSS buttons instead of images (GIF/JPG)?<br />Button styles must be configured in the stylesheet if you enable this option.',19,147,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'No\', \'Yes\'), '),(446,'<strong>Down for Maintenance: ON/OFF</strong>','DOWN_FOR_MAINTENANCE','false','Down for Maintenance <br />(true=on false=off)',20,1,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(447,'Down for Maintenance: filename','DOWN_FOR_MAINTENANCE_FILENAME','down_for_maintenance','Down for Maintenance filename<br />Note: Do not include the extension<br />Default=down_for_maintenance',20,2,NULL,'2010-03-04 18:39:23',NULL,''),(448,'Down for Maintenance: Hide Header','DOWN_FOR_MAINTENANCE_HEADER_OFF','false','Down for Maintenance: Hide Header <br />(true=hide false=show)',20,3,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(449,'Down for Maintenance: Hide Column Left','DOWN_FOR_MAINTENANCE_COLUMN_LEFT_OFF','false','Down for Maintenance: Hide Column Left <br />(true=hide false=show)',20,4,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(450,'Down for Maintenance: Hide Column Right','DOWN_FOR_MAINTENANCE_COLUMN_RIGHT_OFF','false','Down for Maintenance: Hide Column Right <br />(true=hide false=show)',20,5,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(451,'Down for Maintenance: Hide Footer','DOWN_FOR_MAINTENANCE_FOOTER_OFF','false','Down for Maintenance: Hide Footer <br />(true=hide false=show)',20,6,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(452,'Down for Maintenance: Hide Prices','DOWN_FOR_MAINTENANCE_PRICES_OFF','false','Down for Maintenance: Hide Prices <br />(true=hide false=show)',20,7,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(453,'Down For Maintenance (exclude this IP-Address)','EXCLUDE_ADMIN_IP_FOR_MAINTENANCE','your IP (ADMIN)','This IP Address is able to access the website while it is Down For Maintenance (like webmaster)<br />To enter multiple IP Addresses, separate with a comma. If you do not know your IP Address, check in the Footer of your Shop.',20,8,'2003-03-21 13:43:22','2003-03-21 21:20:07',NULL,NULL),(454,'NOTICE PUBLIC Before going Down for Maintenance: ON/OFF','WARN_BEFORE_DOWN_FOR_MAINTENANCE','false','Give a WARNING some time before you put your website Down for Maintenance<br />(true=on false=off)<br />If you set the \'Down For Maintenance: ON/OFF\' to true this will automaticly be updated to false',20,9,'2003-03-21 13:08:25','2003-03-21 11:42:47',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(455,'Date and hours for notice before maintenance','PERIOD_BEFORE_DOWN_FOR_MAINTENANCE','15/05/2003  2-3 PM','Date and hours for notice before maintenance website, enter date and hours for maintenance website',20,10,'2003-03-21 13:08:25','2003-03-21 11:42:47',NULL,NULL),(456,'Display when webmaster has enabled maintenance','DISPLAY_MAINTENANCE_TIME','false','Display when Webmaster has enabled maintenance <br />(true=on false=off)<br />',20,11,'2003-03-21 13:08:25','2003-03-21 11:42:47',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(457,'Display website maintenance period','DISPLAY_MAINTENANCE_PERIOD','false','Display Website maintenance period <br />(true=on false=off)<br />',20,12,'2003-03-21 13:08:25','2003-03-21 11:42:47',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(458,'Website maintenance period','TEXT_MAINTENANCE_PERIOD_TIME','2h00','Enter Website Maintenance period (hh:mm)',20,13,'2003-03-21 13:08:25','2003-03-21 11:42:47',NULL,NULL),(459,'Confirm Terms and Conditions During Checkout Procedure','DISPLAY_CONDITIONS_ON_CHECKOUT','false','Show the Terms and Conditions during the checkout procedure which the customer must agree to.',11,1,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(460,'Confirm Privacy Notice During Account Creation Procedure','DISPLAY_PRIVACY_CONDITIONS','false','Show the Privacy Notice during the account creation procedure which the customer must agree to.',11,2,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(461,'Display Product Image','PRODUCT_NEW_LIST_IMAGE','1102','Do you want to display the Product Image?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',21,1,NULL,'2010-03-04 18:39:23',NULL,NULL),(462,'Display Product Quantity','PRODUCT_NEW_LIST_QUANTITY','1202','Do you want to display the Product Quantity?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',21,2,NULL,'2010-03-04 18:39:23',NULL,NULL),(463,'Display Product Buy Now Button','PRODUCT_NEW_BUY_NOW','1300','Do you want to display the Product Buy Now Button<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',21,3,NULL,'2010-03-04 18:39:23',NULL,NULL),(464,'Display Product Name','PRODUCT_NEW_LIST_NAME','2101','Do you want to display the Product Name?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',21,4,NULL,'2010-03-04 18:39:23',NULL,NULL),(465,'Display Product Model','PRODUCT_NEW_LIST_MODEL','2201','Do you want to display the Product Model?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',21,5,NULL,'2010-03-04 18:39:23',NULL,NULL),(466,'Display Product Manufacturer Name','PRODUCT_NEW_LIST_MANUFACTURER','2302','Do you want to display the Product Manufacturer Name?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',21,6,NULL,'2010-03-04 18:39:23',NULL,NULL),(467,'Display Product Price','PRODUCT_NEW_LIST_PRICE','2402','Do you want to display the Product Price<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',21,7,NULL,'2010-03-04 18:39:23',NULL,NULL),(468,'Display Product Weight','PRODUCT_NEW_LIST_WEIGHT','2502','Do you want to display the Product Weight?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',21,8,NULL,'2010-03-04 18:39:23',NULL,NULL),(469,'Display Product Date Added','PRODUCT_NEW_LIST_DATE_ADDED','2601','Do you want to display the Product Date Added?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',21,9,NULL,'2010-03-04 18:39:23',NULL,NULL),(470,'Display Product Description','PRODUCT_NEW_LIST_DESCRIPTION','150','How many characters do you want to display of the Product Description?<br /><br />0= OFF<br />150= Suggested Length, or enter the maximum number of characters to display',21,10,NULL,'2010-03-04 18:39:23',NULL,NULL),(471,'Display Product Display - Default Sort Order','PRODUCT_NEW_LIST_SORT_DEFAULT','6','What Sort Order Default should be used for New Products Display?<br />Default= 6 for Date New to Old<br /><br />1= Products Name<br />2= Products Name Desc<br />3= Price low to high, Products Name<br />4= Price high to low, Products Name<br />5= Model<br />6= Date Added desc<br />7= Date Added<br />8= Product Sort Order',21,11,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'1\', \'2\', \'3\', \'4\', \'5\', \'6\', \'7\', \'8\'), '),(472,'Default Products New Group ID','PRODUCT_NEW_LIST_GROUP_ID','21','Warning: Only change this if your Products New Group ID has changed from the default of 21<br />What is the configuration_group_id for New Products Listings?',21,12,NULL,'2010-03-04 18:39:23',NULL,NULL),(473,'Display Multiple Products Qty Box Status and Set Button Location','PRODUCT_NEW_LISTING_MULTIPLE_ADD_TO_CART','3','Do you want to display Add Multiple Products Qty Box and Set Button Location?<br />0= off<br />1= Top<br />2= Bottom<br />3= Both',21,25,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\'), '),(474,'Mask Upcoming Products from being include as New Products','SHOW_NEW_PRODUCTS_UPCOMING_MASKED','0','Do you want to mask Upcoming Products from being included as New Products in Listing, Sideboxes and Centerbox?<br />0= off<br />1= on',21,30,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(475,'Display Product Image','PRODUCT_FEATURED_LIST_IMAGE','1102','Do you want to display the Product Image?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',22,1,NULL,'2010-03-04 18:39:23',NULL,NULL),(476,'Display Product Quantity','PRODUCT_FEATURED_LIST_QUANTITY','1202','Do you want to display the Product Quantity?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',22,2,NULL,'2010-03-04 18:39:23',NULL,NULL),(477,'Display Product Buy Now Button','PRODUCT_FEATURED_BUY_NOW','1300','Do you want to display the Product Buy Now Button<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',22,3,NULL,'2010-03-04 18:39:23',NULL,NULL),(478,'Display Product Name','PRODUCT_FEATURED_LIST_NAME','2101','Do you want to display the Product Name?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',22,4,NULL,'2010-03-04 18:39:23',NULL,NULL),(479,'Display Product Model','PRODUCT_FEATURED_LIST_MODEL','2201','Do you want to display the Product Model?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',22,5,NULL,'2010-03-04 18:39:23',NULL,NULL),(480,'Display Product Manufacturer Name','PRODUCT_FEATURED_LIST_MANUFACTURER','2302','Do you want to display the Product Manufacturer Name?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',22,6,NULL,'2010-03-04 18:39:23',NULL,NULL),(481,'Display Product Price','PRODUCT_FEATURED_LIST_PRICE','2402','Do you want to display the Product Price<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',22,7,NULL,'2010-03-04 18:39:23',NULL,NULL),(482,'Display Product Weight','PRODUCT_FEATURED_LIST_WEIGHT','2502','Do you want to display the Product Weight?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',22,8,NULL,'2010-03-04 18:39:23',NULL,NULL),(483,'Display Product Date Added','PRODUCT_FEATURED_LIST_DATE_ADDED','2601','Do you want to display the Product Date Added?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',22,9,NULL,'2010-03-04 18:39:23',NULL,NULL),(484,'Display Product Description','PRODUCT_FEATURED_LIST_DESCRIPTION','150','How many characters do you want to display of the Product Description?<br /><br />0= OFF<br />150= Suggested Length, or enter the maximum number of characters to display',22,10,NULL,'2010-03-04 18:39:23',NULL,NULL),(485,'Display Product Display - Default Sort Order','PRODUCT_FEATURED_LIST_SORT_DEFAULT','1','What Sort Order Default should be used for Featured Product Display?<br />Default= 1 for Product Name<br /><br />1= Products Name<br />2= Products Name Desc<br />3= Price low to high, Products Name<br />4= Price high to low, Products Name<br />5= Model<br />6= Date Added desc<br />7= Date Added<br />8= Product Sort Order',22,11,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'1\', \'2\', \'3\', \'4\', \'5\', \'6\', \'7\', \'8\'), '),(486,'Default Featured Products Group ID','PRODUCT_FEATURED_LIST_GROUP_ID','22','Warning: Only change this if your Featured Products Group ID has changed from the default of 22<br />What is the configuration_group_id for Featured Products Listings?',22,12,NULL,'2010-03-04 18:39:23',NULL,NULL),(487,'Display Multiple Products Qty Box Status and Set Button Location','PRODUCT_FEATURED_LISTING_MULTIPLE_ADD_TO_CART','3','Do you want to display Add Multiple Products Qty Box and Set Button Location?<br />0= off<br />1= Top<br />2= Bottom<br />3= Both',22,25,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\'), '),(488,'Display Product Image','PRODUCT_ALL_LIST_IMAGE','1102','Do you want to display the Product Image?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',23,1,NULL,'2010-03-04 18:39:23',NULL,NULL),(489,'Display Product Quantity','PRODUCT_ALL_LIST_QUANTITY','1202','Do you want to display the Product Quantity?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',23,2,NULL,'2010-03-04 18:39:23',NULL,NULL),(490,'Display Product Buy Now Button','PRODUCT_ALL_BUY_NOW','1300','Do you want to display the Product Buy Now Button<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',23,3,NULL,'2010-03-04 18:39:23',NULL,NULL),(491,'Display Product Name','PRODUCT_ALL_LIST_NAME','2101','Do you want to display the Product Name?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',23,4,NULL,'2010-03-04 18:39:23',NULL,NULL),(492,'Display Product Model','PRODUCT_ALL_LIST_MODEL','2201','Do you want to display the Product Model?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',23,5,NULL,'2010-03-04 18:39:23',NULL,NULL),(493,'Display Product Manufacturer Name','PRODUCT_ALL_LIST_MANUFACTURER','2302','Do you want to display the Product Manufacturer Name?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',23,6,NULL,'2010-03-04 18:39:23',NULL,NULL),(494,'Display Product Price','PRODUCT_ALL_LIST_PRICE','2402','Do you want to display the Product Price<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',23,7,NULL,'2010-03-04 18:39:23',NULL,NULL),(495,'Display Product Weight','PRODUCT_ALL_LIST_WEIGHT','2502','Do you want to display the Product Weight?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',23,8,NULL,'2010-03-04 18:39:23',NULL,NULL),(496,'Display Product Date Added','PRODUCT_ALL_LIST_DATE_ADDED','2601','Do you want to display the Product Date Added?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',23,9,NULL,'2010-03-04 18:39:23',NULL,NULL),(497,'Display Product Description','PRODUCT_ALL_LIST_DESCRIPTION','150','How many characters do you want to display of the Product Description?<br /><br />0= OFF<br />150= Suggested Length, or enter the maximum number of characters to display',23,10,NULL,'2010-03-04 18:39:23',NULL,NULL),(498,'Display Product Display - Default Sort Order','PRODUCT_ALL_LIST_SORT_DEFAULT','1','What Sort Order Default should be used for All Products Display?<br />Default= 1 for Product Name<br /><br />1= Products Name<br />2= Products Name Desc<br />3= Price low to high, Products Name<br />4= Price high to low, Products Name<br />5= Model<br />6= Date Added desc<br />7= Date Added<br />8= Product Sort Order',23,11,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'1\', \'2\', \'3\', \'4\', \'5\', \'6\', \'7\', \'8\'), '),(499,'Default Products All Group ID','PRODUCT_ALL_LIST_GROUP_ID','23','Warning: Only change this if your Products All Group ID has changed from the default of 23<br />What is the configuration_group_id for Products All Listings?',23,12,NULL,'2010-03-04 18:39:23',NULL,NULL),(500,'Display Multiple Products Qty Box Status and Set Button Location','PRODUCT_ALL_LISTING_MULTIPLE_ADD_TO_CART','3','Do you want to display Add Multiple Products Qty Box and Set Button Location?<br />0= off<br />1= Top<br />2= Bottom<br />3= Both',23,25,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\'), '),(501,'Show New Products on Main Page','SHOW_PRODUCT_INFO_MAIN_NEW_PRODUCTS','0','Show New Products on Main Page<br />0= off or set the sort order',24,65,'2010-03-04 21:46:50','2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\', \'4\'), '),(502,'Show Featured Products on Main Page','SHOW_PRODUCT_INFO_MAIN_FEATURED_PRODUCTS','0','Show Featured Products on Main Page<br />0= off or set the sort order',24,66,'2010-03-04 21:47:04','2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\', \'4\'), '),(503,'Show Special Products on Main Page','SHOW_PRODUCT_INFO_MAIN_SPECIALS_PRODUCTS','1','Show Special Products on Main Page<br />0= off or set the sort order',24,67,'2010-03-04 22:05:35','2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\', \'4\'), '),(504,'Show Upcoming Products on Main Page','SHOW_PRODUCT_INFO_MAIN_UPCOMING','0','Show Upcoming Products on Main Page<br />0= off or set the sort order',24,68,'2010-03-04 21:48:33','2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\', \'4\'), '),(505,'Show New Products on Main Page - Category with SubCategories','SHOW_PRODUCT_INFO_CATEGORY_NEW_PRODUCTS','0','Show New Products on Main Page - Category with SubCategories<br />0= off or set the sort order',24,70,'2010-03-04 21:48:49','2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\', \'4\'), '),(506,'Show Featured Products on Main Page - Category with SubCategories','SHOW_PRODUCT_INFO_CATEGORY_FEATURED_PRODUCTS','0','Show Featured Products on Main Page - Category with SubCategories<br />0= off or set the sort order',24,71,'2010-03-04 22:06:00','2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\', \'4\'), '),(507,'Show Special Products on Main Page - Category with SubCategories','SHOW_PRODUCT_INFO_CATEGORY_SPECIALS_PRODUCTS','3','Show Special Products on Main Page - Category with SubCategories<br />0= off or set the sort order',24,72,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\', \'4\'), '),(508,'Show Upcoming Products on Main Page - Category with SubCategories','SHOW_PRODUCT_INFO_CATEGORY_UPCOMING','4','Show Upcoming Products on Main Page - Category with SubCategories<br />0= off or set the sort order',24,73,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\', \'4\'), '),(509,'Show New Products on Main Page - Errors and Missing Products Page','SHOW_PRODUCT_INFO_MISSING_NEW_PRODUCTS','1','Show New Products on Main Page - Errors and Missing Product<br />0= off or set the sort order',24,75,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\', \'4\'), '),(510,'Show Featured Products on Main Page - Errors and Missing Products Page','SHOW_PRODUCT_INFO_MISSING_FEATURED_PRODUCTS','2','Show Featured Products on Main Page - Errors and Missing Product<br />0= off or set the sort order',24,76,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\', \'4\'), '),(511,'Show Special Products on Main Page - Errors and Missing Products Page','SHOW_PRODUCT_INFO_MISSING_SPECIALS_PRODUCTS','3','Show Special Products on Main Page - Errors and Missing Product<br />0= off or set the sort order',24,77,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\', \'4\'), '),(512,'Show Upcoming Products on Main Page - Errors and Missing Products Page','SHOW_PRODUCT_INFO_MISSING_UPCOMING','4','Show Upcoming Products on Main Page - Errors and Missing Product<br />0= off or set the sort order',24,78,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\', \'4\'), '),(513,'Show New Products - below Product Listing','SHOW_PRODUCT_INFO_LISTING_BELOW_NEW_PRODUCTS','0','Show New Products below Product Listing<br />0= off or set the sort order',24,85,'2010-03-04 22:06:31','2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\', \'4\'), '),(514,'Show Featured Products - below Product Listing','SHOW_PRODUCT_INFO_LISTING_BELOW_FEATURED_PRODUCTS','2','Show Featured Products below Product Listing<br />0= off or set the sort order',24,86,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\', \'4\'), '),(515,'Show Special Products - below Product Listing','SHOW_PRODUCT_INFO_LISTING_BELOW_SPECIALS_PRODUCTS','3','Show Special Products below Product Listing<br />0= off or set the sort order',24,87,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\', \'4\'), '),(516,'Show Upcoming Products - below Product Listing','SHOW_PRODUCT_INFO_LISTING_BELOW_UPCOMING','4','Show Upcoming Products below Product Listing<br />0= off or set the sort order',24,88,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\', \'4\'), '),(517,'New Products Columns per Row','SHOW_PRODUCT_INFO_COLUMNS_NEW_PRODUCTS','3','New Products Columns per Row',24,95,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'1\', \'2\', \'3\', \'4\', \'5\', \'6\', \'7\', \'8\', \'9\', \'10\', \'11\', \'12\'), '),(518,'Featured Products Columns per Row','SHOW_PRODUCT_INFO_COLUMNS_FEATURED_PRODUCTS','3','Featured Products Columns per Row',24,96,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'1\', \'2\', \'3\', \'4\', \'5\', \'6\', \'7\', \'8\', \'9\', \'10\', \'11\', \'12\'), '),(519,'Special Products Columns per Row','SHOW_PRODUCT_INFO_COLUMNS_SPECIALS_PRODUCTS','3','Special Products Columns per Row',24,97,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'1\', \'2\', \'3\', \'4\', \'5\', \'6\', \'7\', \'8\', \'9\', \'10\', \'11\', \'12\'), '),(520,'Filter Product Listing for Current Top Level Category When Enabled','SHOW_PRODUCT_INFO_ALL_PRODUCTS','1','Filter the products when Product Listing is enabled for current Main Category or show products from all categories?<br />0= Filter Off 1=Filter On ',24,100,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(521,'Define Main Page Status','DEFINE_MAIN_PAGE_STATUS','1','Enable the Defined Main Page Link/Text?<br />0= Link ON, Define Text OFF<br />1= Link ON, Define Text ON<br />2= Link OFF, Define Text ON<br />3= Link OFF, Define Text OFF',25,60,'2010-03-04 18:39:23','2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\'),'),(522,'Define Contact Us Status','DEFINE_CONTACT_US_STATUS','1','Enable the Defined Contact Us Link/Text?<br />0= Link ON, Define Text OFF<br />1= Link ON, Define Text ON<br />2= Link OFF, Define Text ON<br />3= Link OFF, Define Text OFF',25,61,'2010-03-04 18:39:23','2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\'),'),(523,'Define Privacy Status','DEFINE_PRIVACY_STATUS','3','Enable the Defined Privacy Link/Text?<br />0= Link ON, Define Text OFF<br />1= Link ON, Define Text ON<br />2= Link OFF, Define Text ON<br />3= Link OFF, Define Text OFF',25,62,'2010-05-02 14:18:38','2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\'),'),(524,'Define Shipping & Returns','DEFINE_SHIPPINGINFO_STATUS','1','Enable the Defined Shipping & Returns Link/Text?<br />0= Link ON, Define Text OFF<br />1= Link ON, Define Text ON<br />2= Link OFF, Define Text ON<br />3= Link OFF, Define Text OFF',25,63,'2010-03-04 18:39:23','2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\'),'),(525,'Define Conditions of Use','DEFINE_CONDITIONS_STATUS','1','Enable the Defined Conditions of Use Link/Text?<br />0= Link ON, Define Text OFF<br />1= Link ON, Define Text ON<br />2= Link OFF, Define Text ON<br />3= Link OFF, Define Text OFF',25,64,'2010-03-04 18:39:23','2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\'),'),(526,'Define Checkout Success','DEFINE_CHECKOUT_SUCCESS_STATUS','1','Enable the Defined Checkout Success Link/Text?<br />0= Link ON, Define Text OFF<br />1= Link ON, Define Text ON<br />2= Link OFF, Define Text ON<br />3= Link OFF, Define Text OFF',25,65,'2010-03-04 18:39:23','2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\'),'),(527,'Define Discount Coupon','DEFINE_DISCOUNT_COUPON_STATUS','1','Enable the Defined Discount Coupon Link/Text?<br />0= Link ON, Define Text OFF<br />1= Link ON, Define Text ON<br />2= Link OFF, Define Text ON<br />3= Link OFF, Define Text OFF',25,66,'2010-03-04 18:39:23','2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\'),'),(528,'Define Site Map Status','DEFINE_SITE_MAP_STATUS','1','Enable the Defined Site Map Link/Text?<br />0= Link ON, Define Text OFF<br />1= Link ON, Define Text ON<br />2= Link OFF, Define Text ON<br />3= Link OFF, Define Text OFF',25,67,'2010-03-04 18:39:23','2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\'),'),(529,'Define Page-Not-Found Status','DEFINE_PAGE_NOT_FOUND_STATUS','1','Enable the Defined Page-Not-Found Text from define-pages?<br />0= Define Text OFF<br />1= Define Text ON',25,67,'2010-03-04 18:39:23','2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\'),'),(530,'Define Page 2','DEFINE_PAGE_2_STATUS','1','Enable the Defined Page 2 Link/Text?<br />0= Link ON, Define Text OFF<br />1= Link ON, Define Text ON<br />2= Link OFF, Define Text ON<br />3= Link OFF, Define Text OFF',25,82,'2010-03-04 18:39:23','2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\'),'),(531,'Define Page 3','DEFINE_PAGE_3_STATUS','1','Enable the Defined Page 3 Link/Text?<br />0= Link ON, Define Text OFF<br />1= Link ON, Define Text ON<br />2= Link OFF, Define Text ON<br />3= Link OFF, Define Text OFF',25,83,'2010-03-04 18:39:23','2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\'),'),(532,'Define Page 4','DEFINE_PAGE_4_STATUS','1','Enable the Defined Page 4 Link/Text?<br />0= Link ON, Define Text OFF<br />1= Link ON, Define Text ON<br />2= Link OFF, Define Text ON<br />3= Link OFF, Define Text OFF',25,84,'2010-03-04 18:39:23','2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\'),'),(533,'EZ-Pages Display Status - HeaderBar','EZPAGES_STATUS_HEADER','1','Display of EZ-Pages content can be Globally enabled/disabled for the Header Bar<br />0 = Off<br />1 = On<br />2= On ADMIN IP ONLY located in Website Maintenance<br />NOTE: Warning only shows to the Admin and not to the public',30,10,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\'), '),(534,'EZ-Pages Display Status - FooterBar','EZPAGES_STATUS_FOOTER','1','Display of EZ-Pages content can be Globally enabled/disabled for the Footer Bar<br />0 = Off<br />1 = On<br />2= On ADMIN IP ONLY located in Website Maintenance<br />NOTE: Warning only shows to the Admin and not to the public',30,11,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\'), '),(535,'EZ-Pages Display Status - Sidebox','EZPAGES_STATUS_SIDEBOX','1','Display of EZ-Pages content can be Globally enabled/disabled for the Sidebox<br />0 = Off<br />1 = On<br />2= On ADMIN IP ONLY located in Website Maintenance<br />NOTE: Warning only shows to the Admin and not to the public',30,12,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\'), '),(536,'EZ-Pages Header Link Separator','EZPAGES_SEPARATOR_HEADER','&nbsp;::&nbsp;','EZ-Pages Header Link Separator<br />Default = &amp;nbsp;::&amp;nbsp;',30,20,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_textarea_small('),(537,'EZ-Pages Footer Link Separator','EZPAGES_SEPARATOR_FOOTER','&nbsp;::&nbsp;','EZ-Pages Footer Link Separator<br />Default = &amp;nbsp;::&amp;nbsp;',30,21,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_textarea_small('),(538,'EZ-Pages Prev/Next Buttons','EZPAGES_SHOW_PREV_NEXT_BUTTONS','2','Display Prev/Continue/Next buttons on EZ-Pages pages?<br />0=OFF (no buttons)<br />1=\"Continue\"<br />2=\"Prev/Continue/Next\"<br /><br />Default setting: 2.',30,30,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\'), '),(539,'EZ-Pages Table of Contents for Chapters Status','EZPAGES_SHOW_TABLE_CONTENTS','1','Enable EZ-Pages Table of Contents for Chapters?<br />0= OFF<br />1= ON',30,35,'2010-03-04 18:39:23','2010-03-04 18:39:23',NULL,'zen_cfg_select_option(array(\'0\', \'1\'),'),(540,'EZ-Pages Pages to disable headers','EZPAGES_DISABLE_HEADER_DISPLAY_LIST','','EZ-Pages \"pages\" on which to NOT display the normal \"header\" for your site.<br />Simply list page ID numbers separated by commas with no spaces.<br />Page ID numbers can be obtained from the EZ-Pages screen under Admin->Tools.<br />ie: 1,5,2<br />or leave blank.',30,40,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_textarea_small('),(541,'EZ-Pages Pages to disable footers','EZPAGES_DISABLE_FOOTER_DISPLAY_LIST','','EZ-Pages \"pages\" on which to NOT display the normal \"footer\" for your site.<br />Simply list page ID numbers separated by commas with no spaces.<br />Page ID numbers can be obtained from the EZ-Pages screen under Admin->Tools.<br />ie: 3,7<br />or leave blank.',30,41,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_textarea_small('),(542,'EZ-Pages Pages to disable left-column','EZPAGES_DISABLE_LEFTCOLUMN_DISPLAY_LIST','','EZ-Pages \"pages\" on which to NOT display the normal \"left\" column (of sideboxes) for your site.<br />Simply list page ID numbers separated by commas with no spaces.<br />Page ID numbers can be obtained from the EZ-Pages screen under Admin->Tools.<br />ie: 21<br />or leave blank.',30,42,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_textarea_small('),(543,'EZ-Pages Pages to disable right-column','EZPAGES_DISABLE_RIGHTCOLUMN_DISPLAY_LIST','','EZ-Pages \"pages\" on which to NOT display the normal \"right\" column (of sideboxes) for your site.<br />Simply list page ID numbers separated by commas with no spaces.<br />Page ID numbers can be obtained from the EZ-Pages screen under Admin->Tools.<br />ie: 3,82,13<br />or leave blank.',30,43,NULL,'2010-03-04 18:39:23',NULL,'zen_cfg_textarea_small('),(573,'Enable Credit Card Module','MODULE_PAYMENT_CC_STATUS','True','Do you want to accept credit card payments?',6,130,NULL,'2011-01-08 14:15:29',NULL,'zen_cfg_select_option(array(\'True\', \'False\'), '),(579,'Enable this Payment Module','MODULE_PAYMENT_PAYPALWPP_STATUS','True','Do you want to enable this payment module?',6,25,NULL,'2011-05-24 21:14:51',NULL,'zen_cfg_select_option(array(\'True\', \'False\'), '),(584,'Express Checkout: Automatic Account Creation','MODULE_PAYMENT_PAYPALWPP_NEW_ACCT_NOTIFY','Yes','If a visitor is not an existing customer, a Zen Cart account is created for them.  Would you like make it a permanent account and send them an email containing their login information?<br />NOTE: Permanent accounts are auto-created if the customer purchases downloads or gift certificates, regardless of this setting.',6,25,NULL,'2011-05-24 21:14:51',NULL,'zen_cfg_select_option(array(\'Yes\', \'No\'), '),(585,'Sort order of display.','MODULE_PAYMENT_PAYPALWPP_SORT_ORDER','0','Sort order of display. Lowest is displayed first.',6,25,NULL,'2011-05-24 21:14:51',NULL,NULL),(586,'Payment Zone','MODULE_PAYMENT_PAYPALWPP_ZONE','0','If a zone is selected, only enable this payment method for that zone.',6,25,NULL,'2011-05-24 21:14:51','zen_get_zone_class_title','zen_cfg_pull_down_zone_classes('),(587,'Set Order Status','MODULE_PAYMENT_PAYPALWPP_ORDER_STATUS_ID','2','Set the status of orders paid with this payment module to this value. <br /><strong>Recommended: Processing[2]</strong>',6,25,NULL,'2011-05-24 21:14:51','zen_get_order_status_name','zen_cfg_pull_down_order_statuses('),(588,'Set Unpaid Order Status','MODULE_PAYMENT_PAYPALWPP_ORDER_PENDING_STATUS_ID','1','Set the status of unpaid orders made with this payment module to this value. <br /><strong>Recommended: Pending[1]</strong>',6,25,NULL,'2011-05-24 21:14:51','zen_get_order_status_name','zen_cfg_pull_down_order_statuses('),(589,'Set Refund Order Status','MODULE_PAYMENT_PAYPALWPP_REFUNDED_STATUS_ID','1','Set the status of refunded orders to this value. <br /><strong>Recommended: Pending[1]</strong>',6,25,NULL,'2011-05-24 21:14:51','zen_get_order_status_name','zen_cfg_pull_down_order_statuses('),(590,'PayPal Page Style','MODULE_PAYMENT_PAYPALWPP_PAGE_STYLE','Primary','The page-layout style you want customers to see when they visit the PayPal site. You can configure your <strong>Custom Page Styles</strong> in your PayPal Profile settings. This value is case-sensitive.',6,25,NULL,'2011-05-24 21:14:51',NULL,NULL),(591,'Payment Action','MODULE_PAYMENT_PAYPALWPP_TRANSACTION_MODE','Final Sale','How do you want to obtain payment?<br /><strong>Default: Final Sale</strong>',6,25,NULL,'2011-05-24 21:14:51',NULL,'zen_cfg_select_option(array(\'Auth Only\', \'Final Sale\'), '),(592,'Transaction Currency','MODULE_PAYMENT_PAYPALWPP_CURRENCY','Selected Currency','Which currency should the order be sent to PayPal as? <br />NOTE: if an unsupported currency is sent to PayPal, it will be auto-converted to USD (or GBP if using UK account)<br /><strong>Default: Selected Currency</strong>',6,25,NULL,'2011-05-24 21:14:51',NULL,'zen_cfg_select_option(array(\'Selected Currency\', \'Only USD\', \'Only AUD\', \'Only CAD\', \'Only EUR\', \'Only GBP\', \'Only CHF\', \'Only CZK\', \'Only DKK\', \'Only HKD\', \'Only HUF\', \'Only JPY\', \'Only NOK\', \'Only NZD\', \'Only PLN\', \'Only SEK\', \'Only SGD\', \'Only THB\', \'Only MXN\', \'Only ILS\', \'Only PHP\', \'Only TWD\', \'Only BRL\', \'Only MYR\'), '),(593,'Fraud Mgmt Filters - FMF','MODULE_PAYMENT_PAYPALWPP_EC_RETURN_FMF_DETAILS','No','If you have enabled FMF support in your PayPal account and wish to utilize it in your transactions, set this to yes. Otherwise, leave it at No.',6,25,NULL,'2011-05-24 21:14:51',NULL,'zen_cfg_select_option(array(\'No\', \'Yes\'), '),(594,'API Signature -- Username','MODULE_PAYMENT_PAYPALWPP_APIUSERNAME','eorder_api1.adirondakchairs.net','The API Username from your PayPal API Signature settings under *API Access*. This value typically looks like an email address and is case-sensitive.',6,25,NULL,'2011-05-24 21:14:51',NULL,NULL),(595,'API Signature -- Password','MODULE_PAYMENT_PAYPALWPP_APIPASSWORD','5HQVAEE8H4X2RKLW','The API Password from your PayPal API Signature settings under *API Access*. This value is a 16-character code and is case-sensitive.',6,25,NULL,'2011-05-24 21:14:51','zen_cfg_password_display','zen_cfg_password_input('),(596,'API Signature -- Signature Code','MODULE_PAYMENT_PAYPALWPP_APISIGNATURE','AzLXErO-POt3qvxnWvtGYH8oYbq4AQUYPjKlVW.S3aUcn8mckIQaMONm','The API Signature from your PayPal API Signature settings under *API Access*. This value is a 56-character code, and is case-sensitive.',6,25,NULL,'2011-05-24 21:14:51','zen_cfg_password_display',''),(597,'PAYFLOW: User','MODULE_PAYMENT_PAYPALWPP_PFUSER','','If you set up one or more additional users on the account, this value is the ID of the user authorized to process transactions. Otherwise it should be the same value as VENDOR. This value is case-sensitive.',6,25,NULL,'2011-05-24 21:14:51',NULL,NULL),(598,'PAYFLOW: Partner','MODULE_PAYMENT_PAYPALWPP_PFPARTNER','ZenCart','Your Payflow Partner linked to your Payflow account. This value is case-sensitive.<br />Typical values: <strong>PayPal</strong> or <strong>ZenCart</strong>',6,25,NULL,'2011-05-24 21:14:51',NULL,NULL),(599,'PAYFLOW: Vendor','MODULE_PAYMENT_PAYPALWPP_PFVENDOR','','Your merchant login ID that you created when you registered for the Payflow Pro account. This value is case-sensitive.',6,25,NULL,'2011-05-24 21:14:51',NULL,NULL),(600,'PAYFLOW: Password','MODULE_PAYMENT_PAYPALWPP_PFPASSWORD','','The 6- to 32-character password that you defined while registering for the account. This value is case-sensitive.',6,25,NULL,'2011-05-24 21:14:51','zen_cfg_password_display','zen_cfg_password_input('),(601,'PayPal Mode','MODULE_PAYMENT_PAYPALWPP_MODULE_MODE','PayPal','Which PayPal API system should be used for processing? <br /><u>Choices:</u><br /><font color=green>For choice #1, you need to supply <strong>API Settings</strong> above.</font><br /><strong>1. PayPal</strong> = Express Checkout with a regular PayPal account<br />or<br /><font color=green>for choices 2 &amp; 3 you need to supply <strong>PAYFLOW settings</strong>, below (and have a Payflow account)</font><br /><strong>2. Payflow-UK</strong> = Website Payments Pro UK Payflow Edition<br /><strong>3. Payflow-US</strong> = Payflow Pro Gateway only<!--<br /><strong>4. PayflowUS+EC</strong> = Payflow Pro with Express Checkout-->',6,25,NULL,'2011-05-24 21:14:51',NULL,'zen_cfg_select_option(array(\'PayPal\', \'Payflow-UK\', \'Payflow-US\'), '),(602,'Debug Mode','MODULE_PAYMENT_PAYPALWPP_DEBUGGING','Off','Would you like to enable debug mode?  A complete detailed log of failed transactions will be emailed to the store owner.',6,25,NULL,'2011-05-24 21:14:51',NULL,'zen_cfg_select_option(array(\'Off\', \'Alerts Only\', \'Log File\', \'Log and Email\'), ');
/*!40000 ALTER TABLE `zen_configuration` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_configuration_group`
--

DROP TABLE IF EXISTS `zen_configuration_group`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_configuration_group` (
  `configuration_group_id` int(11) NOT NULL AUTO_INCREMENT,
  `configuration_group_title` varchar(64) NOT NULL DEFAULT '',
  `configuration_group_description` varchar(255) NOT NULL DEFAULT '',
  `sort_order` int(5) DEFAULT NULL,
  `visible` int(1) DEFAULT '1',
  PRIMARY KEY (`configuration_group_id`),
  KEY `idx_visible_zen` (`visible`)
) ENGINE=MyISAM AUTO_INCREMENT=31 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_configuration_group`
--

LOCK TABLES `zen_configuration_group` WRITE;
/*!40000 ALTER TABLE `zen_configuration_group` DISABLE KEYS */;
INSERT INTO `zen_configuration_group` VALUES (1,'My Store','General information about my store',1,1),(2,'Minimum Values','The minimum values for functions / data',2,1),(3,'Maximum Values','The maximum values for functions / data',3,1),(4,'Images','Image parameters',4,1),(5,'Customer Details','Customer account configuration',5,1),(6,'Module Options','Hidden from configuration',6,0),(7,'Shipping/Packaging','Shipping options available at my store',7,1),(8,'Product Listing','Product Listing configuration options',8,1),(9,'Stock','Stock configuration options',9,1),(10,'Logging','Logging configuration options',10,1),(11,'Regulations','Regulation options',16,1),(12,'E-Mail Options','General settings for E-Mail transport and HTML E-Mails',12,1),(13,'Attribute Settings','Configure products attributes settings',13,1),(14,'GZip Compression','GZip compression options',14,1),(15,'Sessions','Session options',15,1),(16,'GV Coupons','Gift Vouchers and Coupons',16,1),(17,'Credit Cards','Credit Cards Accepted',17,1),(18,'Product Info','Product Info Display Options',18,1),(19,'Layout Settings','Layout Options',19,1),(20,'Website Maintenance','Website Maintenance Options',20,1),(21,'New Listing','New Products Listing',21,1),(22,'Featured Listing','Featured Products Listing',22,1),(23,'All Listing','All Products Listing',23,1),(24,'Index Listing','Index Products Listing',24,1),(25,'Define Page Status','Define Main Pages and HTMLArea Options',25,1),(30,'EZ-Pages Settings','EZ-Pages Settings',30,1);
/*!40000 ALTER TABLE `zen_configuration_group` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_counter`
--

DROP TABLE IF EXISTS `zen_counter`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_counter` (
  `startdate` char(8) DEFAULT NULL,
  `counter` int(12) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_counter`
--

LOCK TABLES `zen_counter` WRITE;
/*!40000 ALTER TABLE `zen_counter` DISABLE KEYS */;
INSERT INTO `zen_counter` VALUES ('20100304',1649);
/*!40000 ALTER TABLE `zen_counter` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_counter_history`
--

DROP TABLE IF EXISTS `zen_counter_history`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_counter_history` (
  `startdate` char(8) NOT NULL DEFAULT '',
  `counter` int(12) DEFAULT NULL,
  `session_counter` int(12) DEFAULT NULL,
  PRIMARY KEY (`startdate`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_counter_history`
--

LOCK TABLES `zen_counter_history` WRITE;
/*!40000 ALTER TABLE `zen_counter_history` DISABLE KEYS */;
INSERT INTO `zen_counter_history` VALUES ('20100304',102,2),('20100305',164,6),('20100306',106,9),('20100307',5,1),('20100315',11,1),('20100321',6,1),('20100323',9,4),('20100324',18,2),('20100325',161,6),('20100326',79,2),('20100327',16,4),('20100328',32,4),('20100329',46,7),('20100331',31,2),('20100402',109,6),('20100403',115,4),('20100420',2,1),('20100430',14,1),('20100501',15,1),('20100502',100,4),('20100503',21,2),('20100506',2,1),('20100507',2,1),('20100521',13,2),('20100526',6,2),('20100604',2,1),('20100606',14,1),('20100621',1,1),('20100822',8,1),('20100913',11,1),('20100922',10,2),('20101026',25,3),('20101027',8,1),('20110107',10,1),('20110108',142,11),('20110115',6,1),('20110119',11,1),('20110219',16,1),('20110220',5,1),('20110405',1,1),('20110524',71,6),('20110525',24,3),('20110530',1,1),('20110705',21,2),('20110706',12,3),('20110707',53,1),('20110711',8,1),('20110712',1,1),('20110808',2,1);
/*!40000 ALTER TABLE `zen_counter_history` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_countries`
--

DROP TABLE IF EXISTS `zen_countries`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_countries` (
  `countries_id` int(11) NOT NULL AUTO_INCREMENT,
  `countries_name` varchar(64) NOT NULL DEFAULT '',
  `countries_iso_code_2` char(2) NOT NULL DEFAULT '',
  `countries_iso_code_3` char(3) NOT NULL DEFAULT '',
  `address_format_id` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`countries_id`),
  KEY `idx_countries_name_zen` (`countries_name`),
  KEY `idx_address_format_id_zen` (`address_format_id`),
  KEY `idx_iso_2_zen` (`countries_iso_code_2`),
  KEY `idx_iso_3_zen` (`countries_iso_code_3`)
) ENGINE=MyISAM AUTO_INCREMENT=241 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_countries`
--

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

--
-- Table structure for table `zen_coupon_email_track`
--

DROP TABLE IF EXISTS `zen_coupon_email_track`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_coupon_email_track` (
  `unique_id` int(11) NOT NULL AUTO_INCREMENT,
  `coupon_id` int(11) NOT NULL DEFAULT '0',
  `customer_id_sent` int(11) NOT NULL DEFAULT '0',
  `sent_firstname` varchar(32) DEFAULT NULL,
  `sent_lastname` varchar(32) DEFAULT NULL,
  `emailed_to` varchar(32) DEFAULT NULL,
  `date_sent` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  PRIMARY KEY (`unique_id`),
  KEY `idx_coupon_id_zen` (`coupon_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_coupon_email_track`
--

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

--
-- Table structure for table `zen_coupon_gv_customer`
--

DROP TABLE IF EXISTS `zen_coupon_gv_customer`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_coupon_gv_customer` (
  `customer_id` int(5) NOT NULL DEFAULT '0',
  `amount` decimal(15,4) NOT NULL DEFAULT '0.0000',
  PRIMARY KEY (`customer_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_coupon_gv_customer`
--

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

--
-- Table structure for table `zen_coupon_gv_queue`
--

DROP TABLE IF EXISTS `zen_coupon_gv_queue`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_coupon_gv_queue` (
  `unique_id` int(5) NOT NULL AUTO_INCREMENT,
  `customer_id` int(5) NOT NULL DEFAULT '0',
  `order_id` int(5) NOT NULL DEFAULT '0',
  `amount` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `date_created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `ipaddr` varchar(32) NOT NULL DEFAULT '',
  `release_flag` char(1) NOT NULL DEFAULT 'N',
  PRIMARY KEY (`unique_id`),
  KEY `idx_cust_id_order_id_zen` (`customer_id`,`order_id`),
  KEY `idx_release_flag_zen` (`release_flag`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_coupon_gv_queue`
--

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

--
-- Table structure for table `zen_coupon_redeem_track`
--

DROP TABLE IF EXISTS `zen_coupon_redeem_track`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_coupon_redeem_track` (
  `unique_id` int(11) NOT NULL AUTO_INCREMENT,
  `coupon_id` int(11) NOT NULL DEFAULT '0',
  `customer_id` int(11) NOT NULL DEFAULT '0',
  `redeem_date` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `redeem_ip` varchar(32) NOT NULL DEFAULT '',
  `order_id` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`unique_id`),
  KEY `idx_coupon_id_zen` (`coupon_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_coupon_redeem_track`
--

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

--
-- Table structure for table `zen_coupon_restrict`
--

DROP TABLE IF EXISTS `zen_coupon_restrict`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_coupon_restrict` (
  `restrict_id` int(11) NOT NULL AUTO_INCREMENT,
  `coupon_id` int(11) NOT NULL DEFAULT '0',
  `product_id` int(11) NOT NULL DEFAULT '0',
  `category_id` int(11) NOT NULL DEFAULT '0',
  `coupon_restrict` char(1) NOT NULL DEFAULT 'N',
  PRIMARY KEY (`restrict_id`),
  KEY `idx_coup_id_prod_id_zen` (`coupon_id`,`product_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_coupon_restrict`
--

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

--
-- Table structure for table `zen_coupons`
--

DROP TABLE IF EXISTS `zen_coupons`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_coupons` (
  `coupon_id` int(11) NOT NULL AUTO_INCREMENT,
  `coupon_type` char(1) NOT NULL DEFAULT 'F',
  `coupon_code` varchar(32) NOT NULL DEFAULT '',
  `coupon_amount` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `coupon_minimum_order` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `coupon_start_date` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `coupon_expire_date` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `uses_per_coupon` int(5) NOT NULL DEFAULT '1',
  `uses_per_user` int(5) NOT NULL DEFAULT '0',
  `restrict_to_products` varchar(255) DEFAULT NULL,
  `restrict_to_categories` varchar(255) DEFAULT NULL,
  `restrict_to_customers` text,
  `coupon_active` char(1) NOT NULL DEFAULT 'Y',
  `date_created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `date_modified` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `coupon_zone_restriction` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`coupon_id`),
  KEY `idx_active_type_zen` (`coupon_active`,`coupon_type`),
  KEY `idx_coupon_code_zen` (`coupon_code`),
  KEY `idx_coupon_type_zen` (`coupon_type`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_coupons`
--

LOCK TABLES `zen_coupons` WRITE;
/*!40000 ALTER TABLE `zen_coupons` DISABLE KEYS */;
INSERT INTO `zen_coupons` VALUES (1,'P','MARCH-1234',15.0000,10.0000,'2010-03-05 00:00:00','2011-04-05 00:00:00',30,30,'','',NULL,'Y','2010-03-05 13:19:50','2010-03-05 13:19:50',0);
/*!40000 ALTER TABLE `zen_coupons` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_coupons_description`
--

DROP TABLE IF EXISTS `zen_coupons_description`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_coupons_description` (
  `coupon_id` int(11) NOT NULL DEFAULT '0',
  `language_id` int(11) NOT NULL DEFAULT '0',
  `coupon_name` varchar(32) NOT NULL DEFAULT '',
  `coupon_description` text,
  PRIMARY KEY (`coupon_id`,`language_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_coupons_description`
--

LOCK TABLES `zen_coupons_description` WRITE;
/*!40000 ALTER TABLE `zen_coupons_description` DISABLE KEYS */;
INSERT INTO `zen_coupons_description` VALUES (1,1,'Spring Special Delight','15 % Off for All Online Orders During March. Use the coupon as often as you like for the entire month!');
/*!40000 ALTER TABLE `zen_coupons_description` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_currencies`
--

DROP TABLE IF EXISTS `zen_currencies`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_currencies` (
  `currencies_id` int(11) NOT NULL AUTO_INCREMENT,
  `title` varchar(32) NOT NULL DEFAULT '',
  `code` char(3) NOT NULL DEFAULT '',
  `symbol_left` varchar(24) DEFAULT NULL,
  `symbol_right` varchar(24) DEFAULT NULL,
  `decimal_point` char(1) DEFAULT NULL,
  `thousands_point` char(1) DEFAULT NULL,
  `decimal_places` char(1) DEFAULT NULL,
  `value` float(13,8) DEFAULT NULL,
  `last_updated` datetime DEFAULT NULL,
  PRIMARY KEY (`currencies_id`)
) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_currencies`
--

LOCK TABLES `zen_currencies` WRITE;
/*!40000 ALTER TABLE `zen_currencies` DISABLE KEYS */;
INSERT INTO `zen_currencies` VALUES (1,'US Dollar','USD','$','','.',',','2',1.00000000,'2010-03-04 18:39:23'),(2,'Euro','EUR','&euro;','','.',',','2',0.74129999,'2010-03-04 18:39:23'),(3,'GB Pound','GBP','&pound;','','.',',','2',0.50300002,'2010-03-04 18:39:23'),(4,'Canadian Dollar','CAD','$','','.',',','2',1.10590005,'2010-03-04 18:39:23'),(5,'Australian Dollar','AUD','$','','.',',','2',1.24070001,'2010-03-04 18:39:23');
/*!40000 ALTER TABLE `zen_currencies` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_customers`
--

DROP TABLE IF EXISTS `zen_customers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_customers` (
  `customers_id` int(11) NOT NULL AUTO_INCREMENT,
  `customers_gender` char(1) NOT NULL DEFAULT '',
  `customers_firstname` varchar(32) NOT NULL DEFAULT '',
  `customers_lastname` varchar(32) NOT NULL DEFAULT '',
  `customers_dob` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `customers_email_address` varchar(96) NOT NULL DEFAULT '',
  `customers_nick` varchar(96) NOT NULL DEFAULT '',
  `customers_default_address_id` int(11) NOT NULL DEFAULT '0',
  `customers_telephone` varchar(32) NOT NULL DEFAULT '',
  `customers_fax` varchar(32) DEFAULT NULL,
  `customers_password` varchar(40) NOT NULL DEFAULT '',
  `customers_newsletter` char(1) DEFAULT NULL,
  `customers_group_pricing` int(11) NOT NULL DEFAULT '0',
  `customers_email_format` varchar(4) NOT NULL DEFAULT 'TEXT',
  `customers_authorization` int(1) NOT NULL DEFAULT '0',
  `customers_referral` varchar(32) NOT NULL DEFAULT '',
  `customers_paypal_payerid` varchar(20) NOT NULL DEFAULT '',
  `customers_paypal_ec` tinyint(1) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`customers_id`),
  KEY `idx_email_address_zen` (`customers_email_address`),
  KEY `idx_referral_zen` (`customers_referral`(10)),
  KEY `idx_grp_pricing_zen` (`customers_group_pricing`),
  KEY `idx_nick_zen` (`customers_nick`),
  KEY `idx_newsletter_zen` (`customers_newsletter`)
) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_customers`
--

LOCK TABLES `zen_customers` WRITE;
/*!40000 ALTER TABLE `zen_customers` DISABLE KEYS */;
INSERT INTO `zen_customers` VALUES (1,'m','Henry','Shu','1951-04-21 00:00:00','jhbrake@comcast.net','',1,'2222222222','','fc15e490716582ef6afe4d67492db23a:9d','0',0,'TEXT',0,'','',0),(2,'m','JOHN','BRAKE','0001-01-01 00:00:00','jhbrake@nsconstruct.com','',2,'2482406863','','221684d65ce1cc9970396d2b3acc6fb2:41','1',0,'HTML',0,'','',0),(3,'','john','brake','0001-01-01 00:00:00','jack.b@aaasurvivalproducts.com','',3,'','','7c235bc41e58ace21c4c616ba4eeab05:95','0',0,'TEXT',0,'','7AUEEUBBE22H4',0),(4,'','John','Brake','0001-01-01 00:00:00','jbrake@nsconstruct.com','',4,'','','c0426cd15261656cae55c06688a5bb20:b7','0',0,'TEXT',0,'','3C7X2QVAB5RJL',0),(5,'m','jack','shu','0001-01-01 00:00:00','dragonjackshu@hotamil.com','',5,'517 552 3626','','a0824a09af9103abca40abcee95197ef:36','0',0,'HTML',0,'','',0);
/*!40000 ALTER TABLE `zen_customers` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_customers_basket`
--

DROP TABLE IF EXISTS `zen_customers_basket`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_customers_basket` (
  `customers_basket_id` int(11) NOT NULL AUTO_INCREMENT,
  `customers_id` int(11) NOT NULL DEFAULT '0',
  `products_id` tinytext NOT NULL,
  `customers_basket_quantity` float NOT NULL DEFAULT '0',
  `final_price` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `customers_basket_date_added` varchar(8) DEFAULT NULL,
  PRIMARY KEY (`customers_basket_id`),
  KEY `idx_customers_id_zen` (`customers_id`)
) ENGINE=MyISAM AUTO_INCREMENT=24 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_customers_basket`
--

LOCK TABLES `zen_customers_basket` WRITE;
/*!40000 ALTER TABLE `zen_customers_basket` DISABLE KEYS */;
INSERT INTO `zen_customers_basket` VALUES (18,2,'3:9d2458150f98263abbde3fa39f5a952c',1,0.0000,'20110108');
/*!40000 ALTER TABLE `zen_customers_basket` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_customers_basket_attributes`
--

DROP TABLE IF EXISTS `zen_customers_basket_attributes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_customers_basket_attributes` (
  `customers_basket_attributes_id` int(11) NOT NULL AUTO_INCREMENT,
  `customers_id` int(11) NOT NULL DEFAULT '0',
  `products_id` tinytext NOT NULL,
  `products_options_id` varchar(64) NOT NULL DEFAULT '0',
  `products_options_value_id` int(11) NOT NULL DEFAULT '0',
  `products_options_value_text` blob,
  `products_options_sort_order` text NOT NULL,
  PRIMARY KEY (`customers_basket_attributes_id`),
  KEY `idx_cust_id_prod_id_zen` (`customers_id`,`products_id`(36))
) ENGINE=MyISAM AUTO_INCREMENT=13 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_customers_basket_attributes`
--

LOCK TABLES `zen_customers_basket_attributes` WRITE;
/*!40000 ALTER TABLE `zen_customers_basket_attributes` DISABLE KEYS */;
INSERT INTO `zen_customers_basket_attributes` VALUES (9,2,'3:9d2458150f98263abbde3fa39f5a952c','1',1,'','0.00000');
/*!40000 ALTER TABLE `zen_customers_basket_attributes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_customers_info`
--

DROP TABLE IF EXISTS `zen_customers_info`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_customers_info` (
  `customers_info_id` int(11) NOT NULL DEFAULT '0',
  `customers_info_date_of_last_logon` datetime DEFAULT NULL,
  `customers_info_number_of_logons` int(5) DEFAULT NULL,
  `customers_info_date_account_created` datetime DEFAULT NULL,
  `customers_info_date_account_last_modified` datetime DEFAULT NULL,
  `global_product_notifications` int(1) DEFAULT '0',
  PRIMARY KEY (`customers_info_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_customers_info`
--

LOCK TABLES `zen_customers_info` WRITE;
/*!40000 ALTER TABLE `zen_customers_info` DISABLE KEYS */;
INSERT INTO `zen_customers_info` VALUES (1,'2010-04-02 20:00:13',4,'2010-03-31 19:21:26',NULL,0),(2,'2011-01-08 17:08:28',6,'2011-01-08 10:00:07',NULL,0),(3,'2011-05-24 22:36:56',3,'2011-05-24 21:53:33',NULL,0),(4,'2011-05-25 22:55:38',2,'2011-05-25 22:55:38',NULL,0),(5,'2011-07-07 19:43:02',1,'2011-07-07 19:43:02',NULL,0);
/*!40000 ALTER TABLE `zen_customers_info` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_customers_wishlist`
--

DROP TABLE IF EXISTS `zen_customers_wishlist`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_customers_wishlist` (
  `products_id` int(13) NOT NULL DEFAULT '0',
  `customers_id` int(13) NOT NULL DEFAULT '0',
  `products_model` varchar(13) DEFAULT NULL,
  `products_name` varchar(64) NOT NULL DEFAULT '',
  `products_price` decimal(8,2) NOT NULL DEFAULT '0.00',
  `final_price` decimal(8,2) NOT NULL DEFAULT '0.00',
  `products_quantity` int(2) NOT NULL DEFAULT '0',
  `wishlist_name` varchar(64) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_customers_wishlist`
--

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

--
-- Table structure for table `zen_db_cache`
--

DROP TABLE IF EXISTS `zen_db_cache`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_db_cache` (
  `cache_entry_name` varchar(64) NOT NULL DEFAULT '',
  `cache_data` mediumblob,
  `cache_entry_created` int(15) DEFAULT NULL,
  PRIMARY KEY (`cache_entry_name`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_db_cache`
--

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

--
-- Table structure for table `zen_email_archive`
--

DROP TABLE IF EXISTS `zen_email_archive`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_email_archive` (
  `archive_id` int(11) NOT NULL AUTO_INCREMENT,
  `email_to_name` varchar(96) NOT NULL DEFAULT '',
  `email_to_address` varchar(96) NOT NULL DEFAULT '',
  `email_from_name` varchar(96) NOT NULL DEFAULT '',
  `email_from_address` varchar(96) NOT NULL DEFAULT '',
  `email_subject` varchar(255) NOT NULL DEFAULT '',
  `email_html` text NOT NULL,
  `email_text` text NOT NULL,
  `date_sent` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `module` varchar(64) NOT NULL DEFAULT '',
  PRIMARY KEY (`archive_id`),
  KEY `idx_email_to_address_zen` (`email_to_address`),
  KEY `idx_module_zen` (`module`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_email_archive`
--

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

--
-- Table structure for table `zen_ezpages`
--

DROP TABLE IF EXISTS `zen_ezpages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_ezpages` (
  `pages_id` int(11) NOT NULL AUTO_INCREMENT,
  `languages_id` int(11) NOT NULL DEFAULT '1',
  `pages_title` varchar(64) NOT NULL DEFAULT '',
  `alt_url` varchar(255) NOT NULL DEFAULT '',
  `alt_url_external` varchar(255) NOT NULL DEFAULT '',
  `pages_html_text` mediumtext,
  `status_header` int(1) NOT NULL DEFAULT '1',
  `status_sidebox` int(1) NOT NULL DEFAULT '1',
  `status_footer` int(1) NOT NULL DEFAULT '1',
  `status_toc` int(1) NOT NULL DEFAULT '1',
  `header_sort_order` int(3) NOT NULL DEFAULT '0',
  `sidebox_sort_order` int(3) NOT NULL DEFAULT '0',
  `footer_sort_order` int(3) NOT NULL DEFAULT '0',
  `toc_sort_order` int(3) NOT NULL DEFAULT '0',
  `page_open_new_window` int(1) NOT NULL DEFAULT '0',
  `page_is_ssl` int(1) NOT NULL DEFAULT '0',
  `toc_chapter` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`pages_id`),
  KEY `idx_lang_id_zen` (`languages_id`),
  KEY `idx_ezp_status_header_zen` (`status_header`),
  KEY `idx_ezp_status_sidebox_zen` (`status_sidebox`),
  KEY `idx_ezp_status_footer_zen` (`status_footer`),
  KEY `idx_ezp_status_toc_zen` (`status_toc`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_ezpages`
--

LOCK TABLES `zen_ezpages` WRITE;
/*!40000 ALTER TABLE `zen_ezpages` DISABLE KEYS */;
INSERT INTO `zen_ezpages` VALUES (3,1,'WINE & BEVERAGES','','','<img src=\"includes/templates/cd/images/chinese_delight208b.jpg\" alt=\"Beer and Soft Drinks\" width=\"477\" height=\"633\" />\r\n\r\n<img src=\"includes/templates/cd/images/chinese_delightRedWine.jpg\" alt=\"Red Wines\" width=\"477\" height=\"633\" />\r\n\r\n<img src=\"includes/templates/cd/images/chinese_delightWhiteWine.jpg\" alt=\"White Wines\" width=\"477\" height=\"633\" />',0,1,0,0,0,3,0,3,0,0,0);
/*!40000 ALTER TABLE `zen_ezpages` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_featured`
--

DROP TABLE IF EXISTS `zen_featured`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_featured` (
  `featured_id` int(11) NOT NULL AUTO_INCREMENT,
  `products_id` int(11) NOT NULL DEFAULT '0',
  `featured_date_added` datetime DEFAULT NULL,
  `featured_last_modified` datetime DEFAULT NULL,
  `expires_date` date NOT NULL DEFAULT '0001-01-01',
  `date_status_change` datetime DEFAULT NULL,
  `status` int(1) NOT NULL DEFAULT '1',
  `featured_date_available` date NOT NULL DEFAULT '0001-01-01',
  PRIMARY KEY (`featured_id`),
  KEY `idx_status_zen` (`status`),
  KEY `idx_products_id_zen` (`products_id`),
  KEY `idx_date_avail_zen` (`featured_date_available`),
  KEY `idx_expires_date_zen` (`expires_date`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_featured`
--

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

--
-- Table structure for table `zen_files_uploaded`
--

DROP TABLE IF EXISTS `zen_files_uploaded`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_files_uploaded` (
  `files_uploaded_id` int(11) NOT NULL AUTO_INCREMENT,
  `sesskey` varchar(32) DEFAULT NULL,
  `customers_id` int(11) DEFAULT NULL,
  `files_uploaded_name` varchar(64) NOT NULL DEFAULT '',
  PRIMARY KEY (`files_uploaded_id`),
  KEY `idx_customers_id_zen` (`customers_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_files_uploaded`
--

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

--
-- Table structure for table `zen_geo_zones`
--

DROP TABLE IF EXISTS `zen_geo_zones`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_geo_zones` (
  `geo_zone_id` int(11) NOT NULL AUTO_INCREMENT,
  `geo_zone_name` varchar(32) NOT NULL DEFAULT '',
  `geo_zone_description` varchar(255) NOT NULL DEFAULT '',
  `last_modified` datetime DEFAULT NULL,
  `date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  PRIMARY KEY (`geo_zone_id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_geo_zones`
--

LOCK TABLES `zen_geo_zones` WRITE;
/*!40000 ALTER TABLE `zen_geo_zones` DISABLE KEYS */;
INSERT INTO `zen_geo_zones` VALUES (1,'Florida','Florida local sales tax zone',NULL,'2010-03-04 18:39:23');
/*!40000 ALTER TABLE `zen_geo_zones` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_get_terms_to_filter`
--

DROP TABLE IF EXISTS `zen_get_terms_to_filter`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_get_terms_to_filter` (
  `get_term_name` varchar(255) NOT NULL DEFAULT '',
  `get_term_table` varchar(64) NOT NULL,
  `get_term_name_field` varchar(64) NOT NULL,
  PRIMARY KEY (`get_term_name`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_get_terms_to_filter`
--

LOCK TABLES `zen_get_terms_to_filter` WRITE;
/*!40000 ALTER TABLE `zen_get_terms_to_filter` DISABLE KEYS */;
INSERT INTO `zen_get_terms_to_filter` VALUES ('manufacturers_id','TABLE_MANUFACTURERS','manufacturers_name'),('music_genre_id','TABLE_MUSIC_GENRE','music_genre_name'),('record_company_id','TABLE_RECORD_COMPANY','record_company_name');
/*!40000 ALTER TABLE `zen_get_terms_to_filter` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_group_pricing`
--

DROP TABLE IF EXISTS `zen_group_pricing`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_group_pricing` (
  `group_id` int(11) NOT NULL AUTO_INCREMENT,
  `group_name` varchar(32) NOT NULL DEFAULT '',
  `group_percentage` decimal(5,2) NOT NULL DEFAULT '0.00',
  `last_modified` datetime DEFAULT NULL,
  `date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  PRIMARY KEY (`group_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_group_pricing`
--

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

--
-- Table structure for table `zen_languages`
--

DROP TABLE IF EXISTS `zen_languages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_languages` (
  `languages_id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(32) NOT NULL DEFAULT '',
  `code` char(2) NOT NULL DEFAULT '',
  `image` varchar(64) DEFAULT NULL,
  `directory` varchar(32) DEFAULT NULL,
  `sort_order` int(3) DEFAULT NULL,
  PRIMARY KEY (`languages_id`),
  KEY `idx_languages_name_zen` (`name`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_languages`
--

LOCK TABLES `zen_languages` WRITE;
/*!40000 ALTER TABLE `zen_languages` DISABLE KEYS */;
INSERT INTO `zen_languages` VALUES (1,'English','en','icon.gif','english',1);
/*!40000 ALTER TABLE `zen_languages` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_layout_boxes`
--

DROP TABLE IF EXISTS `zen_layout_boxes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_layout_boxes` (
  `layout_id` int(11) NOT NULL AUTO_INCREMENT,
  `layout_template` varchar(64) NOT NULL DEFAULT '',
  `layout_box_name` varchar(64) NOT NULL DEFAULT '',
  `layout_box_status` tinyint(1) NOT NULL DEFAULT '0',
  `layout_box_location` tinyint(1) NOT NULL DEFAULT '0',
  `layout_box_sort_order` int(11) NOT NULL DEFAULT '0',
  `layout_box_sort_order_single` int(11) NOT NULL DEFAULT '0',
  `layout_box_status_single` tinyint(4) NOT NULL DEFAULT '0',
  PRIMARY KEY (`layout_id`),
  KEY `idx_name_template_zen` (`layout_template`,`layout_box_name`),
  KEY `idx_layout_box_status_zen` (`layout_box_status`),
  KEY `idx_layout_box_sort_order_zen` (`layout_box_sort_order`)
) ENGINE=MyISAM AUTO_INCREMENT=103 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_layout_boxes`
--

LOCK TABLES `zen_layout_boxes` WRITE;
/*!40000 ALTER TABLE `zen_layout_boxes` DISABLE KEYS */;
INSERT INTO `zen_layout_boxes` VALUES (1,'default_template_settings','banner_box_all.php',1,1,5,0,0),(2,'default_template_settings','banner_box.php',1,0,300,1,127),(3,'default_template_settings','banner_box2.php',1,1,15,1,15),(4,'default_template_settings','best_sellers.php',1,1,30,70,1),(5,'default_template_settings','categories.php',1,0,10,10,1),(6,'default_template_settings','currencies.php',1,1,80,60,1),(7,'default_template_settings','document_categories.php',1,0,0,0,0),(8,'default_template_settings','ezpages.php',1,1,-1,2,1),(9,'default_template_settings','featured.php',1,0,45,0,0),(10,'default_template_settings','information.php',1,0,50,40,1),(11,'default_template_settings','languages.php',1,1,70,50,1),(12,'default_template_settings','manufacturers.php',1,0,30,20,1),(13,'default_template_settings','manufacturer_info.php',1,1,35,95,1),(14,'default_template_settings','more_information.php',1,0,200,200,1),(15,'default_template_settings','music_genres.php',1,1,0,0,0),(16,'default_template_settings','order_history.php',1,1,0,0,0),(17,'default_template_settings','product_notifications.php',1,1,55,85,1),(18,'default_template_settings','record_companies.php',1,1,0,0,0),(19,'default_template_settings','reviews.php',1,0,40,0,0),(20,'default_template_settings','search.php',1,1,10,0,0),(21,'default_template_settings','search_header.php',0,0,0,0,1),(22,'default_template_settings','shopping_cart.php',1,1,20,30,1),(23,'default_template_settings','specials.php',1,1,45,0,0),(24,'default_template_settings','tell_a_friend.php',1,1,65,0,0),(25,'default_template_settings','whats_new.php',1,0,20,0,0),(26,'default_template_settings','whos_online.php',1,1,200,200,1),(27,'template_default','banner_box_all.php',1,1,5,0,0),(28,'template_default','banner_box.php',1,0,300,1,127),(29,'template_default','banner_box2.php',1,1,15,1,15),(30,'template_default','best_sellers.php',1,1,30,70,1),(31,'template_default','categories.php',1,0,10,10,1),(32,'template_default','currencies.php',1,1,80,60,1),(33,'template_default','ezpages.php',1,1,-1,2,1),(34,'template_default','featured.php',1,0,45,0,0),(35,'template_default','information.php',1,0,50,40,1),(36,'template_default','languages.php',1,1,70,50,1),(37,'template_default','manufacturers.php',1,0,30,20,1),(38,'template_default','manufacturer_info.php',1,1,35,95,1),(39,'template_default','more_information.php',1,0,200,200,1),(40,'template_default','my_broken_box.php',1,0,0,0,0),(41,'template_default','order_history.php',1,1,0,0,0),(42,'template_default','product_notifications.php',1,1,55,85,1),(43,'template_default','reviews.php',1,0,40,0,0),(44,'template_default','search.php',1,1,10,0,0),(45,'template_default','search_header.php',0,0,0,0,1),(46,'template_default','shopping_cart.php',1,1,20,30,1),(47,'template_default','specials.php',1,1,45,0,0),(48,'template_default','tell_a_friend.php',1,1,65,0,0),(49,'template_default','whats_new.php',1,0,20,0,0),(50,'template_default','whos_online.php',1,1,200,200,1),(51,'classic','banner_box.php',1,0,300,1,127),(52,'classic','banner_box2.php',1,1,15,1,15),(53,'classic','banner_box_all.php',1,1,5,0,0),(54,'classic','best_sellers.php',1,1,30,70,1),(55,'classic','categories.php',1,0,10,10,1),(56,'classic','currencies.php',1,1,80,60,1),(57,'classic','document_categories.php',1,0,0,0,0),(58,'classic','ezpages.php',1,1,-1,2,1),(59,'classic','featured.php',1,0,45,0,0),(60,'classic','information.php',1,0,50,40,1),(61,'classic','languages.php',1,1,70,50,1),(62,'classic','manufacturers.php',1,0,30,20,1),(63,'classic','manufacturer_info.php',1,1,35,95,1),(64,'classic','more_information.php',1,0,200,200,1),(65,'classic','music_genres.php',1,1,0,0,0),(66,'classic','order_history.php',1,1,0,0,0),(67,'classic','product_notifications.php',1,1,55,85,1),(68,'classic','record_companies.php',1,1,0,0,0),(69,'classic','reviews.php',1,0,40,0,0),(70,'classic','search.php',1,1,10,0,0),(71,'classic','search_header.php',0,0,0,0,1),(72,'classic','shopping_cart.php',1,1,20,30,1),(73,'classic','specials.php',1,1,45,0,0),(74,'classic','tell_a_friend.php',1,1,65,0,0),(75,'classic','whats_new.php',1,0,20,0,0),(76,'classic','whos_online.php',1,1,200,200,1),(77,'cd','banner_box.php',1,0,300,1,127),(78,'cd','banner_box2.php',0,1,15,1,1),(79,'cd','banner_box_all.php',0,1,5,0,0),(80,'cd','best_sellers.php',1,0,30,70,1),(81,'cd','categories.php',1,0,10,10,1),(82,'cd','currencies.php',0,1,80,60,0),(83,'cd','document_categories.php',1,0,0,0,0),(84,'cd','ezpages.php',1,0,10,10,1),(85,'cd','featured.php',1,0,45,0,0),(86,'cd','information.php',1,0,50,40,1),(87,'cd','languages.php',0,1,70,50,0),(88,'cd','manufacturer_info.php',0,1,35,95,0),(89,'cd','manufacturers.php',1,0,30,20,1),(90,'cd','more_information.php',1,0,200,200,1),(91,'cd','music_genres.php',1,1,0,0,0),(92,'cd','order_history.php',0,0,300,300,0),(93,'cd','product_notifications.php',0,1,55,85,0),(94,'cd','record_companies.php',1,1,0,0,0),(95,'cd','reviews.php',1,0,40,0,0),(96,'cd','search.php',0,0,190,0,0),(97,'cd','search_header.php',0,0,0,0,0),(98,'cd','shopping_cart.php',1,0,0,300,1),(99,'cd','specials.php',1,1,7,0,0),(100,'cd','tell_a_friend.php',1,1,65,0,0),(101,'cd','whats_new.php',0,0,20,0,0),(102,'cd','whos_online.php',0,1,200,200,0);
/*!40000 ALTER TABLE `zen_layout_boxes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_manufacturers`
--

DROP TABLE IF EXISTS `zen_manufacturers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_manufacturers` (
  `manufacturers_id` int(11) NOT NULL AUTO_INCREMENT,
  `manufacturers_name` varchar(32) NOT NULL DEFAULT '',
  `manufacturers_image` varchar(64) DEFAULT NULL,
  `date_added` datetime DEFAULT NULL,
  `last_modified` datetime DEFAULT NULL,
  PRIMARY KEY (`manufacturers_id`),
  KEY `idx_mfg_name_zen` (`manufacturers_name`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_manufacturers`
--

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

--
-- Table structure for table `zen_manufacturers_info`
--

DROP TABLE IF EXISTS `zen_manufacturers_info`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_manufacturers_info` (
  `manufacturers_id` int(11) NOT NULL DEFAULT '0',
  `languages_id` int(11) NOT NULL DEFAULT '0',
  `manufacturers_url` varchar(255) NOT NULL DEFAULT '',
  `url_clicked` int(5) NOT NULL DEFAULT '0',
  `date_last_click` datetime DEFAULT NULL,
  PRIMARY KEY (`manufacturers_id`,`languages_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_manufacturers_info`
--

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

--
-- Table structure for table `zen_media_clips`
--

DROP TABLE IF EXISTS `zen_media_clips`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_media_clips` (
  `clip_id` int(11) NOT NULL AUTO_INCREMENT,
  `media_id` int(11) NOT NULL DEFAULT '0',
  `clip_type` smallint(6) NOT NULL DEFAULT '0',
  `clip_filename` text NOT NULL,
  `date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `last_modified` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  PRIMARY KEY (`clip_id`),
  KEY `idx_media_id_zen` (`media_id`),
  KEY `idx_clip_type_zen` (`clip_type`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_media_clips`
--

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

--
-- Table structure for table `zen_media_manager`
--

DROP TABLE IF EXISTS `zen_media_manager`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_media_manager` (
  `media_id` int(11) NOT NULL AUTO_INCREMENT,
  `media_name` varchar(255) NOT NULL DEFAULT '',
  `last_modified` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  PRIMARY KEY (`media_id`),
  KEY `idx_media_name_zen` (`media_name`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_media_manager`
--

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

--
-- Table structure for table `zen_media_to_products`
--

DROP TABLE IF EXISTS `zen_media_to_products`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_media_to_products` (
  `media_id` int(11) NOT NULL DEFAULT '0',
  `product_id` int(11) NOT NULL DEFAULT '0',
  KEY `idx_media_product_zen` (`media_id`,`product_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_media_to_products`
--

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

--
-- Table structure for table `zen_media_types`
--

DROP TABLE IF EXISTS `zen_media_types`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_media_types` (
  `type_id` int(11) NOT NULL AUTO_INCREMENT,
  `type_name` varchar(64) NOT NULL DEFAULT '',
  `type_ext` varchar(8) NOT NULL DEFAULT '',
  PRIMARY KEY (`type_id`),
  KEY `idx_type_name_zen` (`type_name`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_media_types`
--

LOCK TABLES `zen_media_types` WRITE;
/*!40000 ALTER TABLE `zen_media_types` DISABLE KEYS */;
INSERT INTO `zen_media_types` VALUES (1,'MP3','.mp3');
/*!40000 ALTER TABLE `zen_media_types` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_meta_tags_categories_description`
--

DROP TABLE IF EXISTS `zen_meta_tags_categories_description`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_meta_tags_categories_description` (
  `categories_id` int(11) NOT NULL,
  `language_id` int(11) NOT NULL DEFAULT '1',
  `metatags_title` varchar(255) NOT NULL DEFAULT '',
  `metatags_keywords` text,
  `metatags_description` text,
  PRIMARY KEY (`categories_id`,`language_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_meta_tags_categories_description`
--

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

--
-- Table structure for table `zen_meta_tags_products_description`
--

DROP TABLE IF EXISTS `zen_meta_tags_products_description`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_meta_tags_products_description` (
  `products_id` int(11) NOT NULL,
  `language_id` int(11) NOT NULL DEFAULT '1',
  `metatags_title` varchar(255) NOT NULL DEFAULT '',
  `metatags_keywords` text,
  `metatags_description` text,
  PRIMARY KEY (`products_id`,`language_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_meta_tags_products_description`
--

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

--
-- Table structure for table `zen_music_genre`
--

DROP TABLE IF EXISTS `zen_music_genre`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_music_genre` (
  `music_genre_id` int(11) NOT NULL AUTO_INCREMENT,
  `music_genre_name` varchar(32) NOT NULL DEFAULT '',
  `date_added` datetime DEFAULT NULL,
  `last_modified` datetime DEFAULT NULL,
  PRIMARY KEY (`music_genre_id`),
  KEY `idx_music_genre_name_zen` (`music_genre_name`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_music_genre`
--

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

--
-- Table structure for table `zen_newsletters`
--

DROP TABLE IF EXISTS `zen_newsletters`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_newsletters` (
  `newsletters_id` int(11) NOT NULL AUTO_INCREMENT,
  `title` varchar(255) NOT NULL DEFAULT '',
  `content` text NOT NULL,
  `content_html` text NOT NULL,
  `module` varchar(255) NOT NULL DEFAULT '',
  `date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `date_sent` datetime DEFAULT NULL,
  `status` int(1) DEFAULT NULL,
  `locked` int(1) DEFAULT '0',
  PRIMARY KEY (`newsletters_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_newsletters`
--

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

--
-- Table structure for table `zen_nochex_apc_transactions`
--

DROP TABLE IF EXISTS `zen_nochex_apc_transactions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_nochex_apc_transactions` (
  `nochex_apc_id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `order_id` int(11) unsigned NOT NULL DEFAULT '0',
  `nc_transaction_id` varchar(30) NOT NULL,
  `nc_transaction_date` varchar(100) NOT NULL,
  `nc_to_email` varchar(255) NOT NULL,
  `nc_from_email` varchar(255) NOT NULL,
  `nc_order_id` varchar(255) NOT NULL,
  `nc_custom` varchar(255) NOT NULL,
  `nc_amount` decimal(9,2) NOT NULL,
  `nc_security_key` varchar(255) NOT NULL,
  `nc_status` varchar(15) NOT NULL,
  `nochex_response` varchar(255) NOT NULL,
  `last_modified` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `memo` text,
  PRIMARY KEY (`nochex_apc_id`),
  KEY `idx_order_id_zen` (`order_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_nochex_apc_transactions`
--

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

--
-- Table structure for table `zen_nochex_sessions`
--

DROP TABLE IF EXISTS `zen_nochex_sessions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_nochex_sessions` (
  `unique_id` int(11) NOT NULL AUTO_INCREMENT,
  `session_id` text NOT NULL,
  `saved_session` mediumblob NOT NULL,
  `expiry` int(17) NOT NULL DEFAULT '0',
  PRIMARY KEY (`unique_id`),
  KEY `idx_session_id_zen` (`session_id`(36))
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_nochex_sessions`
--

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

--
-- Table structure for table `zen_orders`
--

DROP TABLE IF EXISTS `zen_orders`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_orders` (
  `orders_id` int(11) NOT NULL AUTO_INCREMENT,
  `customers_id` int(11) NOT NULL DEFAULT '0',
  `customers_name` varchar(64) NOT NULL DEFAULT '',
  `customers_company` varchar(64) DEFAULT NULL,
  `customers_street_address` varchar(64) NOT NULL DEFAULT '',
  `customers_suburb` varchar(32) DEFAULT NULL,
  `customers_city` varchar(32) NOT NULL DEFAULT '',
  `customers_postcode` varchar(10) NOT NULL DEFAULT '',
  `customers_state` varchar(32) DEFAULT NULL,
  `customers_country` varchar(32) NOT NULL DEFAULT '',
  `customers_telephone` varchar(32) NOT NULL DEFAULT '',
  `customers_email_address` varchar(96) NOT NULL DEFAULT '',
  `customers_address_format_id` int(5) NOT NULL DEFAULT '0',
  `delivery_name` varchar(64) NOT NULL DEFAULT '',
  `delivery_company` varchar(64) DEFAULT NULL,
  `delivery_street_address` varchar(64) NOT NULL DEFAULT '',
  `delivery_suburb` varchar(32) DEFAULT NULL,
  `delivery_city` varchar(32) NOT NULL DEFAULT '',
  `delivery_postcode` varchar(10) NOT NULL DEFAULT '',
  `delivery_state` varchar(32) DEFAULT NULL,
  `delivery_country` varchar(32) NOT NULL DEFAULT '',
  `delivery_address_format_id` int(5) NOT NULL DEFAULT '0',
  `billing_name` varchar(64) NOT NULL DEFAULT '',
  `billing_company` varchar(64) DEFAULT NULL,
  `billing_street_address` varchar(64) NOT NULL DEFAULT '',
  `billing_suburb` varchar(32) DEFAULT NULL,
  `billing_city` varchar(32) NOT NULL DEFAULT '',
  `billing_postcode` varchar(10) NOT NULL DEFAULT '',
  `billing_state` varchar(32) DEFAULT NULL,
  `billing_country` varchar(32) NOT NULL DEFAULT '',
  `billing_address_format_id` int(5) NOT NULL DEFAULT '0',
  `payment_method` varchar(128) NOT NULL DEFAULT '',
  `payment_module_code` varchar(32) NOT NULL DEFAULT '',
  `shipping_method` varchar(128) NOT NULL DEFAULT '',
  `shipping_module_code` varchar(32) NOT NULL DEFAULT '',
  `coupon_code` varchar(32) NOT NULL DEFAULT '',
  `cc_type` varchar(20) DEFAULT NULL,
  `cc_owner` varchar(64) DEFAULT NULL,
  `cc_number` varchar(32) DEFAULT NULL,
  `cc_expires` varchar(4) DEFAULT NULL,
  `cc_cvv` blob,
  `last_modified` datetime DEFAULT NULL,
  `date_purchased` datetime DEFAULT NULL,
  `orders_status` int(5) NOT NULL DEFAULT '0',
  `orders_date_finished` datetime DEFAULT NULL,
  `currency` char(3) DEFAULT NULL,
  `currency_value` decimal(14,6) DEFAULT NULL,
  `order_total` decimal(14,2) DEFAULT NULL,
  `order_tax` decimal(14,2) DEFAULT NULL,
  `paypal_ipn_id` int(11) NOT NULL DEFAULT '0',
  `ip_address` varchar(96) NOT NULL DEFAULT '',
  PRIMARY KEY (`orders_id`),
  KEY `idx_status_orders_cust_zen` (`orders_status`,`orders_id`,`customers_id`),
  KEY `idx_date_purchased_zen` (`date_purchased`),
  KEY `idx_cust_id_orders_id_zen` (`customers_id`,`orders_id`)
) ENGINE=MyISAM AUTO_INCREMENT=12 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_orders`
--

LOCK TABLES `zen_orders` WRITE;
/*!40000 ALTER TABLE `zen_orders` DISABLE KEYS */;
INSERT INTO `zen_orders` VALUES (1,1,'Henry Shu','','1234 West Street','','Howell','48843','Michigan','United States','2222222222','jhbrake@comcast.net',2,'Henry Shu','','1234 West Street','','Howell','48843','Michigan','United States',2,'Henry Shu','','1234 West Street','','Howell','48843','Michigan','United States',2,'Check/Money Order','moneyorder','Flat Rate (Best Way)','flat','','','','','',NULL,NULL,'2010-03-31 19:22:43',1,NULL,'USD',1.000000,101.60,0.00,0,'76.234.131.21 - 76.234.131.21'),(2,1,'Henry Shu','','1234 West Street','','Howell','48843','Michigan','United States','2222222222','jhbrake@comcast.net',2,' ','','','','','','','',0,'Henry Shu','','1234 West Street','','Howell','48843','Michigan','United States',2,'Check/Money Order','moneyorder','f','free','','','','','',NULL,NULL,'2010-04-02 19:56:49',1,NULL,'USD',1.000000,44.60,0.00,0,'76.221.246.255 - 76.221.246.255'),(3,2,'JOHN BRAKE','','9079 PIERSON RD','','FOWLERVILLE','48836','Michigan','United States','2482406863','jhbrake@nsconstruct.com',2,' ','','','','','','','',0,'JOHN BRAKE','','9079 PIERSON RD','','FOWLERVILLE','48836','Michigan','United States',2,'Credit Card','cc','f','free','','Visa','JOHN BRAKE','4447XXXXXXXX3275','0911',NULL,NULL,'2011-01-08 10:03:20',1,NULL,'USD',1.000000,4.95,0.00,0,'97.146.164.10 - 97.146.164.10'),(4,2,'JOHN BRAKE','','9079 PIERSON RD','','FOWLERVILLE','48836','Michigan','United States','2482406863','jhbrake@nsconstruct.com',2,' ','','','','','','','',0,'JOHN BRAKE','','9079 PIERSON RD','','FOWLERVILLE','48836','Michigan','United States',2,'Credit Card','cc','f','free','','Visa','JOHN BRAKE','4447XXXXXXXX3275','0911',NULL,NULL,'2011-01-08 10:11:15',1,NULL,'USD',1.000000,1.75,0.00,0,'97.146.164.10 - 97.146.164.10'),(5,2,'JOHN BRAKE','','9079 PIERSON RD','','FOWLERVILLE','48836','Michigan','United States','2482406863','jhbrake@nsconstruct.com',2,' ','','','','','','','',0,'JOHN BRAKE','','9079 PIERSON RD','','FOWLERVILLE','48836','Michigan','United States',2,'Credit Card','cc','f','free','','Visa','JOHN BRAKE','4447XXXXXXXX3275','0911',NULL,NULL,'2011-01-08 10:54:20',1,NULL,'USD',1.000000,1.75,0.00,0,'97.146.164.10 - 97.146.164.10'),(6,2,'JOHN BRAKE','','9079 PIERSON RD','','FOWLERVILLE','48836','Michigan','United States','2482406863','jhbrake@nsconstruct.com',2,' ','','','','','','','',0,'JOHN BRAKE','','9079 PIERSON RD','','FOWLERVILLE','48836','Michigan','United States',2,'Credit Card','cc','f','free','','Visa','JOHN BRAKE','4447XXXXXXXX3275','0911',NULL,NULL,'2011-01-08 11:02:03',1,NULL,'USD',1.000000,1.75,0.00,0,'97.146.164.10 - 97.146.164.10'),(7,2,'JOHN BRAKE','','9079 PIERSON RD','','FOWLERVILLE','48836','Michigan','United States','2482406863','jhbrake@nsconstruct.com',2,' ','','','','','','','',0,'JOHN BRAKE','','9079 PIERSON RD','','FOWLERVILLE','48836','Michigan','United States',2,'Credit Card','cc','f','free','','Visa','JOHN BRAKE','4447XXXXXXXX8075','1113',NULL,NULL,'2011-01-08 14:17:43',1,NULL,'USD',1.000000,7.45,0.00,0,'67.142.161.32 - 67.142.161.32'),(8,2,'JOHN BRAKE','','9079 PIERSON RD','','FOWLERVILLE','48836','Michigan','United States','2482406863','jhbrake@nsconstruct.com',2,' ','','','','','','','',0,'JOHN BRAKE','','9079 PIERSON RD','','FOWLERVILLE','48836','Michigan','United States',2,'Credit Card','cc','f','free','','Visa','JOHN BRAKE','4447XXXXXXXX8075','1111',NULL,NULL,'2011-01-08 15:56:18',1,NULL,'USD',1.000000,1.75,0.00,0,'97.179.75.77 - 97.179.75.77'),(9,2,'JOHN BRAKE','','9079 PIERSON RD','','FOWLERVILLE','48836','Michigan','United States','2482406863','jhbrake@nsconstruct.com',2,' ','','','','','','','',0,'JOHN BRAKE','','9079 PIERSON RD','','FOWLERVILLE','48836','Michigan','United States',2,'Credit Card','cc','f','free','','Visa','JOHN BRAKE','4447XXXXXXXX8075','1111',NULL,NULL,'2011-01-08 17:09:05',1,NULL,'USD',1.000000,1.75,0.00,0,'97.179.75.77 - 97.179.75.77'),(10,3,'john brake','','2210 ridgewood circle','','royal palm beach','33411','Florida','United States','','jack.b@aaasurvivalproducts.com',2,'john brake','','2210 ridgewood circle','','royal palm beach','33411','Florida','United States',2,'john brake','','2210 ridgewood circle','','royal palm beach','33411','Florida','United States',2,'PayPal','paypalwpp','FREE SHIPPING! (Free Shipping Only)','freeshipper','','','','','',NULL,NULL,'2011-05-24 22:53:21',2,NULL,'USD',1.000000,0.10,0.00,0,'184.61.202.44 - 184.61.202.44'),(11,4,'John Brake','','9079 Pierson Rd','','Fowlerville','48836','Michigan','United States','','jbrake@nsconstruct.com',2,'John Brake','','9079 Pierson Rd','','Fowlerville','48836','Michigan','United States',2,'John Brake','','9079 Pierson Rd','','Fowlerville','48836','Michigan','United States',2,'PayPal','paypalwpp','FREE SHIPPING! (Free Shipping Only)','freeshipper','','','','','',NULL,NULL,'2011-05-25 22:56:19',2,NULL,'USD',1.000000,0.10,0.00,0,'184.61.202.44 - 184.61.202.44');
/*!40000 ALTER TABLE `zen_orders` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_orders_products`
--

DROP TABLE IF EXISTS `zen_orders_products`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_orders_products` (
  `orders_products_id` int(11) NOT NULL AUTO_INCREMENT,
  `orders_id` int(11) NOT NULL DEFAULT '0',
  `products_id` int(11) NOT NULL DEFAULT '0',
  `products_model` varchar(32) DEFAULT NULL,
  `products_name` varchar(64) NOT NULL DEFAULT '',
  `products_price` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `final_price` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `products_tax` decimal(7,4) NOT NULL DEFAULT '0.0000',
  `products_quantity` float NOT NULL DEFAULT '0',
  `onetime_charges` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `products_priced_by_attribute` tinyint(1) NOT NULL DEFAULT '0',
  `product_is_free` tinyint(1) NOT NULL DEFAULT '0',
  `products_discount_type` tinyint(1) NOT NULL DEFAULT '0',
  `products_discount_type_from` tinyint(1) NOT NULL DEFAULT '0',
  `products_prid` tinytext NOT NULL,
  PRIMARY KEY (`orders_products_id`),
  KEY `idx_orders_id_prod_id_zen` (`orders_id`,`products_id`),
  KEY `idx_prod_id_orders_id_zen` (`products_id`,`orders_id`)
) ENGINE=MyISAM AUTO_INCREMENT=17 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_orders_products`
--

LOCK TABLES `zen_orders_products` WRITE;
/*!40000 ALTER TABLE `zen_orders_products` DISABLE KEYS */;
INSERT INTO `zen_orders_products` VALUES (1,1,131,'','Chop Suey (Served with Rice)',0.0000,5.9500,0.0000,1,0.0000,0,0,0,0,'131:58ffa379ef119dd81538a3cd0ae8432f'),(2,1,128,'','THE MANDARIN DINNER',0.0000,90.6500,0.0000,1,0.0000,0,0,0,0,'128:6c1d114371273c6d429f959ca4afa40c'),(3,2,1,'','CHINESE CHICKEN SALAD',7.9500,7.9500,0.0000,1,0.0000,0,0,0,0,'1'),(4,2,5,'','SWEET AND SOUR SHRIMP',11.2500,11.2500,0.0000,1,0.0000,0,0,0,0,'5'),(5,2,140,'','*  MANDARIN SPICY CHICKEN',5.9500,5.9500,0.0000,1,0.0000,0,0,0,0,'140'),(6,2,143,'','* CHICKEN GREEN BEANS',6.7500,6.7500,0.0000,2,0.0000,0,0,0,0,'143'),(7,2,142,'','SNOW WHITE CHICKEN',5.9500,5.9500,0.0000,1,0.0000,0,0,0,0,'142'),(8,3,115,'','CRABMEAT CHEESE (4)',4.9500,4.9500,0.0000,1,0.0000,0,0,0,0,'115'),(9,4,3,'','EGG DROP SOUP',0.0000,1.7500,0.0000,1,0.0000,0,0,0,0,'3:9d2458150f98263abbde3fa39f5a952c'),(10,5,3,'','EGG DROP SOUP',0.0000,1.7500,0.0000,1,0.0000,0,0,0,0,'3:9d2458150f98263abbde3fa39f5a952c'),(11,6,3,'','EGG DROP SOUP',0.0000,1.7500,0.0000,1,0.0000,0,0,0,0,'3:9d2458150f98263abbde3fa39f5a952c'),(12,7,103,'','PORK FRIED RICE',7.4500,7.4500,0.0000,1,0.0000,0,0,0,0,'103'),(13,8,3,'','EGG DROP SOUP',0.0000,1.7500,0.0000,1,0.0000,0,0,0,0,'3:9d2458150f98263abbde3fa39f5a952c'),(14,9,3,'','EGG DROP SOUP',0.0000,1.7500,0.0000,1,0.0000,0,0,0,0,'3:9d2458150f98263abbde3fa39f5a952c'),(15,10,165,'test01','test',0.1000,0.1000,0.0000,1,0.0000,0,0,0,0,'165:3a98e7b694cf93ceb76f20e3165f04c7'),(16,11,165,'test01','test product dig down',0.1000,0.1000,0.0000,1,0.0000,1,0,0,0,'165:3a98e7b694cf93ceb76f20e3165f04c7');
/*!40000 ALTER TABLE `zen_orders_products` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_orders_products_attributes`
--

DROP TABLE IF EXISTS `zen_orders_products_attributes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_orders_products_attributes` (
  `orders_products_attributes_id` int(11) NOT NULL AUTO_INCREMENT,
  `orders_id` int(11) NOT NULL DEFAULT '0',
  `orders_products_id` int(11) NOT NULL DEFAULT '0',
  `products_options` varchar(32) NOT NULL DEFAULT '',
  `products_options_values` text NOT NULL,
  `options_values_price` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `price_prefix` char(1) NOT NULL DEFAULT '',
  `product_attribute_is_free` tinyint(1) NOT NULL DEFAULT '0',
  `products_attributes_weight` float NOT NULL DEFAULT '0',
  `products_attributes_weight_prefix` char(1) NOT NULL DEFAULT '',
  `attributes_discounted` tinyint(1) NOT NULL DEFAULT '1',
  `attributes_price_base_included` tinyint(1) NOT NULL DEFAULT '1',
  `attributes_price_onetime` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `attributes_price_factor` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `attributes_price_factor_offset` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `attributes_price_factor_onetime` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `attributes_price_factor_onetime_offset` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `attributes_qty_prices` text,
  `attributes_qty_prices_onetime` text,
  `attributes_price_words` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `attributes_price_words_free` int(4) NOT NULL DEFAULT '0',
  `attributes_price_letters` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `attributes_price_letters_free` int(4) NOT NULL DEFAULT '0',
  `products_options_id` int(11) NOT NULL DEFAULT '0',
  `products_options_values_id` int(11) NOT NULL DEFAULT '0',
  `products_prid` tinytext NOT NULL,
  PRIMARY KEY (`orders_products_attributes_id`),
  KEY `idx_orders_id_prod_id_zen` (`orders_id`,`orders_products_id`)
) ENGINE=MyISAM AUTO_INCREMENT=10 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_orders_products_attributes`
--

LOCK TABLES `zen_orders_products_attributes` WRITE;
/*!40000 ALTER TABLE `zen_orders_products_attributes` DISABLE KEYS */;
INSERT INTO `zen_orders_products_attributes` VALUES (1,1,1,'Chop Suey','Chicken, Pork or Vegetable',5.9500,'',1,0,'+',1,1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,5,17,'131:58ffa379ef119dd81538a3cd0ae8432f'),(2,1,2,'Number of Persons','7 Persons',90.6500,'',1,0,'+',1,1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,2,8,'128:6c1d114371273c6d429f959ca4afa40c'),(3,4,9,'Size','Small (8 oz.)',1.7500,'',1,0,'+',1,1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,1,1,'3:9d2458150f98263abbde3fa39f5a952c'),(4,5,10,'Size','Small (8 oz.)',1.7500,'',1,0,'+',1,1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,1,1,'3:9d2458150f98263abbde3fa39f5a952c'),(5,6,11,'Size','Small (8 oz.)',1.7500,'',1,0,'+',1,1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,1,1,'3:9d2458150f98263abbde3fa39f5a952c'),(6,8,13,'Size','Small (8 oz.)',1.7500,'',1,0,'+',1,1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,1,1,'3:9d2458150f98263abbde3fa39f5a952c'),(7,9,14,'Size','Small (8 oz.)',1.7500,'',1,0,'+',1,1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,1,1,'3:9d2458150f98263abbde3fa39f5a952c'),(8,10,15,'download','zip',0.0000,'+',1,0,'+',1,1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,7,29,'165:3a98e7b694cf93ceb76f20e3165f04c7'),(9,11,16,'download','zip',0.0000,'+',1,0,'+',1,1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,7,29,'165:3a98e7b694cf93ceb76f20e3165f04c7');
/*!40000 ALTER TABLE `zen_orders_products_attributes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_orders_products_download`
--

DROP TABLE IF EXISTS `zen_orders_products_download`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_orders_products_download` (
  `orders_products_download_id` int(11) NOT NULL AUTO_INCREMENT,
  `orders_id` int(11) NOT NULL DEFAULT '0',
  `orders_products_id` int(11) NOT NULL DEFAULT '0',
  `orders_products_filename` varchar(255) NOT NULL DEFAULT '',
  `download_maxdays` int(2) NOT NULL DEFAULT '0',
  `download_count` int(2) NOT NULL DEFAULT '0',
  `products_prid` tinytext NOT NULL,
  PRIMARY KEY (`orders_products_download_id`),
  KEY `idx_orders_id_zen` (`orders_id`),
  KEY `idx_orders_products_id_zen` (`orders_products_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_orders_products_download`
--

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

--
-- Table structure for table `zen_orders_status`
--

DROP TABLE IF EXISTS `zen_orders_status`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_orders_status` (
  `orders_status_id` int(11) NOT NULL DEFAULT '0',
  `language_id` int(11) NOT NULL DEFAULT '1',
  `orders_status_name` varchar(32) NOT NULL DEFAULT '',
  PRIMARY KEY (`orders_status_id`,`language_id`),
  KEY `idx_orders_status_name_zen` (`orders_status_name`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_orders_status`
--

LOCK TABLES `zen_orders_status` WRITE;
/*!40000 ALTER TABLE `zen_orders_status` DISABLE KEYS */;
INSERT INTO `zen_orders_status` VALUES (1,1,'Pending'),(2,1,'Processing'),(3,1,'Delivered'),(4,1,'Update'),(100,1,'Google New'),(101,1,'Google Processing'),(103,1,'Google Digital Processed'),(105,1,'Google Shipped'),(107,1,'Google Refunded'),(109,1,'Google Shipped and Refunded'),(111,1,'Google Canceled');
/*!40000 ALTER TABLE `zen_orders_status` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_orders_status_history`
--

DROP TABLE IF EXISTS `zen_orders_status_history`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_orders_status_history` (
  `orders_status_history_id` int(11) NOT NULL AUTO_INCREMENT,
  `orders_id` int(11) NOT NULL DEFAULT '0',
  `orders_status_id` int(5) NOT NULL DEFAULT '0',
  `date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `customer_notified` int(1) DEFAULT '0',
  `comments` text,
  PRIMARY KEY (`orders_status_history_id`),
  KEY `idx_orders_id_status_id_zen` (`orders_id`,`orders_status_id`)
) ENGINE=MyISAM AUTO_INCREMENT=14 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_orders_status_history`
--

LOCK TABLES `zen_orders_status_history` WRITE;
/*!40000 ALTER TABLE `zen_orders_status_history` DISABLE KEYS */;
INSERT INTO `zen_orders_status_history` VALUES (1,1,1,'2010-03-31 19:22:43',1,''),(2,2,1,'2010-04-02 19:56:49',1,''),(3,3,1,'2011-01-08 10:03:20',1,'MAKE IT HOT AND SPICY'),(4,4,1,'2011-01-08 10:11:15',1,'HOT N SPICY'),(5,5,1,'2011-01-08 10:54:20',1,'HOT N SPICY BOYS'),(6,6,1,'2011-01-08 11:02:03',1,'HOT N GOOD'),(7,7,1,'2011-01-08 14:17:43',1,'hot n good'),(8,8,1,'2011-01-08 15:56:18',1,'hot n good'),(9,9,1,'2011-01-08 17:09:05',1,'hot n ready'),(10,10,2,'2011-05-24 22:53:21',1,''),(11,10,2,'2011-05-24 22:53:21',0,'Transaction ID: 5K02035550982172A \nPayment Type: PayPal Express Checkout (instant) \nTimestamp: 2011-05-25T03:53:20Z \nPayment Status: Completed \nAmount: 0.10 USD '),(12,11,2,'2011-05-25 22:56:19',1,''),(13,11,2,'2011-05-25 22:56:19',0,'Transaction ID: 1WF82056VF891643W \nPayment Type: PayPal Express Checkout (instant) \nTimestamp: 2011-05-26T03:56:18Z \nPayment Status: Completed \nAmount: 0.10 USD ');
/*!40000 ALTER TABLE `zen_orders_status_history` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_orders_total`
--

DROP TABLE IF EXISTS `zen_orders_total`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_orders_total` (
  `orders_total_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `orders_id` int(11) NOT NULL DEFAULT '0',
  `title` varchar(255) NOT NULL DEFAULT '',
  `text` varchar(255) NOT NULL DEFAULT '',
  `value` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `class` varchar(32) NOT NULL DEFAULT '',
  `sort_order` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`orders_total_id`),
  KEY `idx_ot_orders_id_zen` (`orders_id`),
  KEY `idx_ot_class_zen` (`class`)
) ENGINE=MyISAM AUTO_INCREMENT=24 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_orders_total`
--

LOCK TABLES `zen_orders_total` WRITE;
/*!40000 ALTER TABLE `zen_orders_total` DISABLE KEYS */;
INSERT INTO `zen_orders_total` VALUES (1,1,'Sub-Total:','$96.60',96.6000,'ot_subtotal',100),(2,1,'Flat Rate (Best Way):','$5.00',5.0000,'ot_shipping',200),(3,1,'Total:','$101.60',101.6000,'ot_total',999),(4,2,'Sub-Total:','$44.60',44.6000,'ot_subtotal',100),(5,2,'Total:','$44.60',44.6000,'ot_total',999),(6,3,'Sub-Total:','$4.95',4.9500,'ot_subtotal',100),(7,3,'Total:','$4.95',4.9500,'ot_total',999),(8,4,'Sub-Total:','$1.75',1.7500,'ot_subtotal',100),(9,4,'Total:','$1.75',1.7500,'ot_total',999),(10,5,'Sub-Total:','$1.75',1.7500,'ot_subtotal',100),(11,5,'Total:','$1.75',1.7500,'ot_total',999),(12,6,'Sub-Total:','$1.75',1.7500,'ot_subtotal',100),(13,6,'Total:','$1.75',1.7500,'ot_total',999),(14,7,'Sub-Total:','$7.45',7.4500,'ot_subtotal',100),(15,7,'Total:','$7.45',7.4500,'ot_total',999),(16,8,'Sub-Total:','$1.75',1.7500,'ot_subtotal',100),(17,8,'Total:','$1.75',1.7500,'ot_total',999),(18,9,'Sub-Total:','$1.75',1.7500,'ot_subtotal',100),(19,9,'Total:','$1.75',1.7500,'ot_total',999),(20,10,'Sub-Total:','$0.10',0.1000,'ot_subtotal',100),(21,10,'Total:','$0.10',0.1000,'ot_total',999),(22,11,'Sub-Total:','$0.10',0.1000,'ot_subtotal',100),(23,11,'Total:','$0.10',0.1000,'ot_total',999);
/*!40000 ALTER TABLE `zen_orders_total` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_paypal`
--

DROP TABLE IF EXISTS `zen_paypal`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_paypal` (
  `paypal_ipn_id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `order_id` int(11) unsigned NOT NULL DEFAULT '0',
  `txn_type` varchar(40) NOT NULL DEFAULT '',
  `module_name` varchar(40) NOT NULL DEFAULT '',
  `module_mode` varchar(40) NOT NULL DEFAULT '',
  `reason_code` varchar(40) DEFAULT NULL,
  `payment_type` varchar(40) NOT NULL DEFAULT '',
  `payment_status` varchar(32) NOT NULL DEFAULT '',
  `pending_reason` varchar(32) DEFAULT NULL,
  `invoice` varchar(128) DEFAULT NULL,
  `mc_currency` char(3) NOT NULL DEFAULT '',
  `first_name` varchar(32) NOT NULL DEFAULT '',
  `last_name` varchar(32) NOT NULL DEFAULT '',
  `payer_business_name` varchar(128) DEFAULT NULL,
  `address_name` varchar(64) DEFAULT NULL,
  `address_street` varchar(254) DEFAULT NULL,
  `address_city` varchar(120) DEFAULT NULL,
  `address_state` varchar(120) DEFAULT NULL,
  `address_zip` varchar(10) DEFAULT NULL,
  `address_country` varchar(64) DEFAULT NULL,
  `address_status` varchar(11) DEFAULT NULL,
  `payer_email` varchar(128) NOT NULL DEFAULT '',
  `payer_id` varchar(32) NOT NULL DEFAULT '',
  `payer_status` varchar(10) NOT NULL DEFAULT '',
  `payment_date` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `business` varchar(128) NOT NULL DEFAULT '',
  `receiver_email` varchar(128) NOT NULL DEFAULT '',
  `receiver_id` varchar(32) NOT NULL DEFAULT '',
  `txn_id` varchar(20) NOT NULL DEFAULT '',
  `parent_txn_id` varchar(20) DEFAULT NULL,
  `num_cart_items` tinyint(4) unsigned NOT NULL DEFAULT '1',
  `mc_gross` decimal(7,2) NOT NULL DEFAULT '0.00',
  `mc_fee` decimal(7,2) NOT NULL DEFAULT '0.00',
  `payment_gross` decimal(7,2) DEFAULT NULL,
  `payment_fee` decimal(7,2) DEFAULT NULL,
  `settle_amount` decimal(7,2) DEFAULT NULL,
  `settle_currency` char(3) DEFAULT NULL,
  `exchange_rate` decimal(4,2) DEFAULT NULL,
  `notify_version` varchar(6) NOT NULL DEFAULT '',
  `verify_sign` varchar(128) NOT NULL DEFAULT '',
  `last_modified` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `memo` text,
  PRIMARY KEY (`paypal_ipn_id`,`txn_id`),
  KEY `idx_order_id_zen` (`order_id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_paypal`
--

LOCK TABLES `zen_paypal` WRITE;
/*!40000 ALTER TABLE `zen_paypal` DISABLE KEYS */;
INSERT INTO `zen_paypal` VALUES (1,10,'expresscheckout','paypalwpp','PayPal','None','PayPal Express Checkout (instant)','Completed','None','EC-13P49337UB2738432','USD','John','Brake','','John Brake','2210 Ridgewood Circle','Royal Palm Beach','FL','33411','','Confirmed','jack.b@aaasurvivalproducts.com','7AUEEUBBE22H4','unverified','2011-05-25 03:53:20','','eorder.adirondakchairs.net','','5K02035550982172A','',1,0.10,0.10,NULL,NULL,0.00,'USD',1.00,'0','','0001-01-01 00:00:00','2011-05-24 22:53:21','{Record generated by payment module}'),(2,11,'expresscheckout','paypalwpp','PayPal','None','PayPal Express Checkout (instant)','Completed','None','EC-8YD88380SM970580L','USD','John','Brake','','John Brake','9079 Pierson Rd','Fowlerville','MI','48836','','Confirmed','jbrake@nsconstruct.com','3C7X2QVAB5RJL','unverified','2011-05-26 03:56:18','','eorder.adirondakchairs.net','','1WF82056VF891643W','',1,0.10,0.10,NULL,NULL,0.00,'USD',1.00,'0','','0001-01-01 00:00:00','2011-05-25 22:56:19','{Record generated by payment module}');
/*!40000 ALTER TABLE `zen_paypal` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_paypal_payment_status`
--

DROP TABLE IF EXISTS `zen_paypal_payment_status`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_paypal_payment_status` (
  `payment_status_id` int(11) NOT NULL AUTO_INCREMENT,
  `payment_status_name` varchar(64) NOT NULL DEFAULT '',
  PRIMARY KEY (`payment_status_id`)
) ENGINE=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_paypal_payment_status`
--

LOCK TABLES `zen_paypal_payment_status` WRITE;
/*!40000 ALTER TABLE `zen_paypal_payment_status` DISABLE KEYS */;
INSERT INTO `zen_paypal_payment_status` VALUES (1,'Completed'),(2,'Pending'),(3,'Failed'),(4,'Denied'),(5,'Refunded'),(6,'Canceled_Reversal'),(7,'Reversed');
/*!40000 ALTER TABLE `zen_paypal_payment_status` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_paypal_payment_status_history`
--

DROP TABLE IF EXISTS `zen_paypal_payment_status_history`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_paypal_payment_status_history` (
  `payment_status_history_id` int(11) NOT NULL AUTO_INCREMENT,
  `paypal_ipn_id` int(11) NOT NULL DEFAULT '0',
  `txn_id` varchar(64) NOT NULL DEFAULT '',
  `parent_txn_id` varchar(64) NOT NULL DEFAULT '',
  `payment_status` varchar(17) NOT NULL DEFAULT '',
  `pending_reason` varchar(14) DEFAULT NULL,
  `date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  PRIMARY KEY (`payment_status_history_id`),
  KEY `idx_paypal_ipn_id_zen` (`paypal_ipn_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_paypal_payment_status_history`
--

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

--
-- Table structure for table `zen_paypal_session`
--

DROP TABLE IF EXISTS `zen_paypal_session`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_paypal_session` (
  `unique_id` int(11) NOT NULL AUTO_INCREMENT,
  `session_id` text NOT NULL,
  `saved_session` mediumblob NOT NULL,
  `expiry` int(17) NOT NULL DEFAULT '0',
  PRIMARY KEY (`unique_id`),
  KEY `idx_session_id_zen` (`session_id`(36))
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_paypal_session`
--

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

--
-- Table structure for table `zen_paypal_testing`
--

DROP TABLE IF EXISTS `zen_paypal_testing`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_paypal_testing` (
  `paypal_ipn_id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `order_id` int(11) unsigned NOT NULL DEFAULT '0',
  `custom` varchar(255) NOT NULL DEFAULT '',
  `txn_type` varchar(40) NOT NULL DEFAULT '',
  `module_name` varchar(40) NOT NULL DEFAULT '',
  `module_mode` varchar(40) NOT NULL DEFAULT '',
  `reason_code` varchar(40) DEFAULT NULL,
  `payment_type` varchar(40) NOT NULL DEFAULT '',
  `payment_status` varchar(32) NOT NULL DEFAULT '',
  `pending_reason` varchar(32) DEFAULT NULL,
  `invoice` varchar(128) DEFAULT NULL,
  `mc_currency` char(3) NOT NULL DEFAULT '',
  `first_name` varchar(32) NOT NULL DEFAULT '',
  `last_name` varchar(32) NOT NULL DEFAULT '',
  `payer_business_name` varchar(128) DEFAULT NULL,
  `address_name` varchar(64) DEFAULT NULL,
  `address_street` varchar(254) DEFAULT NULL,
  `address_city` varchar(120) DEFAULT NULL,
  `address_state` varchar(120) DEFAULT NULL,
  `address_zip` varchar(10) DEFAULT NULL,
  `address_country` varchar(64) DEFAULT NULL,
  `address_status` varchar(11) DEFAULT NULL,
  `payer_email` varchar(128) NOT NULL DEFAULT '',
  `payer_id` varchar(32) NOT NULL DEFAULT '',
  `payer_status` varchar(10) NOT NULL DEFAULT '',
  `payment_date` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `business` varchar(128) NOT NULL DEFAULT '',
  `receiver_email` varchar(128) NOT NULL DEFAULT '',
  `receiver_id` varchar(32) NOT NULL DEFAULT '',
  `txn_id` varchar(20) NOT NULL DEFAULT '',
  `parent_txn_id` varchar(20) DEFAULT NULL,
  `num_cart_items` tinyint(4) unsigned NOT NULL DEFAULT '1',
  `mc_gross` decimal(7,2) NOT NULL DEFAULT '0.00',
  `mc_fee` decimal(7,2) NOT NULL DEFAULT '0.00',
  `payment_gross` decimal(7,2) DEFAULT NULL,
  `payment_fee` decimal(7,2) DEFAULT NULL,
  `settle_amount` decimal(7,2) DEFAULT NULL,
  `settle_currency` char(3) DEFAULT NULL,
  `exchange_rate` decimal(4,2) DEFAULT NULL,
  `notify_version` decimal(2,1) NOT NULL DEFAULT '0.0',
  `verify_sign` varchar(128) NOT NULL DEFAULT '',
  `last_modified` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `memo` text,
  PRIMARY KEY (`paypal_ipn_id`,`txn_id`),
  KEY `idx_order_id_zen` (`order_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_paypal_testing`
--

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

--
-- Table structure for table `zen_product_music_extra`
--

DROP TABLE IF EXISTS `zen_product_music_extra`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_product_music_extra` (
  `products_id` int(11) NOT NULL DEFAULT '0',
  `artists_id` int(11) NOT NULL DEFAULT '0',
  `record_company_id` int(11) NOT NULL DEFAULT '0',
  `music_genre_id` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`products_id`),
  KEY `idx_music_genre_id_zen` (`music_genre_id`),
  KEY `idx_artists_id_zen` (`artists_id`),
  KEY `idx_record_company_id_zen` (`record_company_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_product_music_extra`
--

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

--
-- Table structure for table `zen_product_type_layout`
--

DROP TABLE IF EXISTS `zen_product_type_layout`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_product_type_layout` (
  `configuration_id` int(11) NOT NULL AUTO_INCREMENT,
  `configuration_title` text NOT NULL,
  `configuration_key` varchar(255) NOT NULL DEFAULT '',
  `configuration_value` text NOT NULL,
  `configuration_description` text NOT NULL,
  `product_type_id` int(11) NOT NULL DEFAULT '0',
  `sort_order` int(5) DEFAULT NULL,
  `last_modified` datetime DEFAULT NULL,
  `date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `use_function` text,
  `set_function` text,
  PRIMARY KEY (`configuration_id`),
  UNIQUE KEY `unq_config_key_zen` (`configuration_key`),
  KEY `idx_key_value_zen` (`configuration_key`,`configuration_value`(10)),
  KEY `idx_type_id_sort_order_zen` (`product_type_id`,`sort_order`)
) ENGINE=MyISAM AUTO_INCREMENT=144 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_product_type_layout`
--

LOCK TABLES `zen_product_type_layout` WRITE;
/*!40000 ALTER TABLE `zen_product_type_layout` DISABLE KEYS */;
INSERT INTO `zen_product_type_layout` VALUES (1,'Show Model Number','SHOW_PRODUCT_INFO_MODEL','0','Display Model Number on Product Info 0= off 1= on',1,1,'2010-03-05 11:27:24','2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(2,'Show Weight','SHOW_PRODUCT_INFO_WEIGHT','0','Display Weight on Product Info 0= off 1= on',1,2,'2010-03-04 22:35:15','2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(3,'Show Attribute Weight','SHOW_PRODUCT_INFO_WEIGHT_ATTRIBUTES','0','Display Attribute Weight on Product Info 0= off 1= on',1,3,'2010-03-04 22:35:26','2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(4,'Show Manufacturer','SHOW_PRODUCT_INFO_MANUFACTURER','1','Display Manufacturer Name on Product Info 0= off 1= on',1,4,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(5,'Show Quantity in Shopping Cart','SHOW_PRODUCT_INFO_IN_CART_QTY','1','Display Quantity in Current Shopping Cart on Product Info 0= off 1= on',1,5,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(6,'Show Quantity in Stock','SHOW_PRODUCT_INFO_QUANTITY','0','Display Quantity in Stock on Product Info 0= off 1= on',1,6,'2010-03-04 22:20:08','2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(7,'Show Product Reviews Count','SHOW_PRODUCT_INFO_REVIEWS_COUNT','0','Display Product Reviews Count on Product Info 0= off 1= on',1,7,'2010-03-04 22:20:25','2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(8,'Show Product Reviews Button','SHOW_PRODUCT_INFO_REVIEWS','1','Display Product Reviews Button on Product Info 0= off 1= on',1,8,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(9,'Show Date Available','SHOW_PRODUCT_INFO_DATE_AVAILABLE','0','Display Date Available on Product Info 0= off 1= on',1,9,'2010-03-05 11:28:27','2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(10,'Show Date Added','SHOW_PRODUCT_INFO_DATE_ADDED','0','Display Date Added on Product Info 0= off 1= on',1,10,'2010-03-05 11:28:12','2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(11,'Show Product URL','SHOW_PRODUCT_INFO_URL','1','Display URL on Product Info 0= off 1= on',1,11,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(12,'Show Product Additional Images','SHOW_PRODUCT_INFO_ADDITIONAL_IMAGES','1','Display Additional Images on Product Info 0= off 1= on',1,13,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(13,'Show Starting At text on Price','SHOW_PRODUCT_INFO_STARTING_AT','0','Display Starting At text on products with attributes Product Info 0= off 1= on',1,12,'2010-03-25 10:31:20','2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(14,'Show Product Tell a Friend button','SHOW_PRODUCT_INFO_TELL_A_FRIEND','0','Display the Tell a Friend button on Product Info<br /><br />Note: Turning this setting off does not affect the Tell a Friend box in the columns and turning off the Tell a Friend box does not affect the button<br />0= off 1= on',1,15,'2010-03-04 22:20:45','2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(15,'Product Free Shipping Image Status - Catalog','SHOW_PRODUCT_INFO_ALWAYS_FREE_SHIPPING_IMAGE_SWITCH','0','Show the Free Shipping image/text in the catalog?',1,16,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(16,'Product Price Tax Class Default - When adding new products?','DEFAULT_PRODUCT_TAX_CLASS_ID','0','What should the Product Price Tax Class Default ID be when adding new products?',1,100,NULL,'2010-03-04 18:39:24','',''),(17,'Product Virtual Default Status - Skip Shipping Address - When adding new products?','DEFAULT_PRODUCT_PRODUCTS_VIRTUAL','0','Default Virtual Product status to be ON when adding new products?',1,101,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(18,'Product Free Shipping Default Status - Normal Shipping Rules - When adding new products?','DEFAULT_PRODUCT_PRODUCTS_IS_ALWAYS_FREE_SHIPPING','0','What should the Default Free Shipping status be when adding new products?<br />Yes, Always Free Shipping ON<br />No, Always Free Shipping OFF<br />Special, Product/Download Requires Shipping',1,102,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes, Always ON\'), array(\'id\'=>\'0\', \'text\'=>\'No, Always OFF\'), array(\'id\'=>\'2\', \'text\'=>\'Special\')), '),(19,'Show Model Number','SHOW_PRODUCT_MUSIC_INFO_MODEL','1','Display Model Number on Product Info 0= off 1= on',2,1,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(20,'Show Weight','SHOW_PRODUCT_MUSIC_INFO_WEIGHT','0','Display Weight on Product Info 0= off 1= on',2,2,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(21,'Show Attribute Weight','SHOW_PRODUCT_MUSIC_INFO_WEIGHT_ATTRIBUTES','1','Display Attribute Weight on Product Info 0= off 1= on',2,3,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(22,'Show Artist','SHOW_PRODUCT_MUSIC_INFO_ARTIST','1','Display Artists Name on Product Info 0= off 1= on',2,4,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(23,'Show Music Genre','SHOW_PRODUCT_MUSIC_INFO_GENRE','1','Display Music Genre on Product Info 0= off 1= on',2,4,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(24,'Show Record Company','SHOW_PRODUCT_MUSIC_INFO_RECORD_COMPANY','1','Display Record Company on Product Info 0= off 1= on',2,4,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(25,'Show Quantity in Shopping Cart','SHOW_PRODUCT_MUSIC_INFO_IN_CART_QTY','1','Display Quantity in Current Shopping Cart on Product Info 0= off 1= on',2,5,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(26,'Show Quantity in Stock','SHOW_PRODUCT_MUSIC_INFO_QUANTITY','0','Display Quantity in Stock on Product Info 0= off 1= on',2,6,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(27,'Show Product Reviews Count','SHOW_PRODUCT_MUSIC_INFO_REVIEWS_COUNT','1','Display Product Reviews Count on Product Info 0= off 1= on',2,7,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(28,'Show Product Reviews Button','SHOW_PRODUCT_MUSIC_INFO_REVIEWS','1','Display Product Reviews Button on Product Info 0= off 1= on',2,8,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(29,'Show Date Available','SHOW_PRODUCT_MUSIC_INFO_DATE_AVAILABLE','1','Display Date Available on Product Info 0= off 1= on',2,9,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(30,'Show Date Added','SHOW_PRODUCT_MUSIC_INFO_DATE_ADDED','1','Display Date Added on Product Info 0= off 1= on',2,10,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(31,'Show Starting At text on Price','SHOW_PRODUCT_MUSIC_INFO_STARTING_AT','1','Display Starting At text on products with attributes Product Info 0= off 1= on',2,12,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(32,'Show Product Additional Images','SHOW_PRODUCT_MUSIC_INFO_ADDITIONAL_IMAGES','1','Display Additional Images on Product Info 0= off 1= on',2,13,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(33,'Show Product Tell a Friend button','SHOW_PRODUCT_MUSIC_INFO_TELL_A_FRIEND','1','Display the Tell a Friend button on Product Info<br /><br />Note: Turning this setting off does not affect the Tell a Friend box in the columns and turning off the Tell a Friend box does not affect the button<br />0= off 1= on',2,15,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(34,'Product Free Shipping Image Status - Catalog','SHOW_PRODUCT_MUSIC_INFO_ALWAYS_FREE_SHIPPING_IMAGE_SWITCH','0','Show the Free Shipping image/text in the catalog?',2,16,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(35,'Product Price Tax Class Default - When adding new products?','DEFAULT_PRODUCT_MUSIC_TAX_CLASS_ID','0','What should the Product Price Tax Class Default ID be when adding new products?',2,100,NULL,'2010-03-04 18:39:24','',''),(36,'Product Virtual Default Status - Skip Shipping Address - When adding new products?','DEFAULT_PRODUCT_MUSIC_PRODUCTS_VIRTUAL','0','Default Virtual Product status to be ON when adding new products?',2,101,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(37,'Product Free Shipping Default Status - Normal Shipping Rules - When adding new products?','DEFAULT_PRODUCT_MUSIC_PRODUCTS_IS_ALWAYS_FREE_SHIPPING','0','What should the Default Free Shipping status be when adding new products?<br />Yes, Always Free Shipping ON<br />No, Always Free Shipping OFF<br />Special, Product/Download Requires Shipping',2,102,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes, Always ON\'), array(\'id\'=>\'0\', \'text\'=>\'No, Always OFF\'), array(\'id\'=>\'2\', \'text\'=>\'Special\')), '),(38,'Show Product Reviews Count','SHOW_DOCUMENT_GENERAL_INFO_REVIEWS_COUNT','1','Display Product Reviews Count on Product Info 0= off 1= on',3,7,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(39,'Show Product Reviews Button','SHOW_DOCUMENT_GENERAL_INFO_REVIEWS','1','Display Product Reviews Button on Product Info 0= off 1= on',3,8,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(40,'Show Date Available','SHOW_DOCUMENT_GENERAL_INFO_DATE_AVAILABLE','1','Display Date Available on Product Info 0= off 1= on',3,9,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(41,'Show Date Added','SHOW_DOCUMENT_GENERAL_INFO_DATE_ADDED','1','Display Date Added on Product Info 0= off 1= on',3,10,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(42,'Show Product Tell a Friend button','SHOW_DOCUMENT_GENERAL_INFO_TELL_A_FRIEND','1','Display the Tell a Friend button on Product Info<br /><br />Note: Turning this setting off does not affect the Tell a Friend box in the columns and turning off the Tell a Friend box does not affect the button<br />0= off 1= on',3,15,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(43,'Show Product URL','SHOW_DOCUMENT_GENERAL_INFO_URL','1','Display URL on Product Info 0= off 1= on',3,11,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(44,'Show Product Additional Images','SHOW_DOCUMENT_GENERAL_INFO_ADDITIONAL_IMAGES','1','Display Additional Images on Product Info 0= off 1= on',3,13,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(45,'Show Model Number','SHOW_DOCUMENT_PRODUCT_INFO_MODEL','1','Display Model Number on Product Info 0= off 1= on',4,1,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(46,'Show Weight','SHOW_DOCUMENT_PRODUCT_INFO_WEIGHT','0','Display Weight on Product Info 0= off 1= on',4,2,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(47,'Show Attribute Weight','SHOW_DOCUMENT_PRODUCT_INFO_WEIGHT_ATTRIBUTES','1','Display Attribute Weight on Product Info 0= off 1= on',4,3,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(48,'Show Manufacturer','SHOW_DOCUMENT_PRODUCT_INFO_MANUFACTURER','1','Display Manufacturer Name on Product Info 0= off 1= on',4,4,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(49,'Show Quantity in Shopping Cart','SHOW_DOCUMENT_PRODUCT_INFO_IN_CART_QTY','1','Display Quantity in Current Shopping Cart on Product Info 0= off 1= on',4,5,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(50,'Show Quantity in Stock','SHOW_DOCUMENT_PRODUCT_INFO_QUANTITY','0','Display Quantity in Stock on Product Info 0= off 1= on',4,6,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(51,'Show Product Reviews Count','SHOW_DOCUMENT_PRODUCT_INFO_REVIEWS_COUNT','1','Display Product Reviews Count on Product Info 0= off 1= on',4,7,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(52,'Show Product Reviews Button','SHOW_DOCUMENT_PRODUCT_INFO_REVIEWS','1','Display Product Reviews Button on Product Info 0= off 1= on',4,8,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(53,'Show Date Available','SHOW_DOCUMENT_PRODUCT_INFO_DATE_AVAILABLE','1','Display Date Available on Product Info 0= off 1= on',4,9,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(54,'Show Date Added','SHOW_DOCUMENT_PRODUCT_INFO_DATE_ADDED','1','Display Date Added on Product Info 0= off 1= on',4,10,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(55,'Show Product URL','SHOW_DOCUMENT_PRODUCT_INFO_URL','1','Display URL on Product Info 0= off 1= on',4,11,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(56,'Show Product Additional Images','SHOW_DOCUMENT_PRODUCT_INFO_ADDITIONAL_IMAGES','1','Display Additional Images on Product Info 0= off 1= on',4,13,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(57,'Show Starting At text on Price','SHOW_DOCUMENT_PRODUCT_INFO_STARTING_AT','1','Display Starting At text on products with attributes Product Info 0= off 1= on',4,12,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(58,'Show Product Tell a Friend button','SHOW_DOCUMENT_PRODUCT_INFO_TELL_A_FRIEND','1','Display the Tell a Friend button on Product Info<br /><br />Note: Turning this setting off does not affect the Tell a Friend box in the columns and turning off the Tell a Friend box does not affect the button<br />0= off 1= on',4,15,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(59,'Product Free Shipping Image Status - Catalog','SHOW_DOCUMENT_PRODUCT_INFO_ALWAYS_FREE_SHIPPING_IMAGE_SWITCH','0','Show the Free Shipping image/text in the catalog?',4,16,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(60,'Product Price Tax Class Default - When adding new products?','DEFAULT_DOCUMENT_PRODUCT_TAX_CLASS_ID','0','What should the Product Price Tax Class Default ID be when adding new products?',4,100,NULL,'2010-03-04 18:39:24','',''),(61,'Product Virtual Default Status - Skip Shipping Address - When adding new products?','DEFAULT_DOCUMENT_PRODUCT_PRODUCTS_VIRTUAL','0','Default Virtual Product status to be ON when adding new products?',4,101,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(62,'Product Free Shipping Default Status - Normal Shipping Rules - When adding new products?','DEFAULT_DOCUMENT_PRODUCT_PRODUCTS_IS_ALWAYS_FREE_SHIPPING','0','What should the Default Free Shipping status be when adding new products?<br />Yes, Always Free Shipping ON<br />No, Always Free Shipping OFF<br />Special, Product/Download Requires Shipping',4,102,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes, Always ON\'), array(\'id\'=>\'0\', \'text\'=>\'No, Always OFF\'), array(\'id\'=>\'2\', \'text\'=>\'Special\')), '),(63,'Show Model Number','SHOW_PRODUCT_FREE_SHIPPING_INFO_MODEL','1','Display Model Number on Product Info 0= off 1= on',5,1,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(64,'Show Weight','SHOW_PRODUCT_FREE_SHIPPING_INFO_WEIGHT','0','Display Weight on Product Info 0= off 1= on',5,2,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(65,'Show Attribute Weight','SHOW_PRODUCT_FREE_SHIPPING_INFO_WEIGHT_ATTRIBUTES','1','Display Attribute Weight on Product Info 0= off 1= on',5,3,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(66,'Show Manufacturer','SHOW_PRODUCT_FREE_SHIPPING_INFO_MANUFACTURER','1','Display Manufacturer Name on Product Info 0= off 1= on',5,4,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(67,'Show Quantity in Shopping Cart','SHOW_PRODUCT_FREE_SHIPPING_INFO_IN_CART_QTY','1','Display Quantity in Current Shopping Cart on Product Info 0= off 1= on',5,5,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(68,'Show Quantity in Stock','SHOW_PRODUCT_FREE_SHIPPING_INFO_QUANTITY','1','Display Quantity in Stock on Product Info 0= off 1= on',5,6,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(69,'Show Product Reviews Count','SHOW_PRODUCT_FREE_SHIPPING_INFO_REVIEWS_COUNT','1','Display Product Reviews Count on Product Info 0= off 1= on',5,7,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(70,'Show Product Reviews Button','SHOW_PRODUCT_FREE_SHIPPING_INFO_REVIEWS','1','Display Product Reviews Button on Product Info 0= off 1= on',5,8,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(71,'Show Date Available','SHOW_PRODUCT_FREE_SHIPPING_INFO_DATE_AVAILABLE','0','Display Date Available on Product Info 0= off 1= on',5,9,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(72,'Show Date Added','SHOW_PRODUCT_FREE_SHIPPING_INFO_DATE_ADDED','1','Display Date Added on Product Info 0= off 1= on',5,10,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(73,'Show Product URL','SHOW_PRODUCT_FREE_SHIPPING_INFO_URL','1','Display URL on Product Info 0= off 1= on',5,11,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(74,'Show Product Additional Images','SHOW_PRODUCT_FREE_SHIPPING_INFO_ADDITIONAL_IMAGES','1','Display Additional Images on Product Info 0= off 1= on',5,13,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(75,'Show Starting At text on Price','SHOW_PRODUCT_FREE_SHIPPING_INFO_STARTING_AT','1','Display Starting At text on products with attributes Product Info 0= off 1= on',5,12,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(76,'Show Product Tell a Friend button','SHOW_PRODUCT_FREE_SHIPPING_INFO_TELL_A_FRIEND','1','Display the Tell a Friend button on Product Info<br /><br />Note: Turning this setting off does not affect the Tell a Friend box in the columns and turning off the Tell a Friend box does not affect the button<br />0= off 1= on',5,15,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(77,'Product Free Shipping Image Status - Catalog','SHOW_PRODUCT_FREE_SHIPPING_INFO_ALWAYS_FREE_SHIPPING_IMAGE_SWITCH','1','Show the Free Shipping image/text in the catalog?',5,16,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(78,'Product Price Tax Class Default - When adding new products?','DEFAULT_PRODUCT_FREE_SHIPPING_TAX_CLASS_ID','0','What should the Product Price Tax Class Default ID be when adding new products?',5,100,NULL,'2010-03-04 18:39:24','',''),(79,'Product Virtual Default Status - Skip Shipping Address - When adding new products?','DEFAULT_PRODUCT_FREE_SHIPPING_PRODUCTS_VIRTUAL','0','Default Virtual Product status to be ON when adding new products?',5,101,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(80,'Product Free Shipping Default Status - Normal Shipping Rules - When adding new products?','DEFAULT_PRODUCT_FREE_SHIPPING_PRODUCTS_IS_ALWAYS_FREE_SHIPPING','1','What should the Default Free Shipping status be when adding new products?<br />Yes, Always Free Shipping ON<br />No, Always Free Shipping OFF<br />Special, Product/Download Requires Shipping',5,102,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes, Always ON\'), array(\'id\'=>\'0\', \'text\'=>\'No, Always OFF\'), array(\'id\'=>\'2\', \'text\'=>\'Special\')), '),(81,'Show Metatags Title Default - Product Title','SHOW_PRODUCT_INFO_METATAGS_TITLE_STATUS','1','Display Product Title in Meta Tags Title 0= off 1= on',1,50,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(82,'Show Metatags Title Default - Product Name','SHOW_PRODUCT_INFO_METATAGS_PRODUCTS_NAME_STATUS','1','Display Product Name in Meta Tags Title 0= off 1= on',1,51,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(83,'Show Metatags Title Default - Product Model','SHOW_PRODUCT_INFO_METATAGS_MODEL_STATUS','1','Display Product Model in Meta Tags Title 0= off 1= on',1,52,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(84,'Show Metatags Title Default - Product Price','SHOW_PRODUCT_INFO_METATAGS_PRICE_STATUS','1','Display Product Price in Meta Tags Title 0= off 1= on',1,53,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(85,'Show Metatags Title Default - Product Tagline','SHOW_PRODUCT_INFO_METATAGS_TITLE_TAGLINE_STATUS','1','Display Product Tagline in Meta Tags Title 0= off 1= on',1,54,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(86,'Show Metatags Title Default - Product Title','SHOW_PRODUCT_MUSIC_INFO_METATAGS_TITLE_STATUS','1','Display Product Title in Meta Tags Title 0= off 1= on',2,50,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(87,'Show Metatags Title Default - Product Name','SHOW_PRODUCT_MUSIC_INFO_METATAGS_PRODUCTS_NAME_STATUS','1','Display Product Name in Meta Tags Title 0= off 1= on',2,51,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(88,'Show Metatags Title Default - Product Model','SHOW_PRODUCT_MUSIC_INFO_METATAGS_MODEL_STATUS','1','Display Product Model in Meta Tags Title 0= off 1= on',2,52,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(89,'Show Metatags Title Default - Product Price','SHOW_PRODUCT_MUSIC_INFO_METATAGS_PRICE_STATUS','1','Display Product Price in Meta Tags Title 0= off 1= on',2,53,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(90,'Show Metatags Title Default - Product Tagline','SHOW_PRODUCT_MUSIC_INFO_METATAGS_TITLE_TAGLINE_STATUS','1','Display Product Tagline in Meta Tags Title 0= off 1= on',2,54,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(91,'Show Metatags Title Default - Document Title','SHOW_DOCUMENT_GENERAL_INFO_METATAGS_TITLE_STATUS','1','Display Document Title in Meta Tags Title 0= off 1= on',3,50,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(92,'Show Metatags Title Default - Document Name','SHOW_DOCUMENT_GENERAL_INFO_METATAGS_PRODUCTS_NAME_STATUS','1','Display Document Name in Meta Tags Title 0= off 1= on',3,51,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(93,'Show Metatags Title Default - Document Tagline','SHOW_DOCUMENT_GENERAL_INFO_METATAGS_TITLE_TAGLINE_STATUS','1','Display Document Tagline in Meta Tags Title 0= off 1= on',3,54,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(94,'Show Metatags Title Default - Document Title','SHOW_DOCUMENT_PRODUCT_INFO_METATAGS_TITLE_STATUS','1','Display Document Title in Meta Tags Title 0= off 1= on',4,50,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(95,'Show Metatags Title Default - Document Name','SHOW_DOCUMENT_PRODUCT_INFO_METATAGS_PRODUCTS_NAME_STATUS','1','Display Document Name in Meta Tags Title 0= off 1= on',4,51,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(96,'Show Metatags Title Default - Document Model','SHOW_DOCUMENT_PRODUCT_INFO_METATAGS_MODEL_STATUS','1','Display Document Model in Meta Tags Title 0= off 1= on',4,52,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(97,'Show Metatags Title Default - Document Price','SHOW_DOCUMENT_PRODUCT_INFO_METATAGS_PRICE_STATUS','1','Display Document Price in Meta Tags Title 0= off 1= on',4,53,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(98,'Show Metatags Title Default - Document Tagline','SHOW_DOCUMENT_PRODUCT_INFO_METATAGS_TITLE_TAGLINE_STATUS','1','Display Document Tagline in Meta Tags Title 0= off 1= on',4,54,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(99,'Show Metatags Title Default - Product Title','SHOW_PRODUCT_FREE_SHIPPING_INFO_METATAGS_TITLE_STATUS','1','Display Product Title in Meta Tags Title 0= off 1= on',5,50,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(100,'Show Metatags Title Default - Product Name','SHOW_PRODUCT_FREE_SHIPPING_INFO_METATAGS_PRODUCTS_NAME_STATUS','1','Display Product Name in Meta Tags Title 0= off 1= on',5,51,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(101,'Show Metatags Title Default - Product Model','SHOW_PRODUCT_FREE_SHIPPING_INFO_METATAGS_MODEL_STATUS','1','Display Product Model in Meta Tags Title 0= off 1= on',5,52,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(102,'Show Metatags Title Default - Product Price','SHOW_PRODUCT_FREE_SHIPPING_INFO_METATAGS_PRICE_STATUS','1','Display Product Price in Meta Tags Title 0= off 1= on',5,53,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(103,'Show Metatags Title Default - Product Tagline','SHOW_PRODUCT_FREE_SHIPPING_INFO_METATAGS_TITLE_TAGLINE_STATUS','1','Display Product Tagline in Meta Tags Title 0= off 1= on',5,54,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(104,'PRODUCT Attribute is Display Only - Default','DEFAULT_PRODUCT_ATTRIBUTES_DISPLAY_ONLY','0','PRODUCT Attribute is Display Only<br />Used For Display Purposes Only<br />0= No 1= Yes',1,200,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(105,'PRODUCT Attribute is Free - Default','DEFAULT_PRODUCT_ATTRIBUTE_IS_FREE','1','PRODUCT Attribute is Free<br />Attribute is Free When Product is Free<br />0= No 1= Yes',1,201,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(106,'PRODUCT Attribute is Default - Default','DEFAULT_PRODUCT_ATTRIBUTES_DEFAULT','0','PRODUCT Attribute is Default<br />Default Attribute to be Marked Selected<br />0= No 1= Yes',1,202,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(107,'PRODUCT Attribute is Discounted - Default','DEFAULT_PRODUCT_ATTRIBUTES_DISCOUNTED','1','PRODUCT Attribute is Discounted<br />Apply Discounts Used by Product Special/Sale<br />0= No 1= Yes',1,203,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(108,'PRODUCT Attribute is Included in Base Price - Default','DEFAULT_PRODUCT_ATTRIBUTES_PRICE_BASE_INCLUDED','1','PRODUCT Attribute is Included in Base Price<br />Include in Base Price When Priced by Attributes<br />0= No 1= Yes',1,204,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(109,'PRODUCT Attribute is Required - Default','DEFAULT_PRODUCT_ATTRIBUTES_REQUIRED','0','PRODUCT Attribute is Required<br />Attribute Required for Text<br />0= No 1= Yes',1,205,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(110,'PRODUCT Attribute Price Prefix - Default','DEFAULT_PRODUCT_PRICE_PREFIX','1','PRODUCT Attribute Price Prefix<br />Default Attribute Price Prefix for Adding<br />Blank, + or -',1,206,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'0\', \'text\'=>\'Blank\'), array(\'id\'=>\'1\', \'text\'=>\'+\'), array(\'id\'=>\'2\', \'text\'=>\'-\')), '),(111,'PRODUCT Attribute Weight Prefix - Default','DEFAULT_PRODUCT_PRODUCTS_ATTRIBUTES_WEIGHT_PREFIX','1','PRODUCT Attribute Weight Prefix<br />Default Attribute Weight Prefix<br />Blank, + or -',1,207,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'0\', \'text\'=>\'Blank\'), array(\'id\'=>\'1\', \'text\'=>\'+\'), array(\'id\'=>\'2\', \'text\'=>\'-\')), '),(112,'MUSIC Attribute is Display Only - Default','DEFAULT_PRODUCT_MUSIC_ATTRIBUTES_DISPLAY_ONLY','0','MUSIC Attribute is Display Only<br />Used For Display Purposes Only<br />0= No 1= Yes',2,200,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(113,'MUSIC Attribute is Free - Default','DEFAULT_PRODUCT_MUSIC_ATTRIBUTE_IS_FREE','1','MUSIC Attribute is Free<br />Attribute is Free When Product is Free<br />0= No 1= Yes',2,201,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(114,'MUSIC Attribute is Default - Default','DEFAULT_PRODUCT_MUSIC_ATTRIBUTES_DEFAULT','0','MUSIC Attribute is Default<br />Default Attribute to be Marked Selected<br />0= No 1= Yes',2,202,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(115,'MUSIC Attribute is Discounted - Default','DEFAULT_PRODUCT_MUSIC_ATTRIBUTES_DISCOUNTED','1','MUSIC Attribute is Discounted<br />Apply Discounts Used by Product Special/Sale<br />0= No 1= Yes',2,203,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(116,'MUSIC Attribute is Included in Base Price - Default','DEFAULT_PRODUCT_MUSIC_ATTRIBUTES_PRICE_BASE_INCLUDED','1','MUSIC Attribute is Included in Base Price<br />Include in Base Price When Priced by Attributes<br />0= No 1= Yes',2,204,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(117,'MUSIC Attribute is Required - Default','DEFAULT_PRODUCT_MUSIC_ATTRIBUTES_REQUIRED','0','MUSIC Attribute is Required<br />Attribute Required for Text<br />0= No 1= Yes',2,205,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(118,'MUSIC Attribute Price Prefix - Default','DEFAULT_PRODUCT_MUSIC_PRICE_PREFIX','1','MUSIC Attribute Price Prefix<br />Default Attribute Price Prefix for Adding<br />Blank, + or -',2,206,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'0\', \'text\'=>\'Blank\'), array(\'id\'=>\'1\', \'text\'=>\'+\'), array(\'id\'=>\'2\', \'text\'=>\'-\')), '),(119,'MUSIC Attribute Weight Prefix - Default','DEFAULT_PRODUCT_MUSIC_PRODUCTS_ATTRIBUTES_WEIGHT_PREFIX','1','MUSIC Attribute Weight Prefix<br />Default Attribute Weight Prefix<br />Blank, + or -',2,207,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'0\', \'text\'=>\'Blank\'), array(\'id\'=>\'1\', \'text\'=>\'+\'), array(\'id\'=>\'2\', \'text\'=>\'-\')), '),(120,'DOCUMENT GENERAL Attribute is Display Only - Default','DEFAULT_DOCUMENT_GENERAL_ATTRIBUTES_DISPLAY_ONLY','0','DOCUMENT GENERAL Attribute is Display Only<br />Used For Display Purposes Only<br />0= No 1= Yes',3,200,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(121,'DOCUMENT GENERAL Attribute is Free - Default','DEFAULT_DOCUMENT_GENERAL_ATTRIBUTE_IS_FREE','1','DOCUMENT GENERAL Attribute is Free<br />Attribute is Free When Product is Free<br />0= No 1= Yes',3,201,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(122,'DOCUMENT GENERAL Attribute is Default - Default','DEFAULT_DOCUMENT_GENERAL_ATTRIBUTES_DEFAULT','0','DOCUMENT GENERAL Attribute is Default<br />Default Attribute to be Marked Selected<br />0= No 1= Yes',3,202,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(123,'DOCUMENT GENERAL Attribute is Discounted - Default','DEFAULT_DOCUMENT_GENERAL_ATTRIBUTES_DISCOUNTED','1','DOCUMENT GENERAL Attribute is Discounted<br />Apply Discounts Used by Product Special/Sale<br />0= No 1= Yes',3,203,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(124,'DOCUMENT GENERAL Attribute is Included in Base Price - Default','DEFAULT_DOCUMENT_GENERAL_ATTRIBUTES_PRICE_BASE_INCLUDED','1','DOCUMENT GENERAL Attribute is Included in Base Price<br />Include in Base Price When Priced by Attributes<br />0= No 1= Yes',3,204,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(125,'DOCUMENT GENERAL Attribute is Required - Default','DEFAULT_DOCUMENT_GENERAL_ATTRIBUTES_REQUIRED','0','DOCUMENT GENERAL Attribute is Required<br />Attribute Required for Text<br />0= No 1= Yes',3,205,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(126,'DOCUMENT GENERAL Attribute Price Prefix - Default','DEFAULT_DOCUMENT_GENERAL_PRICE_PREFIX','1','DOCUMENT GENERAL Attribute Price Prefix<br />Default Attribute Price Prefix for Adding<br />Blank, + or -',3,206,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'0\', \'text\'=>\'Blank\'), array(\'id\'=>\'1\', \'text\'=>\'+\'), array(\'id\'=>\'2\', \'text\'=>\'-\')), '),(127,'DOCUMENT GENERAL Attribute Weight Prefix - Default','DEFAULT_DOCUMENT_GENERAL_PRODUCTS_ATTRIBUTES_WEIGHT_PREFIX','1','DOCUMENT GENERAL Attribute Weight Prefix<br />Default Attribute Weight Prefix<br />Blank, + or -',3,207,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'0\', \'text\'=>\'Blank\'), array(\'id\'=>\'1\', \'text\'=>\'+\'), array(\'id\'=>\'2\', \'text\'=>\'-\')), '),(128,'DOCUMENT PRODUCT Attribute is Display Only - Default','DEFAULT_DOCUMENT_PRODUCT_ATTRIBUTES_DISPLAY_ONLY','0','DOCUMENT PRODUCT Attribute is Display Only<br />Used For Display Purposes Only<br />0= No 1= Yes',4,200,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(129,'DOCUMENT PRODUCT Attribute is Free - Default','DEFAULT_DOCUMENT_PRODUCT_ATTRIBUTE_IS_FREE','1','DOCUMENT PRODUCT Attribute is Free<br />Attribute is Free When Product is Free<br />0= No 1= Yes',4,201,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(130,'DOCUMENT PRODUCT Attribute is Default - Default','DEFAULT_DOCUMENT_PRODUCT_ATTRIBUTES_DEFAULT','0','DOCUMENT PRODUCT Attribute is Default<br />Default Attribute to be Marked Selected<br />0= No 1= Yes',4,202,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(131,'DOCUMENT PRODUCT Attribute is Discounted - Default','DEFAULT_DOCUMENT_PRODUCT_ATTRIBUTES_DISCOUNTED','1','DOCUMENT PRODUCT Attribute is Discounted<br />Apply Discounts Used by Product Special/Sale<br />0= No 1= Yes',4,203,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(132,'DOCUMENT PRODUCT Attribute is Included in Base Price - Default','DEFAULT_DOCUMENT_PRODUCT_ATTRIBUTES_PRICE_BASE_INCLUDED','1','DOCUMENT PRODUCT Attribute is Included in Base Price<br />Include in Base Price When Priced by Attributes<br />0= No 1= Yes',4,204,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(133,'DOCUMENT PRODUCT Attribute is Required - Default','DEFAULT_DOCUMENT_PRODUCT_ATTRIBUTES_REQUIRED','0','DOCUMENT PRODUCT Attribute is Required<br />Attribute Required for Text<br />0= No 1= Yes',4,205,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(134,'DOCUMENT PRODUCT Attribute Price Prefix - Default','DEFAULT_DOCUMENT_PRODUCT_PRICE_PREFIX','1','DOCUMENT PRODUCT Attribute Price Prefix<br />Default Attribute Price Prefix for Adding<br />Blank, + or -',4,206,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'0\', \'text\'=>\'Blank\'), array(\'id\'=>\'1\', \'text\'=>\'+\'), array(\'id\'=>\'2\', \'text\'=>\'-\')), '),(135,'DOCUMENT PRODUCT Attribute Weight Prefix - Default','DEFAULT_DOCUMENT_PRODUCT_PRODUCTS_ATTRIBUTES_WEIGHT_PREFIX','1','DOCUMENT PRODUCT Attribute Weight Prefix<br />Default Attribute Weight Prefix<br />Blank, + or -',4,207,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'0\', \'text\'=>\'Blank\'), array(\'id\'=>\'1\', \'text\'=>\'+\'), array(\'id\'=>\'2\', \'text\'=>\'-\')), '),(136,'PRODUCT FREE SHIPPING Attribute is Display Only - Default','DEFAULT_PRODUCT_FREE_SHIPPING_ATTRIBUTES_DISPLAY_ONLY','0','PRODUCT FREE SHIPPING Attribute is Display Only<br />Used For Display Purposes Only<br />0= No 1= Yes',5,201,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(137,'PRODUCT FREE SHIPPING Attribute is Free - Default','DEFAULT_PRODUCT_FREE_SHIPPING_ATTRIBUTE_IS_FREE','1','PRODUCT FREE SHIPPING Attribute is Free<br />Attribute is Free When Product is Free<br />0= No 1= Yes',5,201,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(138,'PRODUCT FREE SHIPPING Attribute is Default - Default','DEFAULT_PRODUCT_FREE_SHIPPING_ATTRIBUTES_DEFAULT','0','PRODUCT FREE SHIPPING Attribute is Default<br />Default Attribute to be Marked Selected<br />0= No 1= Yes',5,202,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(139,'PRODUCT FREE SHIPPING Attribute is Discounted - Default','DEFAULT_PRODUCT_FREE_SHIPPING_ATTRIBUTES_DISCOUNTED','1','PRODUCT FREE SHIPPING Attribute is Discounted<br />Apply Discounts Used by Product Special/Sale<br />0= No 1= Yes',5,203,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(140,'PRODUCT FREE SHIPPING Attribute is Included in Base Price - Default','DEFAULT_PRODUCT_FREE_SHIPPING_ATTRIBUTES_PRICE_BASE_INCLUDED','1','PRODUCT FREE SHIPPING Attribute is Included in Base Price<br />Include in Base Price When Priced by Attributes<br />0= No 1= Yes',5,204,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(141,'PRODUCT FREE SHIPPING Attribute is Required - Default','DEFAULT_PRODUCT_FREE_SHIPPING_ATTRIBUTES_REQUIRED','0','PRODUCT FREE SHIPPING Attribute is Required<br />Attribute Required for Text<br />0= No 1= Yes',5,205,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(142,'PRODUCT FREE SHIPPING Attribute Price Prefix - Default','DEFAULT_PRODUCT_FREE_SHIPPING_PRICE_PREFIX','1','PRODUCT FREE SHIPPING Attribute Price Prefix<br />Default Attribute Price Prefix for Adding<br />Blank, + or -',5,206,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'0\', \'text\'=>\'Blank\'), array(\'id\'=>\'1\', \'text\'=>\'+\'), array(\'id\'=>\'2\', \'text\'=>\'-\')), '),(143,'PRODUCT FREE SHIPPING Attribute Weight Prefix - Default','DEFAULT_PRODUCT_FREE_SHIPPING_PRODUCTS_ATTRIBUTES_WEIGHT_PREFIX','1','PRODUCT FREE SHIPPING Attribute Weight Prefix<br />Default Attribute Weight Prefix<br />Blank, + or -',5,207,NULL,'2010-03-04 18:39:24',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'0\', \'text\'=>\'Blank\'), array(\'id\'=>\'1\', \'text\'=>\'+\'), array(\'id\'=>\'2\', \'text\'=>\'-\')), ');
/*!40000 ALTER TABLE `zen_product_type_layout` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_product_types`
--

DROP TABLE IF EXISTS `zen_product_types`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_product_types` (
  `type_id` int(11) NOT NULL AUTO_INCREMENT,
  `type_name` varchar(255) NOT NULL DEFAULT '',
  `type_handler` varchar(255) NOT NULL DEFAULT '',
  `type_master_type` int(11) NOT NULL DEFAULT '1',
  `allow_add_to_cart` char(1) NOT NULL DEFAULT 'Y',
  `default_image` varchar(255) NOT NULL DEFAULT '',
  `date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `last_modified` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  PRIMARY KEY (`type_id`),
  KEY `idx_type_master_type_zen` (`type_master_type`)
) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_product_types`
--

LOCK TABLES `zen_product_types` WRITE;
/*!40000 ALTER TABLE `zen_product_types` DISABLE KEYS */;
INSERT INTO `zen_product_types` VALUES (1,'Product - General','product',1,'Y','','2010-03-04 18:39:24','2010-03-04 18:39:24'),(2,'Product - Music','product_music',1,'Y','','2010-03-04 18:39:24','2010-03-04 18:39:24'),(3,'Document - General','document_general',3,'N','','2010-03-04 18:39:24','2010-03-04 18:39:24'),(4,'Document - Product','document_product',3,'Y','','2010-03-04 18:39:24','2010-03-04 18:39:24'),(5,'Product - Free Shipping','product_free_shipping',1,'Y','','2010-03-04 18:39:24','2010-03-04 18:39:24');
/*!40000 ALTER TABLE `zen_product_types` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_product_types_to_category`
--

DROP TABLE IF EXISTS `zen_product_types_to_category`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_product_types_to_category` (
  `product_type_id` int(11) NOT NULL DEFAULT '0',
  `category_id` int(11) NOT NULL DEFAULT '0',
  KEY `idx_category_id_zen` (`category_id`),
  KEY `idx_product_type_id_zen` (`product_type_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_product_types_to_category`
--

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

--
-- Table structure for table `zen_products`
--

DROP TABLE IF EXISTS `zen_products`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_products` (
  `products_id` int(11) NOT NULL AUTO_INCREMENT,
  `products_type` int(11) NOT NULL DEFAULT '1',
  `products_quantity` float NOT NULL DEFAULT '0',
  `products_model` varchar(32) DEFAULT NULL,
  `products_image` varchar(64) DEFAULT NULL,
  `products_price` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `products_virtual` tinyint(1) NOT NULL DEFAULT '0',
  `products_date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `products_last_modified` datetime DEFAULT NULL,
  `products_date_available` datetime DEFAULT NULL,
  `products_weight` float NOT NULL DEFAULT '0',
  `products_status` tinyint(1) NOT NULL DEFAULT '0',
  `products_tax_class_id` int(11) NOT NULL DEFAULT '0',
  `manufacturers_id` int(11) DEFAULT NULL,
  `products_ordered` float NOT NULL DEFAULT '0',
  `products_quantity_order_min` float NOT NULL DEFAULT '1',
  `products_quantity_order_units` float NOT NULL DEFAULT '1',
  `products_priced_by_attribute` tinyint(1) NOT NULL DEFAULT '0',
  `product_is_free` tinyint(1) NOT NULL DEFAULT '0',
  `product_is_call` tinyint(1) NOT NULL DEFAULT '0',
  `products_quantity_mixed` tinyint(1) NOT NULL DEFAULT '0',
  `product_is_always_free_shipping` tinyint(1) NOT NULL DEFAULT '0',
  `products_qty_box_status` tinyint(1) NOT NULL DEFAULT '1',
  `products_quantity_order_max` float NOT NULL DEFAULT '0',
  `products_sort_order` int(11) NOT NULL DEFAULT '0',
  `products_discount_type` tinyint(1) NOT NULL DEFAULT '0',
  `products_discount_type_from` tinyint(1) NOT NULL DEFAULT '0',
  `products_price_sorter` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `master_categories_id` int(11) NOT NULL DEFAULT '0',
  `products_mixed_discount_quantity` tinyint(1) NOT NULL DEFAULT '1',
  `metatags_title_status` tinyint(1) NOT NULL DEFAULT '0',
  `metatags_products_name_status` tinyint(1) NOT NULL DEFAULT '0',
  `metatags_model_status` tinyint(1) NOT NULL DEFAULT '0',
  `metatags_price_status` tinyint(1) NOT NULL DEFAULT '0',
  `metatags_title_tagline_status` tinyint(1) NOT NULL DEFAULT '0',
  PRIMARY KEY (`products_id`),
  KEY `idx_products_date_added_zen` (`products_date_added`),
  KEY `idx_products_status_zen` (`products_status`),
  KEY `idx_products_date_available_zen` (`products_date_available`),
  KEY `idx_products_ordered_zen` (`products_ordered`),
  KEY `idx_products_model_zen` (`products_model`),
  KEY `idx_products_price_sorter_zen` (`products_price_sorter`),
  KEY `idx_master_categories_id_zen` (`master_categories_id`),
  KEY `idx_products_sort_order_zen` (`products_sort_order`),
  KEY `idx_manufacturers_id_zen` (`manufacturers_id`)
) ENGINE=MyISAM AUTO_INCREMENT=166 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_products`
--

LOCK TABLES `zen_products` WRITE;
/*!40000 ALTER TABLE `zen_products` DISABLE KEYS */;
INSERT INTO `zen_products` VALUES (1,1,0,'','medium/chicken.gif',7.9500,1,'2010-03-04 21:33:17','2010-04-02 06:47:27',NULL,0,1,0,0,1,1,1,0,0,0,1,0,1,0,0,0,0,7.9500,4,1,0,0,0,0,0),(2,1,0,'','',6.2500,1,'2010-03-04 21:36:16',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,1,0,0,6.2500,4,1,0,0,0,0,0),(3,1,0,'','',0.0000,1,'2010-03-04 21:38:29','2010-03-25 07:17:53',NULL,0,1,0,0,5,1,1,0,0,0,1,0,1,0,0,0,0,0.0000,5,1,0,0,0,0,0),(4,1,0,'','',0.0000,1,'2010-03-04 21:39:17','2010-03-05 12:38:25',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,1,0,0,0.0000,5,1,0,0,0,0,0),(5,1,0,'','swsour.gif',11.2500,1,'2010-03-04 21:40:32','2010-03-05 13:27:57',NULL,0,1,0,0,1,1,1,0,0,0,1,0,1,0,0,0,0,11.2500,6,1,0,0,0,0,0),(6,1,0,'','',11.2500,1,'2010-03-04 21:41:03','2010-03-04 21:42:14',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,1,0,0,11.2500,6,1,0,0,0,0,0),(7,1,0,'','',14.9500,1,'2010-03-24 20:49:13',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,1,0,0,14.9500,7,1,0,0,0,0,0),(8,1,0,'','',13.9500,1,'2010-03-24 20:51:56',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,2,0,0,13.9500,7,1,0,0,0,0,0),(9,1,0,'','',10.5000,1,'2010-03-24 20:52:53',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,3,0,0,10.5000,7,1,0,0,0,0,0),(10,1,0,'','',9.9500,1,'2010-03-24 20:54:32',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,4,0,0,9.9500,7,1,0,0,0,0,0),(11,1,0,'','',10.5000,1,'2010-03-24 20:55:24',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,5,0,0,10.5000,7,1,0,0,0,0,0),(12,1,0,'','',10.5000,1,'2010-03-24 20:56:31',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,5,0,0,10.5000,7,1,0,0,0,0,0),(13,1,0,'','',13.9500,1,'2010-03-24 20:57:22',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,6,0,0,13.9500,7,1,0,0,0,0,0),(14,1,0,'','',13.9500,1,'2010-03-24 20:58:57',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,8,0,0,13.9500,7,1,0,0,0,0,0),(15,1,0,'','',13.9500,1,'2010-03-24 20:59:59',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,9,0,0,13.9500,7,1,0,0,0,0,0),(16,1,0,'','',13.9500,1,'2010-03-24 21:01:05',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,10,0,0,13.9500,7,1,0,0,0,0,0),(17,1,0,'','',13.9500,1,'2010-03-24 21:15:57',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,11,0,0,13.9500,7,1,0,0,0,0,0),(18,1,0,'','',13.9500,1,'2010-03-24 21:17:46',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,12,0,0,13.9500,7,1,0,0,0,0,0),(19,1,0,'','',13.9500,1,'2010-03-24 21:18:51',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,13,0,0,13.9500,7,1,0,0,0,0,0),(20,1,0,'','',13.9500,1,'2010-03-24 21:19:31',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,14,0,0,13.9500,7,1,0,0,0,0,0),(21,1,0,'','',9.9500,1,'2010-03-24 21:22:41',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,15,0,0,9.9500,7,1,0,0,0,0,0),(22,1,0,'','',13.9500,1,'2010-03-24 21:23:23',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,16,0,0,13.9500,7,1,0,0,0,0,0),(23,1,0,'','',13.9500,1,'2010-03-24 21:24:17',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,17,0,0,13.9500,7,1,0,0,0,0,0),(24,1,0,'','',0.0000,1,'2010-03-24 21:26:02',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,18,0,0,0.0000,7,1,0,0,0,0,0),(25,1,0,'','',11.2500,1,'2010-03-25 05:32:42',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,3,0,0,11.2500,6,1,0,0,0,0,0),(26,1,0,'','',11.2500,1,'2010-03-25 05:33:35',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,4,0,0,11.2500,6,1,0,0,0,0,0),(27,1,0,'','',11.2500,1,'2010-03-25 05:34:13',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,5,0,0,11.2500,6,1,0,0,0,0,0),(28,1,0,'','',13.9500,1,'2010-03-25 05:35:25',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,6,0,0,13.9500,6,1,0,0,0,0,0),(29,1,0,'','',13.9500,1,'2010-03-25 05:36:59',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,7,0,0,13.9500,6,1,0,0,0,0,0),(30,1,0,'','',11.2500,1,'2010-03-25 05:38:22',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,9,0,0,11.2500,6,1,0,0,0,0,0),(31,1,0,'','',11.2500,1,'2010-03-25 05:39:23',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,10,0,0,11.2500,6,1,0,0,0,0,0),(32,1,0,'','',11.2500,1,'2010-03-25 05:40:15',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,11,0,0,11.2500,6,1,0,0,0,0,0),(33,1,0,'','',11.2500,1,'2010-03-25 05:40:43',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,12,0,0,11.2500,6,1,0,0,0,0,0),(34,1,0,'','',11.2500,1,'2010-03-25 05:41:11',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,13,0,0,11.2500,6,1,0,0,0,0,0),(35,1,0,'','',8.9500,1,'2010-03-25 05:43:45',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,8.9500,8,1,0,0,0,0,0),(36,1,0,'','',8.9500,1,'2010-03-25 05:44:15',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,1,0,0,8.9500,8,1,0,0,0,0,0),(37,1,0,'','',10.5000,1,'2010-03-25 05:45:04',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,2,0,0,10.5000,8,1,0,0,0,0,0),(38,1,0,'','',10.5000,1,'2010-03-25 05:45:48',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,3,0,0,10.5000,8,1,0,0,0,0,0),(39,1,0,'','',8.9500,1,'2010-03-25 05:46:46',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,4,0,0,8.9500,8,1,0,0,0,0,0),(40,1,0,'','',8.9500,1,'2010-03-25 05:47:19',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,5,0,0,8.9500,8,1,0,0,0,0,0),(41,1,0,'','',8.9500,1,'2010-03-25 05:48:04','2010-03-25 05:48:36',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,6,0,0,8.9500,8,1,0,0,0,0,0),(42,1,0,'','',8.9500,1,'2010-03-25 05:49:09',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,7,0,0,8.9500,8,1,0,0,0,0,0),(43,1,0,'','',8.9500,1,'2010-03-25 05:49:44',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,8,0,0,8.9500,8,1,0,0,0,0,0),(44,1,0,'','',10.5000,1,'2010-03-25 05:50:23',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,9,0,0,10.5000,8,1,0,0,0,0,0),(45,1,0,'','',13.9500,1,'2010-03-25 05:50:58',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,10,0,0,13.9500,8,1,0,0,0,0,0),(46,1,0,'','',13.9500,1,'2010-03-25 05:51:23',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,11,0,0,13.9500,8,1,0,0,0,0,0),(47,1,0,'','',8.9500,1,'2010-03-25 05:52:37',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,12,0,0,8.9500,8,1,0,0,0,0,0),(48,1,0,'','',10.5000,1,'2010-03-25 05:53:31','2010-03-25 05:53:47',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,13,0,0,10.5000,8,1,0,0,0,0,0),(49,1,0,'','',8.9500,1,'2010-03-25 05:54:18',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,14,0,0,8.9500,8,1,0,0,0,0,0),(50,1,0,'','',8.9500,1,'2010-03-25 05:55:25',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,15,0,0,8.9500,8,1,0,0,0,0,0),(51,1,0,'','',8.9500,1,'2010-03-25 05:56:17',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,16,0,0,8.9500,8,1,0,0,0,0,0),(52,1,0,'','',8.9500,1,'2010-03-25 05:57:09',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,17,0,0,8.9500,8,1,0,0,0,0,0),(53,1,0,'','',8.9500,1,'2010-03-25 05:57:48',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,18,0,0,8.9500,8,1,0,0,0,0,0),(54,1,0,'','',8.9500,1,'2010-03-25 05:58:09',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,19,0,0,8.9500,8,1,0,0,0,0,0),(55,1,0,'','',8.9500,1,'2010-03-25 05:59:07',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,20,0,0,8.9500,8,1,0,0,0,0,0),(56,1,0,'','',10.5000,1,'2010-03-25 05:59:55',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,21,0,0,10.5000,8,1,0,0,0,0,0),(57,1,0,'','',10.5000,1,'2010-03-25 06:01:59',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,10.5000,9,1,0,0,0,0,0),(58,1,0,'','',10.5000,1,'2010-03-25 06:02:53',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,1,0,0,10.5000,9,1,0,0,0,0,0),(59,1,0,'','',10.5000,1,'2010-03-25 06:03:21',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,2,0,0,10.5000,9,1,0,0,0,0,0),(60,1,0,'','',10.5000,1,'2010-03-25 06:03:51','2010-03-25 06:04:30',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,4,0,0,10.5000,9,1,0,0,0,0,0),(61,1,0,'','',10.5000,1,'2010-03-25 06:04:17',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,3,0,0,10.5000,9,1,0,0,0,0,0),(62,1,0,'','',10.5000,1,'2010-03-25 06:05:18',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,5,0,0,10.5000,9,1,0,0,0,0,0),(63,1,0,'','',10.5000,1,'2010-03-25 06:06:33',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,6,0,0,10.5000,9,1,0,0,0,0,0),(64,1,0,'','',10.5000,1,'2010-03-25 06:06:57',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,7,0,0,10.5000,9,1,0,0,0,0,0),(65,1,0,'','',10.5000,1,'2010-03-25 06:07:58',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,8,0,0,10.5000,9,1,0,0,0,0,0),(66,1,0,'','',10.5000,1,'2010-03-25 06:08:24',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,9,0,0,10.5000,9,1,0,0,0,0,0),(67,1,0,'','',10.5000,1,'2010-03-25 06:08:53',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,10,0,0,10.5000,9,1,0,0,0,0,0),(68,1,0,'','',8.7500,1,'2010-03-25 06:15:54',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,8.7500,10,1,0,0,0,0,0),(69,1,0,'','',8.7500,1,'2010-03-25 06:16:57',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,1,0,0,8.7500,10,1,0,0,0,0,0),(70,1,0,'','',8.7500,1,'2010-03-25 06:19:01',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,2,0,0,8.7500,10,1,0,0,0,0,0),(71,1,0,'','',10.5000,1,'2010-03-25 06:19:59',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,3,0,0,10.5000,10,1,0,0,0,0,0),(72,1,0,'','',8.7500,1,'2010-03-25 06:20:28',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,4,0,0,8.7500,10,1,0,0,0,0,0),(73,1,0,'','',8.7500,1,'2010-03-25 06:22:36',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,1,0,0,8.7500,11,1,0,0,0,0,0),(74,1,0,'','',8.7500,1,'2010-03-25 06:23:18',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,2,0,0,8.7500,11,1,0,0,0,0,0),(75,1,0,'','',8.7500,1,'2010-03-25 06:24:17',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,3,0,0,8.7500,11,1,0,0,0,0,0),(76,1,0,'','',8.7500,1,'2010-03-25 06:24:47',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,4,0,0,8.7500,11,1,0,0,0,0,0),(77,1,0,'','',8.7500,1,'2010-03-25 06:25:52',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,8.7500,12,1,0,0,0,0,0),(78,1,0,'','',8.7500,1,'2010-03-25 06:26:34',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,1,0,0,8.7500,12,1,0,0,0,0,0),(79,1,0,'','',8.9500,1,'2010-03-25 06:27:14',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,2,0,0,8.9500,12,1,0,0,0,0,0),(80,1,0,'','',11.2500,1,'2010-03-25 06:28:01','2010-03-25 06:28:14',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,3,0,0,11.2500,12,1,0,0,0,0,0),(81,1,0,'','',13.9500,1,'2010-03-25 06:28:44',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,4,0,0,13.9500,12,1,0,0,0,0,0),(82,1,0,'','',8.7500,1,'2010-03-25 06:30:51',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,8.7500,13,1,0,0,0,0,0),(83,1,0,'','',8.7500,1,'2010-03-25 06:31:33',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,1,0,0,8.7500,13,1,0,0,0,0,0),(84,1,0,'','',8.7500,1,'2010-03-25 06:31:59',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,2,0,0,8.7500,13,1,0,0,0,0,0),(85,1,0,'','',10.5000,1,'2010-03-25 06:32:25',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,3,0,0,10.5000,13,1,0,0,0,0,0),(86,1,0,'','',11.2500,1,'2010-03-25 06:32:48','2010-03-25 06:33:13',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,4,0,0,11.2500,13,1,0,0,0,0,0),(87,1,0,'','',8.7500,1,'2010-03-25 06:35:05',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,8.7500,14,1,0,0,0,0,0),(88,1,0,'','',8.7500,1,'2010-03-25 06:35:31',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,1,0,0,8.7500,14,1,0,0,0,0,0),(89,1,0,'','',8.9500,1,'2010-03-25 06:35:57',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,2,0,0,8.9500,14,1,0,0,0,0,0),(90,1,0,'','',10.5000,1,'2010-03-25 06:36:29',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,3,0,0,10.5000,14,1,0,0,0,0,0),(91,1,0,'','',11.2500,1,'2010-03-25 06:37:05','2010-03-25 06:37:27',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,4,0,0,11.2500,14,1,0,0,0,0,0),(92,1,0,'','',8.7500,1,'2010-03-25 06:39:44',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,8.7500,15,1,0,0,0,0,0),(93,1,0,'','',8.7500,1,'2010-03-25 06:40:08',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,1,0,0,8.7500,15,1,0,0,0,0,0),(94,1,0,'','',8.9500,1,'2010-03-25 06:40:33',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,2,0,0,8.9500,15,1,0,0,0,0,0),(95,1,0,'','',10.5000,1,'2010-03-25 06:40:56','2010-03-25 06:41:12',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,3,0,0,10.5000,15,1,0,0,0,0,0),(96,1,0,'','',11.2500,1,'2010-03-25 06:41:38',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,4,0,0,11.2500,15,1,0,0,0,0,0),(97,1,0,'','',8.7500,1,'2010-03-25 06:43:31','2010-03-25 06:53:12',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,5,0,0,8.7500,15,1,0,0,0,0,0),(98,1,0,'','',8.7500,1,'2010-03-25 06:43:56','2010-03-25 06:53:28',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,6,0,0,8.7500,15,1,0,0,0,0,0),(99,1,0,'','',8.9500,1,'2010-03-25 06:44:17','2010-03-25 06:53:46',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,7,0,0,8.9500,15,1,0,0,0,0,0),(100,1,0,'','',10.5000,1,'2010-03-25 06:44:38','2010-03-25 06:54:16',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,8,0,0,10.5000,15,1,0,0,0,0,0),(101,1,0,'','',11.2500,1,'2010-03-25 06:45:10','2010-03-25 06:54:38',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,9,0,0,11.2500,15,1,0,0,0,0,0),(102,1,0,'','',7.4500,1,'2010-03-25 06:55:14',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,7.4500,17,1,0,0,0,0,0),(103,1,0,'','',7.4500,1,'2010-03-25 06:55:42',NULL,NULL,0,1,0,0,1,1,1,0,0,0,1,0,1,0,1,0,0,7.4500,17,1,0,0,0,0,0),(104,1,0,'','',7.4500,1,'2010-03-25 06:56:06',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,2,0,0,7.4500,17,1,0,0,0,0,0),(105,1,0,'','',7.9500,1,'2010-03-25 06:56:35',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,3,0,0,7.9500,17,1,0,0,0,0,0),(106,1,0,'','',8.9500,1,'2010-03-25 06:57:04',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,4,0,0,8.9500,17,1,0,0,0,0,0),(107,1,0,'','',9.4500,1,'2010-03-25 06:57:35',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,5,0,0,9.4500,17,1,0,0,0,0,0),(108,1,0,'','',7.9500,1,'2010-03-25 06:58:02','2010-03-25 06:58:52',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,6,0,0,7.9500,17,1,0,0,0,0,0),(109,1,0,'','',7.9500,1,'2010-03-25 06:58:36',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,7,0,0,7.9500,17,1,0,0,0,0,0),(110,1,0,'','',7.9500,1,'2010-03-25 06:59:27',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,8,0,0,7.9500,17,1,0,0,0,0,0),(111,1,0,'','',8.4500,1,'2010-03-25 06:59:53',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,9,0,0,8.4500,17,1,0,0,0,0,0),(112,1,0,'','',9.4500,1,'2010-03-25 07:00:24',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,10,0,0,9.4500,17,1,0,0,0,0,0),(113,1,0,'','',9.9500,1,'2010-03-25 07:00:57','2010-03-25 07:01:10',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,11,0,0,9.9500,17,1,0,0,0,0,0),(115,1,0,'','',4.9500,1,'2010-03-25 07:05:03',NULL,NULL,0,1,0,0,1,1,1,0,0,0,1,0,1,0,2,0,0,4.9500,4,1,0,0,0,0,0),(116,1,0,'','',4.9500,1,'2010-03-25 07:06:42',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,4,0,0,4.9500,4,1,0,0,0,0,0),(117,1,0,'','',1.5000,1,'2010-03-25 07:07:09',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,5,0,0,1.5000,4,1,0,0,0,0,0),(118,1,0,'','',1.5000,1,'2010-03-25 07:07:45',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,6,0,0,1.5000,4,1,0,0,0,0,0),(119,1,0,'','',7.2500,1,'2010-03-25 07:08:18',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,7,0,0,7.2500,4,1,0,0,0,0,0),(120,1,0,'','',5.9500,1,'2010-03-25 07:09:02','2010-03-25 07:09:24',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,8,0,0,5.9500,4,1,0,0,0,0,0),(121,1,0,'','',4.9500,1,'2010-03-25 07:09:50',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,9,0,0,4.9500,4,1,0,0,0,0,0),(122,1,0,'','',4.9500,1,'2010-03-25 07:10:22',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,10,0,0,4.9500,4,1,0,0,0,0,0),(123,1,0,'','',0.0000,1,'2010-03-25 07:18:48',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,4,0,0,0.0000,5,1,0,0,0,0,0),(124,1,0,'','',0.0000,1,'2010-03-25 07:19:23',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,3,0,0,0.0000,5,1,0,0,0,0,0),(125,1,0,'','',0.0000,1,'2010-03-25 07:19:52',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,5,0,0,0.0000,5,1,0,0,0,0,0),(126,1,0,'','',10.5000,1,'2010-03-25 07:20:36',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,6,0,0,10.5000,5,1,0,0,0,0,0),(128,1,0,'','',0.0000,1,'2010-03-28 18:32:17','2010-03-28 20:51:04',NULL,0,1,0,0,1,1,1,0,0,0,1,0,1,0,0,0,0,0.0000,18,1,0,0,0,0,0),(129,1,0,'','',0.0000,1,'2010-03-28 20:00:12','2010-03-28 20:52:40',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,1,0,0,0.0000,18,1,0,0,0,0,0),(130,1,0,'','',0.0000,1,'2010-03-28 23:36:15','2010-03-29 13:11:46',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0.0000,27,1,0,0,0,0,0),(131,1,0,'','',0.0000,1,'2010-03-28 23:37:33','2010-03-29 13:10:30',NULL,0,1,0,0,1,1,1,0,0,0,1,0,1,0,0,0,0,0.0000,26,1,0,0,0,0,0),(132,1,0,'','',0.0000,1,'2010-03-28 23:38:10','2010-03-29 13:03:03',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0.0000,25,1,0,0,0,0,0),(133,1,0,'','',0.0000,1,'2010-03-28 23:38:37','2010-03-29 12:52:52',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0.0000,24,1,0,0,0,0,0),(134,1,0,'','',6.7500,1,'2010-03-29 13:22:28',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,1,0,0,6.7500,19,1,0,0,0,0,0),(135,1,0,'','',5.9500,1,'2010-03-29 13:23:12','2010-03-29 13:23:36',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,2,0,0,5.9500,19,1,0,0,0,0,0),(136,1,0,'','',5.9500,1,'2010-03-29 13:24:22',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,3,0,0,5.9500,19,1,0,0,0,0,0),(137,1,0,'','',5.9500,1,'2010-03-29 13:25:07',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,4,0,0,5.9500,19,1,0,0,0,0,0),(138,1,0,'','',6.7500,1,'2010-03-29 13:25:50',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,5,0,0,6.7500,19,1,0,0,0,0,0),(139,1,0,'','',5.9500,1,'2010-03-29 13:26:40',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,6,0,0,5.9500,19,1,0,0,0,0,0),(140,1,0,'','',5.9500,1,'2010-03-29 13:27:15',NULL,NULL,0,1,0,0,1,1,1,0,0,0,1,0,1,0,7,0,0,5.9500,19,1,0,0,0,0,0),(141,1,0,'','',5.9500,1,'2010-03-29 13:27:59',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,8,0,0,5.9500,19,1,0,0,0,0,0),(142,1,0,'','',5.9500,1,'2010-03-29 13:28:30',NULL,NULL,0,1,0,0,1,1,1,0,0,0,1,0,1,0,9,0,0,5.9500,19,1,0,0,0,0,0),(143,1,0,'','',6.7500,1,'2010-03-29 13:29:16',NULL,NULL,0,1,0,0,2,1,1,0,0,0,1,0,1,0,10,0,0,6.7500,19,1,0,0,0,0,0),(144,1,0,'','',5.9500,1,'2010-03-29 13:29:53',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,11,0,0,5.9500,19,1,0,0,0,0,0),(145,1,0,'','',6.7500,1,'2010-03-29 13:30:27',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,12,0,0,6.7500,19,1,0,0,0,0,0),(146,1,0,'','',6.7500,1,'2010-03-29 13:31:03',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,13,0,0,6.7500,19,1,0,0,0,0,0),(147,1,0,'','',5.9500,1,'2010-03-29 13:31:33',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,14,0,0,5.9500,19,1,0,0,0,0,0),(148,1,0,'','',6.2500,1,'2010-03-29 13:32:48',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,15,0,0,6.2500,20,1,0,0,0,0,0),(149,1,0,'','',6.2500,1,'2010-03-29 13:33:27',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,16,0,0,6.2500,20,1,0,0,0,0,0),(150,1,0,'','',6.2500,1,'2010-03-29 13:33:58',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,17,0,0,6.2500,20,1,0,0,0,0,0),(151,1,0,'','',6.2500,1,'2010-03-29 13:34:29',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,18,0,0,6.2500,20,1,0,0,0,0,0),(152,1,0,'','',6.2500,1,'2010-03-29 13:35:52','2010-03-29 13:37:03',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,19,0,0,6.2500,20,1,0,0,0,0,0),(153,1,0,'','',6.7500,1,'2010-03-29 13:36:44',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,20,0,0,6.7500,20,1,0,0,0,0,0),(154,1,0,'','',5.9500,1,'2010-03-29 13:38:14',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,21,0,0,5.9500,21,1,0,0,0,0,0),(155,1,0,'','',5.9500,1,'2010-03-29 13:38:56',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,22,0,0,5.9500,21,1,0,0,0,0,0),(156,1,0,'','',5.9500,1,'2010-03-29 13:39:36',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,23,0,0,5.9500,21,1,0,0,0,0,0),(157,1,0,'','',5.9500,1,'2010-03-29 13:40:08',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,24,0,0,5.9500,21,1,0,0,0,0,0),(158,1,0,'','',6.9500,1,'2010-03-29 13:46:55',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,25,0,0,6.9500,22,1,0,0,0,0,0),(159,1,0,'','',6.9500,1,'2010-03-29 13:47:34',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,26,0,0,6.9500,22,1,0,0,0,0,0),(160,1,0,'','',6.9500,1,'2010-03-29 13:48:11',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,27,0,0,6.9500,22,1,0,0,0,0,0),(161,1,0,'','',6.9500,1,'2010-03-29 13:49:00',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,28,0,0,6.9500,22,1,0,0,0,0,0),(162,1,0,'','',5.9500,1,'2010-03-29 13:50:15',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,29,0,0,5.9500,23,1,0,0,0,0,0),(163,1,0,'','',5.9500,1,'2010-03-29 13:52:01',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,30,0,0,5.9500,23,1,0,0,0,0,0),(164,1,0,'','',5.9500,1,'2010-03-29 13:52:39',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,31,0,0,5.9500,23,1,0,0,0,0,0),(165,1,1000,'test01','chinese_delight24.png',0.1000,1,'2011-05-24 21:04:12','2011-05-25 22:33:16',NULL,0,1,0,0,2,1,1,1,0,0,1,0,0,1,0,0,0,0.1000,28,1,0,0,0,0,0);
/*!40000 ALTER TABLE `zen_products` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_products_attributes`
--

DROP TABLE IF EXISTS `zen_products_attributes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_products_attributes` (
  `products_attributes_id` int(11) NOT NULL AUTO_INCREMENT,
  `products_id` int(11) NOT NULL DEFAULT '0',
  `options_id` int(11) NOT NULL DEFAULT '0',
  `options_values_id` int(11) NOT NULL DEFAULT '0',
  `options_values_price` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `price_prefix` char(1) NOT NULL DEFAULT '',
  `products_options_sort_order` int(11) NOT NULL DEFAULT '0',
  `product_attribute_is_free` tinyint(1) NOT NULL DEFAULT '0',
  `products_attributes_weight` float NOT NULL DEFAULT '0',
  `products_attributes_weight_prefix` char(1) NOT NULL DEFAULT '',
  `attributes_display_only` tinyint(1) NOT NULL DEFAULT '0',
  `attributes_default` tinyint(1) NOT NULL DEFAULT '0',
  `attributes_discounted` tinyint(1) NOT NULL DEFAULT '1',
  `attributes_image` varchar(64) DEFAULT NULL,
  `attributes_price_base_included` tinyint(1) NOT NULL DEFAULT '1',
  `attributes_price_onetime` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `attributes_price_factor` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `attributes_price_factor_offset` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `attributes_price_factor_onetime` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `attributes_price_factor_onetime_offset` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `attributes_qty_prices` text,
  `attributes_qty_prices_onetime` text,
  `attributes_price_words` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `attributes_price_words_free` int(4) NOT NULL DEFAULT '0',
  `attributes_price_letters` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `attributes_price_letters_free` int(4) NOT NULL DEFAULT '0',
  `attributes_required` tinyint(1) NOT NULL DEFAULT '0',
  PRIMARY KEY (`products_attributes_id`),
  KEY `idx_id_options_id_values_zen` (`products_id`,`options_id`,`options_values_id`),
  KEY `idx_opt_sort_order_zen` (`products_options_sort_order`)
) ENGINE=MyISAM AUTO_INCREMENT=57 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_products_attributes`
--

LOCK TABLES `zen_products_attributes` WRITE;
/*!40000 ALTER TABLE `zen_products_attributes` DISABLE KEYS */;
INSERT INTO `zen_products_attributes` VALUES (1,3,1,1,1.7500,'',0,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(2,3,1,2,3.5000,'',1,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(3,3,1,3,5.2500,'',2,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(4,4,1,1,1.9500,'',0,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(5,4,1,2,3.9000,'',1,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(6,4,1,3,5.7500,'',2,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(7,123,1,1,1.9500,'+',0,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(8,123,1,2,3.9000,'',1,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(9,123,1,3,5.7500,'',2,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(10,125,1,1,1.9500,'',0,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(11,125,1,2,3.9000,'',1,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(12,125,1,3,5.7500,'',2,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(13,124,1,1,1.9500,'',0,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(14,124,1,2,3.9000,'',1,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(15,124,1,3,5.7500,'',2,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(16,128,2,11,129.5000,'',10,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(17,128,2,4,38.8500,'',0,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(18,128,2,12,25.9000,'',0,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(19,128,2,5,51.8000,'',0,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(20,128,2,6,64.7500,'',0,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(21,128,2,7,77.7000,'',0,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(22,128,2,8,90.6500,'',0,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(23,128,2,9,103.6000,'',0,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(24,128,2,10,116.5500,'',0,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(25,129,2,11,139.5000,'',10,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(26,129,2,12,27.9000,'',2,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(27,129,2,4,41.8500,'',3,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(28,129,2,5,55.8000,'',4,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(29,129,2,6,69.7500,'',5,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(30,129,2,7,83.7000,'',6,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(31,129,2,8,97.6500,'',7,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(32,129,2,9,111.6000,'',8,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(33,129,2,10,125.5500,'',9,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(35,133,3,13,5.9500,'',0,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(36,133,3,14,6.2500,'',1,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(37,133,3,15,6.9500,'',2,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(38,133,3,16,7.4500,'',3,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(46,132,4,28,7.4500,'',3,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(45,132,4,27,6.9500,'',2,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(44,132,4,26,6.2500,'',1,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(43,132,4,25,5.9500,'',0,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(47,131,5,17,5.9500,'',0,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(48,131,5,18,6.2500,'',1,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(49,131,5,20,7.4500,'',3,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(50,131,5,19,6.9500,'',2,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(51,130,6,21,5.9500,'',0,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(52,130,6,22,6.2500,'',1,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(53,130,6,23,6.9500,'',2,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(54,130,6,24,7.4500,'',3,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(55,165,7,29,0.0000,'+',0,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(56,165,0,0,0.0000,'+',0,1,0,'+',0,1,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0);
/*!40000 ALTER TABLE `zen_products_attributes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_products_attributes_download`
--

DROP TABLE IF EXISTS `zen_products_attributes_download`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_products_attributes_download` (
  `products_attributes_id` int(11) NOT NULL DEFAULT '0',
  `products_attributes_filename` varchar(255) NOT NULL DEFAULT '',
  `products_attributes_maxdays` int(2) DEFAULT '0',
  `products_attributes_maxcount` int(2) DEFAULT '0',
  PRIMARY KEY (`products_attributes_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_products_attributes_download`
--

LOCK TABLES `zen_products_attributes_download` WRITE;
/*!40000 ALTER TABLE `zen_products_attributes_download` DISABLE KEYS */;
INSERT INTO `zen_products_attributes_download` VALUES (56,'pdf_sample.zip',1,2);
/*!40000 ALTER TABLE `zen_products_attributes_download` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_products_description`
--

DROP TABLE IF EXISTS `zen_products_description`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_products_description` (
  `products_id` int(11) NOT NULL AUTO_INCREMENT,
  `language_id` int(11) NOT NULL DEFAULT '1',
  `products_name` varchar(64) NOT NULL DEFAULT '',
  `products_description` text,
  `products_url` varchar(255) DEFAULT NULL,
  `products_viewed` int(5) DEFAULT '0',
  PRIMARY KEY (`products_id`,`language_id`),
  KEY `idx_products_name_zen` (`products_name`)
) ENGINE=MyISAM AUTO_INCREMENT=166 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_products_description`
--

LOCK TABLES `zen_products_description` WRITE;
/*!40000 ALTER TABLE `zen_products_description` DISABLE KEYS */;
INSERT INTO `zen_products_description` VALUES (1,1,'CHINESE CHICKEN SALAD','Crispy chicken tossed with greens, sesame seeds and imperial spices. </br>(For each additional person, increase by a half order)\r\n</br>\r\nServes 1-2','',15),(2,1,'FLAMING PU PU PLATTER','An assortment of fried shrimp, crabmeat cheese, egg rolls, foil wrapped chicken, pot stickers and beef skewers served with flaming habachi. <br />\r\n\r\n(Minimum of 2)<br />\r\nPer Person 6.25','',6),(3,1,'EGG DROP SOUP','','',36),(4,1,'* HOT AND SOUR SOUP','','',14),(5,1,'SWEET AND SOUR SHRIMP','','',10),(6,1,'SHRIMP WITH LOBSTER SAUCE','','',1),(7,1,'HOUSE SPECIAL SIZZLING PLATE','A classic combination of seafood, meat, and vegetables sautéed in a house brown sauce and served on a sizzling hot plate.','',0),(8,1,'TEA SMOKED DUCK','Marinated half duck in a Chinese wok smoked oven burning tea leaves, served with 4 Chinese pancakes, green onion and plum sauce. Haunting flavors.','',0),(9,1,'RAINBOW CHICKEN','Stir fried minced chicken, rice noodle, ground almond nut, sesame seed, served with plum sauce in lettuce cup.','',0),(10,1,'MU SHU PORK (OR CHICKEN AND VEGETABLES)','Served with 4 pancakes.','',0),(11,1,'* GENERAL TSOU\'S CHICKEN','Browned chunky chicken in chef\'s special garlic sauce and garnish with broccoli and tomatoes.','',0),(12,1,'* ORANGE CRISPY CHICKEN OR BEEF','Lightly battered meats with orange peel in a famous spicy orange flavor sauce.','',0),(13,1,'* KUNG PO THREE COMBO','Hot tender beef, scallops, shrimps, and peanuts with a famous spicy Kung Po sauce.','',1),(14,1,'* YU SHIANG COMBINATION','Shrimp, beef, chicken with vegetables in house special spicy ginger and garlic sauce.','',0),(15,1,'DRAGON AND PHOENIX BIRD\'S NEST','Shrimp and chicken stir fried with vegetables served in a bird\'s nest.','',1),(16,1,'SHRIMP WITH HONEYED WALNUTS','Crispy shrimp in a tangy white cream sauce with honey glazed walnuts.','',0),(17,1,'* SPICY SALT & PEPPER SHRIMP','Crispy marinated shrimp sautéed and coated with a salt and hot pepper flavor.','',0),(18,1,'THREE DELICACIES','Shrimp, scallops, crabmeat with vegetables in delightful light garlic sauce.','',0),(19,1,'* HUNAN DOUBLE DELIGHT','Shrimp and beef sautéed with vegetables in a spicy brown sauce.','',0),(20,1,'SIZZLING BEEF AND SCALLOPS','Sea scallops and beef and fresh vegetables with homemade brown sauce served on a sizzling hot plate.','',0),(21,1,'* SEAFOOD NOODLE SOUP','An assortment of stir seafood, beef and vegetables soup broth with noodle.','',0),(22,1,'FISH FILET','Any style you wish - black bean sauce, sweet and sour, *Szechuan crispy.','',0),(23,1,'LAMB','Your choice of flavors - *Mongolian, *Hunan style or * Szechuan spicy style','',0),(24,1,'PEKING DUCK','Market Price.\r\n\r\nA traditional gourmet\'s  \"MUST\". One day notice required','',0),(25,1,'SHRIMP WITH SNOW PEAS','','',0),(26,1,'SHRIMP WITH BLACK BEAN SAUCE','','',0),(27,1,'SHRIMP VEGETABLE DELIGHT','','',0),(28,1,'SCALLOPS','Any style you wish:* Hunan style, * Szechuan Spicy style.* Kung Pao style, * Yu Shiang style or Sautéed with vegetables.','',0),(29,1,'CALAMARI','Any style you wish:* Hunan style, * Szechuan Spicy style.* Kung Pao style, * Yu Shiang style or Sautéed with vegetables.','',0),(30,1,'* KUNG PO SHRIMP','Shrimp, bamboo shoots and peanuts with red pepper in a famous spicy Kung Po sauce.','',3),(31,1,'* YU SHIANG SHRIMP','Shrimp and vegetables in spicy ginger and garlic sauce.','',0),(32,1,'* SZECHUAN CRISPY SHRIMP','Light battered shrimp glazed with a mild spicy Szechuan sauce.','',0),(33,1,'* HUNAN SHRIMP','','',0),(34,1,'* SZECHUAN SPICY SHRIMP','','',0),(35,1,'CASHEW OR ALMOND CHICKEN','Diced chicken with vegetable in brown sauce.','',0),(36,1,'SWEET AND SOUR CHICKEN','','',0),(37,1,'LEMON CHICKEN','Fried chicken with tangy lemon sauce.','',0),(38,1,'SESAME CHICKEN','','',0),(39,1,'* SZECHUAN CRISPY CHICKEN','Fried chicken with house special spicy ketchup sauce.','',0),(40,1,'* CHICKEN WITH GREEN BEANS','','',0),(41,1,'* GARLIC CHICKEN','For the garlic lovers!','',0),(42,1,'CHICKEN VEGETABLE DELIGHT','','',0),(43,1,'CHICKEN WITH BROCCOLI','','',0),(44,1,'CHICKEN WITH HONEYED WALNUTS','','',0),(45,1,'HOUSE DUCK','','',0),(46,1,'CRISPY DUCK','','',1),(47,1,'SNOW WHITE CHICKEN','Sliced chicken breast and fresh vegetables sauteed in a delightful garlic sauce.','',0),(48,1,'ALMOND BONELESS CHICKEN','Fried chicken breast with yellow gravy.','',0),(49,1,'* YU SHIANG CHICKEN','','',0),(50,1,'* HUNAN CHICKEN','Tender chicken with vegetables in a spicy brown sauce.','',0),(51,1,'* MANDARIN SPICY CHICKEN','Fried chicken with vegetables in spicy garlic sauce.','',0),(52,1,'AMAZING CHICKEN','Sliced chicken with vegetable sautéed in sweet and sour ketchup sauce.','',0),(53,1,'* KUNG PO CHICKEN','','',0),(54,1,'* CURRY CHICKEN','','',0),(55,1,'* SZECHUAN SPICY CHICKEN','Sliced chicken with vegetable sautéed in Szechuan spicy brown sauce.','',0),(56,1,'CHICKEN TERIYAKI','','',0),(57,1,'BEEF WITH BROCCOLI','','',0),(58,1,'BEEF WITH BLACK MUSHROOM','Tender beef stir fried with black mushroom and snow peas. A very tasty dish.','',0),(59,1,'BEEF WITH SNOW PEAS','','',0),(60,1,'BEEF WITH OYSTER SAUCE','','',0),(61,1,'BEEF VEGETABLE DELIGHT','','',0),(62,1,'* MANDARIN CRISPY BEEF','Lightly battered beef glazed with a spicy Mandarin ginger and garlic sauce.','',0),(63,1,'* MONGOLIAN BEEF','Slices of beef filet sauteed with fresh onion and ginger in a dark seasoned sauce.','',0),(64,1,'PEPPER STEAK','','',0),(65,1,'* SZECHUAN SPICY BEEF','Slices of beef filet sauteed with Chinese vegetables in s hot brown garlic sauce.','',0),(66,1,'* KUNG PO BEEF','','',0),(67,1,'* HUNAN BEEF','','',0),(68,1,'SWEET AND SOUR PORK','','',1),(69,1,'* TWICE COOKED PORK','Sliced port sauteed with cabbage and	bell peppers in a five spiced Peking sauce.','',0),(70,1,'* MANDARIN CRISPY PORK','','',0),(71,1,'PEKING SPARERIBS','Fried baby ribs and lean pork glazed with sweet and pungent sauce.','',0),(72,1,'PORK VEGETABLE DELIGHT','','',0),(73,1,'VEGETABLE DELIGHT','Seasonal vegetables toss cooked in alight sauce. A very healthy and delightful dish!','',0),(74,1,'* SZECHUAN GREEN BEAN','','',0),(75,1,'* FAMILY STYLE TO FU','Fried bean curds and vegetables braised in spicy brown sauce.','',0),(76,1,'* YU SHIANG TO FU','','',0),(77,1,'STEAMED VEGETABLE','','',0),(78,1,'STEAMED VEGETABLE WITH TOFU','','',0),(79,1,'STEAMED VEGETABLE WITH CHICKEN','','',1),(80,1,'STEAMED VEGETABLE WITH SHRIMP','','',0),(81,1,'STEAMED VEGETABLE WITH SEAFOOD','','',0),(82,1,'PORK EGG FOO YOUNG','','',0),(83,1,'VEGETABLE EGG FOO YOUNG','','',0),(84,1,'CHICKEN EGG FOO YOUNG','','',0),(85,1,'BEEF EGG FOO YOUNG','','',0),(86,1,'SHRIMP EGG FOO YOUNG','','',0),(87,1,'PORK PAN FRIED CHOW MEIN','','',1),(88,1,'VEGETABLE PAN FRIED CHOW MEIN','','',0),(89,1,'CHICKEN PAN FRIED CHOW MEIN','','',0),(90,1,'BEEF PAN FRIED CHOW MEIN','','',0),(91,1,'SHRIMP PAN FRIED CHOW MEIN','','',0),(92,1,'PORK CHOP SUEY','','',0),(93,1,'VEGETABLE CHOP SUEY','','',0),(94,1,'CHICKEN CHOP SUEY','','',0),(95,1,'BEEF CHOP SUEY','','',0),(96,1,'SHRIMP CHOP SUEY','','',0),(97,1,'PORK CHOW MEIN','','',0),(98,1,'VEGETABLE CHOW MEIN','','',0),(99,1,'CHICKEN CHOW MEIN','','',0),(100,1,'BEEF CHOW MEIN','','',0),(101,1,'SHRIMP CHOW MEIN','','',0),(102,1,'CHICKEN FRIED RICE','','',0),(103,1,'PORK FRIED RICE','','',2),(104,1,'VEGETABLE FRIED RICE','','',0),(105,1,'BEEF FRIED RICE','','',0),(106,1,'SHRIMP FRIED RICE','','',0),(107,1,'COMBINATION FRIED RICE','','',0),(108,1,'CHICKEN LOW MEIN','','',0),(109,1,'PORK LOW MEIN','','',0),(110,1,'VEGETABLE LOW MEIN','','',0),(111,1,'BEEF LOW MEIN','','',0),(112,1,'SHRIMP LOW MEIN','','',0),(113,1,'COMBINATION LOW MEIN','','',0),(115,1,'CRABMEAT CHEESE (4)','Wrapped fillings of crabmeat and cheese, deep fried to create a delectable appetizer.','',0),(116,1,'POT STICKERS (4)','','',0),(117,1,'EGG ROLL','','',0),(118,1,'SPRING ROLL  ( Vegetarian )','','',0),(119,1,'FRIED SHRIMP (6)','','',0),(120,1,'BBQ SPARE RIBS (4)','','',0),(121,1,'FOIL WRAPPED CHICKEN (4)','','',0),(122,1,'BEEF SKEWERS (4)','','',0),(123,1,'SIZZLING RICE','','',3),(124,1,'WONTON','','',8),(125,1,'VEGETARIAN','','',7),(126,1,'SEAFOOD','','',2),(128,1,'THE MANDARIN DINNER','<p align=\"center\"><em>Service for Two or More …12.95 Per Person<br />\r\n  </em><br />\r\n <em>Appetizers:</em><strong>  FRIED SHRIMP, EGG ROLL, CRABMEAT CHEESE</strong></br>\r\n<br />\r\n  <em>Soup:</em> <strong>  WON TON SOUP</strong><br />\r\n  <br />\r\n  <em><br />\r\n  <strong>ENTRÉES</strong></em> \r\n  <br />\r\n  <br />\r\n  <strong>BEEF BROCCOLI                              SWEET AND SOUR PORK</strong><br />\r\n  <em><br />\r\n  Steamed  or Fried Rice<br />\r\n  Cookies</em><br />\r\n  <br />\r\n  </br>\r\n  <em>For 3 Add:</em> <strong>ALMOND BONELESS CHICKEN</br>\r\n  </strong><br />\r\n  <em>For 4 Add:</em><strong> MOO SHU PORK</strong><br />\r\n  </br>\r\n  <em>For 5 Add:</em> <strong>SHRIMP WITH LOBSTER SAUCE</strong></br>\r\n  <br />\r\n  <em>For 6 Add: </em><strong>VEGETABLE DELIGHT</strong><br />\r\n  <em></br>\r\n  For 7 or More:</em> Portions of above will be increased.</p>','',18),(129,1,'THE SZECHUAN DINNER','<p align=\"center\"><em>Service for Two or More …13.95 Per Person<br />\r\n  </em><br />\r\n  <em>Appetizers: </em> <strong>FRIED SHRIMP, EGG ROLL, CRABMEAT CHEESE</strong></br>\r\n<br />\r\n   <em>Soup: </em><strong>* HOT AND SOUR SOUP<br />\r\n  <br />\r\n  <em><br />\r\n  ENTRÉES</em></strong>\r\n  <br />\r\n  <br />\r\n  <strong>*    MONGOLIAN BEEF              * YU SHIANG CHICKEN</strong><br />\r\n  <em><br />\r\n  Steamed  or Fried Rice<br />\r\n  Cookies</em><br />\r\n  <br />\r\n  </br>\r\n  <em>For 3 Add:</em> <strong>SHRIMP VEGETABLE DELIGHT</br>\r\n  </strong><br />\r\n  <em>For 4 Add:</em><strong> MOO SHU BEEF</strong><br />\r\n  </br>\r\n  <em>For 5 Add:</em> <strong>* KUNG PO THREE COMBO</strong></br>\r\n  <br />\r\n  <em>For 6 Add: </em><strong>* SZECHUAN GREEN BEAN</strong><br />\r\n  <em></br>\r\n  For 7 or More:</em> Portions of above will be increased.</p>','',9),(130,1,'Chow Mein (Served with Hard Noodle)','','',7),(131,1,'Chop Suey (Served with Rice)','','',4),(132,1,'Low Mein (Stir Fried Soft Noodle)','','',4),(133,1,'Fried Rice','','',8),(134,1,'CHINESE CHICKEN SALAD','','',0),(135,1,'CHICKEN TERIYAKI','','',1),(136,1,'SWEET AND SOUR CHICKEN','','',0),(137,1,'CASHEW OR ALMOND CHICKEN','','',0),(138,1,'ALMOND BONELESS CHICKEN','','',0),(139,1,'* KUNG PO CHICKEN','','',0),(140,1,'*  MANDARIN SPICY CHICKEN','','',1),(141,1,'* SZECHUAN CRISPY CHICKEN','','',0),(142,1,'SNOW WHITE CHICKEN','','',1),(143,1,'* CHICKEN GREEN BEANS','','',9),(144,1,'GARLIC CHICKEN','','',0),(145,1,'* GENERAL TSOU\'S CHICKEN','','',0),(146,1,'SESAME CHICKEN','','',0),(147,1,'CHINESE VEGETABLE DELIGHT','','',0),(148,1,'BEEF WITH BROCCOLI','','',0),(149,1,'* HUNAN BEEF','','',0),(150,1,'PEPPER STEAK','','',0),(151,1,'* SZECHUAN SPICY BEEF','','',0),(152,1,'* MONGOLIAN BEEF','','',1),(153,1,'* ORANGE CRISPY BEEF','','',0),(154,1,'SWEET AND SOUR PORK','','',0),(155,1,'PORK WITH BLACK MUSHROOM','','',0),(156,1,'* MANDARIN CRISPY PORK','','',0),(157,1,'* TWICE COOKED PORK','','',0),(158,1,'SWEET AND SOUR SHRIMP','','',0),(159,1,'* YU SHIANG SHRIMP','','',0),(160,1,'SHRIMP WITH SNOW PEAS','','',0),(161,1,'SHRIMP WITH LOBSTER SAUCE','','',0),(162,1,'VEGETABLE DELIGHT','','',0),(163,1,'STEAM VEGETABLES','Vegetarian, To Fu or Chicken','',0),(164,1,'* FAMILY TO FU','','',0),(165,1,'test product dig down','','',14);
/*!40000 ALTER TABLE `zen_products_description` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_products_discount_quantity`
--

DROP TABLE IF EXISTS `zen_products_discount_quantity`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_products_discount_quantity` (
  `discount_id` int(4) NOT NULL DEFAULT '0',
  `products_id` int(11) NOT NULL DEFAULT '0',
  `discount_qty` float NOT NULL DEFAULT '0',
  `discount_price` decimal(15,4) NOT NULL DEFAULT '0.0000',
  KEY `idx_id_qty_zen` (`products_id`,`discount_qty`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_products_discount_quantity`
--

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

--
-- Table structure for table `zen_products_notifications`
--

DROP TABLE IF EXISTS `zen_products_notifications`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_products_notifications` (
  `products_id` int(11) NOT NULL DEFAULT '0',
  `customers_id` int(11) NOT NULL DEFAULT '0',
  `date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  PRIMARY KEY (`products_id`,`customers_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_products_notifications`
--

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

--
-- Table structure for table `zen_products_options`
--

DROP TABLE IF EXISTS `zen_products_options`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_products_options` (
  `products_options_id` int(11) NOT NULL DEFAULT '0',
  `language_id` int(11) NOT NULL DEFAULT '1',
  `products_options_name` varchar(32) NOT NULL DEFAULT '',
  `products_options_sort_order` int(11) NOT NULL DEFAULT '0',
  `products_options_type` int(5) NOT NULL DEFAULT '0',
  `products_options_length` smallint(2) NOT NULL DEFAULT '32',
  `products_options_comment` varchar(64) DEFAULT NULL,
  `products_options_size` smallint(2) NOT NULL DEFAULT '32',
  `products_options_images_per_row` int(2) DEFAULT '5',
  `products_options_images_style` int(1) DEFAULT '0',
  `products_options_rows` smallint(2) NOT NULL DEFAULT '1',
  PRIMARY KEY (`products_options_id`,`language_id`),
  KEY `idx_lang_id_zen` (`language_id`),
  KEY `idx_products_options_sort_order_zen` (`products_options_sort_order`),
  KEY `idx_products_options_name_zen` (`products_options_name`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_products_options`
--

LOCK TABLES `zen_products_options` WRITE;
/*!40000 ALTER TABLE `zen_products_options` DISABLE KEYS */;
INSERT INTO `zen_products_options` VALUES (3,1,'Fried Rice',0,2,32,NULL,32,0,0,0),(2,1,'Number of Persons',1,0,32,'',32,0,0,1),(1,1,'Size',0,2,32,'',32,0,0,0),(4,1,'Low Mein',1,2,32,'',32,0,0,0),(5,1,'Chop Suey',2,2,32,NULL,32,0,0,0),(6,1,'Chow Mein',3,2,32,NULL,32,0,0,0),(7,1,'download',0,2,32,'',32,0,0,0);
/*!40000 ALTER TABLE `zen_products_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_products_options_types`
--

DROP TABLE IF EXISTS `zen_products_options_types`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_products_options_types` (
  `products_options_types_id` int(11) NOT NULL DEFAULT '0',
  `products_options_types_name` varchar(32) DEFAULT NULL,
  PRIMARY KEY (`products_options_types_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_products_options_types`
--

LOCK TABLES `zen_products_options_types` WRITE;
/*!40000 ALTER TABLE `zen_products_options_types` DISABLE KEYS */;
INSERT INTO `zen_products_options_types` VALUES (0,'Dropdown'),(1,'Text'),(2,'Radio'),(3,'Checkbox'),(4,'File'),(5,'Read Only');
/*!40000 ALTER TABLE `zen_products_options_types` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_products_options_values`
--

DROP TABLE IF EXISTS `zen_products_options_values`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_products_options_values` (
  `products_options_values_id` int(11) NOT NULL DEFAULT '0',
  `language_id` int(11) NOT NULL DEFAULT '1',
  `products_options_values_name` varchar(64) NOT NULL DEFAULT '',
  `products_options_values_sort_order` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`products_options_values_id`,`language_id`),
  KEY `idx_products_options_values_name_zen` (`products_options_values_name`),
  KEY `idx_products_options_values_sort_order_zen` (`products_options_values_sort_order`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_products_options_values`
--

LOCK TABLES `zen_products_options_values` WRITE;
/*!40000 ALTER TABLE `zen_products_options_values` DISABLE KEYS */;
INSERT INTO `zen_products_options_values` VALUES (0,1,'TEXT',0),(1,1,'Small (8 oz.)',0),(2,1,'Medium (16 oz.)',1),(3,1,'Large (32 oz.)',2),(4,1,'3 Persons',3),(5,1,'4 Persons',4),(6,1,'5 Persons',5),(7,1,'6 Persons',6),(8,1,'7 Persons',7),(9,1,'8 Persons',8),(10,1,'9 Persons',9),(11,1,'10 Persons',11),(12,1,'2 Persons',2),(13,1,'Chicken, Pork or Vegetable',0),(14,1,'Beef',1),(15,1,'Shrimp',2),(16,1,'Combination',3),(17,1,'Chicken, Pork or Vegetable',0),(18,1,'Beef',1),(19,1,'Shrimp',2),(20,1,'Combination',3),(21,1,'Chicken, Pork or Vegetable',0),(22,1,'Beef',1),(23,1,'Shrimp',2),(24,1,'Combination',3),(25,1,'Chicken, Pork or Vegetable',0),(26,1,'Beef',1),(27,1,'Shrimp',2),(28,1,'Combination',3),(29,1,'zip',0);
/*!40000 ALTER TABLE `zen_products_options_values` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_products_options_values_to_products_options`
--

DROP TABLE IF EXISTS `zen_products_options_values_to_products_options`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_products_options_values_to_products_options` (
  `products_options_values_to_products_options_id` int(11) NOT NULL AUTO_INCREMENT,
  `products_options_id` int(11) NOT NULL DEFAULT '0',
  `products_options_values_id` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`products_options_values_to_products_options_id`),
  KEY `idx_products_options_id_zen` (`products_options_id`),
  KEY `idx_products_options_values_id_zen` (`products_options_values_id`)
) ENGINE=MyISAM AUTO_INCREMENT=31 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_products_options_values_to_products_options`
--

LOCK TABLES `zen_products_options_values_to_products_options` WRITE;
/*!40000 ALTER TABLE `zen_products_options_values_to_products_options` DISABLE KEYS */;
INSERT INTO `zen_products_options_values_to_products_options` VALUES (1,1,1),(2,1,2),(3,1,3),(5,2,4),(6,2,5),(7,2,6),(8,2,7),(9,2,8),(10,2,9),(11,2,10),(12,2,11),(13,2,12),(14,3,13),(15,3,14),(16,3,15),(17,3,16),(18,5,17),(19,5,18),(20,5,19),(21,5,20),(22,6,21),(23,6,22),(24,6,23),(25,6,24),(26,4,25),(27,4,26),(28,4,27),(29,4,28),(30,7,29);
/*!40000 ALTER TABLE `zen_products_options_values_to_products_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_products_to_categories`
--

DROP TABLE IF EXISTS `zen_products_to_categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_products_to_categories` (
  `products_id` int(11) NOT NULL DEFAULT '0',
  `categories_id` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`products_id`,`categories_id`),
  KEY `idx_cat_prod_id_zen` (`categories_id`,`products_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_products_to_categories`
--

LOCK TABLES `zen_products_to_categories` WRITE;
/*!40000 ALTER TABLE `zen_products_to_categories` DISABLE KEYS */;
INSERT INTO `zen_products_to_categories` VALUES (1,4),(2,4),(3,5),(4,5),(5,6),(6,6),(7,7),(8,7),(9,7),(10,7),(11,7),(12,7),(13,7),(14,7),(15,7),(16,7),(17,7),(18,7),(19,7),(20,7),(21,7),(22,7),(23,7),(24,7),(25,6),(26,6),(27,6),(28,6),(29,6),(30,6),(31,6),(32,6),(33,6),(34,6),(35,8),(36,8),(37,8),(38,8),(39,8),(40,8),(41,8),(42,8),(43,8),(44,8),(45,8),(46,8),(47,8),(48,8),(49,8),(50,8),(51,8),(52,8),(53,8),(54,8),(55,8),(56,8),(57,9),(58,9),(59,9),(60,9),(61,9),(62,9),(63,9),(64,9),(65,9),(66,9),(67,9),(68,10),(69,10),(70,10),(71,10),(72,10),(73,11),(74,11),(75,11),(76,11),(77,12),(78,12),(79,12),(80,12),(81,12),(82,13),(83,13),(84,13),(85,13),(86,13),(87,14),(88,14),(89,14),(90,14),(91,14),(92,15),(93,15),(94,15),(95,15),(96,15),(97,15),(98,15),(99,15),(100,15),(101,15),(102,17),(103,17),(104,17),(105,17),(106,17),(107,17),(108,17),(109,17),(110,17),(111,17),(112,17),(113,17),(115,4),(116,4),(117,4),(118,4),(119,4),(120,4),(121,4),(122,4),(123,5),(124,5),(125,5),(126,5),(128,18),(129,18),(130,27),(131,26),(132,25),(133,24),(134,19),(135,19),(136,19),(137,19),(138,19),(139,19),(140,19),(141,19),(142,19),(143,19),(144,19),(145,19),(146,19),(147,19),(148,20),(149,20),(150,20),(151,20),(152,20),(153,20),(154,21),(155,21),(156,21),(157,21),(158,22),(159,22),(160,22),(161,22),(162,23),(163,23),(164,23),(165,28);
/*!40000 ALTER TABLE `zen_products_to_categories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_project_version`
--

DROP TABLE IF EXISTS `zen_project_version`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_project_version` (
  `project_version_id` tinyint(3) NOT NULL AUTO_INCREMENT,
  `project_version_key` varchar(40) NOT NULL DEFAULT '',
  `project_version_major` varchar(20) NOT NULL DEFAULT '',
  `project_version_minor` varchar(20) NOT NULL DEFAULT '',
  `project_version_patch1` varchar(20) NOT NULL DEFAULT '',
  `project_version_patch2` varchar(20) NOT NULL DEFAULT '',
  `project_version_patch1_source` varchar(20) NOT NULL DEFAULT '',
  `project_version_patch2_source` varchar(20) NOT NULL DEFAULT '',
  `project_version_comment` varchar(250) NOT NULL DEFAULT '',
  `project_version_date_applied` datetime NOT NULL DEFAULT '0001-01-01 01:01:01',
  PRIMARY KEY (`project_version_id`),
  UNIQUE KEY `idx_project_version_key_zen` (`project_version_key`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_project_version`
--

LOCK TABLES `zen_project_version` WRITE;
/*!40000 ALTER TABLE `zen_project_version` DISABLE KEYS */;
INSERT INTO `zen_project_version` VALUES (1,'Zen-Cart Main','1','3.9b','','','','','Version Update 1.3.8->1.3.9b','2010-06-06 12:04:30'),(2,'Zen-Cart Database','1','3.9b','','','','','Version Update 1.3.8->1.3.9b','2010-06-06 12:04:30');
/*!40000 ALTER TABLE `zen_project_version` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_project_version_history`
--

DROP TABLE IF EXISTS `zen_project_version_history`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_project_version_history` (
  `project_version_id` tinyint(3) NOT NULL AUTO_INCREMENT,
  `project_version_key` varchar(40) NOT NULL DEFAULT '',
  `project_version_major` varchar(20) NOT NULL DEFAULT '',
  `project_version_minor` varchar(20) NOT NULL DEFAULT '',
  `project_version_patch` varchar(20) NOT NULL DEFAULT '',
  `project_version_comment` varchar(250) NOT NULL DEFAULT '',
  `project_version_date_applied` datetime NOT NULL DEFAULT '0001-01-01 01:01:01',
  PRIMARY KEY (`project_version_id`)
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_project_version_history`
--

LOCK TABLES `zen_project_version_history` WRITE;
/*!40000 ALTER TABLE `zen_project_version_history` DISABLE KEYS */;
INSERT INTO `zen_project_version_history` VALUES (1,'Zen-Cart Main','1','3.8','','Fresh Installation','2010-03-04 18:39:24'),(2,'Zen-Cart Database','1','3.8','','Fresh Installation','2010-03-04 18:39:24'),(3,'Zen-Cart Main','1','3.8','','Fresh Installation','2010-03-04 18:39:24'),(4,'Zen-Cart Database','1','3.8','','Fresh Installation','2010-03-04 18:39:24');
/*!40000 ALTER TABLE `zen_project_version_history` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_query_builder`
--

DROP TABLE IF EXISTS `zen_query_builder`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_query_builder` (
  `query_id` int(11) NOT NULL AUTO_INCREMENT,
  `query_category` varchar(40) NOT NULL DEFAULT '',
  `query_name` varchar(80) NOT NULL DEFAULT '',
  `query_description` text NOT NULL,
  `query_string` text NOT NULL,
  `query_keys_list` text NOT NULL,
  PRIMARY KEY (`query_id`),
  UNIQUE KEY `query_name` (`query_name`)
) ENGINE=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_query_builder`
--

LOCK TABLES `zen_query_builder` WRITE;
/*!40000 ALTER TABLE `zen_query_builder` DISABLE KEYS */;
INSERT INTO `zen_query_builder` VALUES (1,'email','All Customers','Returns all customers name and email address for sending mass emails (ie: for newsletters, coupons, GVs, messages, etc).','select customers_email_address, customers_firstname, customers_lastname from TABLE_CUSTOMERS order by customers_lastname, customers_firstname, customers_email_address',''),(2,'email,newsletters','All Newsletter Subscribers','Returns name and email address of newsletter subscribers','select customers_firstname, customers_lastname, customers_email_address from TABLE_CUSTOMERS where customers_newsletter = \'1\'',''),(3,'email,newsletters','Dormant Customers (>3months) (Subscribers)','Subscribers who HAVE purchased something, but have NOT purchased for at least three months.','select o.date_purchased, c.customers_email_address, c.customers_lastname, c.customers_firstname from TABLE_CUSTOMERS c, TABLE_ORDERS o WHERE c.customers_id = o.customers_id AND c.customers_newsletter = 1 GROUP BY c.customers_email_address HAVING max(o.date_purchased) <= subdate(now(),INTERVAL 3 MONTH) ORDER BY c.customers_lastname, c.customers_firstname ASC',''),(4,'email,newsletters','Active customers in past 3 months (Subscribers)','Newsletter subscribers who are also active customers (purchased something) in last 3 months.','select c.customers_email_address, c.customers_lastname, c.customers_firstname from TABLE_CUSTOMERS c, TABLE_ORDERS o where c.customers_newsletter = \'1\' AND c.customers_id = o.customers_id and o.date_purchased > subdate(now(),INTERVAL 3 MONTH) GROUP BY c.customers_email_address order by c.customers_lastname, c.customers_firstname ASC',''),(5,'email,newsletters','Active customers in past 3 months (Regardless of subscription status)','All active customers (purchased something) in last 3 months, ignoring newsletter-subscription status.','select c.customers_email_address, c.customers_lastname, c.customers_firstname from TABLE_CUSTOMERS c, TABLE_ORDERS o WHERE c.customers_id = o.customers_id and o.date_purchased > subdate(now(),INTERVAL 3 MONTH) GROUP BY c.customers_email_address order by c.customers_lastname, c.customers_firstname ASC',''),(6,'email,newsletters','Administrator','Just the email account of the current administrator','select \'ADMIN\' as customers_firstname, admin_name as customers_lastname, admin_email as customers_email_address from TABLE_ADMIN where admin_id = $SESSION:admin_id',''),(7,'email,newsletters','Customers who have never completed a purchase','For sending newsletter to all customers who registered but have never completed a purchase','SELECT DISTINCT c.customers_email_address as customers_email_address, c.customers_lastname as customers_lastname, c.customers_firstname as customers_firstname FROM TABLE_CUSTOMERS c LEFT JOIN  TABLE_ORDERS o ON c.customers_id=o.customers_id WHERE o.date_purchased IS NULL','');
/*!40000 ALTER TABLE `zen_query_builder` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_record_artists`
--

DROP TABLE IF EXISTS `zen_record_artists`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_record_artists` (
  `artists_id` int(11) NOT NULL AUTO_INCREMENT,
  `artists_name` varchar(32) NOT NULL DEFAULT '',
  `artists_image` varchar(64) DEFAULT NULL,
  `date_added` datetime DEFAULT NULL,
  `last_modified` datetime DEFAULT NULL,
  PRIMARY KEY (`artists_id`),
  KEY `idx_rec_artists_name_zen` (`artists_name`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_record_artists`
--

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

--
-- Table structure for table `zen_record_artists_info`
--

DROP TABLE IF EXISTS `zen_record_artists_info`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_record_artists_info` (
  `artists_id` int(11) NOT NULL DEFAULT '0',
  `languages_id` int(11) NOT NULL DEFAULT '0',
  `artists_url` varchar(255) NOT NULL DEFAULT '',
  `url_clicked` int(5) NOT NULL DEFAULT '0',
  `date_last_click` datetime DEFAULT NULL,
  PRIMARY KEY (`artists_id`,`languages_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_record_artists_info`
--

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

--
-- Table structure for table `zen_record_company`
--

DROP TABLE IF EXISTS `zen_record_company`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_record_company` (
  `record_company_id` int(11) NOT NULL AUTO_INCREMENT,
  `record_company_name` varchar(32) NOT NULL DEFAULT '',
  `record_company_image` varchar(64) DEFAULT NULL,
  `date_added` datetime DEFAULT NULL,
  `last_modified` datetime DEFAULT NULL,
  PRIMARY KEY (`record_company_id`),
  KEY `idx_rec_company_name_zen` (`record_company_name`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_record_company`
--

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

--
-- Table structure for table `zen_record_company_info`
--

DROP TABLE IF EXISTS `zen_record_company_info`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_record_company_info` (
  `record_company_id` int(11) NOT NULL DEFAULT '0',
  `languages_id` int(11) NOT NULL DEFAULT '0',
  `record_company_url` varchar(255) NOT NULL DEFAULT '',
  `url_clicked` int(5) NOT NULL DEFAULT '0',
  `date_last_click` datetime DEFAULT NULL,
  PRIMARY KEY (`record_company_id`,`languages_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_record_company_info`
--

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

--
-- Table structure for table `zen_reviews`
--

DROP TABLE IF EXISTS `zen_reviews`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_reviews` (
  `reviews_id` int(11) NOT NULL AUTO_INCREMENT,
  `products_id` int(11) NOT NULL DEFAULT '0',
  `customers_id` int(11) DEFAULT NULL,
  `customers_name` varchar(64) NOT NULL DEFAULT '',
  `reviews_rating` int(1) DEFAULT NULL,
  `date_added` datetime DEFAULT NULL,
  `last_modified` datetime DEFAULT NULL,
  `reviews_read` int(5) NOT NULL DEFAULT '0',
  `status` int(1) NOT NULL DEFAULT '1',
  PRIMARY KEY (`reviews_id`),
  KEY `idx_products_id_zen` (`products_id`),
  KEY `idx_customers_id_zen` (`customers_id`),
  KEY `idx_status_zen` (`status`),
  KEY `idx_date_added_zen` (`date_added`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_reviews`
--

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

--
-- Table structure for table `zen_reviews_description`
--

DROP TABLE IF EXISTS `zen_reviews_description`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_reviews_description` (
  `reviews_id` int(11) NOT NULL DEFAULT '0',
  `languages_id` int(11) NOT NULL DEFAULT '0',
  `reviews_text` text NOT NULL,
  PRIMARY KEY (`reviews_id`,`languages_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_reviews_description`
--

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

--
-- Table structure for table `zen_salemaker_sales`
--

DROP TABLE IF EXISTS `zen_salemaker_sales`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_salemaker_sales` (
  `sale_id` int(11) NOT NULL AUTO_INCREMENT,
  `sale_status` tinyint(4) NOT NULL DEFAULT '0',
  `sale_name` varchar(30) NOT NULL DEFAULT '',
  `sale_deduction_value` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `sale_deduction_type` tinyint(4) NOT NULL DEFAULT '0',
  `sale_pricerange_from` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `sale_pricerange_to` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `sale_specials_condition` tinyint(4) NOT NULL DEFAULT '0',
  `sale_categories_selected` text,
  `sale_categories_all` text,
  `sale_date_start` date NOT NULL DEFAULT '0001-01-01',
  `sale_date_end` date NOT NULL DEFAULT '0001-01-01',
  `sale_date_added` date NOT NULL DEFAULT '0001-01-01',
  `sale_date_last_modified` date NOT NULL DEFAULT '0001-01-01',
  `sale_date_status_change` date NOT NULL DEFAULT '0001-01-01',
  PRIMARY KEY (`sale_id`),
  KEY `idx_sale_status_zen` (`sale_status`),
  KEY `idx_sale_date_start_zen` (`sale_date_start`),
  KEY `idx_sale_date_end_zen` (`sale_date_end`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_salemaker_sales`
--

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

--
-- Table structure for table `zen_sessions`
--

DROP TABLE IF EXISTS `zen_sessions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_sessions` (
  `sesskey` varchar(32) NOT NULL DEFAULT '',
  `expiry` int(11) unsigned NOT NULL DEFAULT '0',
  `value` mediumblob NOT NULL,
  PRIMARY KEY (`sesskey`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_sessions`
--

LOCK TABLES `zen_sessions` WRITE;
/*!40000 ALTER TABLE `zen_sessions` DISABLE KEYS */;
INSERT INTO `zen_sessions` VALUES ('fd521910ff1b1b616903e8230a69acf8',1310493966,_binary 'c2VjdXJpdHlUb2tlbnxzOjMyOiJhMDAzOWE5NjM2NzU3MzE3ZjBmNWI3OWI0MmYyNjEzMiI7Y3VzdG9tZXJzX2hvc3RfYWRkcmVzc3xzOjMzOiJjLTY4LTQwLTQ1LTkzLmhzZDEubWkuY29tY2FzdC5uZXQiO2NhcnRJRHxzOjA6IiI7Y2FydHxPOjEyOiJzaG9wcGluZ0NhcnQiOjc6e3M6ODoiY29udGVudHMiO2E6MDp7fXM6NToidG90YWwiO2k6MDtzOjY6IndlaWdodCI7aTowO3M6MTI6ImNvbnRlbnRfdHlwZSI7YjowO3M6MTg6ImZyZWVfc2hpcHBpbmdfaXRlbSI7aTowO3M6MjA6ImZyZWVfc2hpcHBpbmdfd2VpZ2h0IjtpOjA7czoxOToiZnJlZV9zaGlwcGluZ19wcmljZSI7aTowO31uYXZpZ2F0aW9ufE86MTc6Im5hdmlnYXRpb25IaXN0b3J5IjoyOntzOjQ6InBhdGgiO2E6MTp7aTowO2E6NDp7czo0OiJwYWdlIjtzOjU6ImluZGV4IjtzOjQ6Im1vZGUiO3M6NjoiTk9OU1NMIjtzOjM6ImdldCI7czowOiIiO3M6NDoicG9zdCI7YTowOnt9fX1zOjg6InNuYXBzaG90IjthOjA6e319Y2hlY2tfdmFsaWR8czo0OiJ0cnVlIjtsYW5ndWFnZXxzOjc6ImVuZ2xpc2giO2xhbmd1YWdlc19pZHxzOjE6IjEiO2xhbmd1YWdlc19jb2RlfHM6MjoiZW4iO2N1cnJlbmN5fHM6MzoiVVNEIjt0b2RheV9pc3xzOjEwOiIyMDExLTA3LTEyIjt1cGRhdGVFeHBpcmF0aW9uc3xiOjE7c2Vzc2lvbl9jb3VudGVyfGI6MTtjdXN0b21lcnNfaXBfYWRkcmVzc3xzOjExOiI2OC40MC40NS45MyI7'),('efe93767ede9045670ec46d2836198c6',1312815452,_binary 'c2VjdXJpdHlUb2tlbnxzOjMyOiJjMThhZDI1NjA0YjJmOGVmZGMzYTU4NzQ2N2Q3MDZlNCI7Y3VzdG9tZXJzX2hvc3RfYWRkcmVzc3xzOjMzOiJjLTY4LTQwLTQ1LTkzLmhzZDEubWkuY29tY2FzdC5uZXQiO2NhcnRJRHxzOjA6IiI7Y2FydHxPOjEyOiJzaG9wcGluZ0NhcnQiOjg6e3M6ODoiY29udGVudHMiO2E6MDp7fXM6NToidG90YWwiO2k6MDtzOjY6IndlaWdodCI7aTowO3M6NjoiY2FydElEIjtOO3M6MTI6ImNvbnRlbnRfdHlwZSI7YjowO3M6MTg6ImZyZWVfc2hpcHBpbmdfaXRlbSI7aTowO3M6MjA6ImZyZWVfc2hpcHBpbmdfd2VpZ2h0IjtpOjA7czoxOToiZnJlZV9zaGlwcGluZ19wcmljZSI7aTowO31uYXZpZ2F0aW9ufE86MTc6Im5hdmlnYXRpb25IaXN0b3J5IjoyOntzOjQ6InBhdGgiO2E6MTp7aTowO2E6NDp7czo0OiJwYWdlIjtzOjU6ImluZGV4IjtzOjQ6Im1vZGUiO3M6NjoiTk9OU1NMIjtzOjM6ImdldCI7YToyOntzOjU6ImNQYXRoIjtzOjE6IjEiO3M6NToiemVuaWQiO3M6MzI6ImVmZTkzNzY3ZWRlOTA0NTY3MGVjNDZkMjgzNjE5OGM2Ijt9czo0OiJwb3N0IjthOjA6e319fXM6ODoic25hcHNob3QiO2E6MDp7fX1jaGVja192YWxpZHxzOjQ6InRydWUiO2xhbmd1YWdlfHM6NzoiZW5nbGlzaCI7bGFuZ3VhZ2VzX2lkfHM6MToiMSI7bGFuZ3VhZ2VzX2NvZGV8czoyOiJlbiI7Y3VycmVuY3l8czozOiJVU0QiO3RvZGF5X2lzfHM6MTA6IjIwMTEtMDgtMDgiO3VwZGF0ZUV4cGlyYXRpb25zfGI6MTtzZXNzaW9uX2NvdW50ZXJ8YjoxO2N1c3RvbWVyc19pcF9hZGRyZXNzfHM6MTE6IjY4LjQwLjQ1LjkzIjs=');
/*!40000 ALTER TABLE `zen_sessions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_specials`
--

DROP TABLE IF EXISTS `zen_specials`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_specials` (
  `specials_id` int(11) NOT NULL AUTO_INCREMENT,
  `products_id` int(11) NOT NULL DEFAULT '0',
  `specials_new_products_price` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `specials_date_added` datetime DEFAULT NULL,
  `specials_last_modified` datetime DEFAULT NULL,
  `expires_date` date NOT NULL DEFAULT '0001-01-01',
  `date_status_change` datetime DEFAULT NULL,
  `status` int(1) NOT NULL DEFAULT '1',
  `specials_date_available` date NOT NULL DEFAULT '0001-01-01',
  PRIMARY KEY (`specials_id`),
  KEY `idx_status_zen` (`status`),
  KEY `idx_products_id_zen` (`products_id`),
  KEY `idx_date_avail_zen` (`specials_date_available`),
  KEY `idx_expires_date_zen` (`expires_date`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_specials`
--

LOCK TABLES `zen_specials` WRITE;
/*!40000 ALTER TABLE `zen_specials` DISABLE KEYS */;
INSERT INTO `zen_specials` VALUES (1,5,10.1250,'2010-03-04 22:09:21','2010-03-04 22:10:39','2010-04-01','2010-04-02 05:00:22',0,'2010-03-04');
/*!40000 ALTER TABLE `zen_specials` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_tax_class`
--

DROP TABLE IF EXISTS `zen_tax_class`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_tax_class` (
  `tax_class_id` int(11) NOT NULL AUTO_INCREMENT,
  `tax_class_title` varchar(32) NOT NULL DEFAULT '',
  `tax_class_description` varchar(255) NOT NULL DEFAULT '',
  `last_modified` datetime DEFAULT NULL,
  `date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  PRIMARY KEY (`tax_class_id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_tax_class`
--

LOCK TABLES `zen_tax_class` WRITE;
/*!40000 ALTER TABLE `zen_tax_class` DISABLE KEYS */;
INSERT INTO `zen_tax_class` VALUES (1,'Taxable Goods','The following types of products are included: non-food, services, etc',NULL,'2010-03-04 18:39:24');
/*!40000 ALTER TABLE `zen_tax_class` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_tax_rates`
--

DROP TABLE IF EXISTS `zen_tax_rates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_tax_rates` (
  `tax_rates_id` int(11) NOT NULL AUTO_INCREMENT,
  `tax_zone_id` int(11) NOT NULL DEFAULT '0',
  `tax_class_id` int(11) NOT NULL DEFAULT '0',
  `tax_priority` int(5) DEFAULT '1',
  `tax_rate` decimal(7,4) NOT NULL DEFAULT '0.0000',
  `tax_description` varchar(255) NOT NULL DEFAULT '',
  `last_modified` datetime DEFAULT NULL,
  `date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  PRIMARY KEY (`tax_rates_id`),
  KEY `idx_tax_zone_id_zen` (`tax_zone_id`),
  KEY `idx_tax_class_id_zen` (`tax_class_id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_tax_rates`
--

LOCK TABLES `zen_tax_rates` WRITE;
/*!40000 ALTER TABLE `zen_tax_rates` DISABLE KEYS */;
INSERT INTO `zen_tax_rates` VALUES (1,1,1,1,7.0000,'FL TAX 7.0%','2010-03-04 18:39:24','2010-03-04 18:39:24');
/*!40000 ALTER TABLE `zen_tax_rates` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_template_select`
--

DROP TABLE IF EXISTS `zen_template_select`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_template_select` (
  `template_id` int(11) NOT NULL AUTO_INCREMENT,
  `template_dir` varchar(64) NOT NULL DEFAULT '',
  `template_language` varchar(64) NOT NULL DEFAULT '0',
  PRIMARY KEY (`template_id`),
  KEY `idx_tpl_lang_zen` (`template_language`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_template_select`
--

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

--
-- Table structure for table `zen_upgrade_exceptions`
--

DROP TABLE IF EXISTS `zen_upgrade_exceptions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_upgrade_exceptions` (
  `upgrade_exception_id` smallint(5) NOT NULL AUTO_INCREMENT,
  `sql_file` varchar(50) DEFAULT NULL,
  `reason` varchar(200) DEFAULT NULL,
  `errordate` datetime DEFAULT '0001-01-01 00:00:00',
  `sqlstatement` text,
  PRIMARY KEY (`upgrade_exception_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_upgrade_exceptions`
--

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

--
-- Table structure for table `zen_whos_online`
--

DROP TABLE IF EXISTS `zen_whos_online`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_whos_online` (
  `customer_id` int(11) DEFAULT NULL,
  `full_name` varchar(64) NOT NULL DEFAULT '',
  `session_id` varchar(128) NOT NULL DEFAULT '',
  `ip_address` varchar(15) NOT NULL DEFAULT '',
  `time_entry` varchar(14) NOT NULL DEFAULT '',
  `time_last_click` varchar(14) NOT NULL DEFAULT '',
  `last_page_url` varchar(255) NOT NULL DEFAULT '',
  `host_address` text NOT NULL,
  `user_agent` varchar(255) NOT NULL DEFAULT '',
  KEY `idx_ip_address_zen` (`ip_address`),
  KEY `idx_session_id_zen` (`session_id`),
  KEY `idx_customer_id_zen` (`customer_id`),
  KEY `idx_time_entry_zen` (`time_entry`),
  KEY `idx_time_last_click_zen` (`time_last_click`),
  KEY `idx_last_page_url_zen` (`last_page_url`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_whos_online`
--

LOCK TABLES `zen_whos_online` WRITE;
/*!40000 ALTER TABLE `zen_whos_online` DISABLE KEYS */;
INSERT INTO `zen_whos_online` VALUES (0,'&yen;Spider','','76.226.224.250','1320190730','1320191145','/chinese_delight/index.php?main_page=page&id=3','76.226.224.250','Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; SearchToolbar 1.2; GTB7.1; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 1.1.4322)');
/*!40000 ALTER TABLE `zen_whos_online` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_zones`
--

DROP TABLE IF EXISTS `zen_zones`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_zones` (
  `zone_id` int(11) NOT NULL AUTO_INCREMENT,
  `zone_country_id` int(11) NOT NULL DEFAULT '0',
  `zone_code` varchar(32) NOT NULL DEFAULT '',
  `zone_name` varchar(32) NOT NULL DEFAULT '',
  PRIMARY KEY (`zone_id`),
  KEY `idx_zone_country_id_zen` (`zone_country_id`),
  KEY `idx_zone_code_zen` (`zone_code`)
) ENGINE=MyISAM AUTO_INCREMENT=190 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_zones`
--

LOCK TABLES `zen_zones` WRITE;
/*!40000 ALTER TABLE `zen_zones` DISABLE KEYS */;
INSERT INTO `zen_zones` VALUES (1,223,'AL','Alabama'),(2,223,'AK','Alaska'),(3,223,'AS','American Samoa'),(4,223,'AZ','Arizona'),(5,223,'AR','Arkansas'),(6,223,'AF','Armed Forces Africa'),(7,223,'AA','Armed Forces Americas'),(8,223,'AC','Armed Forces Canada'),(9,223,'AE','Armed Forces Europe'),(10,223,'AM','Armed Forces Middle East'),(11,223,'AP','Armed Forces Pacific'),(12,223,'CA','California'),(13,223,'CO','Colorado'),(14,223,'CT','Connecticut'),(15,223,'DE','Delaware'),(16,223,'DC','District of Columbia'),(17,223,'FM','Federated States Of Micronesia'),(18,223,'FL','Florida'),(19,223,'GA','Georgia'),(20,223,'GU','Guam'),(21,223,'HI','Hawaii'),(22,223,'ID','Idaho'),(23,223,'IL','Illinois'),(24,223,'IN','Indiana'),(25,223,'IA','Iowa'),(26,223,'KS','Kansas'),(27,223,'KY','Kentucky'),(28,223,'LA','Louisiana'),(29,223,'ME','Maine'),(30,223,'MH','Marshall Islands'),(31,223,'MD','Maryland'),(32,223,'MA','Massachusetts'),(33,223,'MI','Michigan'),(34,223,'MN','Minnesota'),(35,223,'MS','Mississippi'),(36,223,'MO','Missouri'),(37,223,'MT','Montana'),(38,223,'NE','Nebraska'),(39,223,'NV','Nevada'),(40,223,'NH','New Hampshire'),(41,223,'NJ','New Jersey'),(42,223,'NM','New Mexico'),(43,223,'NY','New York'),(44,223,'NC','North Carolina'),(45,223,'ND','North Dakota'),(46,223,'MP','Northern Mariana Islands'),(47,223,'OH','Ohio'),(48,223,'OK','Oklahoma'),(49,223,'OR','Oregon'),(50,163,'PW','Palau'),(51,223,'PA','Pennsylvania'),(52,223,'PR','Puerto Rico'),(53,223,'RI','Rhode Island'),(54,223,'SC','South Carolina'),(55,223,'SD','South Dakota'),(56,223,'TN','Tennessee'),(57,223,'TX','Texas'),(58,223,'UT','Utah'),(59,223,'VT','Vermont'),(60,223,'VI','Virgin Islands'),(61,223,'VA','Virginia'),(62,223,'WA','Washington'),(63,223,'WV','West Virginia'),(64,223,'WI','Wisconsin'),(65,223,'WY','Wyoming'),(66,38,'AB','Alberta'),(67,38,'BC','British Columbia'),(68,38,'MB','Manitoba'),(69,38,'NL','Newfoundland'),(70,38,'NB','New Brunswick'),(71,38,'NS','Nova Scotia'),(72,38,'NT','Northwest Territories'),(73,38,'NU','Nunavut'),(74,38,'ON','Ontario'),(75,38,'PE','Prince Edward Island'),(76,38,'QC','Quebec'),(77,38,'SK','Saskatchewan'),(78,38,'YT','Yukon Territory'),(79,81,'NDS','Niedersachsen'),(80,81,'BAW','Baden WÃ¼rtemberg'),(81,81,'BAY','Bayern'),(82,81,'BER','Berlin'),(83,81,'BRG','Brandenburg'),(84,81,'BRE','Bremen'),(85,81,'HAM','Hamburg'),(86,81,'HES','Hessen'),(87,81,'MEC','Mecklenburg-Vorpommern'),(88,81,'NRW','Nordrhein-Westfalen'),(89,81,'RHE','Rheinland-Pfalz'),(90,81,'SAR','Saarland'),(91,81,'SAS','Sachsen'),(92,81,'SAC','Sachsen-Anhalt'),(93,81,'SCN','Schleswig-Holstein'),(94,81,'THE','Thringen'),(95,14,'WI','Wien'),(96,14,'NO','Niedersterreich'),(97,14,'OO','Obersterreich'),(98,14,'SB','Salzburg'),(99,14,'KN','KÃ¤rnten'),(100,14,'ST','Steiermark'),(101,14,'TI','Tirol'),(102,14,'BL','Burgenland'),(103,14,'VB','Voralberg'),(104,204,'AG','Aargau'),(105,204,'AI','Appenzell Innerrhoden'),(106,204,'AR','Appenzell Ausserrhoden'),(107,204,'BE','Bern'),(108,204,'BL','Basel-Landschaft'),(109,204,'BS','Basel-Stadt'),(110,204,'FR','Freiburg'),(111,204,'GE','Genf'),(112,204,'GL','Glarus'),(113,204,'JU','Graubnden'),(114,204,'JU','Jura'),(115,204,'LU','Luzern'),(116,204,'NE','Neuenburg'),(117,204,'NW','Nidwalden'),(118,204,'OW','Obwalden'),(119,204,'SG','St. Gallen'),(120,204,'SH','Schaffhausen'),(121,204,'SO','Solothurn'),(122,204,'SZ','Schwyz'),(123,204,'TG','Thurgau'),(124,204,'TI','Tessin'),(125,204,'UR','Uri'),(126,204,'VD','Waadt'),(127,204,'VS','Wallis'),(128,204,'ZG','Zug'),(129,204,'ZH','Zrich'),(130,195,'A Corua','A Corua'),(131,195,'Alava','Alava'),(132,195,'Albacete','Albacete'),(133,195,'Alicante','Alicante'),(134,195,'Almeria','Almeria'),(135,195,'Asturias','Asturias'),(136,195,'Avila','Avila'),(137,195,'Badajoz','Badajoz'),(138,195,'Baleares','Baleares'),(139,195,'Barcelona','Barcelona'),(140,195,'Burgos','Burgos'),(141,195,'Caceres','Caceres'),(142,195,'Cadiz','Cadiz'),(143,195,'Cantabria','Cantabria'),(144,195,'Castellon','Castellon'),(145,195,'Ceuta','Ceuta'),(146,195,'Ciudad Real','Ciudad Real'),(147,195,'Cordoba','Cordoba'),(148,195,'Cuenca','Cuenca'),(149,195,'Girona','Girona'),(150,195,'Granada','Granada'),(151,195,'Guadalajara','Guadalajara'),(152,195,'Guipuzcoa','Guipuzcoa'),(153,195,'Huelva','Huelva'),(154,195,'Huesca','Huesca'),(155,195,'Jaen','Jaen'),(156,195,'La Rioja','La Rioja'),(157,195,'Las Palmas','Las Palmas'),(158,195,'Leon','Leon'),(159,195,'Lleida','Lleida'),(160,195,'Lugo','Lugo'),(161,195,'Madrid','Madrid'),(162,195,'Malaga','Malaga'),(163,195,'Melilla','Melilla'),(164,195,'Murcia','Murcia'),(165,195,'Navarra','Navarra'),(166,195,'Ourense','Ourense'),(167,195,'Palencia','Palencia'),(168,195,'Pontevedra','Pontevedra'),(169,195,'Salamanca','Salamanca'),(170,195,'Santa Cruz de Tenerife','Santa Cruz de Tenerife'),(171,195,'Segovia','Segovia'),(172,195,'Sevilla','Sevilla'),(173,195,'Soria','Soria'),(174,195,'Tarragona','Tarragona'),(175,195,'Teruel','Teruel'),(176,195,'Toledo','Toledo'),(177,195,'Valencia','Valencia'),(178,195,'Valladolid','Valladolid'),(179,195,'Vizcaya','Vizcaya'),(180,195,'Zamora','Zamora'),(181,195,'Zaragoza','Zaragoza'),(182,13,'ACT','Australian Capital Territory'),(183,13,'NSW','New South Wales'),(184,13,'NT','Northern Territory'),(185,13,'QLD','Queensland'),(186,13,'SA','South Australia'),(187,13,'TAS','Tasmania'),(188,13,'VIC','Victoria'),(189,13,'WA','Western Australia');
/*!40000 ALTER TABLE `zen_zones` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_zones_to_geo_zones`
--

DROP TABLE IF EXISTS `zen_zones_to_geo_zones`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_zones_to_geo_zones` (
  `association_id` int(11) NOT NULL AUTO_INCREMENT,
  `zone_country_id` int(11) NOT NULL DEFAULT '0',
  `zone_id` int(11) DEFAULT NULL,
  `geo_zone_id` int(11) DEFAULT NULL,
  `last_modified` datetime DEFAULT NULL,
  `date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  PRIMARY KEY (`association_id`),
  KEY `idx_zones_zen` (`geo_zone_id`,`zone_country_id`,`zone_id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_zones_to_geo_zones`
--

LOCK TABLES `zen_zones_to_geo_zones` WRITE;
/*!40000 ALTER TABLE `zen_zones_to_geo_zones` DISABLE KEYS */;
INSERT INTO `zen_zones_to_geo_zones` VALUES (1,223,18,1,NULL,'2010-03-04 18:39:24');
/*!40000 ALTER TABLE `zen_zones_to_geo_zones` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Dumping events for database 'nsadmin_zc1'
--

--
-- Dumping routines for database 'nsadmin_zc1'
--
/*!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 2026-05-10 13:57:03
