-- ------------------------------------------------------
-- Magento sample data database dump
-- ------------------------------------------------------

/*!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 `admin_assert`
--

DROP TABLE IF EXISTS `admin_assert`;
CREATE TABLE `admin_assert` (
  `assert_id` int(10) unsigned NOT NULL auto_increment,
  `assert_type` varchar(20) character set latin1 NOT NULL default '',
  `assert_data` text character set latin1,
  PRIMARY KEY  (`assert_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='ACL Asserts';

--
-- Table structure for table `admin_role`
--

DROP TABLE IF EXISTS `admin_role`;
CREATE TABLE `admin_role` (
  `role_id` int(10) unsigned NOT NULL auto_increment,
  `parent_id` int(10) unsigned NOT NULL default '0',
  `tree_level` tinyint(3) unsigned NOT NULL default '0',
  `sort_order` tinyint(3) unsigned NOT NULL default '0',
  `role_type` char(1) character set latin1 NOT NULL default '0',
  `user_id` int(11) unsigned NOT NULL default '0',
  `role_name` varchar(50) NOT NULL default '',
  PRIMARY KEY  (`role_id`),
  KEY `parent_id` (`parent_id`,`sort_order`),
  KEY `tree_level` (`tree_level`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='ACL Roles';

--
-- Dumping data for table `admin_role`
--

LOCK TABLES `admin_role` WRITE;
/*!40000 ALTER TABLE `admin_role` DISABLE KEYS */;
INSERT INTO `admin_role` VALUES (1,0,1,1,'G',0,'Administrators'),(2,1,1,0,'U',1,'Owner');
/*!40000 ALTER TABLE `admin_role` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `admin_rule`
--

DROP TABLE IF EXISTS `admin_rule`;
CREATE TABLE `admin_rule` (
  `rule_id` int(10) unsigned NOT NULL auto_increment,
  `role_id` int(10) unsigned NOT NULL default '0',
  `resource_id` varchar(255) character set latin1 NOT NULL default '',
  `privileges` varchar(20) character set latin1 NOT NULL default '',
  `assert_id` int(10) unsigned NOT NULL default '0',
  `role_type` char(1) default NULL,
  `permission` varchar(10) default NULL,
  PRIMARY KEY  (`rule_id`),
  KEY `resource` (`resource_id`,`role_id`),
  KEY `role_id` (`role_id`,`resource_id`),
  CONSTRAINT `FK_admin_rule` FOREIGN KEY (`role_id`) REFERENCES `admin_role` (`role_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='ACL Rules';

--
-- Dumping data for table `admin_rule`
--

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

--
-- Table structure for table `admin_user`
--

DROP TABLE IF EXISTS `admin_user`;
CREATE TABLE `admin_user` (
  `user_id` mediumint(9) unsigned NOT NULL auto_increment,
  `firstname` varchar(32) NOT NULL default '',
  `lastname` varchar(32) NOT NULL default '',
  `email` varchar(128) NOT NULL default '',
  `username` varchar(40) NOT NULL default '',
  `password` varchar(40) NOT NULL default '',
  `created` datetime NOT NULL default '0000-00-00 00:00:00',
  `modified` datetime default NULL,
  `logdate` datetime default NULL,
  `lognum` smallint(5) unsigned NOT NULL default '0',
  `reload_acl_flag` tinyint(1) NOT NULL default '0',
  `is_active` tinyint(1) NOT NULL default '1',
  `extra` text,
  PRIMARY KEY  (`user_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Users';


--
-- Dumping data for table `admin_user`
--

LOCK TABLES `admin_user` WRITE;
/*!40000 ALTER TABLE `admin_user` DISABLE KEYS */;
INSERT INTO `admin_user` VALUES (1,'Store','Owner','owner@example.com','admin','3f9ee07bfb0626942799e0ca9f889969:a2','2008-08-07 14:39:09','2008-08-07 19:23:22','2008-08-08 15:04:42',0,0,1,'N;');
/*!40000 ALTER TABLE `admin_user` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `adminnotification_inbox`
--

DROP TABLE IF EXISTS `adminnotification_inbox`;
CREATE TABLE `adminnotification_inbox` (
  `notification_id` int(10) unsigned NOT NULL auto_increment,
  `severity` tinyint(3) unsigned NOT NULL default '0',
  `date_added` datetime NOT NULL,
  `title` varchar(255) NOT NULL,
  `description` text,
  `url` varchar(255) NOT NULL,
  `is_read` tinyint(1) unsigned NOT NULL default '0',
  `is_remove` tinyint(1) unsigned NOT NULL default '0',
  PRIMARY KEY  (`notification_id`),
  KEY `IDX_SEVERITY` (`severity`),
  KEY `IDX_IS_READ` (`is_read`),
  KEY `IDX_IS_REMOVE` (`is_remove`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

--
-- Table structure for table `api_assert`
--

DROP TABLE IF EXISTS `api_assert`;
CREATE TABLE `api_assert` (
  `assert_id` int(10) unsigned NOT NULL auto_increment,
  `assert_type` varchar(20) NOT NULL default '',
  `assert_data` text,
  PRIMARY KEY  (`assert_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Api ACL Asserts';

--
-- Table structure for table `api_role`
--

DROP TABLE IF EXISTS `api_role`;
CREATE TABLE `api_role` (
  `role_id` int(10) unsigned NOT NULL auto_increment,
  `parent_id` int(10) unsigned NOT NULL default '0',
  `tree_level` tinyint(3) unsigned NOT NULL default '0',
  `sort_order` tinyint(3) unsigned NOT NULL default '0',
  `role_type` char(1) NOT NULL default '0',
  `user_id` int(11) unsigned NOT NULL default '0',
  `role_name` varchar(50) NOT NULL default '',
  PRIMARY KEY  (`role_id`),
  KEY `parent_id` (`parent_id`,`sort_order`),
  KEY `tree_level` (`tree_level`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Api ACL Roles';

--
-- Table structure for table `api_rule`
--

DROP TABLE IF EXISTS `api_rule`;
CREATE TABLE `api_rule` (
  `rule_id` int(10) unsigned NOT NULL auto_increment,
  `role_id` int(10) unsigned NOT NULL default '0',
  `resource_id` varchar(255) NOT NULL default '',
  `privileges` varchar(20) NOT NULL default '',
  `assert_id` int(10) unsigned NOT NULL default '0',
  `role_type` char(1) default NULL,
  `permission` varchar(10) default NULL,
  PRIMARY KEY  (`rule_id`),
  KEY `resource` (`resource_id`,`role_id`),
  KEY `role_id` (`role_id`,`resource_id`),
  CONSTRAINT `FK_api_rule` FOREIGN KEY (`role_id`) REFERENCES `api_role` (`role_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Api ACL Rules';

--
-- Table structure for table `api_user`
--

DROP TABLE IF EXISTS `api_user`;
CREATE TABLE `api_user` (
  `user_id` mediumint(9) unsigned NOT NULL auto_increment,
  `firstname` varchar(32) NOT NULL default '',
  `lastname` varchar(32) NOT NULL default '',
  `email` varchar(128) NOT NULL default '',
  `username` varchar(40) NOT NULL default '',
  `api_key` varchar(40) NOT NULL default '',
  `created` datetime NOT NULL default '0000-00-00 00:00:00',
  `modified` datetime default NULL,
  `logdate` datetime default NULL,
  `lognum` smallint(5) unsigned NOT NULL default '0',
  `reload_acl_flag` tinyint(1) NOT NULL default '0',
  `is_active` tinyint(1) NOT NULL default '1',
  PRIMARY KEY  (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Api Users';

--
-- Table structure for table `catalog_category_entity`
--

DROP TABLE IF EXISTS `catalog_category_entity`;
CREATE TABLE `catalog_category_entity` (
  `entity_id` int(10) unsigned NOT NULL auto_increment,
  `entity_type_id` smallint(8) unsigned NOT NULL default '0',
  `attribute_set_id` smallint(5) unsigned NOT NULL default '0',
  `parent_id` int(10) unsigned NOT NULL default '0',
  `created_at` datetime NOT NULL default '0000-00-00 00:00:00',
  `updated_at` datetime NOT NULL default '0000-00-00 00:00:00',
  `path` varchar(255) NOT NULL,
  `position` int(11) NOT NULL,
  `level` int(11) NOT NULL,
  PRIMARY KEY  (`entity_id`),
  KEY `IDX_LEVEL` (`level`)
) ENGINE=InnoDB AUTO_INCREMENT=35 DEFAULT CHARSET=utf8 COMMENT='Category Entityies';

--
-- Dumping data for table `catalog_category_entity`
--

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

--
-- Table structure for table `catalog_category_entity_datetime`
--

DROP TABLE IF EXISTS `catalog_category_entity_datetime`;
CREATE TABLE `catalog_category_entity_datetime` (
  `value_id` int(11) NOT NULL auto_increment,
  `entity_type_id` smallint(5) unsigned NOT NULL default '0',
  `attribute_id` smallint(5) unsigned NOT NULL default '0',
  `store_id` smallint(5) unsigned NOT NULL default '0',
  `entity_id` int(10) unsigned NOT NULL default '0',
  `value` datetime NOT NULL default '0000-00-00 00:00:00',
  PRIMARY KEY  (`value_id`),
  UNIQUE KEY `IDX_BASE` (`entity_type_id`,`entity_id`,`attribute_id`,`store_id`),
  KEY `FK_ATTRIBUTE_DATETIME_ENTITY` (`entity_id`),
  KEY `FK_CATALOG_CATEGORY_ENTITY_DATETIME_ATTRIBUTE` (`attribute_id`),
  KEY `FK_CATALOG_CATEGORY_ENTITY_DATETIME_STORE` (`store_id`),
  CONSTRAINT `FK_CATALOG_CATEGORY_ENTITY_DATETIME_ATTRIBUTE` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CATALOG_CATEGORY_ENTITY_DATETIME_ENTITY` FOREIGN KEY (`entity_id`) REFERENCES `catalog_category_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CATALOG_CATEGORY_ENTITY_DATETIME_STORE` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

--
-- Table structure for table `catalog_category_entity_decimal`
--

DROP TABLE IF EXISTS `catalog_category_entity_decimal`;
CREATE TABLE `catalog_category_entity_decimal` (
  `value_id` int(11) NOT NULL auto_increment,
  `entity_type_id` smallint(5) unsigned NOT NULL default '0',
  `attribute_id` smallint(5) unsigned NOT NULL default '0',
  `store_id` smallint(5) unsigned NOT NULL default '0',
  `entity_id` int(10) unsigned NOT NULL default '0',
  `value` decimal(12,4) NOT NULL default '0.0000',
  PRIMARY KEY  (`value_id`),
  UNIQUE KEY `IDX_BASE` (`entity_type_id`,`entity_id`,`attribute_id`,`store_id`),
  KEY `FK_ATTRIBUTE_DECIMAL_ENTITY` (`entity_id`),
  KEY `FK_CATALOG_CATEGORY_ENTITY_DECIMAL_ATTRIBUTE` (`attribute_id`),
  KEY `FK_CATALOG_CATEGORY_ENTITY_DECIMAL_STORE` (`store_id`),
  CONSTRAINT `FK_CATALOG_CATEGORY_ENTITY_DECIMAL_ATTRIBUTE` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CATALOG_CATEGORY_ENTITY_DECIMAL_ENTITY` FOREIGN KEY (`entity_id`) REFERENCES `catalog_category_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CATALOG_CATEGORY_ENTITY_DECIMAL_STORE` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

--
-- Table structure for table `catalog_category_entity_int`
--

DROP TABLE IF EXISTS `catalog_category_entity_int`;
CREATE TABLE `catalog_category_entity_int` (
  `value_id` int(11) NOT NULL auto_increment,
  `entity_type_id` smallint(5) unsigned NOT NULL default '0',
  `attribute_id` smallint(5) unsigned NOT NULL default '0',
  `store_id` smallint(5) unsigned NOT NULL default '0',
  `entity_id` int(10) unsigned NOT NULL default '0',
  `value` int(11) NOT NULL default '0',
  PRIMARY KEY  (`value_id`),
  UNIQUE KEY `IDX_BASE` (`entity_type_id`,`entity_id`,`attribute_id`,`store_id`),
  KEY `FK_ATTRIBUTE_INT_ENTITY` (`entity_id`),
  KEY `FK_CATALOG_CATEGORY_EMTITY_INT_ATTRIBUTE` (`attribute_id`),
  KEY `FK_CATALOG_CATEGORY_EMTITY_INT_STORE` (`store_id`),
  CONSTRAINT `FK_CATALOG_CATEGORY_EMTITY_INT_ATTRIBUTE` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CATALOG_CATEGORY_EMTITY_INT_ENTITY` FOREIGN KEY (`entity_id`) REFERENCES `catalog_category_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CATALOG_CATEGORY_EMTITY_INT_STORE` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=134 DEFAULT CHARSET=utf8;

--
-- Dumping data for table `catalog_category_entity_int`
--

LOCK TABLES `catalog_category_entity_int` WRITE;
/*!40000 ALTER TABLE `catalog_category_entity_int` DISABLE KEYS */;
INSERT INTO `catalog_category_entity_int` VALUES (1,9,120,0,13,1),(2,9,120,1,13,1),(3,9,120,0,5,1),(4,9,120,1,5,1),(5,9,120,0,18,1),(6,9,120,1,18,1),(11,9,120,0,22,0),(12,9,120,1,22,0),(13,9,120,0,10,1),(14,9,120,1,10,1),(15,9,120,0,15,1),(16,9,120,1,15,1),(18,9,117,1,15,1),(20,9,117,1,22,2),(21,9,120,0,16,1),(22,9,120,1,16,1),(23,9,120,0,17,1),(24,9,120,1,17,1),(25,9,120,0,4,1),(26,9,120,1,4,1),(27,9,120,0,19,0),(28,9,120,1,19,0),(29,9,120,0,23,0),(30,9,120,1,23,0),(31,9,117,0,13,3),(33,9,120,0,12,1),(34,9,120,1,12,1),(35,9,117,0,8,4),(36,9,117,1,8,4),(37,9,120,0,8,1),(38,9,120,1,8,1),(39,9,120,0,26,1),(40,9,120,1,26,1),(41,9,120,2,18,1),(42,9,120,2,4,1),(43,9,120,2,5,1),(44,9,120,2,16,1),(45,9,120,2,17,1),(46,9,120,2,10,1),(47,9,120,2,22,1),(48,9,117,2,22,2),(49,9,120,2,23,1),(50,9,120,2,13,1),(51,9,117,2,13,3),(52,9,117,2,8,4),(53,9,120,2,8,1),(54,9,120,2,12,1),(55,9,120,2,26,1),(56,9,120,2,15,1),(57,9,120,3,18,1),(58,9,120,3,4,1),(59,9,120,3,5,1),(60,9,120,3,16,1),(61,9,120,3,17,1),(62,9,120,3,10,1),(63,9,120,3,22,1),(64,9,117,3,22,2),(65,9,120,3,23,1),(66,9,120,3,13,1),(67,9,117,3,13,3),(68,9,117,3,8,4),(69,9,120,3,8,1),(70,9,120,3,12,1),(71,9,120,3,26,1),(72,9,120,3,15,1),(73,9,119,0,1,1),(74,9,119,0,3,1),(75,9,119,0,4,1),(76,9,119,0,5,1),(77,9,119,0,8,1),(78,9,119,0,10,1),(79,9,119,0,12,1),(80,9,119,0,13,1),(81,9,119,0,15,1),(82,9,119,0,16,1),(83,9,119,0,17,1),(84,9,119,0,18,1),(85,9,119,0,19,1),(86,9,119,0,20,0),(87,9,119,0,22,1),(88,9,119,0,23,1),(89,9,119,0,24,0),(90,9,119,0,25,1),(91,9,119,0,26,1),(92,9,564,0,15,1),(93,9,119,0,27,1),(94,9,120,0,27,0),(95,9,564,0,27,1),(96,9,119,0,28,1),(97,9,120,0,28,1),(98,9,564,0,28,1),(99,9,119,0,29,1),(100,9,120,0,29,1),(101,9,564,0,29,1),(102,9,119,0,30,1),(103,9,120,0,30,1),(104,9,564,0,30,1),(105,9,119,0,31,1),(106,9,120,0,31,1),(107,9,564,0,31,1),(108,9,119,0,32,1),(109,9,120,0,32,1),(110,9,564,0,32,1),(111,9,119,0,33,1),(112,9,120,0,33,1),(113,9,564,0,33,1),(114,9,119,0,34,1),(115,9,120,0,34,1),(116,9,564,0,34,1),(117,9,564,0,22,1),(118,9,564,0,23,1),(120,9,564,0,10,1),(121,9,564,0,12,1),(122,9,120,0,25,0),(123,9,564,0,25,1),(124,9,564,0,26,1),(125,9,564,0,8,1),(126,9,564,0,18,1),(127,9,564,0,4,1),(128,9,564,0,5,1),(129,9,564,0,16,1),(130,9,564,0,17,1),(131,9,564,0,19,1),(132,9,120,0,20,0),(133,9,564,0,20,1);
/*!40000 ALTER TABLE `catalog_category_entity_int` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_category_entity_text`
--

DROP TABLE IF EXISTS `catalog_category_entity_text`;
CREATE TABLE `catalog_category_entity_text` (
  `value_id` int(11) NOT NULL auto_increment,
  `entity_type_id` smallint(5) unsigned NOT NULL default '0',
  `attribute_id` smallint(5) unsigned NOT NULL default '0',
  `store_id` smallint(5) unsigned NOT NULL default '0',
  `entity_id` int(10) unsigned NOT NULL default '0',
  `value` text NOT NULL,
  PRIMARY KEY  (`value_id`),
  UNIQUE KEY `IDX_BASE` (`entity_type_id`,`entity_id`,`attribute_id`,`store_id`),
  KEY `FK_ATTRIBUTE_TEXT_ENTITY` (`entity_id`),
  KEY `FK_CATALOG_CATEGORY_ENTITY_TEXT_ATTRIBUTE` (`attribute_id`),
  KEY `FK_CATALOG_CATEGORY_ENTITY_TEXT_STORE` (`store_id`),
  CONSTRAINT `FK_CATALOG_CATEGORY_ENTITY_TEXT_ATTRIBUTE` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CATALOG_CATEGORY_ENTITY_TEXT_ENTITY` FOREIGN KEY (`entity_id`) REFERENCES `catalog_category_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CATALOG_CATEGORY_ENTITY_TEXT_STORE` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=958 DEFAULT CHARSET=utf8;

--
-- Dumping data for table `catalog_category_entity_text`
--

LOCK TABLES `catalog_category_entity_text` WRITE;
/*!40000 ALTER TABLE `catalog_category_entity_text` DISABLE KEYS */;
INSERT INTO `catalog_category_entity_text` VALUES (6,9,121,0,3,'3,18,4,5,16,17,19,24,10,22,23,13,8,12,26,25,15,20'),(11,9,121,0,4,'4'),(12,9,122,0,4,'4,18'),(15,9,123,0,3,'18,10,13,20'),(18,9,121,1,3,'3,18,4,5,16,17,19,24,10,22,23,13,8,12,26,25,15,20'),(19,9,123,1,3,'18,10,13,20'),(21,9,121,1,4,'4'),(22,9,122,1,4,'4,18'),(23,9,123,1,4,''),(25,9,121,0,5,'5,16,17'),(26,9,121,1,5,'5,16,17'),(27,9,122,0,5,'5,18'),(28,9,122,1,5,'5,18'),(30,9,123,1,5,'16,17'),(47,9,121,0,8,'8'),(48,9,121,1,8,'8'),(49,9,122,0,8,'8,13'),(50,9,122,1,8,'8,13'),(75,9,121,0,10,'10,22,23'),(76,9,121,1,10,'10,22,23'),(77,9,122,0,10,'10'),(78,9,122,1,10,'10'),(91,9,121,0,12,'12,26,25'),(92,9,121,1,12,'12,26,25'),(93,9,122,0,12,'12,13'),(94,9,122,1,12,'12,13'),(109,9,121,0,13,'13,8,12,26,25,15'),(110,9,121,1,13,'13,8,12,26,25,15'),(111,9,122,0,13,'13'),(112,9,122,1,13,'13'),(114,9,123,1,13,'8,12,15'),(122,9,123,0,13,'8,12,15'),(140,9,121,0,15,'15'),(141,9,121,1,15,'15'),(142,9,122,0,15,'15,13'),(143,9,122,1,15,'15,13'),(145,9,123,1,15,''),(159,9,121,0,16,'16'),(160,9,121,1,16,'16'),(161,9,122,0,16,'16,5,18'),(162,9,122,1,16,'16,5,18'),(164,9,123,1,16,''),(165,9,123,0,5,'16,17'),(168,9,121,0,17,'17'),(169,9,121,1,17,'17'),(170,9,122,0,17,'17,5,18'),(171,9,122,1,17,'17,5,18'),(176,9,121,0,18,'18,4,5,16,17,19,24'),(177,9,121,1,18,'18,4,5,16,17,19,24'),(178,9,122,0,18,'18'),(179,9,122,1,18,'18'),(181,9,123,1,18,'4,5,19,24'),(194,9,123,0,18,'4,5,19,24'),(311,9,121,0,19,'19'),(312,9,121,1,19,'19'),(313,9,122,0,19,'19,18'),(314,9,122,1,19,'19,18'),(316,9,123,1,19,''),(342,9,121,0,20,'20'),(343,9,121,1,20,'20'),(344,9,122,0,20,'20'),(345,9,122,1,20,'20'),(346,9,123,0,20,''),(347,9,123,1,20,''),(352,9,123,1,10,'22,23'),(426,9,123,1,8,''),(429,9,121,0,22,'22'),(430,9,122,0,22,'22,10'),(441,9,121,1,22,'22'),(442,9,122,1,22,'22,10'),(445,9,123,1,22,''),(458,9,123,0,10,'22,23'),(476,9,121,0,23,'23'),(477,9,121,1,23,'23'),(478,9,122,0,23,'23,10'),(479,9,122,1,23,'23,10'),(481,9,123,1,23,''),(514,9,123,0,22,''),(520,9,123,0,16,''),(530,9,123,0,4,''),(536,9,123,0,23,''),(539,9,123,0,19,''),(552,9,123,0,15,''),(558,9,123,1,12,'26,25'),(576,9,121,0,24,'24'),(577,9,121,1,24,'24'),(578,9,122,0,24,'24,18'),(579,9,122,1,24,'24,18'),(580,9,123,0,24,''),(581,9,123,1,24,''),(584,9,123,0,8,''),(587,9,112,0,25,'Random accessories for different electronic items'),(588,9,112,1,25,'Random accessories for different electronic items'),(589,9,115,0,25,'electric, accesories, gadgets'),(590,9,115,1,25,'electric, accesories, gadgets'),(591,9,121,0,25,'25'),(592,9,121,1,25,'25'),(593,9,122,0,25,'25,12,13'),(594,9,122,1,25,'25,12,13'),(596,9,123,1,25,''),(606,9,123,0,12,'26,25'),(609,9,123,0,25,''),(614,9,121,0,26,'26'),(615,9,121,1,26,'26'),(616,9,122,0,26,'26,12,13'),(617,9,122,1,26,'26,12,13'),(649,9,123,1,26,''),(654,9,121,2,3,'3,18,4,5,16,17,19,24,10,22,23,13,8,12,26,25,15,20'),(655,9,123,2,3,'18,10,13,20'),(657,9,121,2,18,'18,4,5,16,17,19,24'),(658,9,122,2,18,'18'),(659,9,123,2,18,'4,5,19,24'),(661,9,121,2,4,'4'),(662,9,122,2,4,'4,18'),(663,9,123,2,4,''),(666,9,121,2,5,'5,16,17'),(667,9,122,2,5,'5,18'),(668,9,123,2,5,'16,17'),(671,9,121,2,16,'16'),(672,9,122,2,16,'16,5,18'),(673,9,123,2,16,''),(678,9,121,2,17,'17'),(679,9,122,2,17,'17,5,18'),(680,9,123,2,17,''),(685,9,121,2,19,'19'),(686,9,122,2,19,'19,18'),(687,9,123,2,19,''),(690,9,121,2,24,'24'),(691,9,122,2,24,'24,18'),(692,9,123,2,24,''),(695,9,121,2,10,'10,22,23'),(696,9,122,2,10,'10'),(697,9,123,2,10,'22,23'),(699,9,121,2,22,'22'),(700,9,122,2,22,'22,10'),(701,9,123,2,22,''),(704,9,121,2,23,'23'),(705,9,122,2,23,'23,10'),(706,9,123,2,23,''),(709,9,121,2,13,'13,8,12,26,25,15'),(710,9,122,2,13,'13'),(711,9,123,2,13,'8,12,15'),(713,9,121,2,8,'8'),(714,9,122,2,8,'8,13'),(715,9,123,2,8,''),(718,9,121,2,12,'12,26,25'),(719,9,122,2,12,'12,13'),(720,9,123,2,12,'26,25'),(723,9,121,2,26,'26'),(724,9,122,2,26,'26,12,13'),(725,9,123,2,26,''),(730,9,112,2,25,'Random accessories for different electronic items'),(731,9,115,2,25,'electric, accesories, gadgets'),(732,9,121,2,25,'25'),(733,9,122,2,25,'25,12,13'),(734,9,123,2,25,''),(739,9,121,2,15,'15'),(740,9,122,2,15,'15,13'),(741,9,123,2,15,''),(744,9,121,2,20,'20'),(745,9,122,2,20,'20'),(746,9,123,2,20,''),(747,9,122,2,3,''),(748,9,121,3,3,'3,18,4,5,16,17,19,24,10,22,23,13,8,12,26,25,15,20'),(749,9,123,3,3,'18,10,13,20'),(751,9,121,3,18,'18,4,5,16,17,19,24'),(752,9,122,3,18,'18'),(753,9,123,3,18,'4,5,19,24'),(755,9,121,3,4,'4'),(756,9,122,3,4,'4,18'),(757,9,123,3,4,''),(760,9,121,3,5,'5,16,17'),(761,9,122,3,5,'5,18'),(762,9,123,3,5,'16,17'),(765,9,121,3,16,'16'),(766,9,122,3,16,'16,5,18'),(767,9,123,3,16,''),(772,9,121,3,17,'17'),(773,9,122,3,17,'17,5,18'),(774,9,123,3,17,''),(779,9,121,3,19,'19'),(780,9,122,3,19,'19,18'),(781,9,123,3,19,''),(784,9,121,3,24,'24'),(785,9,122,3,24,'24,18'),(786,9,123,3,24,''),(789,9,121,3,10,'10,22,23'),(790,9,122,3,10,'10'),(791,9,123,3,10,'22,23'),(793,9,121,3,22,'22'),(794,9,122,3,22,'22,10'),(795,9,123,3,22,''),(798,9,121,3,23,'23'),(799,9,122,3,23,'23,10'),(800,9,123,3,23,''),(803,9,121,3,13,'13,8,12,26,25,15'),(804,9,122,3,13,'13'),(805,9,123,3,13,'8,12,15'),(807,9,121,3,8,'8'),(808,9,122,3,8,'8,13'),(809,9,123,3,8,''),(812,9,121,3,12,'12,26,25'),(813,9,122,3,12,'12,13'),(814,9,123,3,12,'26,25'),(817,9,121,3,26,'26'),(818,9,122,3,26,'26,12,13'),(819,9,123,3,26,''),(824,9,112,3,25,'Random accessories for different electronic items'),(825,9,115,3,25,'electric, accesories, gadgets'),(826,9,121,3,25,'25'),(827,9,122,3,25,'25,12,13'),(828,9,123,3,25,''),(833,9,121,3,15,'15'),(834,9,122,3,15,'15,13'),(835,9,123,3,15,''),(838,9,121,3,20,'20'),(839,9,122,3,20,'20'),(840,9,123,3,20,''),(841,9,122,3,3,''),(842,9,123,0,26,''),(854,9,123,0,17,''),(858,9,122,0,3,''),(859,9,123,1,17,''),(863,9,122,1,3,''),(864,9,112,0,15,''),(865,9,115,0,15,''),(866,9,116,0,15,''),(867,9,530,0,15,''),(868,9,112,0,27,''),(869,9,115,0,27,''),(870,9,116,0,27,''),(871,9,530,0,27,''),(872,9,112,0,28,''),(873,9,115,0,28,''),(874,9,116,0,28,''),(875,9,530,0,28,''),(876,9,112,0,29,''),(877,9,115,0,29,''),(878,9,116,0,29,''),(879,9,530,0,29,''),(880,9,112,0,30,''),(881,9,115,0,30,''),(882,9,116,0,30,''),(883,9,530,0,30,''),(884,9,112,0,31,''),(885,9,115,0,31,''),(886,9,116,0,31,''),(887,9,530,0,31,''),(888,9,112,0,32,''),(889,9,115,0,32,''),(890,9,116,0,32,''),(891,9,530,0,32,''),(892,9,112,0,33,''),(893,9,115,0,33,''),(894,9,116,0,33,''),(895,9,530,0,33,''),(896,9,112,0,34,''),(897,9,115,0,34,''),(898,9,116,0,34,''),(899,9,530,0,34,''),(900,9,112,0,22,''),(901,9,115,0,22,''),(902,9,116,0,22,''),(903,9,530,0,22,''),(904,9,112,0,23,''),(905,9,115,0,23,''),(906,9,116,0,23,''),(907,9,530,0,23,''),(912,9,112,0,10,''),(913,9,115,0,10,''),(914,9,116,0,10,''),(915,9,530,0,10,''),(916,9,112,0,12,''),(917,9,115,0,12,''),(918,9,116,0,12,''),(919,9,530,0,12,''),(920,9,116,0,25,''),(921,9,530,0,25,''),(922,9,112,0,26,''),(923,9,115,0,26,''),(924,9,116,0,26,''),(925,9,530,0,26,''),(926,9,112,0,8,''),(927,9,115,0,8,''),(928,9,116,0,8,''),(929,9,530,0,8,''),(930,9,112,0,18,''),(931,9,115,0,18,''),(932,9,116,0,18,''),(933,9,530,0,18,''),(934,9,112,0,4,''),(935,9,115,0,4,''),(936,9,116,0,4,''),(937,9,530,0,4,''),(938,9,112,0,5,''),(939,9,115,0,5,''),(940,9,116,0,5,''),(941,9,530,0,5,''),(942,9,112,0,16,''),(943,9,115,0,16,''),(944,9,116,0,16,''),(945,9,530,0,16,''),(946,9,112,0,17,''),(947,9,115,0,17,''),(948,9,116,0,17,''),(949,9,530,0,17,''),(950,9,112,0,19,''),(951,9,115,0,19,''),(952,9,116,0,19,''),(953,9,530,0,19,''),(954,9,112,0,20,''),(955,9,115,0,20,''),(956,9,116,0,20,''),(957,9,530,0,20,'');
/*!40000 ALTER TABLE `catalog_category_entity_text` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_category_entity_varchar`
--

DROP TABLE IF EXISTS `catalog_category_entity_varchar`;
CREATE TABLE `catalog_category_entity_varchar` (
  `value_id` int(11) NOT NULL auto_increment,
  `entity_type_id` smallint(5) unsigned NOT NULL default '0',
  `attribute_id` smallint(5) unsigned NOT NULL default '0',
  `store_id` smallint(5) unsigned NOT NULL default '0',
  `entity_id` int(10) unsigned NOT NULL default '0',
  `value` varchar(255) NOT NULL default '',
  PRIMARY KEY  (`value_id`),
  UNIQUE KEY `IDX_BASE` USING BTREE (`entity_type_id`,`entity_id`,`attribute_id`,`store_id`),
  KEY `FK_ATTRIBUTE_VARCHAR_ENTITY` (`entity_id`),
  KEY `FK_CATALOG_CATEGORY_ENTITY_VARCHAR_ATTRIBUTE` (`attribute_id`),
  KEY `FK_CATALOG_CATEGORY_ENTITY_VARCHAR_STORE` (`store_id`),
  CONSTRAINT `FK_CATALOG_CATEGORY_ENTITY_VARCHAR_ATTRIBUTE` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CATALOG_CATEGORY_ENTITY_VARCHAR_ENTITY` FOREIGN KEY (`entity_id`) REFERENCES `catalog_category_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CATALOG_CATEGORY_ENTITY_VARCHAR_STORE` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=460 DEFAULT CHARSET=utf8;

--
-- Dumping data for table `catalog_category_entity_varchar`
--

LOCK TABLES `catalog_category_entity_varchar` WRITE;
/*!40000 ALTER TABLE `catalog_category_entity_varchar` DISABLE KEYS */;
INSERT INTO `catalog_category_entity_varchar` VALUES (4,9,111,0,3,'Root Catalog'),(5,9,118,0,3,'PRODUCTS'),(6,9,479,0,3,'root-catalog'),(7,9,111,0,4,'Shirts'),(8,9,118,0,4,'PRODUCTS'),(9,9,479,0,4,'shirts'),(16,9,111,0,5,'Shoes'),(18,9,118,0,5,'PRODUCTS'),(20,9,479,0,5,'shoes'),(31,9,111,0,8,'Cell Phones'),(33,9,118,0,8,'PRODUCTS_AND_PAGE'),(35,9,479,0,8,'cell-phones'),(43,9,111,0,10,'Furniture'),(45,9,118,0,10,'PRODUCTS'),(47,9,479,0,10,'furniture'),(55,9,111,0,12,'Cameras'),(57,9,118,0,12,'PRODUCTS'),(59,9,479,0,12,'cameras'),(61,9,111,0,13,'Electronics'),(63,9,118,0,13,'PAGE'),(65,9,479,0,13,'electronics'),(73,9,111,0,15,'Computers'),(75,9,118,0,15,'PRODUCTS'),(77,9,479,0,15,'computers'),(79,9,111,0,16,'Mens'),(81,9,118,0,16,'PRODUCTS'),(83,9,479,0,16,'mens'),(85,9,111,0,17,'Womens'),(87,9,118,0,17,'PRODUCTS'),(89,9,479,0,17,'womens'),(91,9,111,0,18,'Apparel'),(93,9,118,0,18,'PRODUCTS'),(95,9,479,0,18,'apparel'),(101,9,111,0,19,'Hoodies'),(103,9,118,0,19,'PRODUCTS'),(105,9,479,0,19,'hoodies'),(107,9,113,0,4,'shirts.jpg'),(109,9,113,0,12,'camera.jpg'),(110,9,111,0,20,'Household Items'),(112,9,118,0,20,'PRODUCTS'),(114,9,479,0,20,'household-items'),(119,9,111,0,22,'Living Room'),(120,9,118,0,22,'PRODUCTS_AND_PAGE'),(123,9,118,0,23,'PRODUCTS'),(125,9,111,0,23,'Bedroom'),(127,9,113,0,5,'shoes.jpg'),(131,9,113,0,23,'bedroom.jpg'),(133,9,113,0,18,'apparel.jpg'),(135,9,113,0,10,'furniture.jpg'),(137,9,514,0,13,'one_column'),(139,9,514,0,8,''),(141,9,111,0,24,'Pants'),(143,9,118,0,24,'PRODUCTS'),(145,9,111,0,25,'Accessories'),(147,9,118,0,25,'PRODUCTS'),(149,9,111,0,26,'Digital Cameras'),(151,9,118,0,26,'PRODUCTS'),(267,9,533,0,18,'apparel'),(271,9,533,0,4,'apparel/shirts'),(275,9,533,0,5,'apparel/shoes'),(279,9,533,0,16,'apparel/shoes/mens'),(283,9,533,0,17,'apparel/shoes/womens'),(287,9,533,0,19,'apparel/hoodies'),(291,9,533,0,10,'furniture'),(295,9,533,0,13,'electronics'),(299,9,533,0,8,'electronics/cell-phones'),(303,9,533,0,12,'electronics/cameras'),(307,9,533,0,15,'electronics/computers'),(311,9,533,0,20,'household-items'),(315,9,479,0,22,'living-room'),(317,9,533,0,22,'furniture/living-room'),(318,9,479,0,23,'bedroom'),(320,9,533,0,23,'furniture/bedroom'),(321,9,479,0,25,'accessories'),(323,9,533,0,25,'electronics/cameras/accessories'),(324,9,479,0,26,'digital-cameras'),(326,9,533,0,26,'electronics/cameras/digital-cameras'),(327,9,479,0,24,'pants'),(329,9,533,0,24,'apparel/pants'),(332,9,114,0,15,''),(333,9,563,0,15,''),(334,9,514,0,15,''),(335,9,111,0,27,'Build Your Own'),(336,9,114,0,27,''),(337,9,118,0,27,'PRODUCTS'),(338,9,479,0,27,'build-your-own'),(339,9,563,0,27,''),(340,9,514,0,27,''),(342,9,533,0,27,'electronics/computers/build-your-own'),(344,9,111,0,28,'Laptops'),(345,9,114,0,28,''),(346,9,118,0,28,'PRODUCTS'),(347,9,479,0,28,'laptops'),(348,9,563,0,28,''),(349,9,514,0,28,''),(351,9,533,0,28,'electronics/computers/laptops'),(352,9,111,0,29,'Hard Drives'),(353,9,114,0,29,''),(354,9,118,0,29,'PRODUCTS'),(355,9,479,0,29,'hard-drives'),(356,9,563,0,29,''),(357,9,514,0,29,''),(359,9,533,0,29,'electronics/computers/hard-drives'),(360,9,111,0,30,'Monitors'),(361,9,114,0,30,''),(362,9,118,0,30,'PRODUCTS'),(363,9,479,0,30,'monitors'),(364,9,563,0,30,''),(365,9,514,0,30,''),(367,9,533,0,30,'electronics/computers/monitors'),(368,9,111,0,31,'RAM / Memory'),(369,9,114,0,31,''),(370,9,118,0,31,'PRODUCTS'),(371,9,479,0,31,'ram-memory'),(372,9,563,0,31,''),(373,9,514,0,31,''),(375,9,533,0,31,'electronics/computers/ram-memory'),(376,9,111,0,32,'Cases'),(377,9,114,0,32,''),(378,9,118,0,32,'PRODUCTS'),(379,9,479,0,32,'cases'),(380,9,563,0,32,''),(381,9,514,0,32,''),(383,9,533,0,32,'electronics/computers/cases'),(384,9,111,0,33,'Processors'),(385,9,114,0,33,''),(386,9,118,0,33,'PRODUCTS'),(387,9,479,0,33,'processors'),(388,9,563,0,33,''),(389,9,514,0,33,''),(391,9,533,0,33,'electronics/computers/processors'),(392,9,111,0,34,'Peripherals'),(393,9,114,0,34,''),(394,9,118,0,34,'PRODUCTS'),(395,9,479,0,34,'peripherals'),(396,9,563,0,34,''),(397,9,514,0,34,''),(399,9,533,0,34,'electronics/computers/peripherals'),(400,9,114,0,22,''),(401,9,563,0,22,''),(402,9,514,0,22,''),(403,9,114,0,23,''),(404,9,563,0,23,''),(405,9,514,0,23,''),(420,9,114,0,10,''),(421,9,563,0,10,''),(422,9,514,0,10,''),(426,9,114,0,12,''),(427,9,563,0,12,''),(428,9,514,0,12,''),(431,9,114,0,25,''),(432,9,563,0,25,''),(433,9,514,0,25,''),(434,9,114,0,26,''),(435,9,563,0,26,''),(436,9,514,0,26,''),(437,9,114,0,8,''),(438,9,563,0,8,''),(439,9,114,0,18,''),(440,9,563,0,18,''),(441,9,514,0,18,''),(442,9,114,0,4,''),(443,9,563,0,4,''),(444,9,514,0,4,''),(445,9,114,0,5,''),(446,9,563,0,5,''),(447,9,514,0,5,''),(448,9,114,0,16,''),(449,9,563,0,16,''),(450,9,514,0,16,''),(451,9,114,0,17,''),(452,9,563,0,17,''),(453,9,514,0,17,''),(454,9,114,0,19,''),(455,9,563,0,19,''),(456,9,514,0,19,''),(457,9,114,0,20,''),(458,9,563,0,20,''),(459,9,514,0,20,'');
/*!40000 ALTER TABLE `catalog_category_entity_varchar` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_category_product`
--

DROP TABLE IF EXISTS `catalog_category_product`;
CREATE TABLE `catalog_category_product` (
  `category_id` int(10) unsigned NOT NULL default '0',
  `product_id` int(10) unsigned NOT NULL default '0',
  `position` int(10) unsigned NOT NULL default '0',
  UNIQUE KEY `UNQ_CATEGORY_PRODUCT` (`category_id`,`product_id`),
  KEY `CATALOG_CATEGORY_PRODUCT_CATEGORY` (`category_id`),
  KEY `CATALOG_CATEGORY_PRODUCT_PRODUCT` (`product_id`),
  CONSTRAINT `CATALOG_CATEGORY_PRODUCT_CATEGORY` FOREIGN KEY (`category_id`) REFERENCES `catalog_category_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `CATALOG_CATEGORY_PRODUCT_PRODUCT` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

--
-- Dumping data for table `catalog_category_product`
--

LOCK TABLES `catalog_category_product` WRITE;
/*!40000 ALTER TABLE `catalog_category_product` DISABLE KEYS */;
INSERT INTO `catalog_category_product` VALUES (4,35,0),(4,36,0),(4,37,0),(4,38,0),(4,117,0),(4,118,0),(4,119,0),(4,120,0),(4,121,0),(4,122,0),(4,123,0),(4,124,0),(4,125,0),(4,126,0),(4,127,0),(4,128,0),(4,129,0),(4,130,0),(4,131,0),(8,16,0),(8,17,0),(8,18,0),(8,19,0),(8,20,0),(8,166,0),(12,46,0),(15,25,0),(15,26,0),(15,28,3),(15,140,0),(15,141,0),(15,143,0),(15,163,0),(16,30,0),(16,34,0),(16,83,0),(16,84,0),(16,85,0),(16,86,0),(16,87,0),(16,88,0),(16,89,0),(16,90,0),(16,91,0),(16,92,0),(16,93,0),(16,94,0),(16,95,0),(16,96,0),(16,97,0),(16,98,0),(16,99,0),(16,100,0),(16,101,0),(16,102,0),(17,31,2),(17,32,2),(17,33,2),(17,49,2),(17,74,2),(17,75,2),(17,79,2),(17,80,2),(17,81,2),(17,82,2),(17,83,2),(17,84,2),(17,85,2),(17,86,2),(17,87,2),(17,88,2),(17,89,2),(17,90,2),(17,91,2),(17,92,2),(17,103,2),(17,104,2),(17,105,2),(17,106,2),(17,107,2),(17,108,2),(17,109,2),(17,110,2),(17,111,2),(17,112,2),(17,113,2),(17,114,2),(17,115,2),(17,135,1),(19,39,0),(22,51,0),(22,52,0),(22,53,0),(22,54,0),(23,41,0),(23,42,0),(25,132,0),(25,133,0),(25,134,0),(26,44,0),(26,45,0),(26,46,0),(26,47,0),(26,48,0),(27,163,0),(27,164,0),(27,165,0),(28,25,0),(28,26,0),(28,28,0),(28,158,0),(29,149,0),(29,150,0),(29,154,0),(29,155,0),(30,147,0),(30,152,0),(30,156,0),(30,157,0),(31,140,0),(31,141,0),(31,143,0),(32,138,0),(32,139,0),(33,145,0),(33,148,0),(33,151,0),(33,153,0),(34,159,0),(34,160,0),(34,161,0),(34,162,0);
/*!40000 ALTER TABLE `catalog_category_product` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_category_product_index`
--

DROP TABLE IF EXISTS `catalog_category_product_index`;
CREATE TABLE `catalog_category_product_index` (
  `category_id` int(10) unsigned NOT NULL default '0',
  `product_id` int(10) unsigned NOT NULL default '0',
  `position` int(10) unsigned NOT NULL default '0',
  `is_parent` tinyint(1) unsigned NOT NULL default '0',
  UNIQUE KEY `UNQ_CATEGORY_PRODUCT` (`category_id`,`product_id`),
  KEY `IDX_CATEGORY_POSITION` (`category_id`,`position`),
  KEY `FK_CATALOG_CATEGORY_PRODUCT_INDEX_PRODUCT_ENTITY` (`product_id`),
  CONSTRAINT `FK_CATALOG_CATEGORY_PRODUCT_INDEX_PRODUCT_ENTITY` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CATALOG_CATEGORY_PRODUCT_INDEX_CATEGORY_ENTITY` FOREIGN KEY (`category_id`) REFERENCES `catalog_category_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

--
-- Dumping data for table `catalog_category_product_index`
--

LOCK TABLES `catalog_category_product_index` WRITE;
/*!40000 ALTER TABLE `catalog_category_product_index` DISABLE KEYS */;
INSERT INTO `catalog_category_product_index` VALUES (1,16,0,0),(1,17,0,0),(1,18,0,0),(1,19,0,0),(1,20,0,0),(1,25,0,0),(1,26,0,0),(1,28,3,0),(1,30,0,0),(1,31,2,0),(1,32,2,0),(1,33,2,0),(1,34,0,0),(1,35,0,0),(1,36,0,0),(1,37,0,0),(1,38,0,0),(1,39,0,0),(1,41,0,0),(1,42,0,0),(1,44,0,0),(1,45,0,0),(1,46,0,0),(1,47,0,0),(1,48,0,0),(1,49,2,0),(1,51,0,0),(1,52,0,0),(1,53,0,0),(1,54,0,0),(1,74,2,0),(1,75,2,0),(1,79,2,0),(1,80,2,0),(1,81,2,0),(1,82,2,0),(1,83,0,0),(1,84,0,0),(1,85,0,0),(1,86,0,0),(1,87,0,0),(1,88,0,0),(1,89,0,0),(1,90,0,0),(1,91,0,0),(1,92,0,0),(1,93,0,0),(1,94,0,0),(1,95,0,0),(1,96,0,0),(1,97,0,0),(1,98,0,0),(1,99,0,0),(1,100,0,0),(1,101,0,0),(1,102,0,0),(1,103,2,0),(1,104,2,0),(1,105,2,0),(1,106,2,0),(1,107,2,0),(1,108,2,0),(1,109,2,0),(1,110,2,0),(1,111,2,0),(1,112,2,0),(1,113,2,0),(1,114,2,0),(1,115,2,0),(1,117,0,0),(1,118,0,0),(1,119,0,0),(1,120,0,0),(1,121,0,0),(1,122,0,0),(1,123,0,0),(1,124,0,0),(1,125,0,0),(1,126,0,0),(1,127,0,0),(1,128,0,0),(1,129,0,0),(1,130,0,0),(1,131,0,0),(1,132,0,0),(1,133,0,0),(1,134,0,0),(1,135,1,0),(1,138,0,0),(1,139,0,0),(1,140,0,0),(1,141,0,0),(1,143,0,0),(1,145,0,0),(1,147,0,0),(1,148,0,0),(1,149,0,0),(1,150,0,0),(1,151,0,0),(1,152,0,0),(1,153,0,0),(1,154,0,0),(1,155,0,0),(1,156,0,0),(1,157,0,0),(1,158,0,0),(1,159,0,0),(1,160,0,0),(1,161,0,0),(1,162,0,0),(1,163,0,0),(1,164,0,0),(1,165,0,0),(1,166,0,0),(3,16,0,0),(3,17,0,0),(3,18,0,0),(3,19,0,0),(3,20,0,0),(3,25,0,0),(3,26,0,0),(3,28,3,0),(3,30,0,0),(3,31,2,0),(3,32,2,0),(3,33,2,0),(3,34,0,0),(3,35,0,0),(3,36,0,0),(3,37,0,0),(3,38,0,0),(3,39,0,0),(3,41,0,0),(3,42,0,0),(3,44,0,0),(3,45,0,0),(3,46,0,0),(3,47,0,0),(3,48,0,0),(3,49,2,0),(3,51,0,0),(3,52,0,0),(3,53,0,0),(3,54,0,0),(3,74,2,0),(3,75,2,0),(3,79,2,0),(3,80,2,0),(3,81,2,0),(3,82,2,0),(3,83,0,0),(3,84,0,0),(3,85,0,0),(3,86,0,0),(3,87,0,0),(3,88,0,0),(3,89,0,0),(3,90,0,0),(3,91,0,0),(3,92,0,0),(3,93,0,0),(3,94,0,0),(3,95,0,0),(3,96,0,0),(3,97,0,0),(3,98,0,0),(3,99,0,0),(3,100,0,0),(3,101,0,0),(3,102,0,0),(3,103,2,0),(3,104,2,0),(3,105,2,0),(3,106,2,0),(3,107,2,0),(3,108,2,0),(3,109,2,0),(3,110,2,0),(3,111,2,0),(3,112,2,0),(3,113,2,0),(3,114,2,0),(3,115,2,0),(3,117,0,0),(3,118,0,0),(3,119,0,0),(3,120,0,0),(3,121,0,0),(3,122,0,0),(3,123,0,0),(3,124,0,0),(3,125,0,0),(3,126,0,0),(3,127,0,0),(3,128,0,0),(3,129,0,0),(3,130,0,0),(3,131,0,0),(3,132,0,0),(3,133,0,0),(3,134,0,0),(3,135,1,0),(3,138,0,0),(3,139,0,0),(3,140,0,0),(3,141,0,0),(3,143,0,0),(3,145,0,0),(3,147,0,0),(3,148,0,0),(3,149,0,0),(3,150,0,0),(3,151,0,0),(3,152,0,0),(3,153,0,0),(3,154,0,0),(3,155,0,0),(3,156,0,0),(3,157,0,0),(3,158,0,0),(3,159,0,0),(3,160,0,0),(3,161,0,0),(3,162,0,0),(3,163,0,0),(3,164,0,0),(3,165,0,0),(3,166,0,0),(4,35,0,1),(4,36,0,1),(4,37,0,1),(4,38,0,1),(4,117,0,1),(4,118,0,1),(4,119,0,1),(4,120,0,1),(4,121,0,1),(4,122,0,1),(4,123,0,1),(4,124,0,1),(4,125,0,1),(4,126,0,1),(4,127,0,1),(4,128,0,1),(4,129,0,1),(4,130,0,1),(4,131,0,1),(5,30,0,0),(5,31,2,0),(5,32,2,0),(5,33,2,0),(5,34,0,0),(5,49,2,0),(5,74,2,0),(5,75,2,0),(5,79,2,0),(5,80,2,0),(5,81,2,0),(5,82,2,0),(5,83,0,0),(5,84,0,0),(5,85,0,0),(5,86,0,0),(5,87,0,0),(5,88,0,0),(5,89,0,0),(5,90,0,0),(5,91,0,0),(5,92,0,0),(5,93,0,0),(5,94,0,0),(5,95,0,0),(5,96,0,0),(5,97,0,0),(5,98,0,0),(5,99,0,0),(5,100,0,0),(5,101,0,0),(5,102,0,0),(5,103,2,0),(5,104,2,0),(5,105,2,0),(5,106,2,0),(5,107,2,0),(5,108,2,0),(5,109,2,0),(5,110,2,0),(5,111,2,0),(5,112,2,0),(5,113,2,0),(5,114,2,0),(5,115,2,0),(5,135,1,0),(8,16,0,1),(8,17,0,1),(8,18,0,1),(8,19,0,1),(8,20,0,1),(8,166,0,1),(10,41,0,0),(10,42,0,0),(10,51,0,0),(10,52,0,0),(10,53,0,0),(10,54,0,0),(12,44,0,0),(12,45,0,0),(12,46,0,1),(12,47,0,0),(12,48,0,0),(12,132,0,0),(12,133,0,0),(12,134,0,0),(13,16,0,0),(13,17,0,0),(13,18,0,0),(13,19,0,0),(13,20,0,0),(13,25,0,0),(13,26,0,0),(13,28,3,0),(13,44,0,0),(13,45,0,0),(13,46,0,0),(13,47,0,0),(13,48,0,0),(13,132,0,0),(13,133,0,0),(13,134,0,0),(13,138,0,0),(13,139,0,0),(13,140,0,0),(13,141,0,0),(13,143,0,0),(13,145,0,0),(13,147,0,0),(13,148,0,0),(13,149,0,0),(13,150,0,0),(13,151,0,0),(13,152,0,0),(13,153,0,0),(13,154,0,0),(13,155,0,0),(13,156,0,0),(13,157,0,0),(13,158,0,0),(13,159,0,0),(13,160,0,0),(13,161,0,0),(13,162,0,0),(13,163,0,0),(13,164,0,0),(13,165,0,0),(13,166,0,0),(15,25,0,1),(15,26,0,1),(15,28,3,1),(15,138,0,0),(15,139,0,0),(15,140,0,1),(15,141,0,1),(15,143,0,1),(15,145,0,0),(15,147,0,0),(15,148,0,0),(15,149,0,0),(15,150,0,0),(15,151,0,0),(15,152,0,0),(15,153,0,0),(15,154,0,0),(15,155,0,0),(15,156,0,0),(15,157,0,0),(15,158,0,0),(15,159,0,0),(15,160,0,0),(15,161,0,0),(15,162,0,0),(15,163,0,1),(15,164,0,0),(15,165,0,0),(16,30,0,1),(16,34,0,1),(16,83,0,1),(16,84,0,1),(16,85,0,1),(16,86,0,1),(16,87,0,1),(16,88,0,1),(16,89,0,1),(16,90,0,1),(16,91,0,1),(16,92,0,1),(16,93,0,1),(16,94,0,1),(16,95,0,1),(16,96,0,1),(16,97,0,1),(16,98,0,1),(16,99,0,1),(16,100,0,1),(16,101,0,1),(16,102,0,1),(17,31,2,1),(17,32,2,1),(17,33,2,1),(17,49,2,1),(17,74,2,1),(17,75,2,1),(17,79,2,1),(17,80,2,1),(17,81,2,1),(17,82,2,1),(17,83,2,1),(17,84,2,1),(17,85,2,1),(17,86,2,1),(17,87,2,1),(17,88,2,1),(17,89,2,1),(17,90,2,1),(17,91,2,1),(17,92,2,1),(17,103,2,1),(17,104,2,1),(17,105,2,1),(17,106,2,1),(17,107,2,1),(17,108,2,1),(17,109,2,1),(17,110,2,1),(17,111,2,1),(17,112,2,1),(17,113,2,1),(17,114,2,1),(17,115,2,1),(17,135,1,1),(18,30,0,0),(18,31,2,0),(18,32,2,0),(18,33,2,0),(18,34,0,0),(18,35,0,0),(18,36,0,0),(18,37,0,0),(18,38,0,0),(18,39,0,0),(18,49,2,0),(18,74,2,0),(18,75,2,0),(18,79,2,0),(18,80,2,0),(18,81,2,0),(18,82,2,0),(18,83,0,0),(18,84,0,0),(18,85,0,0),(18,86,0,0),(18,87,0,0),(18,88,0,0),(18,89,0,0),(18,90,0,0),(18,91,0,0),(18,92,0,0),(18,93,0,0),(18,94,0,0),(18,95,0,0),(18,96,0,0),(18,97,0,0),(18,98,0,0),(18,99,0,0),(18,100,0,0),(18,101,0,0),(18,102,0,0),(18,103,2,0),(18,104,2,0),(18,105,2,0),(18,106,2,0),(18,107,2,0),(18,108,2,0),(18,109,2,0),(18,110,2,0),(18,111,2,0),(18,112,2,0),(18,113,2,0),(18,114,2,0),(18,115,2,0),(18,117,0,0),(18,118,0,0),(18,119,0,0),(18,120,0,0),(18,121,0,0),(18,122,0,0),(18,123,0,0),(18,124,0,0),(18,125,0,0),(18,126,0,0),(18,127,0,0),(18,128,0,0),(18,129,0,0),(18,130,0,0),(18,131,0,0),(18,135,1,0),(19,39,0,1),(22,51,0,1),(22,52,0,1),(22,53,0,1),(22,54,0,1),(23,41,0,1),(23,42,0,1),(25,132,0,1),(25,133,0,1),(25,134,0,1),(26,44,0,1),(26,45,0,1),(26,46,0,1),(26,47,0,1),(26,48,0,1),(27,163,0,1),(27,164,0,1),(27,165,0,1),(28,25,0,1),(28,26,0,1),(28,28,0,1),(28,158,0,1),(29,149,0,1),(29,150,0,1),(29,154,0,1),(29,155,0,1),(30,147,0,1),(30,152,0,1),(30,156,0,1),(30,157,0,1),(31,140,0,1),(31,141,0,1),(31,143,0,1),(32,138,0,1),(32,139,0,1),(33,145,0,1),(33,148,0,1),(33,151,0,1),(33,153,0,1),(34,159,0,1),(34,160,0,1),(34,161,0,1),(34,162,0,1);
/*!40000 ALTER TABLE `catalog_category_product_index` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_compare_item`
--

DROP TABLE IF EXISTS `catalog_compare_item`;
CREATE TABLE `catalog_compare_item` (
  `catalog_compare_item_id` int(11) unsigned NOT NULL auto_increment,
  `visitor_id` int(11) unsigned NOT NULL default '0',
  `customer_id` int(11) unsigned default NULL,
  `product_id` int(11) unsigned NOT NULL default '0',
  PRIMARY KEY  (`catalog_compare_item_id`),
  KEY `FK_CATALOG_COMPARE_ITEM_CUSTOMER` (`customer_id`),
  KEY `FK_CATALOG_COMPARE_ITEM_PRODUCT` (`product_id`),
  KEY `IDX_VISITOR_PRODUCTS` (`visitor_id`,`product_id`),
  KEY `IDX_CUSTOMER_PRODUCTS` (`customer_id`,`product_id`),
  CONSTRAINT `FK_CATALOG_COMPARE_ITEM_CUSTOMER` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CATALOG_COMPARE_ITEM_PRODUCT` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

--
-- Table structure for table `catalog_product_bundle_option`
--

DROP TABLE IF EXISTS `catalog_product_bundle_option`;
CREATE TABLE `catalog_product_bundle_option` (
  `option_id` int(10) unsigned NOT NULL auto_increment,
  `parent_id` int(10) unsigned NOT NULL,
  `required` tinyint(1) unsigned NOT NULL default '0',
  `position` int(10) unsigned NOT NULL default '0',
  `type` varchar(255) NOT NULL default '',
  PRIMARY KEY  (`option_id`),
  KEY `FK_CATALOG_PRODUCT_BUNDLE_OPTION_PARENT` (`parent_id`),
  CONSTRAINT `FK_CATALOG_PRODUCT_BUNDLE_OPTION_PARENT` FOREIGN KEY (`parent_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=23 DEFAULT CHARSET=utf8 COMMENT='Bundle Options';

--
-- Dumping data for table `catalog_product_bundle_option`
--

LOCK TABLES `catalog_product_bundle_option` WRITE;
/*!40000 ALTER TABLE `catalog_product_bundle_option` DISABLE KEYS */;
INSERT INTO `catalog_product_bundle_option` VALUES (1,158,0,10,'radio'),(2,158,1,0,'radio'),(3,163,0,11,'multi'),(4,163,0,10,'radio'),(5,163,0,7,'checkbox'),(6,163,0,5,'radio'),(7,163,1,4,'radio'),(8,163,1,3,'radio'),(9,163,1,2,'radio'),(10,163,1,1,'radio'),(11,164,1,4,'select'),(12,164,1,5,'multi'),(13,164,0,8,'checkbox'),(14,165,1,4,'checkbox'),(15,165,1,3,'radio'),(16,165,1,2,'radio'),(17,165,1,1,'select'),(20,164,1,3,'radio'),(21,164,1,1,'radio'),(22,165,1,1,'select');
/*!40000 ALTER TABLE `catalog_product_bundle_option` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_bundle_option_value`
--

DROP TABLE IF EXISTS `catalog_product_bundle_option_value`;
CREATE TABLE `catalog_product_bundle_option_value` (
  `value_id` int(10) unsigned NOT NULL auto_increment,
  `option_id` int(10) unsigned NOT NULL,
  `store_id` smallint(5) unsigned NOT NULL,
  `title` varchar(255) NOT NULL default '',
  PRIMARY KEY  (`value_id`),
  KEY `FK_CATALOG_PRODUCT_BUNDLE_OPTION_VALUE_OPTION` (`option_id`),
  CONSTRAINT `FK_CATALOG_PRODUCT_BUNDLE_OPTION_VALUE_OPTION` FOREIGN KEY (`option_id`) REFERENCES `catalog_product_bundle_option` (`option_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=101 DEFAULT CHARSET=utf8 COMMENT='Bundle Selections';

--
-- Dumping data for table `catalog_product_bundle_option_value`
--

LOCK TABLES `catalog_product_bundle_option_value` WRITE;
/*!40000 ALTER TABLE `catalog_product_bundle_option_value` DISABLE KEYS */;
INSERT INTO `catalog_product_bundle_option_value` VALUES (1,1,0,'Waranty'),(2,2,0,'Laptop'),(27,21,0,'Case'),(28,20,0,'CPU'),(29,11,0,'RAM'),(30,12,0,'Hard Drive'),(31,13,0,'Peripherals'),(68,10,0,'Case'),(69,9,0,'Processor'),(70,8,0,'Memory'),(71,7,0,'Hard Drive'),(72,6,0,'Hard Drive 2'),(73,5,0,'Peripherals'),(74,4,0,'Monitor'),(75,3,0,'Warranty'),(96,17,0,'Case'),(97,22,0,'CPU'),(98,16,0,'Hard Drive'),(99,15,0,'Ram'),(100,14,0,'Monitor');
/*!40000 ALTER TABLE `catalog_product_bundle_option_value` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_bundle_selection`
--

DROP TABLE IF EXISTS `catalog_product_bundle_selection`;
CREATE TABLE `catalog_product_bundle_selection` (
  `selection_id` int(10) unsigned NOT NULL auto_increment,
  `option_id` int(10) unsigned NOT NULL,
  `parent_product_id` int(10) unsigned NOT NULL,
  `product_id` int(10) unsigned NOT NULL,
  `position` int(10) unsigned NOT NULL default '0',
  `is_default` tinyint(1) unsigned NOT NULL default '0',
  `selection_price_type` tinyint(1) unsigned NOT NULL default '0',
  `selection_price_value` decimal(12,4) NOT NULL default '0.0000',
  `selection_qty` decimal(12,4) NOT NULL default '0.0000',
  `selection_can_change_qty` tinyint(1) NOT NULL default '0',
  PRIMARY KEY  (`selection_id`),
  KEY `FK_CATALOG_PRODUCT_BUNDLE_SELECTION_OPTION` (`option_id`),
  KEY `FK_CATALOG_PRODUCT_BUNDLE_SELECTION_PRODUCT` (`product_id`),
  CONSTRAINT `FK_CATALOG_PRODUCT_BUNDLE_SELECTION_OPTION` FOREIGN KEY (`option_id`) REFERENCES `catalog_product_bundle_option` (`option_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CATALOG_PRODUCT_BUNDLE_SELECTION_PRODUCT` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=63 DEFAULT CHARSET=utf8 COMMENT='Bundle Selections';

--
-- Dumping data for table `catalog_product_bundle_selection`
--

LOCK TABLES `catalog_product_bundle_selection` WRITE;
/*!40000 ALTER TABLE `catalog_product_bundle_selection` DISABLE KEYS */;
INSERT INTO `catalog_product_bundle_selection` VALUES (1,1,158,146,20,0,0,'0.0000','1.0000',0),(2,1,158,142,0,0,0,'0.0000','1.0000',0),(3,1,158,144,10,0,0,'0.0000','1.0000',0),(4,2,158,27,0,0,0,'0.0000','1.0000',0),(5,3,163,142,0,0,0,'0.0000','1.0000',1),(6,4,163,157,0,0,0,'0.0000','1.0000',1),(7,4,163,156,0,0,0,'0.0000','1.0000',1),(8,4,163,152,0,0,0,'0.0000','1.0000',1),(9,4,163,147,0,0,0,'0.0000','1.0000',1),(10,5,163,162,50,0,0,'0.0000','1.0000',1),(11,5,163,159,0,0,0,'0.0000','1.0000',1),(12,5,163,161,0,0,0,'0.0000','1.0000',1),(13,5,163,160,100,0,0,'0.0000','1.0000',1),(14,6,163,149,0,0,0,'0.0000','1.0000',1),(15,6,163,154,0,1,0,'0.0000','1.0000',1),(16,7,163,155,0,1,0,'0.0000','1.0000',0),(17,7,163,150,0,0,0,'0.0000','1.0000',0),(18,8,163,143,0,0,0,'0.0000','1.0000',0),(19,8,163,141,0,1,0,'0.0000','1.0000',0),(20,8,163,140,0,0,0,'0.0000','1.0000',0),(21,9,163,148,0,0,0,'0.0000','1.0000',0),(22,9,163,145,0,0,0,'0.0000','1.0000',0),(23,9,163,153,0,1,0,'0.0000','1.0000',0),(24,9,163,151,0,0,0,'0.0000','1.0000',0),(25,10,163,138,0,1,0,'0.0000','1.0000',0),(26,10,163,139,0,0,0,'0.0000','1.0000',0),(27,11,164,143,0,0,0,'0.0000','1.0000',0),(28,11,164,141,0,0,0,'75.0000','1.0000',0),(29,11,164,140,0,0,0,'150.0000','1.0000',0),(30,12,164,149,0,0,0,'250.0000','1.0000',1),(31,12,164,154,0,0,0,'0.0000','1.0000',1),(32,13,164,161,0,0,0,'199.0000','1.0000',1),(33,13,164,160,0,0,0,'50.0000','1.0000',1),(34,13,164,162,0,0,0,'0.0000','1.0000',1),(35,13,164,159,0,0,0,'0.0000','1.0000',1),(36,14,165,157,0,0,0,'0.0000','1.0000',1),(37,14,165,156,0,0,0,'0.0000','1.0000',1),(38,14,165,152,0,0,0,'0.0000','1.0000',1),(39,14,165,147,0,0,0,'0.0000','1.0000',1),(40,15,165,143,0,0,0,'0.0000','1.0000',0),(41,15,165,141,0,0,0,'0.0000','1.0000',0),(42,15,165,140,0,0,0,'0.0000','1.0000',0),(43,16,165,149,0,0,0,'0.0000','1.0000',1),(44,16,165,150,0,0,0,'0.0000','1.0000',1),(45,16,165,154,0,0,0,'0.0000','1.0000',1),(46,16,165,155,0,0,0,'0.0000','1.0000',1),(47,17,165,138,0,0,0,'0.0000','1.0000',0),(48,17,165,139,0,0,0,'0.0000','1.0000',0),(54,20,164,153,0,0,0,'700.0000','1.0000',0),(55,20,164,151,0,0,0,'200.0000','1.0000',0),(56,20,164,148,0,0,0,'100.0000','1.0000',0),(57,20,164,145,0,0,0,'0.0000','1.0000',0),(58,21,164,139,0,0,0,'0.0000','1.0000',0),(59,22,165,145,0,0,0,'0.0000','1.0000',0),(60,22,165,151,0,0,0,'0.0000','1.0000',0),(61,22,165,148,0,0,0,'0.0000','1.0000',0),(62,22,165,153,0,0,0,'0.0000','1.0000',0);
/*!40000 ALTER TABLE `catalog_product_bundle_selection` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_enabled_index`
--

DROP TABLE IF EXISTS `catalog_product_enabled_index`;
CREATE TABLE `catalog_product_enabled_index` (
  `product_id` int(10) unsigned NOT NULL default '0',
  `store_id` smallint(5) unsigned NOT NULL default '0',
  `visibility` smallint(5) unsigned NOT NULL default '0',
  UNIQUE KEY `UNQ_PRODUCT_STORE` (`product_id`,`store_id`),
  KEY `IDX_PRODUCT_VISIBILITY_IN_STORE` (`product_id`,`store_id`,`visibility`),
  KEY `FK_CATALOG_PRODUCT_ENABLED_INDEX_STORE` (`store_id`),
  CONSTRAINT `FK_CATALOG_PRODUCT_ENABLED_INDEX_PRODUCT_ENTITY` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CATALOG_PRODUCT_ENABLED_INDEX_STORE` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

--
-- Dumping data for table `catalog_product_enabled_index`
--

LOCK TABLES `catalog_product_enabled_index` WRITE;
/*!40000 ALTER TABLE `catalog_product_enabled_index` DISABLE KEYS */;
INSERT INTO `catalog_product_enabled_index` VALUES (16,1,4),(16,2,4),(16,3,4),(17,1,4),(17,2,4),(17,3,4),(18,1,4),(18,2,4),(18,3,4),(19,1,4),(19,2,4),(19,3,4),(20,1,4),(20,2,4),(20,3,4),(25,1,4),(25,2,4),(25,3,4),(26,1,4),(26,2,4),(26,3,4),(27,1,4),(27,2,4),(27,3,4),(28,1,4),(28,2,4),(28,3,4),(29,1,1),(29,2,1),(29,3,1),(30,1,1),(30,2,1),(30,3,1),(31,1,1),(31,2,1),(31,3,1),(32,1,1),(32,2,1),(32,3,1),(33,1,1),(33,2,1),(33,3,1),(34,1,1),(34,2,1),(34,3,1),(35,1,1),(35,2,1),(35,3,1),(36,1,1),(36,2,1),(36,3,1),(37,1,1),(37,2,1),(37,3,1),(38,1,1),(38,2,1),(38,3,1),(39,1,4),(39,2,4),(39,3,4),(41,1,4),(41,2,4),(41,3,4),(42,1,4),(42,2,4),(42,3,4),(44,1,4),(44,2,4),(44,3,4),(45,1,4),(45,2,4),(45,3,4),(46,1,4),(46,2,4),(46,3,4),(47,1,4),(47,2,4),(47,3,4),(48,1,4),(48,2,4),(48,3,4),(49,1,1),(49,2,1),(49,3,1),(51,1,4),(51,2,4),(51,3,4),(52,1,4),(52,2,4),(52,3,4),(53,1,4),(53,2,4),(53,3,4),(54,1,4),(54,2,4),(54,3,4),(74,1,1),(74,2,1),(74,3,1),(75,1,1),(75,2,1),(75,3,1),(79,1,1),(79,2,1),(79,3,1),(80,1,1),(80,2,1),(80,3,1),(81,1,1),(81,2,1),(81,3,1),(82,1,1),(82,2,1),(82,3,1),(83,1,4),(83,2,4),(83,3,4),(84,1,1),(84,2,1),(84,3,1),(85,1,1),(85,2,1),(85,3,1),(86,1,1),(86,2,1),(86,3,1),(87,1,1),(87,2,1),(87,3,1),(88,1,1),(88,2,1),(88,3,1),(89,1,1),(89,2,1),(89,3,1),(90,1,1),(90,2,1),(90,3,1),(91,1,1),(91,2,1),(91,3,1),(92,1,1),(92,2,1),(92,3,1),(93,1,4),(93,2,4),(93,3,4),(94,1,1),(94,2,1),(94,3,1),(95,1,1),(95,2,1),(95,3,1),(96,1,1),(96,2,1),(96,3,1),(97,1,1),(97,2,1),(97,3,1),(98,1,4),(98,2,4),(98,3,4),(99,1,1),(99,2,1),(99,3,1),(100,1,1),(100,2,1),(100,3,1),(101,1,1),(101,2,1),(101,3,1),(102,1,1),(102,2,1),(102,3,1),(103,1,4),(103,2,4),(103,3,4),(104,1,1),(104,2,1),(104,3,1),(105,1,1),(105,2,1),(105,3,1),(106,1,1),(106,2,1),(106,3,1),(107,1,1),(107,2,1),(107,3,1),(108,1,4),(108,2,4),(108,3,4),(109,1,1),(109,2,1),(109,3,1),(110,1,1),(110,2,1),(110,3,1),(111,1,1),(111,2,1),(111,3,1),(112,1,4),(112,2,4),(112,3,4),(113,1,1),(113,2,1),(113,3,1),(114,1,1),(114,2,1),(114,3,1),(115,1,1),(115,2,1),(115,3,1),(117,1,1),(117,2,1),(117,3,1),(118,1,1),(118,2,1),(118,3,1),(119,1,4),(119,2,4),(119,3,4),(120,1,4),(120,2,4),(120,3,4),(121,1,1),(121,2,1),(121,3,1),(122,1,1),(122,2,1),(122,3,1),(123,1,4),(123,2,4),(123,3,4),(124,1,1),(124,2,1),(124,3,1),(125,1,1),(125,2,1),(125,3,1),(126,1,4),(126,2,4),(126,3,4),(127,1,1),(127,2,1),(127,3,1),(128,1,1),(128,2,1),(128,3,1),(129,1,1),(129,2,1),(129,3,1),(130,1,1),(130,2,1),(130,3,1),(131,1,1),(131,2,1),(131,3,1),(132,1,4),(132,2,4),(132,3,4),(133,1,4),(133,2,4),(133,3,4),(134,1,4),(134,2,4),(134,3,4),(135,1,4),(135,2,4),(135,3,4),(138,1,4),(138,2,4),(138,3,4),(139,1,4),(139,2,4),(139,3,4),(140,1,4),(140,2,4),(140,3,4),(141,1,4),(141,2,4),(141,3,4),(142,1,1),(142,2,1),(142,3,1),(143,1,4),(143,2,4),(143,3,4),(144,1,1),(144,2,1),(144,3,1),(145,1,4),(145,2,4),(145,3,4),(146,1,1),(146,2,1),(146,3,1),(147,1,4),(147,2,4),(147,3,4),(148,1,4),(148,2,4),(148,3,4),(149,1,4),(149,2,4),(149,3,4),(150,1,4),(150,2,4),(150,3,4),(151,1,4),(151,2,4),(151,3,4),(152,1,4),(152,2,4),(152,3,4),(153,1,4),(153,2,4),(153,3,4),(154,1,4),(154,2,4),(154,3,4),(155,1,4),(155,2,4),(155,3,4),(156,1,4),(156,2,4),(156,3,4),(157,1,4),(157,2,4),(157,3,4),(158,1,4),(158,2,4),(158,3,4),(159,1,4),(159,2,4),(159,3,4),(160,1,4),(160,2,4),(160,3,4),(161,1,4),(161,2,4),(161,3,4),(162,1,4),(162,2,4),(162,3,4),(163,1,4),(163,2,4),(163,3,4),(164,1,4),(164,2,4),(164,3,4),(165,1,4),(165,2,4),(165,3,4),(166,1,4),(166,2,4),(166,3,4);
/*!40000 ALTER TABLE `catalog_product_enabled_index` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_entity`
--

DROP TABLE IF EXISTS `catalog_product_entity`;
CREATE TABLE `catalog_product_entity` (
  `entity_id` int(10) unsigned NOT NULL auto_increment,
  `entity_type_id` smallint(8) unsigned NOT NULL default '0',
  `attribute_set_id` smallint(5) unsigned NOT NULL default '0',
  `type_id` varchar(32) NOT NULL default 'simple',
  `sku` varchar(64) default NULL,
  `category_ids` text,
  `created_at` datetime NOT NULL default '0000-00-00 00:00:00',
  `updated_at` datetime NOT NULL default '0000-00-00 00:00:00',
  `has_options` smallint(1) NOT NULL default '0',
  PRIMARY KEY  (`entity_id`),
  KEY `FK_CATALOG_PRODUCT_ENTITY_ENTITY_TYPE` (`entity_type_id`),
  KEY `FK_CATALOG_PRODUCT_ENTITY_ATTRIBUTE_SET_ID` (`attribute_set_id`),
  KEY `sku` (`sku`),
  CONSTRAINT `FK_CATALOG_PRODUCT_ENTITY_ATTRIBUTE_SET_ID` FOREIGN KEY (`attribute_set_id`) REFERENCES `eav_attribute_set` (`attribute_set_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CATALOG_PRODUCT_ENTITY_ENTITY_TYPE` FOREIGN KEY (`entity_type_id`) REFERENCES `eav_entity_type` (`entity_type_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=167 DEFAULT CHARSET=utf8 COMMENT='Product Entityies';

--
-- Dumping data for table `catalog_product_entity`
--

LOCK TABLES `catalog_product_entity` WRITE;
/*!40000 ALTER TABLE `catalog_product_entity` DISABLE KEYS */;
INSERT INTO `catalog_product_entity` VALUES (16,10,38,'simple','n2610','8','2007-08-23 13:03:05','2008-08-08 14:50:04',0),(17,10,38,'simple','bb8100','8','2007-08-23 15:40:26','2008-08-08 14:50:23',0),(18,10,38,'simple','sw810i','8','2007-08-23 15:47:44','2008-08-08 14:50:56',0),(19,10,38,'simple','8525PDA','8','2007-08-23 15:55:29','2008-08-08 14:51:11',0),(20,10,38,'simple','MM-A900M','8','2007-08-23 18:06:42','2008-08-08 14:51:27',0),(25,10,39,'simple','MA464LL/A','15,28','2007-08-24 14:28:50','2008-07-28 21:27:34',1),(26,10,39,'simple','LX.FR206.001','15,28','2007-08-24 14:35:16','2008-08-05 07:14:52',1),(27,10,39,'simple','VGN-TXN27N/B','','2007-08-24 14:41:56','2008-08-06 05:12:24',0),(28,10,39,'simple','M285-E','15,28','2007-08-24 14:47:57','2008-08-08 14:51:44',0),(29,10,40,'simple','cn_3','','2007-08-24 18:53:19','2008-08-08 00:51:34',0),(30,10,40,'simple','asc_8','16','2007-08-24 19:00:49','2008-07-31 17:23:28',0),(31,10,40,'simple','steve_4','17','2007-08-24 19:05:50','2008-08-08 01:02:40',0),(32,10,40,'simple','nine_3','17','2007-08-24 19:12:54','2008-07-31 18:06:25',0),(33,10,40,'simple','ecco_3','17','2007-08-24 19:21:42','2008-08-08 01:04:49',0),(34,10,40,'simple','ken_8','16','2007-08-24 19:27:04','2008-08-08 00:58:35',0),(35,10,41,'simple','coal_sm','4','2007-08-24 19:49:30','2008-07-31 17:36:42',0),(36,10,41,'simple','ink_sm','4','2007-08-24 19:53:06','2008-08-08 00:49:48',0),(37,10,41,'simple','oc_sm','4','2007-08-24 19:59:39','2008-08-08 00:47:47',0),(38,10,41,'simple','zol_r_sm','4','2007-08-24 20:02:08','2008-08-08 00:39:57',0),(39,10,41,'simple','4fasd5f5','19','2007-08-24 20:07:02','2008-06-24 23:45:44',0),(41,10,42,'simple','384822','23','2007-08-27 10:43:59','2008-07-29 22:28:43',0),(42,10,42,'simple','bar1234','23','2007-08-27 10:50:01','2008-06-24 23:59:46',0),(44,10,44,'simple','Rebel XT','26','2007-08-28 13:06:05','2008-06-24 22:50:46',0),(45,10,44,'simple','QC-2185','26','2007-08-28 13:18:56','2008-08-08 14:52:48',0),(46,10,44,'simple','750','12,26','2007-08-28 13:23:34','2008-08-08 14:57:57',0),(47,10,44,'simple','A630','26','2007-08-28 13:27:14','2008-08-08 14:58:14',0),(48,10,44,'simple','C530','26','2007-08-28 13:32:20','2008-08-08 14:58:41',0),(49,10,40,'simple','ana_9','17','2007-08-28 15:09:50','2008-08-08 01:07:50',0),(51,10,42,'simple','1111','22','2007-08-28 16:25:46','2008-08-08 14:59:04',0),(52,10,42,'simple','1112','22','2007-08-28 16:29:24','2008-08-08 14:59:17',0),(53,10,42,'simple','1113','22','2007-08-28 16:32:24','2008-08-08 14:59:40',0),(54,10,42,'grouped','1114','22','2007-08-28 16:38:54','2008-08-08 15:00:22',0),(74,10,40,'simple','ana_3','17','2007-08-28 15:09:50','2008-08-08 13:19:48',0),(75,10,40,'simple','ana_4','17','2007-08-28 15:09:50','2008-08-08 01:07:18',0),(79,10,40,'simple','ana_5','17','2007-08-28 15:09:50','2008-08-08 01:07:11',0),(80,10,40,'simple','ana_6','17','2007-08-28 15:09:50','2008-08-08 01:07:25',0),(81,10,40,'simple','ana_7','17','2007-08-28 15:09:50','2008-08-08 01:07:32',0),(82,10,40,'simple','ana_8','17','2007-08-28 15:09:50','2008-08-08 01:07:44',0),(83,10,40,'configurable','cn','16,17','2007-08-29 10:32:52','2008-08-08 15:00:07',1),(84,10,40,'simple','cn_4','16,17','2007-08-24 18:53:19','2008-08-08 00:53:37',0),(85,10,40,'simple','cn_5','16,17','2007-08-24 18:53:19','2008-08-08 00:53:55',0),(86,10,40,'simple','cn_6','16,17','2007-08-24 18:53:19','2008-08-08 00:53:50',0),(87,10,40,'simple','cn_7','16,17','2007-08-24 18:53:19','2008-08-08 00:54:00',0),(88,10,40,'simple','cn_m8','16,17','2007-08-24 18:53:19','2008-08-08 00:54:10',0),(89,10,40,'simple','cn_m9','16,17','2007-08-24 18:53:19','2008-08-08 00:54:27',0),(90,10,40,'simple','cn_m10','16,17','2007-08-24 18:53:19','2008-08-08 00:54:36',0),(91,10,40,'simple','cn_m11','16,17','2007-08-24 18:53:19','2008-08-08 00:54:40',0),(92,10,40,'simple','cn_m12','16,17','2007-08-24 18:53:19','2008-08-08 00:54:45',0),(93,10,40,'configurable','asc','16','2007-08-29 11:46:47','2008-08-08 15:00:35',1),(94,10,40,'simple','asc_9','16','2007-08-24 19:00:49','2008-07-31 17:23:18',0),(95,10,40,'simple','asc_10','16','2007-08-24 19:00:49','2008-07-31 17:23:37',0),(96,10,40,'simple','asc_11','16','2007-08-24 19:00:49','2008-07-31 17:23:47',0),(97,10,40,'simple','asc_12','16','2007-08-24 19:00:49','2008-07-31 17:23:58',0),(98,10,40,'configurable','ken','16','2007-08-29 12:09:17','2008-08-08 14:29:46',1),(99,10,40,'simple','ken_9','16','2007-08-24 19:27:04','2008-08-08 00:57:45',0),(100,10,40,'simple','ken_10','16','2007-08-24 19:27:04','2008-08-08 00:56:05',0),(101,10,40,'simple','ken_11','16','2007-08-24 19:27:04','2008-08-08 00:57:03',0),(102,10,40,'simple','ken_12','16','2007-08-24 19:27:04','2008-08-08 00:57:40',0),(103,10,40,'configurable','steve','17','2007-08-29 12:29:46','2008-08-08 15:02:24',1),(104,10,40,'simple','steve_5','17','2007-08-24 19:05:50','2008-08-08 01:02:34',0),(105,10,40,'simple','steve_6','17','2007-08-24 19:05:50','2008-08-08 01:02:56',0),(106,10,40,'simple','steve_7','17','2007-08-24 19:05:50','2008-08-08 01:03:00',0),(107,10,40,'simple','steve_8','17','2007-08-24 19:05:50','2008-08-08 01:03:06',0),(108,10,40,'configurable','nine','17','2007-08-29 12:52:39','2008-08-08 15:02:34',1),(109,10,40,'simple','nine_4','17','2007-08-24 19:12:54','2008-07-31 18:06:49',0),(110,10,40,'simple','nine_5','17','2007-08-24 19:12:54','2008-07-31 18:06:42',0),(111,10,40,'simple','nine_6','17','2007-08-24 19:12:54','2008-07-31 18:07:09',0),(112,10,40,'configurable','ecco','17','2007-08-29 13:17:43','2008-08-08 15:02:49',1),(113,10,40,'simple','ecco_4','17','2007-08-24 19:21:42','2008-08-08 01:04:28',0),(114,10,40,'simple','ecco_5','17','2007-08-24 19:21:42','2008-08-08 01:04:37',0),(115,10,40,'simple','ecco_6','17','2007-08-24 19:21:42','2008-08-08 01:04:44',0),(117,10,41,'simple','coal_md','4','2007-08-24 19:49:30','2008-07-31 17:37:23',0),(118,10,41,'simple','coal_lrg','4','2007-08-24 19:49:30','2008-07-31 17:38:30',0),(119,10,41,'configurable','coal_1','4','2007-08-29 15:00:05','2008-08-08 13:26:35',1),(120,10,41,'configurable','ink','4','2007-08-29 15:06:16','2008-08-08 15:05:04',1),(121,10,41,'simple','ink_med','4','2007-08-24 19:53:06','2008-08-08 00:49:36',0),(122,10,41,'simple','ink_lrg','4','2007-08-24 19:53:06','2008-08-08 00:49:19',0),(123,10,41,'configurable','oc','4','2007-08-29 15:14:29','2008-06-24 22:59:14',1),(124,10,41,'simple','oc_med','4','2007-08-24 19:59:39','2008-08-08 00:47:56',0),(125,10,41,'simple','oc_lrg','4','2007-08-24 19:59:39','2008-08-08 00:48:14',0),(126,10,41,'configurable','zol','4','2007-08-29 15:31:56','2008-08-08 15:05:22',1),(127,10,41,'simple','zol_g_sm','4','2007-08-24 20:02:08','2008-08-08 00:40:33',0),(128,10,41,'simple','zol_r_med','4','2007-08-24 20:02:08','2008-08-08 00:41:39',0),(129,10,41,'simple','zol_g_med','4','2007-08-24 20:02:08','2008-08-08 00:40:59',0),(130,10,41,'simple','zol_r_lrg','4','2007-08-24 20:02:08','2008-08-08 00:40:28',0),(131,10,41,'simple','zol_g_lrg','4','2007-08-24 20:02:08','2008-08-08 00:41:10',0),(132,10,9,'simple','ac674','25','2007-08-29 19:53:55','2008-08-08 15:05:45',0),(133,10,9,'simple','ac9003','25','2007-08-29 19:56:27','2008-06-28 01:57:22',0),(134,10,9,'simple','ac-66332','25','2007-08-29 19:59:29','2008-06-28 01:57:16',0),(135,10,40,'configurable','ana','17','2007-08-30 11:22:53','2008-08-08 15:06:02',1),(137,10,41,'simple','zol_b_med','','2007-10-04 07:46:58','2008-08-08 00:41:29',0),(138,10,9,'simple','apevia-black','32','2008-07-25 00:52:03','2008-08-08 13:36:29',0),(139,10,9,'simple','nzxtlexa','32','2008-07-25 00:54:41','2008-07-25 00:54:41',0),(140,10,58,'simple','2gbdimm','15,31','2008-07-25 00:59:55','2008-07-25 02:14:23',0),(141,10,58,'simple','1gbdimm','15,31','2008-07-25 01:02:21','2008-07-25 02:13:04',0),(142,10,59,'virtual','1yr_p_l','','2008-07-25 01:02:54','2008-07-25 01:02:54',0),(143,10,58,'simple','512dimm','15,31','2008-07-25 01:05:00','2008-07-25 02:12:45',0),(144,10,59,'virtual','2yr_p_l','','2008-07-25 01:06:02','2008-07-25 01:06:02',0),(145,10,60,'simple','amdphenom','33','2008-07-25 01:07:37','2008-08-08 15:10:32',0),(146,10,59,'virtual','3yr_p_l','','2008-07-25 01:07:50','2008-07-25 01:07:50',0),(147,10,61,'simple','226bw','30','2008-07-25 01:10:17','2008-08-08 15:33:30',0),(148,10,60,'simple','amda64','33','2008-07-25 01:10:21','2008-08-08 15:11:01',0),(149,10,62,'simple','1tb7200','29','2008-07-25 01:12:44','2008-07-25 02:10:08',0),(150,10,62,'simple','500gb7200','29','2008-07-25 01:12:44','2008-07-25 02:09:26',0),(151,10,60,'simple','intelc2d','33','2008-07-25 01:13:21','2008-08-08 15:33:10',0),(152,10,61,'simple','W2452T-TF','30','2008-07-25 01:14:11','2008-08-08 15:33:00',0),(153,10,60,'simple','intelcore2extreme','33','2008-07-25 01:15:29','2008-08-08 15:32:36',0),(154,10,62,'simple','500gb5400','29','2008-07-25 01:16:03','2008-07-25 02:08:37',0),(155,10,62,'simple','250gb5400','29','2008-07-25 01:16:03','2008-07-25 02:07:40',0),(156,10,61,'simple','W1952TQ-TF','30','2008-07-25 01:16:51','2008-08-08 15:33:26',0),(157,10,61,'simple','M9179LL','30','2008-07-25 01:19:30','2008-08-08 15:32:12',0),(158,10,39,'bundle','VGN-TXN27N/BW','28','2008-07-25 01:21:23','2008-07-25 02:05:56',1),(159,10,9,'simple','microsoftnatural','34','2008-07-25 01:22:14','2008-08-08 15:31:54',0),(160,10,9,'simple','logitechcord','34','2008-07-25 01:24:15','2008-08-08 15:31:33',0),(161,10,9,'simple','logidinovo','34','2008-07-25 01:25:09','2008-08-08 15:31:22',0),(162,10,9,'simple','micronmouse5000','34','2008-07-25 01:25:11','2008-08-08 15:31:01',0),(163,10,9,'bundle','computer','15,27','2008-07-25 01:34:24','2008-07-29 01:33:10',1),(164,10,9,'bundle','computer_fixed','27','2008-07-25 01:36:33','2008-07-31 09:30:37',1),(165,10,39,'bundle','mycomputer','27','2008-07-25 01:40:27','2008-07-31 16:19:40',1),(166,10,38,'simple','HTC Touch Diamond','8','2008-07-25 02:22:13','2008-07-25 02:22:44',0);
/*!40000 ALTER TABLE `catalog_product_entity` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_entity_datetime`
--

DROP TABLE IF EXISTS `catalog_product_entity_datetime`;
CREATE TABLE `catalog_product_entity_datetime` (
  `value_id` int(11) NOT NULL auto_increment,
  `entity_type_id` smallint(5) unsigned NOT NULL default '0',
  `attribute_id` smallint(5) unsigned NOT NULL default '0',
  `store_id` smallint(5) unsigned NOT NULL default '0',
  `entity_id` int(10) unsigned NOT NULL default '0',
  `value` datetime NOT NULL default '0000-00-00 00:00:00',
  PRIMARY KEY  (`value_id`),
  KEY `FK_CATALOG_PRODUCT_ENTITY_DATETIME_ATTRIBUTE` (`attribute_id`),
  KEY `FK_CATALOG_PRODUCT_ENTITY_DATETIME_STORE` (`store_id`),
  KEY `FK_CATALOG_PRODUCT_ENTITY_DATETIME_PRODUCT_ENTITY` (`entity_id`),
  KEY `IDX_ATTRIBUTE_VALUE` (`entity_id`,`attribute_id`,`store_id`),
  CONSTRAINT `FK_CATALOG_PRODUCT_ENTITY_DATETIME_ATTRIBUTE` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CATALOG_PRODUCT_ENTITY_DATETIME_PRODUCT_ENTITY` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CATALOG_PRODUCT_ENTITY_DATETIME_STORE` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;

--
-- Dumping data for table `catalog_product_entity_datetime`
--

LOCK TABLES `catalog_product_entity_datetime` WRITE;
/*!40000 ALTER TABLE `catalog_product_entity_datetime` DISABLE KEYS */;
INSERT INTO `catalog_product_entity_datetime` VALUES (1,10,568,0,165,'2008-07-30 00:00:00');
/*!40000 ALTER TABLE `catalog_product_entity_datetime` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_entity_decimal`
--

DROP TABLE IF EXISTS `catalog_product_entity_decimal`;
CREATE TABLE `catalog_product_entity_decimal` (
  `value_id` int(11) NOT NULL auto_increment,
  `entity_type_id` smallint(5) unsigned NOT NULL default '0',
  `attribute_id` smallint(5) unsigned NOT NULL default '0',
  `store_id` smallint(5) unsigned NOT NULL default '0',
  `entity_id` int(10) unsigned NOT NULL default '0',
  `value` decimal(12,4) NOT NULL default '0.0000',
  PRIMARY KEY  (`value_id`),
  KEY `FK_CATALOG_PRODUCT_ENTITY_DECIMAL_STORE` (`store_id`),
  KEY `FK_CATALOG_PRODUCT_ENTITY_DECIMAL_PRODUCT_ENTITY` (`entity_id`),
  KEY `FK_CATALOG_PRODUCT_ENTITY_DECIMAL_ATTRIBUTE` (`attribute_id`),
  KEY `IDX_ATTRIBUTE_VALUE` (`entity_id`,`attribute_id`,`store_id`),
  CONSTRAINT `FK_CATALOG_PRODUCT_ENTITY_DECIMAL_ATTRIBUTE` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CATALOG_PRODUCT_ENTITY_DECIMAL_PRODUCT_ENTITY` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CATALOG_PRODUCT_ENTITY_DECIMAL_STORE` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2220 DEFAULT CHARSET=utf8;

--
-- Dumping data for table `catalog_product_entity_decimal`
--

LOCK TABLES `catalog_product_entity_decimal` WRITE;
/*!40000 ALTER TABLE `catalog_product_entity_decimal` DISABLE KEYS */;
INSERT INTO `catalog_product_entity_decimal` VALUES (80,10,101,1,16,'3.2000'),(81,10,99,1,16,'149.9900'),(82,10,100,1,16,'20.0000'),(86,10,101,1,17,'15.2000'),(87,10,99,1,17,'349.9900'),(88,10,100,1,17,'29.9900'),(92,10,101,1,18,'13.6000'),(93,10,99,1,18,'399.9900'),(94,10,100,1,18,'29.9900'),(104,10,101,1,20,'1.0000'),(105,10,99,1,20,'150.0000'),(106,10,100,1,20,'29.9900'),(134,10,101,1,25,'10.6000'),(135,10,99,1,25,'2299.9900'),(136,10,100,1,25,'1299.9900'),(140,10,101,1,26,'11.4000'),(141,10,99,1,26,'1799.9900'),(142,10,100,1,26,'999.9900'),(146,10,101,1,27,'2.8000'),(147,10,99,1,27,'2699.9900'),(148,10,100,1,27,'899.9900'),(152,10,101,1,28,'10.0000'),(153,10,99,1,28,'1599.9900'),(154,10,100,1,28,'899.9900'),(158,10,101,1,29,'1.0000'),(159,10,99,1,29,'15.9900'),(160,10,100,1,29,'1.0000'),(164,10,101,1,30,'3.0000'),(165,10,99,1,30,'134.9900'),(166,10,100,1,30,'29.9900'),(170,10,101,1,31,'2.0000'),(171,10,99,1,31,'69.9900'),(172,10,100,1,31,'29.9900'),(176,10,101,1,32,'2.0000'),(177,10,99,1,32,'89.9900'),(178,10,100,1,32,'29.9900'),(182,10,101,1,33,'4.0000'),(183,10,99,1,33,'159.9900'),(184,10,100,1,33,'29.9900'),(188,10,101,1,34,'2.0000'),(189,10,99,1,34,'160.9900'),(190,10,100,1,34,'29.9900'),(194,10,101,1,35,'0.5000'),(195,10,99,1,35,'15.0000'),(196,10,100,1,35,'2.0000'),(200,10,101,1,36,'0.5000'),(201,10,99,1,36,'22.0000'),(202,10,100,1,36,'2.0000'),(206,10,101,1,37,'0.4400'),(207,10,99,1,37,'15.0000'),(208,10,100,1,37,'2.0000'),(212,10,101,1,38,'0.4400'),(213,10,99,1,38,'13.5000'),(214,10,100,1,38,'2.0000'),(215,10,101,1,19,'30.0000'),(216,10,99,1,19,'199.9900'),(217,10,100,1,19,'29.9900'),(221,10,101,1,39,'1.7500'),(222,10,99,1,39,'30.0000'),(223,10,100,1,39,'5.0000'),(260,10,101,1,41,'128.9700'),(261,10,99,1,41,'399.9900'),(262,10,100,1,41,'100.0000'),(263,10,503,1,41,'399.9900'),(268,10,101,1,42,'150.0000'),(269,10,99,1,42,'2299.0000'),(270,10,100,1,42,'800.0000'),(271,10,503,1,42,'2299.0000'),(288,10,503,1,28,'1599.9900'),(289,10,503,1,27,'2699.9900'),(290,10,503,1,26,'1799.9900'),(291,10,503,1,25,'2299.9900'),(301,10,101,1,44,'4.0000'),(302,10,99,1,44,'550.0000'),(303,10,100,1,44,'200.0000'),(304,10,503,1,44,'449.0000'),(313,10,101,1,45,'1.0000'),(314,10,99,1,45,'37.4900'),(315,10,100,1,45,'20.0000'),(316,10,503,1,45,'37.4900'),(324,10,101,1,46,'2.0000'),(325,10,99,1,46,'161.9400'),(326,10,100,1,46,'29.9900'),(327,10,503,1,46,'161.9400'),(335,10,101,1,47,'3.0000'),(336,10,99,1,47,'329.9900'),(337,10,100,1,47,'29.9900'),(338,10,503,1,47,'329.9900'),(342,10,101,1,48,'2.0000'),(343,10,99,1,48,'199.9900'),(344,10,100,1,48,'29.9900'),(345,10,503,1,48,'199.9900'),(357,10,101,1,49,'2.0000'),(358,10,99,1,49,'41.9500'),(359,10,100,1,49,'10.0000'),(360,10,503,1,49,'41.9500'),(372,10,101,1,51,'20.0000'),(373,10,99,1,51,'299.9900'),(374,10,100,1,51,'50.0000'),(375,10,503,1,51,'299.9900'),(379,10,101,1,52,'50.0000'),(380,10,99,1,52,'129.9900'),(381,10,100,1,52,'50.0000'),(382,10,503,1,52,'129.9900'),(386,10,101,1,53,'200.0000'),(387,10,99,1,53,'599.9900'),(388,10,100,1,53,'200.0000'),(389,10,503,1,53,'599.9900'),(393,10,101,1,54,'500.0000'),(394,10,99,1,54,'699.9900'),(395,10,100,1,54,'300.0000'),(396,10,503,1,54,'699.9900'),(401,10,503,1,19,'199.9900'),(490,10,503,1,17,'349.9900'),(491,10,503,1,29,'15.9900'),(492,10,503,1,35,'15.0000'),(493,10,503,1,30,'134.9900'),(494,10,503,1,36,'22.0000'),(499,10,101,1,74,'2.0000'),(500,10,99,1,74,'41.9500'),(501,10,100,1,74,'10.0000'),(502,10,503,1,74,'41.9500'),(507,10,101,1,75,'2.0000'),(508,10,99,1,75,'41.9500'),(509,10,100,1,75,'10.0000'),(510,10,503,1,75,'41.9500'),(527,10,101,1,79,'2.0000'),(528,10,99,1,79,'41.9500'),(529,10,100,1,79,'10.0000'),(530,10,503,1,79,'41.9500'),(535,10,101,1,80,'2.0000'),(536,10,99,1,80,'41.9500'),(537,10,100,1,80,'10.0000'),(538,10,503,1,80,'41.9500'),(543,10,101,1,81,'2.0000'),(544,10,99,1,81,'41.9500'),(545,10,100,1,81,'10.0000'),(546,10,503,1,81,'41.9500'),(551,10,101,1,82,'2.0000'),(552,10,99,1,82,'41.9500'),(553,10,100,1,82,'10.0000'),(554,10,503,1,82,'41.9500'),(559,10,101,1,83,'1.0000'),(560,10,99,1,83,'15.9900'),(561,10,100,1,83,'2.0000'),(562,10,503,1,83,'13.9900'),(567,10,101,1,84,'1.0000'),(568,10,99,1,84,'15.9900'),(569,10,100,1,84,'1.0000'),(570,10,503,1,84,'15.9900'),(575,10,101,1,85,'1.0000'),(576,10,99,1,85,'15.9900'),(577,10,100,1,85,'1.0000'),(578,10,503,1,85,'15.9900'),(583,10,101,1,86,'1.0000'),(584,10,99,1,86,'15.9900'),(585,10,100,1,86,'1.0000'),(586,10,503,1,86,'15.9900'),(591,10,101,1,87,'1.0000'),(592,10,99,1,87,'15.9900'),(593,10,100,1,87,'1.0000'),(594,10,503,1,87,'15.9900'),(599,10,101,1,88,'1.0000'),(600,10,99,1,88,'15.9900'),(601,10,100,1,88,'1.0000'),(602,10,503,1,88,'15.9900'),(607,10,101,1,89,'1.0000'),(608,10,99,1,89,'15.9900'),(609,10,100,1,89,'1.0000'),(610,10,503,1,89,'15.9900'),(615,10,101,1,90,'1.0000'),(616,10,99,1,90,'15.9900'),(617,10,100,1,90,'1.0000'),(618,10,503,1,90,'15.9900'),(623,10,101,1,91,'1.0000'),(624,10,99,1,91,'15.9900'),(625,10,100,1,91,'1.0000'),(626,10,503,1,91,'15.9900'),(631,10,101,1,92,'1.0000'),(632,10,99,1,92,'15.9900'),(633,10,100,1,92,'1.0000'),(634,10,503,1,92,'15.9900'),(639,10,101,1,93,'3.0000'),(640,10,99,1,93,'134.9900'),(641,10,100,1,93,'29.9900'),(642,10,503,1,93,'134.9900'),(647,10,101,1,94,'3.0000'),(648,10,99,1,94,'134.9900'),(649,10,100,1,94,'29.9900'),(650,10,503,1,94,'134.9900'),(655,10,101,1,95,'3.0000'),(656,10,99,1,95,'134.9900'),(657,10,100,1,95,'29.9900'),(658,10,503,1,95,'134.9900'),(663,10,101,1,96,'3.0000'),(664,10,99,1,96,'134.9900'),(665,10,100,1,96,'29.9900'),(666,10,503,1,96,'134.9900'),(671,10,101,1,97,'3.0000'),(672,10,99,1,97,'134.9900'),(673,10,100,1,97,'29.9900'),(674,10,503,1,97,'134.9900'),(678,10,101,1,98,'2.0000'),(679,10,99,1,98,'160.9900'),(680,10,100,1,98,'29.9900'),(681,10,503,1,98,'160.9900'),(682,10,503,1,34,'160.9900'),(687,10,101,1,99,'2.0000'),(688,10,99,1,99,'160.9900'),(689,10,100,1,99,'29.9900'),(690,10,503,1,99,'160.9900'),(695,10,101,1,100,'2.0000'),(696,10,99,1,100,'160.9900'),(697,10,100,1,100,'29.9900'),(698,10,503,1,100,'160.9900'),(703,10,101,1,101,'2.0000'),(704,10,99,1,101,'160.9900'),(705,10,100,1,101,'29.9900'),(706,10,503,1,101,'160.9900'),(711,10,101,1,102,'2.0000'),(712,10,99,1,102,'160.9900'),(713,10,100,1,102,'29.9900'),(714,10,503,1,102,'160.9900'),(719,10,101,1,103,'2.0000'),(720,10,99,1,103,'69.9900'),(721,10,100,1,103,'29.9900'),(722,10,503,1,103,'69.9900'),(723,10,503,1,31,'69.9900'),(728,10,101,1,104,'2.0000'),(729,10,99,1,104,'69.9900'),(730,10,100,1,104,'29.9900'),(731,10,503,1,104,'69.9900'),(736,10,101,1,105,'2.0000'),(737,10,99,1,105,'69.9900'),(738,10,100,1,105,'29.9900'),(739,10,503,1,105,'69.9900'),(744,10,101,1,106,'2.0000'),(745,10,99,1,106,'69.9900'),(746,10,100,1,106,'29.9900'),(747,10,503,1,106,'69.9900'),(752,10,101,1,107,'2.0000'),(753,10,99,1,107,'69.9900'),(754,10,100,1,107,'29.9900'),(755,10,503,1,107,'69.9900'),(759,10,101,1,108,'2.0000'),(760,10,99,1,108,'89.9900'),(761,10,100,1,108,'29.9900'),(762,10,503,1,108,'89.9900'),(763,10,503,1,32,'89.9900'),(768,10,101,1,109,'2.0000'),(769,10,99,1,109,'89.9900'),(770,10,100,1,109,'29.9900'),(771,10,503,1,109,'89.9900'),(776,10,101,1,110,'2.0000'),(777,10,99,1,110,'89.9900'),(778,10,100,1,110,'29.9900'),(779,10,503,1,110,'89.9900'),(784,10,101,1,111,'2.0000'),(785,10,99,1,111,'89.9900'),(786,10,100,1,111,'29.9900'),(787,10,503,1,111,'89.9900'),(796,10,101,1,112,'4.0000'),(797,10,99,1,112,'159.9900'),(798,10,100,1,112,'29.9900'),(799,10,503,1,112,'159.9900'),(804,10,101,1,113,'4.0000'),(805,10,99,1,113,'159.9900'),(806,10,100,1,113,'29.9900'),(807,10,503,1,113,'159.9900'),(812,10,101,1,114,'4.0000'),(813,10,99,1,114,'159.9900'),(814,10,100,1,114,'29.9900'),(815,10,503,1,114,'159.9900'),(820,10,101,1,115,'4.0000'),(821,10,99,1,115,'159.9900'),(822,10,100,1,115,'29.9900'),(823,10,503,1,115,'159.9900'),(824,10,503,1,33,'159.9900'),(836,10,101,1,117,'0.5000'),(837,10,99,1,117,'15.0000'),(838,10,100,1,117,'2.0000'),(839,10,503,1,117,'15.0000'),(844,10,101,1,118,'0.5000'),(845,10,99,1,118,'15.0000'),(846,10,100,1,118,'2.0000'),(847,10,503,1,118,'15.0000'),(851,10,101,1,119,'0.5000'),(852,10,99,1,119,'15.0000'),(853,10,100,1,119,'2.0000'),(854,10,503,1,119,'10.0000'),(859,10,101,1,120,'0.5000'),(860,10,99,1,120,'22.0000'),(861,10,100,1,120,'2.0000'),(862,10,503,1,120,'18.0000'),(867,10,101,1,121,'0.5000'),(868,10,99,1,121,'22.0000'),(869,10,100,1,121,'2.0000'),(870,10,503,1,121,'22.0000'),(875,10,101,1,122,'0.5000'),(876,10,99,1,122,'22.0000'),(877,10,100,1,122,'2.0000'),(878,10,503,1,122,'22.0000'),(883,10,101,1,123,'0.4400'),(884,10,99,1,123,'100.0000'),(885,10,100,1,123,'2.0000'),(886,10,503,1,123,'10.0000'),(887,10,503,1,37,'15.0000'),(892,10,101,1,124,'0.4400'),(893,10,99,1,124,'15.0000'),(894,10,100,1,124,'2.0000'),(895,10,503,1,124,'15.0000'),(900,10,101,1,125,'0.4400'),(901,10,99,1,125,'15.0000'),(902,10,100,1,125,'2.0000'),(903,10,503,1,125,'15.0000'),(908,10,101,1,126,'0.4400'),(909,10,99,1,126,'13.5000'),(910,10,100,1,126,'2.0000'),(911,10,503,1,126,'9.5000'),(912,10,503,1,38,'13.5000'),(917,10,101,1,127,'0.4400'),(918,10,99,1,127,'13.5000'),(919,10,100,1,127,'2.0000'),(920,10,503,1,127,'13.5000'),(925,10,101,1,128,'0.4400'),(926,10,99,1,128,'13.5000'),(927,10,100,1,128,'2.0000'),(928,10,503,1,128,'13.5000'),(933,10,101,1,129,'0.4400'),(934,10,99,1,129,'13.5000'),(935,10,100,1,129,'2.0000'),(936,10,503,1,129,'13.5000'),(941,10,101,1,130,'0.4400'),(942,10,99,1,130,'13.5000'),(943,10,100,1,130,'2.0000'),(944,10,503,1,130,'13.5000'),(949,10,101,1,131,'0.4400'),(950,10,99,1,131,'13.5000'),(951,10,100,1,131,'2.0000'),(952,10,503,1,131,'13.5000'),(954,10,503,1,20,'150.0000'),(955,10,503,1,16,'149.9900'),(956,10,503,1,18,'399.9900'),(960,10,99,1,133,'34.0000'),(961,10,503,1,133,'34.0000'),(966,10,99,1,132,'99.0000'),(967,10,503,1,132,'99.0000'),(973,10,99,1,134,'19.0000'),(974,10,503,1,134,'19.0000'),(984,10,101,1,135,'2.0000'),(985,10,99,1,135,'41.9500'),(986,10,100,1,135,'10.0000'),(987,10,503,1,135,'41.9500'),(992,10,101,0,16,'3.2000'),(993,10,99,0,16,'149.9900'),(994,10,100,0,16,'20.0000'),(995,10,101,0,17,'15.2000'),(996,10,99,0,17,'349.9900'),(997,10,100,0,17,'29.9900'),(998,10,101,0,18,'13.6000'),(999,10,99,0,18,'399.9900'),(1000,10,100,0,18,'29.9900'),(1001,10,101,0,20,'1.0000'),(1002,10,99,0,20,'150.0000'),(1003,10,100,0,20,'29.9900'),(1004,10,101,0,25,'10.6000'),(1005,10,99,0,25,'2299.9900'),(1006,10,100,0,25,'1299.9900'),(1007,10,101,0,26,'11.4000'),(1008,10,99,0,26,'1799.9900'),(1009,10,100,0,26,'999.9900'),(1010,10,101,0,27,'2.8000'),(1011,10,99,0,27,'2699.9900'),(1012,10,100,0,27,'899.9900'),(1013,10,101,0,28,'10.0000'),(1014,10,99,0,28,'1599.9900'),(1015,10,100,0,28,'899.9900'),(1016,10,101,0,29,'1.0000'),(1017,10,99,0,29,'15.9900'),(1018,10,100,0,29,'1.0000'),(1019,10,101,0,30,'3.0000'),(1020,10,99,0,30,'134.9900'),(1021,10,100,0,30,'29.9900'),(1022,10,101,0,31,'2.0000'),(1023,10,99,0,31,'69.9900'),(1024,10,100,0,31,'29.9900'),(1025,10,101,0,32,'2.0000'),(1026,10,99,0,32,'89.9900'),(1027,10,100,0,32,'29.9900'),(1028,10,101,0,33,'4.0000'),(1029,10,99,0,33,'159.9900'),(1030,10,100,0,33,'29.9900'),(1031,10,101,0,34,'2.0000'),(1032,10,99,0,34,'160.9900'),(1033,10,100,0,34,'29.9900'),(1034,10,101,0,35,'0.5000'),(1035,10,99,0,35,'15.0000'),(1036,10,100,0,35,'2.0000'),(1037,10,101,0,36,'0.5000'),(1038,10,99,0,36,'22.0000'),(1039,10,100,0,36,'2.0000'),(1040,10,101,0,37,'0.4400'),(1041,10,99,0,37,'15.0000'),(1042,10,100,0,37,'2.0000'),(1043,10,101,0,38,'0.4400'),(1044,10,99,0,38,'13.5000'),(1045,10,100,0,38,'2.0000'),(1046,10,101,0,19,'30.0000'),(1047,10,99,0,19,'199.9900'),(1048,10,100,0,19,'29.9900'),(1049,10,101,0,39,'1.7500'),(1050,10,99,0,39,'30.0000'),(1051,10,100,0,39,'5.0000'),(1057,10,101,0,41,'128.9700'),(1058,10,99,0,41,'399.9900'),(1059,10,100,0,41,'100.0000'),(1060,10,503,0,41,'399.9900'),(1061,10,101,0,42,'150.0000'),(1062,10,99,0,42,'2299.0000'),(1063,10,100,0,42,'800.0000'),(1064,10,503,0,42,'2299.0000'),(1065,10,503,0,28,'1599.9900'),(1066,10,503,0,27,'2699.9900'),(1067,10,503,0,26,'1799.9900'),(1068,10,503,0,25,'2299.9900'),(1069,10,101,0,44,'4.0000'),(1070,10,99,0,44,'550.0000'),(1071,10,100,0,44,'200.0000'),(1072,10,503,0,44,'449.0000'),(1073,10,101,0,45,'1.0000'),(1074,10,99,0,45,'37.4900'),(1075,10,100,0,45,'20.0000'),(1076,10,503,0,45,'37.4900'),(1077,10,101,0,46,'2.0000'),(1078,10,99,0,46,'161.9400'),(1079,10,100,0,46,'29.9900'),(1080,10,503,0,46,'161.9400'),(1081,10,101,0,47,'3.0000'),(1082,10,99,0,47,'329.9900'),(1083,10,100,0,47,'29.9900'),(1084,10,503,0,47,'329.9900'),(1085,10,101,0,48,'2.0000'),(1086,10,99,0,48,'199.9900'),(1087,10,100,0,48,'29.9900'),(1088,10,503,0,48,'199.9900'),(1089,10,101,0,49,'2.0000'),(1090,10,99,0,49,'41.9500'),(1091,10,100,0,49,'10.0000'),(1092,10,503,0,49,'41.9500'),(1093,10,101,0,51,'20.0000'),(1094,10,99,0,51,'299.9900'),(1095,10,100,0,51,'50.0000'),(1096,10,503,0,51,'299.9900'),(1097,10,101,0,52,'50.0000'),(1098,10,99,0,52,'129.9900'),(1099,10,100,0,52,'50.0000'),(1100,10,503,0,52,'129.9900'),(1101,10,101,0,53,'200.0000'),(1102,10,99,0,53,'599.9900'),(1103,10,100,0,53,'200.0000'),(1104,10,503,0,53,'599.9900'),(1105,10,101,0,54,'500.0000'),(1106,10,99,0,54,'699.9900'),(1107,10,100,0,54,'300.0000'),(1108,10,503,0,54,'699.9900'),(1109,10,503,0,19,'199.9900'),(1134,10,503,0,17,'349.9900'),(1135,10,503,0,29,'15.9900'),(1136,10,503,0,35,'15.0000'),(1137,10,503,0,30,'134.9900'),(1138,10,503,0,36,'22.0000'),(1139,10,101,0,74,'2.0000'),(1140,10,99,0,74,'41.9500'),(1141,10,100,0,74,'10.0000'),(1142,10,503,0,74,'41.9500'),(1143,10,101,0,75,'2.0000'),(1144,10,99,0,75,'41.9500'),(1145,10,100,0,75,'10.0000'),(1146,10,503,0,75,'41.9500'),(1147,10,101,0,79,'2.0000'),(1148,10,99,0,79,'41.9500'),(1149,10,100,0,79,'10.0000'),(1150,10,503,0,79,'41.9500'),(1151,10,101,0,80,'2.0000'),(1152,10,99,0,80,'41.9500'),(1153,10,100,0,80,'10.0000'),(1154,10,503,0,80,'41.9500'),(1155,10,101,0,81,'2.0000'),(1156,10,99,0,81,'41.9500'),(1157,10,100,0,81,'10.0000'),(1158,10,503,0,81,'41.9500'),(1159,10,101,0,82,'2.0000'),(1160,10,99,0,82,'41.9500'),(1161,10,100,0,82,'10.0000'),(1162,10,503,0,82,'41.9500'),(1163,10,101,0,83,'1.0000'),(1164,10,99,0,83,'15.9900'),(1165,10,100,0,83,'2.0000'),(1166,10,503,0,83,'13.9900'),(1167,10,101,0,84,'1.0000'),(1168,10,99,0,84,'15.9900'),(1169,10,100,0,84,'1.0000'),(1170,10,503,0,84,'15.9900'),(1171,10,101,0,85,'1.0000'),(1172,10,99,0,85,'15.9900'),(1173,10,100,0,85,'1.0000'),(1174,10,503,0,85,'15.9900'),(1175,10,101,0,86,'1.0000'),(1176,10,99,0,86,'15.9900'),(1177,10,100,0,86,'1.0000'),(1178,10,503,0,86,'15.9900'),(1179,10,101,0,87,'1.0000'),(1180,10,99,0,87,'15.9900'),(1181,10,100,0,87,'1.0000'),(1182,10,503,0,87,'15.9900'),(1183,10,101,0,88,'1.0000'),(1184,10,99,0,88,'15.9900'),(1185,10,100,0,88,'1.0000'),(1186,10,503,0,88,'15.9900'),(1187,10,101,0,89,'1.0000'),(1188,10,99,0,89,'15.9900'),(1189,10,100,0,89,'1.0000'),(1190,10,503,0,89,'15.9900'),(1191,10,101,0,90,'1.0000'),(1192,10,99,0,90,'15.9900'),(1193,10,100,0,90,'1.0000'),(1194,10,503,0,90,'15.9900'),(1195,10,101,0,91,'1.0000'),(1196,10,99,0,91,'15.9900'),(1197,10,100,0,91,'1.0000'),(1198,10,503,0,91,'15.9900'),(1199,10,101,0,92,'1.0000'),(1200,10,99,0,92,'15.9900'),(1201,10,100,0,92,'1.0000'),(1202,10,503,0,92,'15.9900'),(1203,10,101,0,93,'3.0000'),(1204,10,99,0,93,'134.9900'),(1205,10,100,0,93,'29.9900'),(1206,10,503,0,93,'134.9900'),(1207,10,101,0,94,'3.0000'),(1208,10,99,0,94,'134.9900'),(1209,10,100,0,94,'29.9900'),(1210,10,503,0,94,'134.9900'),(1211,10,101,0,95,'3.0000'),(1212,10,99,0,95,'134.9900'),(1213,10,100,0,95,'29.9900'),(1214,10,503,0,95,'134.9900'),(1215,10,101,0,96,'3.0000'),(1216,10,99,0,96,'134.9900'),(1217,10,100,0,96,'29.9900'),(1218,10,503,0,96,'134.9900'),(1219,10,101,0,97,'3.0000'),(1220,10,99,0,97,'134.9900'),(1221,10,100,0,97,'29.9900'),(1222,10,503,0,97,'134.9900'),(1223,10,101,0,98,'2.0000'),(1224,10,99,0,98,'160.9900'),(1225,10,100,0,98,'29.9900'),(1226,10,503,0,98,'160.9900'),(1227,10,503,0,34,'160.9900'),(1228,10,101,0,99,'2.0000'),(1229,10,99,0,99,'160.9900'),(1230,10,100,0,99,'29.9900'),(1231,10,503,0,99,'160.9900'),(1232,10,101,0,100,'2.0000'),(1233,10,99,0,100,'160.9900'),(1234,10,100,0,100,'29.9900'),(1235,10,503,0,100,'160.9900'),(1236,10,101,0,101,'2.0000'),(1237,10,99,0,101,'160.9900'),(1238,10,100,0,101,'29.9900'),(1239,10,503,0,101,'160.9900'),(1240,10,101,0,102,'2.0000'),(1241,10,99,0,102,'160.9900'),(1242,10,100,0,102,'29.9900'),(1243,10,503,0,102,'160.9900'),(1244,10,101,0,103,'2.0000'),(1245,10,99,0,103,'69.9900'),(1246,10,100,0,103,'29.9900'),(1247,10,503,0,103,'69.9900'),(1248,10,503,0,31,'69.9900'),(1249,10,101,0,104,'2.0000'),(1250,10,99,0,104,'69.9900'),(1251,10,100,0,104,'29.9900'),(1252,10,503,0,104,'69.9900'),(1253,10,101,0,105,'2.0000'),(1254,10,99,0,105,'69.9900'),(1255,10,100,0,105,'29.9900'),(1256,10,503,0,105,'69.9900'),(1257,10,101,0,106,'2.0000'),(1258,10,99,0,106,'69.9900'),(1259,10,100,0,106,'29.9900'),(1260,10,503,0,106,'69.9900'),(1261,10,101,0,107,'2.0000'),(1262,10,99,0,107,'69.9900'),(1263,10,100,0,107,'29.9900'),(1264,10,503,0,107,'69.9900'),(1265,10,101,0,108,'2.0000'),(1266,10,99,0,108,'89.9900'),(1267,10,100,0,108,'29.9900'),(1268,10,503,0,108,'89.9900'),(1269,10,503,0,32,'89.9900'),(1270,10,101,0,109,'2.0000'),(1271,10,99,0,109,'89.9900'),(1272,10,100,0,109,'29.9900'),(1273,10,503,0,109,'89.9900'),(1274,10,101,0,110,'2.0000'),(1275,10,99,0,110,'89.9900'),(1276,10,100,0,110,'29.9900'),(1277,10,503,0,110,'89.9900'),(1278,10,101,0,111,'2.0000'),(1279,10,99,0,111,'89.9900'),(1280,10,100,0,111,'29.9900'),(1281,10,503,0,111,'89.9900'),(1282,10,101,0,112,'4.0000'),(1283,10,99,0,112,'159.9900'),(1284,10,100,0,112,'29.9900'),(1285,10,503,0,112,'159.9900'),(1286,10,101,0,113,'4.0000'),(1287,10,99,0,113,'159.9900'),(1288,10,100,0,113,'29.9900'),(1289,10,503,0,113,'159.9900'),(1290,10,101,0,114,'4.0000'),(1291,10,99,0,114,'159.9900'),(1292,10,100,0,114,'29.9900'),(1293,10,503,0,114,'159.9900'),(1294,10,101,0,115,'4.0000'),(1295,10,99,0,115,'159.9900'),(1296,10,100,0,115,'29.9900'),(1297,10,503,0,115,'159.9900'),(1298,10,503,0,33,'159.9900'),(1299,10,101,0,117,'0.5000'),(1300,10,99,0,117,'15.0000'),(1301,10,100,0,117,'2.0000'),(1302,10,503,0,117,'15.0000'),(1303,10,101,0,118,'0.5000'),(1304,10,99,0,118,'15.0000'),(1305,10,100,0,118,'2.0000'),(1306,10,503,0,118,'15.0000'),(1307,10,101,0,119,'0.5000'),(1308,10,99,0,119,'15.0000'),(1309,10,100,0,119,'2.0000'),(1310,10,503,0,119,'10.0000'),(1311,10,101,0,120,'0.5000'),(1312,10,99,0,120,'22.0000'),(1313,10,100,0,120,'2.0000'),(1314,10,503,0,120,'18.0000'),(1315,10,101,0,121,'0.5000'),(1316,10,99,0,121,'22.0000'),(1317,10,100,0,121,'2.0000'),(1318,10,503,0,121,'22.0000'),(1319,10,101,0,122,'0.5000'),(1320,10,99,0,122,'22.0000'),(1321,10,100,0,122,'2.0000'),(1322,10,503,0,122,'22.0000'),(1323,10,101,0,123,'0.4400'),(1324,10,99,0,123,'100.0000'),(1325,10,100,0,123,'2.0000'),(1326,10,503,0,123,'10.0000'),(1327,10,503,0,37,'15.0000'),(1328,10,101,0,124,'0.4400'),(1329,10,99,0,124,'15.0000'),(1330,10,100,0,124,'2.0000'),(1331,10,503,0,124,'15.0000'),(1332,10,101,0,125,'0.4400'),(1333,10,99,0,125,'15.0000'),(1334,10,100,0,125,'2.0000'),(1335,10,503,0,125,'15.0000'),(1336,10,101,0,126,'0.4400'),(1337,10,99,0,126,'13.5000'),(1338,10,100,0,126,'2.0000'),(1339,10,503,0,126,'9.5000'),(1340,10,503,0,38,'13.5000'),(1341,10,101,0,127,'0.4400'),(1342,10,99,0,127,'13.5000'),(1343,10,100,0,127,'2.0000'),(1344,10,503,0,127,'13.5000'),(1345,10,101,0,128,'0.4400'),(1346,10,99,0,128,'13.5000'),(1347,10,100,0,128,'2.0000'),(1348,10,503,0,128,'13.5000'),(1349,10,101,0,129,'0.4400'),(1350,10,99,0,129,'13.5000'),(1351,10,100,0,129,'2.0000'),(1352,10,503,0,129,'13.5000'),(1353,10,101,0,130,'0.4400'),(1354,10,99,0,130,'13.5000'),(1355,10,100,0,130,'2.0000'),(1356,10,503,0,130,'13.5000'),(1357,10,101,0,131,'0.4400'),(1358,10,99,0,131,'13.5000'),(1359,10,100,0,131,'2.0000'),(1360,10,503,0,131,'13.5000'),(1361,10,503,0,20,'150.0000'),(1362,10,503,0,16,'149.9900'),(1363,10,503,0,18,'399.9900'),(1364,10,99,0,133,'34.0000'),(1365,10,503,0,133,'34.0000'),(1366,10,99,0,132,'99.0000'),(1367,10,503,0,132,'99.0000'),(1368,10,99,0,134,'19.0000'),(1369,10,503,0,134,'19.0000'),(1370,10,101,0,135,'2.0000'),(1371,10,99,0,135,'41.9500'),(1372,10,100,0,135,'10.0000'),(1373,10,503,0,135,'41.9500'),(1377,10,101,2,16,'3.2000'),(1378,10,99,2,16,'149.9900'),(1379,10,100,2,16,'20.0000'),(1380,10,101,2,17,'15.2000'),(1381,10,99,2,17,'349.9900'),(1382,10,100,2,17,'29.9900'),(1383,10,101,2,18,'13.6000'),(1384,10,99,2,18,'399.9900'),(1385,10,100,2,18,'29.9900'),(1386,10,101,2,20,'1.0000'),(1387,10,99,2,20,'150.0000'),(1388,10,100,2,20,'29.9900'),(1389,10,101,2,25,'10.6000'),(1390,10,99,2,25,'2299.9900'),(1391,10,100,2,25,'1299.9900'),(1392,10,101,2,26,'11.4000'),(1393,10,99,2,26,'1799.9900'),(1394,10,100,2,26,'999.9900'),(1395,10,101,2,27,'2.8000'),(1396,10,99,2,27,'2699.9900'),(1397,10,100,2,27,'899.9900'),(1398,10,101,2,28,'10.0000'),(1399,10,99,2,28,'1599.9900'),(1400,10,100,2,28,'899.9900'),(1401,10,101,2,29,'1.0000'),(1402,10,99,2,29,'15.9900'),(1403,10,100,2,29,'1.0000'),(1404,10,101,2,30,'3.0000'),(1405,10,99,2,30,'134.9900'),(1406,10,100,2,30,'29.9900'),(1407,10,101,2,31,'2.0000'),(1408,10,99,2,31,'69.9900'),(1409,10,100,2,31,'29.9900'),(1410,10,101,2,32,'2.0000'),(1411,10,99,2,32,'89.9900'),(1412,10,100,2,32,'29.9900'),(1413,10,101,2,33,'4.0000'),(1414,10,99,2,33,'159.9900'),(1415,10,100,2,33,'29.9900'),(1416,10,101,2,34,'2.0000'),(1417,10,99,2,34,'160.9900'),(1418,10,100,2,34,'29.9900'),(1419,10,101,2,35,'0.5000'),(1420,10,99,2,35,'15.0000'),(1421,10,100,2,35,'2.0000'),(1422,10,101,2,36,'0.5000'),(1423,10,99,2,36,'22.0000'),(1424,10,100,2,36,'2.0000'),(1425,10,101,2,37,'0.4400'),(1426,10,99,2,37,'15.0000'),(1427,10,100,2,37,'2.0000'),(1428,10,101,2,38,'0.4400'),(1429,10,99,2,38,'13.5000'),(1430,10,100,2,38,'2.0000'),(1431,10,101,2,19,'30.0000'),(1432,10,99,2,19,'199.9900'),(1433,10,100,2,19,'29.9900'),(1434,10,101,2,39,'1.7500'),(1435,10,99,2,39,'30.0000'),(1436,10,100,2,39,'5.0000'),(1442,10,101,2,41,'128.9700'),(1443,10,99,2,41,'399.9900'),(1444,10,100,2,41,'100.0000'),(1445,10,503,2,41,'399.9900'),(1446,10,101,2,42,'150.0000'),(1447,10,99,2,42,'2299.0000'),(1448,10,100,2,42,'800.0000'),(1449,10,503,2,42,'2299.0000'),(1450,10,503,2,28,'1599.9900'),(1451,10,503,2,27,'2699.9900'),(1452,10,503,2,26,'1799.9900'),(1453,10,503,2,25,'2299.9900'),(1454,10,101,2,44,'4.0000'),(1455,10,99,2,44,'550.0000'),(1456,10,100,2,44,'200.0000'),(1457,10,503,2,44,'449.0000'),(1458,10,101,2,45,'1.0000'),(1459,10,99,2,45,'37.4900'),(1460,10,100,2,45,'20.0000'),(1461,10,503,2,45,'37.4900'),(1462,10,101,2,46,'2.0000'),(1463,10,99,2,46,'161.9400'),(1464,10,100,2,46,'29.9900'),(1465,10,503,2,46,'161.9400'),(1466,10,101,2,47,'3.0000'),(1467,10,99,2,47,'329.9900'),(1468,10,100,2,47,'29.9900'),(1469,10,503,2,47,'329.9900'),(1470,10,101,2,48,'2.0000'),(1471,10,99,2,48,'199.9900'),(1472,10,100,2,48,'29.9900'),(1473,10,503,2,48,'199.9900'),(1474,10,101,2,49,'2.0000'),(1475,10,99,2,49,'41.9500'),(1476,10,100,2,49,'10.0000'),(1477,10,503,2,49,'41.9500'),(1478,10,101,2,51,'20.0000'),(1479,10,99,2,51,'299.9900'),(1480,10,100,2,51,'50.0000'),(1481,10,503,2,51,'299.9900'),(1482,10,101,2,52,'50.0000'),(1483,10,99,2,52,'129.9900'),(1484,10,100,2,52,'50.0000'),(1485,10,503,2,52,'129.9900'),(1486,10,101,2,53,'200.0000'),(1487,10,99,2,53,'599.9900'),(1488,10,100,2,53,'200.0000'),(1489,10,503,2,53,'599.9900'),(1490,10,101,2,54,'500.0000'),(1491,10,99,2,54,'699.9900'),(1492,10,100,2,54,'300.0000'),(1493,10,503,2,54,'699.9900'),(1494,10,503,2,19,'199.9900'),(1519,10,503,2,17,'349.9900'),(1520,10,503,2,29,'15.9900'),(1521,10,503,2,35,'15.0000'),(1522,10,503,2,30,'134.9900'),(1523,10,503,2,36,'22.0000'),(1524,10,101,2,74,'2.0000'),(1525,10,99,2,74,'41.9500'),(1526,10,100,2,74,'10.0000'),(1527,10,503,2,74,'41.9500'),(1528,10,101,2,75,'2.0000'),(1529,10,99,2,75,'41.9500'),(1530,10,100,2,75,'10.0000'),(1531,10,503,2,75,'41.9500'),(1532,10,101,2,79,'2.0000'),(1533,10,99,2,79,'41.9500'),(1534,10,100,2,79,'10.0000'),(1535,10,503,2,79,'41.9500'),(1536,10,101,2,80,'2.0000'),(1537,10,99,2,80,'41.9500'),(1538,10,100,2,80,'10.0000'),(1539,10,503,2,80,'41.9500'),(1540,10,101,2,81,'2.0000'),(1541,10,99,2,81,'41.9500'),(1542,10,100,2,81,'10.0000'),(1543,10,503,2,81,'41.9500'),(1544,10,101,2,82,'2.0000'),(1545,10,99,2,82,'41.9500'),(1546,10,100,2,82,'10.0000'),(1547,10,503,2,82,'41.9500'),(1548,10,101,2,83,'1.0000'),(1549,10,99,2,83,'15.9900'),(1550,10,100,2,83,'2.0000'),(1551,10,503,2,83,'13.9900'),(1552,10,101,2,84,'1.0000'),(1553,10,99,2,84,'15.9900'),(1554,10,100,2,84,'1.0000'),(1555,10,503,2,84,'15.9900'),(1556,10,101,2,85,'1.0000'),(1557,10,99,2,85,'15.9900'),(1558,10,100,2,85,'1.0000'),(1559,10,503,2,85,'15.9900'),(1560,10,101,2,86,'1.0000'),(1561,10,99,2,86,'15.9900'),(1562,10,100,2,86,'1.0000'),(1563,10,503,2,86,'15.9900'),(1564,10,101,2,87,'1.0000'),(1565,10,99,2,87,'15.9900'),(1566,10,100,2,87,'1.0000'),(1567,10,503,2,87,'15.9900'),(1568,10,101,2,88,'1.0000'),(1569,10,99,2,88,'15.9900'),(1570,10,100,2,88,'1.0000'),(1571,10,503,2,88,'15.9900'),(1572,10,101,2,89,'1.0000'),(1573,10,99,2,89,'15.9900'),(1574,10,100,2,89,'1.0000'),(1575,10,503,2,89,'15.9900'),(1576,10,101,2,90,'1.0000'),(1577,10,99,2,90,'15.9900'),(1578,10,100,2,90,'1.0000'),(1579,10,503,2,90,'15.9900'),(1580,10,101,2,91,'1.0000'),(1581,10,99,2,91,'15.9900'),(1582,10,100,2,91,'1.0000'),(1583,10,503,2,91,'15.9900'),(1584,10,101,2,92,'1.0000'),(1585,10,99,2,92,'15.9900'),(1586,10,100,2,92,'1.0000'),(1587,10,503,2,92,'15.9900'),(1588,10,101,2,93,'3.0000'),(1589,10,99,2,93,'134.9900'),(1590,10,100,2,93,'29.9900'),(1591,10,503,2,93,'134.9900'),(1592,10,101,2,94,'3.0000'),(1593,10,99,2,94,'134.9900'),(1594,10,100,2,94,'29.9900'),(1595,10,503,2,94,'134.9900'),(1596,10,101,2,95,'3.0000'),(1597,10,99,2,95,'134.9900'),(1598,10,100,2,95,'29.9900'),(1599,10,503,2,95,'134.9900'),(1600,10,101,2,96,'3.0000'),(1601,10,99,2,96,'134.9900'),(1602,10,100,2,96,'29.9900'),(1603,10,503,2,96,'134.9900'),(1604,10,101,2,97,'3.0000'),(1605,10,99,2,97,'134.9900'),(1606,10,100,2,97,'29.9900'),(1607,10,503,2,97,'134.9900'),(1608,10,101,2,98,'2.0000'),(1609,10,99,2,98,'160.9900'),(1610,10,100,2,98,'29.9900'),(1611,10,503,2,98,'160.9900'),(1612,10,503,2,34,'160.9900'),(1613,10,101,2,99,'2.0000'),(1614,10,99,2,99,'160.9900'),(1615,10,100,2,99,'29.9900'),(1616,10,503,2,99,'160.9900'),(1617,10,101,2,100,'2.0000'),(1618,10,99,2,100,'160.9900'),(1619,10,100,2,100,'29.9900'),(1620,10,503,2,100,'160.9900'),(1621,10,101,2,101,'2.0000'),(1622,10,99,2,101,'160.9900'),(1623,10,100,2,101,'29.9900'),(1624,10,503,2,101,'160.9900'),(1625,10,101,2,102,'2.0000'),(1626,10,99,2,102,'160.9900'),(1627,10,100,2,102,'29.9900'),(1628,10,503,2,102,'160.9900'),(1629,10,101,2,103,'2.0000'),(1630,10,99,2,103,'69.9900'),(1631,10,100,2,103,'29.9900'),(1632,10,503,2,103,'69.9900'),(1633,10,503,2,31,'69.9900'),(1634,10,101,2,104,'2.0000'),(1635,10,99,2,104,'69.9900'),(1636,10,100,2,104,'29.9900'),(1637,10,503,2,104,'69.9900'),(1638,10,101,2,105,'2.0000'),(1639,10,99,2,105,'69.9900'),(1640,10,100,2,105,'29.9900'),(1641,10,503,2,105,'69.9900'),(1642,10,101,2,106,'2.0000'),(1643,10,99,2,106,'69.9900'),(1644,10,100,2,106,'29.9900'),(1645,10,503,2,106,'69.9900'),(1646,10,101,2,107,'2.0000'),(1647,10,99,2,107,'69.9900'),(1648,10,100,2,107,'29.9900'),(1649,10,503,2,107,'69.9900'),(1650,10,101,2,108,'2.0000'),(1651,10,99,2,108,'89.9900'),(1652,10,100,2,108,'29.9900'),(1653,10,503,2,108,'89.9900'),(1654,10,503,2,32,'89.9900'),(1655,10,101,2,109,'2.0000'),(1656,10,99,2,109,'89.9900'),(1657,10,100,2,109,'29.9900'),(1658,10,503,2,109,'89.9900'),(1659,10,101,2,110,'2.0000'),(1660,10,99,2,110,'89.9900'),(1661,10,100,2,110,'29.9900'),(1662,10,503,2,110,'89.9900'),(1663,10,101,2,111,'2.0000'),(1664,10,99,2,111,'89.9900'),(1665,10,100,2,111,'29.9900'),(1666,10,503,2,111,'89.9900'),(1667,10,101,2,112,'4.0000'),(1668,10,99,2,112,'159.9900'),(1669,10,100,2,112,'29.9900'),(1670,10,503,2,112,'159.9900'),(1671,10,101,2,113,'4.0000'),(1672,10,99,2,113,'159.9900'),(1673,10,100,2,113,'29.9900'),(1674,10,503,2,113,'159.9900'),(1675,10,101,2,114,'4.0000'),(1676,10,99,2,114,'159.9900'),(1677,10,100,2,114,'29.9900'),(1678,10,503,2,114,'159.9900'),(1679,10,101,2,115,'4.0000'),(1680,10,99,2,115,'159.9900'),(1681,10,100,2,115,'29.9900'),(1682,10,503,2,115,'159.9900'),(1683,10,503,2,33,'159.9900'),(1684,10,101,2,117,'0.5000'),(1685,10,99,2,117,'15.0000'),(1686,10,100,2,117,'2.0000'),(1687,10,503,2,117,'15.0000'),(1688,10,101,2,118,'0.5000'),(1689,10,99,2,118,'15.0000'),(1690,10,100,2,118,'2.0000'),(1691,10,503,2,118,'15.0000'),(1692,10,101,2,119,'0.5000'),(1693,10,99,2,119,'15.0000'),(1694,10,100,2,119,'2.0000'),(1695,10,503,2,119,'10.0000'),(1696,10,101,2,120,'0.5000'),(1697,10,99,2,120,'22.0000'),(1698,10,100,2,120,'2.0000'),(1699,10,503,2,120,'18.0000'),(1700,10,101,2,121,'0.5000'),(1701,10,99,2,121,'22.0000'),(1702,10,100,2,121,'2.0000'),(1703,10,503,2,121,'22.0000'),(1704,10,101,2,122,'0.5000'),(1705,10,99,2,122,'22.0000'),(1706,10,100,2,122,'2.0000'),(1707,10,503,2,122,'22.0000'),(1708,10,101,2,123,'0.4400'),(1709,10,99,2,123,'15.0000'),(1710,10,100,2,123,'2.0000'),(1711,10,503,2,123,'10.0000'),(1712,10,503,2,37,'15.0000'),(1713,10,101,2,124,'0.4400'),(1714,10,99,2,124,'15.0000'),(1715,10,100,2,124,'2.0000'),(1716,10,503,2,124,'15.0000'),(1717,10,101,2,125,'0.4400'),(1718,10,99,2,125,'15.0000'),(1719,10,100,2,125,'2.0000'),(1720,10,503,2,125,'15.0000'),(1721,10,101,2,126,'0.4400'),(1722,10,99,2,126,'13.5000'),(1723,10,100,2,126,'2.0000'),(1724,10,503,2,126,'9.5000'),(1725,10,503,2,38,'13.5000'),(1726,10,101,2,127,'0.4400'),(1727,10,99,2,127,'13.5000'),(1728,10,100,2,127,'2.0000'),(1729,10,503,2,127,'13.5000'),(1730,10,101,2,128,'0.4400'),(1731,10,99,2,128,'13.5000'),(1732,10,100,2,128,'2.0000'),(1733,10,503,2,128,'13.5000'),(1734,10,101,2,129,'0.4400'),(1735,10,99,2,129,'13.5000'),(1736,10,100,2,129,'2.0000'),(1737,10,503,2,129,'13.5000'),(1738,10,101,2,130,'0.4400'),(1739,10,99,2,130,'13.5000'),(1740,10,100,2,130,'2.0000'),(1741,10,503,2,130,'13.5000'),(1742,10,101,2,131,'0.4400'),(1743,10,99,2,131,'13.5000'),(1744,10,100,2,131,'2.0000'),(1745,10,503,2,131,'13.5000'),(1746,10,503,2,20,'150.0000'),(1747,10,503,2,16,'149.9900'),(1748,10,503,2,18,'399.9900'),(1749,10,99,2,133,'34.0000'),(1750,10,503,2,133,'34.0000'),(1751,10,99,2,132,'99.0000'),(1752,10,503,2,132,'99.0000'),(1753,10,99,2,134,'19.0000'),(1754,10,503,2,134,'19.0000'),(1755,10,101,2,135,'2.0000'),(1756,10,99,2,135,'41.9500'),(1757,10,100,2,135,'10.0000'),(1758,10,503,2,135,'41.9500'),(1762,10,101,3,16,'3.2000'),(1763,10,99,3,16,'149.9900'),(1764,10,100,3,16,'20.0000'),(1765,10,101,3,17,'15.2000'),(1766,10,99,3,17,'349.9900'),(1767,10,100,3,17,'29.9900'),(1768,10,101,3,18,'13.6000'),(1769,10,99,3,18,'399.9900'),(1770,10,100,3,18,'29.9900'),(1771,10,101,3,20,'1.0000'),(1772,10,99,3,20,'150.0000'),(1773,10,100,3,20,'29.9900'),(1774,10,101,3,25,'10.6000'),(1775,10,99,3,25,'2299.9900'),(1776,10,100,3,25,'1299.9900'),(1777,10,101,3,26,'11.4000'),(1778,10,99,3,26,'1799.9900'),(1779,10,100,3,26,'999.9900'),(1780,10,101,3,27,'2.8000'),(1781,10,99,3,27,'2699.9900'),(1782,10,100,3,27,'899.9900'),(1783,10,101,3,28,'10.0000'),(1784,10,99,3,28,'1599.9900'),(1785,10,100,3,28,'899.9900'),(1786,10,101,3,29,'1.0000'),(1787,10,99,3,29,'15.9900'),(1788,10,100,3,29,'1.0000'),(1789,10,101,3,30,'3.0000'),(1790,10,99,3,30,'134.9900'),(1791,10,100,3,30,'29.9900'),(1792,10,101,3,31,'2.0000'),(1793,10,99,3,31,'69.9900'),(1794,10,100,3,31,'29.9900'),(1795,10,101,3,32,'2.0000'),(1796,10,99,3,32,'89.9900'),(1797,10,100,3,32,'29.9900'),(1798,10,101,3,33,'4.0000'),(1799,10,99,3,33,'159.9900'),(1800,10,100,3,33,'29.9900'),(1801,10,101,3,34,'2.0000'),(1802,10,99,3,34,'160.9900'),(1803,10,100,3,34,'29.9900'),(1804,10,101,3,35,'0.5000'),(1805,10,99,3,35,'15.0000'),(1806,10,100,3,35,'2.0000'),(1807,10,101,3,36,'0.5000'),(1808,10,99,3,36,'22.0000'),(1809,10,100,3,36,'2.0000'),(1810,10,101,3,37,'0.4400'),(1811,10,99,3,37,'15.0000'),(1812,10,100,3,37,'2.0000'),(1813,10,101,3,38,'0.4400'),(1814,10,99,3,38,'13.5000'),(1815,10,100,3,38,'2.0000'),(1816,10,101,3,19,'30.0000'),(1817,10,99,3,19,'199.9900'),(1818,10,100,3,19,'29.9900'),(1819,10,101,3,39,'1.7500'),(1820,10,99,3,39,'30.0000'),(1821,10,100,3,39,'5.0000'),(1827,10,101,3,41,'128.9700'),(1828,10,99,3,41,'399.9900'),(1829,10,100,3,41,'100.0000'),(1830,10,503,3,41,'399.9900'),(1831,10,101,3,42,'150.0000'),(1832,10,99,3,42,'2299.0000'),(1833,10,100,3,42,'800.0000'),(1834,10,503,3,42,'2299.0000'),(1835,10,503,3,28,'1599.9900'),(1836,10,503,3,27,'2699.9900'),(1837,10,503,3,26,'1799.9900'),(1838,10,503,3,25,'2299.9900'),(1839,10,101,3,44,'4.0000'),(1840,10,99,3,44,'550.0000'),(1841,10,100,3,44,'200.0000'),(1842,10,503,3,44,'449.0000'),(1843,10,101,3,45,'1.0000'),(1844,10,99,3,45,'37.4900'),(1845,10,100,3,45,'20.0000'),(1846,10,503,3,45,'37.4900'),(1847,10,101,3,46,'2.0000'),(1848,10,99,3,46,'161.9400'),(1849,10,100,3,46,'29.9900'),(1850,10,503,3,46,'161.9400'),(1851,10,101,3,47,'3.0000'),(1852,10,99,3,47,'329.9900'),(1853,10,100,3,47,'29.9900'),(1854,10,503,3,47,'329.9900'),(1855,10,101,3,48,'2.0000'),(1856,10,99,3,48,'199.9900'),(1857,10,100,3,48,'29.9900'),(1858,10,503,3,48,'199.9900'),(1859,10,101,3,49,'2.0000'),(1860,10,99,3,49,'41.9500'),(1861,10,100,3,49,'10.0000'),(1862,10,503,3,49,'41.9500'),(1863,10,101,3,51,'20.0000'),(1864,10,99,3,51,'299.9900'),(1865,10,100,3,51,'50.0000'),(1866,10,503,3,51,'299.9900'),(1867,10,101,3,52,'50.0000'),(1868,10,99,3,52,'129.9900'),(1869,10,100,3,52,'50.0000'),(1870,10,503,3,52,'129.9900'),(1871,10,101,3,53,'200.0000'),(1872,10,99,3,53,'599.9900'),(1873,10,100,3,53,'200.0000'),(1874,10,503,3,53,'599.9900'),(1875,10,101,3,54,'500.0000'),(1876,10,99,3,54,'699.9900'),(1877,10,100,3,54,'300.0000'),(1878,10,503,3,54,'699.9900'),(1879,10,503,3,19,'199.9900'),(1904,10,503,3,17,'349.9900'),(1905,10,503,3,29,'15.9900'),(1906,10,503,3,35,'15.0000'),(1907,10,503,3,30,'134.9900'),(1908,10,503,3,36,'22.0000'),(1909,10,101,3,74,'2.0000'),(1910,10,99,3,74,'41.9500'),(1911,10,100,3,74,'10.0000'),(1912,10,503,3,74,'41.9500'),(1913,10,101,3,75,'2.0000'),(1914,10,99,3,75,'41.9500'),(1915,10,100,3,75,'10.0000'),(1916,10,503,3,75,'41.9500'),(1917,10,101,3,79,'2.0000'),(1918,10,99,3,79,'41.9500'),(1919,10,100,3,79,'10.0000'),(1920,10,503,3,79,'41.9500'),(1921,10,101,3,80,'2.0000'),(1922,10,99,3,80,'41.9500'),(1923,10,100,3,80,'10.0000'),(1924,10,503,3,80,'41.9500'),(1925,10,101,3,81,'2.0000'),(1926,10,99,3,81,'41.9500'),(1927,10,100,3,81,'10.0000'),(1928,10,503,3,81,'41.9500'),(1929,10,101,3,82,'2.0000'),(1930,10,99,3,82,'41.9500'),(1931,10,100,3,82,'10.0000'),(1932,10,503,3,82,'41.9500'),(1933,10,101,3,83,'1.0000'),(1934,10,99,3,83,'15.9900'),(1935,10,100,3,83,'2.0000'),(1936,10,503,3,83,'13.9900'),(1937,10,101,3,84,'1.0000'),(1938,10,99,3,84,'15.9900'),(1939,10,100,3,84,'1.0000'),(1940,10,503,3,84,'15.9900'),(1941,10,101,3,85,'1.0000'),(1942,10,99,3,85,'15.9900'),(1943,10,100,3,85,'1.0000'),(1944,10,503,3,85,'15.9900'),(1945,10,101,3,86,'1.0000'),(1946,10,99,3,86,'15.9900'),(1947,10,100,3,86,'1.0000'),(1948,10,503,3,86,'15.9900'),(1949,10,101,3,87,'1.0000'),(1950,10,99,3,87,'15.9900'),(1951,10,100,3,87,'1.0000'),(1952,10,503,3,87,'15.9900'),(1953,10,101,3,88,'1.0000'),(1954,10,99,3,88,'15.9900'),(1955,10,100,3,88,'1.0000'),(1956,10,503,3,88,'15.9900'),(1957,10,101,3,89,'1.0000'),(1958,10,99,3,89,'15.9900'),(1959,10,100,3,89,'1.0000'),(1960,10,503,3,89,'15.9900'),(1961,10,101,3,90,'1.0000'),(1962,10,99,3,90,'15.9900'),(1963,10,100,3,90,'1.0000'),(1964,10,503,3,90,'15.9900'),(1965,10,101,3,91,'1.0000'),(1966,10,99,3,91,'15.9900'),(1967,10,100,3,91,'1.0000'),(1968,10,503,3,91,'15.9900'),(1969,10,101,3,92,'1.0000'),(1970,10,99,3,92,'15.9900'),(1971,10,100,3,92,'1.0000'),(1972,10,503,3,92,'15.9900'),(1973,10,101,3,93,'3.0000'),(1974,10,99,3,93,'134.9900'),(1975,10,100,3,93,'29.9900'),(1976,10,503,3,93,'134.9900'),(1977,10,101,3,94,'3.0000'),(1978,10,99,3,94,'134.9900'),(1979,10,100,3,94,'29.9900'),(1980,10,503,3,94,'134.9900'),(1981,10,101,3,95,'3.0000'),(1982,10,99,3,95,'134.9900'),(1983,10,100,3,95,'29.9900'),(1984,10,503,3,95,'134.9900'),(1985,10,101,3,96,'3.0000'),(1986,10,99,3,96,'134.9900'),(1987,10,100,3,96,'29.9900'),(1988,10,503,3,96,'134.9900'),(1989,10,101,3,97,'3.0000'),(1990,10,99,3,97,'134.9900'),(1991,10,100,3,97,'29.9900'),(1992,10,503,3,97,'134.9900'),(1993,10,101,3,98,'2.0000'),(1994,10,99,3,98,'160.9900'),(1995,10,100,3,98,'29.9900'),(1996,10,503,3,98,'160.9900'),(1997,10,503,3,34,'160.9900'),(1998,10,101,3,99,'2.0000'),(1999,10,99,3,99,'160.9900'),(2000,10,100,3,99,'29.9900'),(2001,10,503,3,99,'160.9900'),(2002,10,101,3,100,'2.0000'),(2003,10,99,3,100,'160.9900'),(2004,10,100,3,100,'29.9900'),(2005,10,503,3,100,'160.9900'),(2006,10,101,3,101,'2.0000'),(2007,10,99,3,101,'160.9900'),(2008,10,100,3,101,'29.9900'),(2009,10,503,3,101,'160.9900'),(2010,10,101,3,102,'2.0000'),(2011,10,99,3,102,'160.9900'),(2012,10,100,3,102,'29.9900'),(2013,10,503,3,102,'160.9900'),(2014,10,101,3,103,'2.0000'),(2015,10,99,3,103,'69.9900'),(2016,10,100,3,103,'29.9900'),(2017,10,503,3,103,'69.9900'),(2018,10,503,3,31,'69.9900'),(2019,10,101,3,104,'2.0000'),(2020,10,99,3,104,'69.9900'),(2021,10,100,3,104,'29.9900'),(2022,10,503,3,104,'69.9900'),(2023,10,101,3,105,'2.0000'),(2024,10,99,3,105,'69.9900'),(2025,10,100,3,105,'29.9900'),(2026,10,503,3,105,'69.9900'),(2027,10,101,3,106,'2.0000'),(2028,10,99,3,106,'69.9900'),(2029,10,100,3,106,'29.9900'),(2030,10,503,3,106,'69.9900'),(2031,10,101,3,107,'2.0000'),(2032,10,99,3,107,'69.9900'),(2033,10,100,3,107,'29.9900'),(2034,10,503,3,107,'69.9900'),(2035,10,101,3,108,'2.0000'),(2036,10,99,3,108,'89.9900'),(2037,10,100,3,108,'29.9900'),(2038,10,503,3,108,'89.9900'),(2039,10,503,3,32,'89.9900'),(2040,10,101,3,109,'2.0000'),(2041,10,99,3,109,'89.9900'),(2042,10,100,3,109,'29.9900'),(2043,10,503,3,109,'89.9900'),(2044,10,101,3,110,'2.0000'),(2045,10,99,3,110,'89.9900'),(2046,10,100,3,110,'29.9900'),(2047,10,503,3,110,'89.9900'),(2048,10,101,3,111,'2.0000'),(2049,10,99,3,111,'89.9900'),(2050,10,100,3,111,'29.9900'),(2051,10,503,3,111,'89.9900'),(2052,10,101,3,112,'4.0000'),(2053,10,99,3,112,'159.9900'),(2054,10,100,3,112,'29.9900'),(2055,10,503,3,112,'159.9900'),(2056,10,101,3,113,'4.0000'),(2057,10,99,3,113,'159.9900'),(2058,10,100,3,113,'29.9900'),(2059,10,503,3,113,'159.9900'),(2060,10,101,3,114,'4.0000'),(2061,10,99,3,114,'159.9900'),(2062,10,100,3,114,'29.9900'),(2063,10,503,3,114,'159.9900'),(2064,10,101,3,115,'4.0000'),(2065,10,99,3,115,'159.9900'),(2066,10,100,3,115,'29.9900'),(2067,10,503,3,115,'159.9900'),(2068,10,503,3,33,'159.9900'),(2069,10,101,3,117,'0.5000'),(2070,10,99,3,117,'15.0000'),(2071,10,100,3,117,'2.0000'),(2072,10,503,3,117,'15.0000'),(2073,10,101,3,118,'0.5000'),(2074,10,99,3,118,'15.0000'),(2075,10,100,3,118,'2.0000'),(2076,10,503,3,118,'15.0000'),(2077,10,101,3,119,'0.5000'),(2078,10,99,3,119,'15.0000'),(2079,10,100,3,119,'2.0000'),(2080,10,503,3,119,'10.0000'),(2081,10,101,3,120,'0.5000'),(2082,10,99,3,120,'22.0000'),(2083,10,100,3,120,'2.0000'),(2084,10,503,3,120,'18.0000'),(2085,10,101,3,121,'0.5000'),(2086,10,99,3,121,'22.0000'),(2087,10,100,3,121,'2.0000'),(2088,10,503,3,121,'22.0000'),(2089,10,101,3,122,'0.5000'),(2090,10,99,3,122,'22.0000'),(2091,10,100,3,122,'2.0000'),(2092,10,503,3,122,'22.0000'),(2093,10,101,3,123,'0.4400'),(2094,10,99,3,123,'15.0000'),(2095,10,100,3,123,'2.0000'),(2096,10,503,3,123,'10.0000'),(2097,10,503,3,37,'15.0000'),(2098,10,101,3,124,'0.4400'),(2099,10,99,3,124,'15.0000'),(2100,10,100,3,124,'2.0000'),(2101,10,503,3,124,'15.0000'),(2102,10,101,3,125,'0.4400'),(2103,10,99,3,125,'15.0000'),(2104,10,100,3,125,'2.0000'),(2105,10,503,3,125,'15.0000'),(2106,10,101,3,126,'0.4400'),(2107,10,99,3,126,'13.5000'),(2108,10,100,3,126,'2.0000'),(2109,10,503,3,126,'9.5000'),(2110,10,503,3,38,'13.5000'),(2111,10,101,3,127,'0.4400'),(2112,10,99,3,127,'13.5000'),(2113,10,100,3,127,'2.0000'),(2114,10,503,3,127,'13.5000'),(2115,10,101,3,128,'0.4400'),(2116,10,99,3,128,'13.5000'),(2117,10,100,3,128,'2.0000'),(2118,10,503,3,128,'13.5000'),(2119,10,101,3,129,'0.4400'),(2120,10,99,3,129,'13.5000'),(2121,10,100,3,129,'2.0000'),(2122,10,503,3,129,'13.5000'),(2123,10,101,3,130,'0.4400'),(2124,10,99,3,130,'13.5000'),(2125,10,100,3,130,'2.0000'),(2126,10,503,3,130,'13.5000'),(2127,10,101,3,131,'0.4400'),(2128,10,99,3,131,'13.5000'),(2129,10,100,3,131,'2.0000'),(2130,10,503,3,131,'13.5000'),(2131,10,503,3,20,'150.0000'),(2132,10,503,3,16,'149.9900'),(2133,10,503,3,18,'399.9900'),(2134,10,99,3,133,'34.0000'),(2135,10,503,3,133,'34.0000'),(2136,10,99,3,132,'99.0000'),(2137,10,503,3,132,'99.0000'),(2138,10,99,3,134,'19.0000'),(2139,10,503,3,134,'19.0000'),(2140,10,101,3,135,'2.0000'),(2141,10,99,3,135,'41.9500'),(2142,10,100,3,135,'10.0000'),(2143,10,503,3,135,'41.9500'),(2147,10,101,0,137,'0.4400'),(2148,10,99,0,137,'13.5000'),(2149,10,100,0,137,'2.0000'),(2150,10,503,0,137,'13.5000'),(2151,10,101,0,134,'5.0000'),(2152,10,101,1,134,'5.0000'),(2153,10,101,2,134,'5.0000'),(2154,10,101,3,134,'5.0000'),(2155,10,101,0,138,'10.0000'),(2156,10,99,0,138,'150.0000'),(2157,10,101,0,139,'10.0000'),(2158,10,99,0,139,'199.9900'),(2159,10,101,0,140,'1.0000'),(2160,10,99,0,140,'199.9900'),(2161,10,101,0,141,'1.0000'),(2162,10,99,0,141,'150.9900'),(2163,10,99,0,142,'150.0000'),(2164,10,101,0,143,'1.0000'),(2165,10,99,0,143,'99.9900'),(2166,10,99,0,144,'250.0000'),(2167,10,101,0,145,'1.0000'),(2168,10,99,0,145,'335.9900'),(2169,10,99,0,146,'325.0000'),(2170,10,101,0,147,'1.0000'),(2171,10,99,0,147,'399.9900'),(2172,10,101,0,148,'1.0000'),(2173,10,99,0,148,'98.9900'),(2174,10,101,0,149,'1.0000'),(2175,10,99,0,149,'399.0000'),(2176,10,101,0,150,'1.0000'),(2177,10,99,0,150,'299.0000'),(2178,10,101,0,151,'1.0000'),(2179,10,99,0,151,'98.9900'),(2180,10,101,0,152,'1.0000'),(2181,10,99,0,152,'699.9900'),(2182,10,101,0,153,'1.0000'),(2183,10,99,0,153,'2049.9900'),(2184,10,101,0,154,'1.0000'),(2185,10,99,0,154,'299.0000'),(2186,10,101,0,155,'1.0000'),(2187,10,99,0,155,'99.0000'),(2188,10,101,0,156,'1.0000'),(2189,10,99,0,156,'399.9900'),(2190,10,101,0,157,'1.0000'),(2191,10,99,0,157,'699.9900'),(2192,10,101,0,159,'1.0000'),(2193,10,99,0,159,'99.9900'),(2194,10,101,0,160,'1.0000'),(2195,10,99,0,160,'79.9900'),(2196,10,101,0,161,'1.0000'),(2197,10,99,0,161,'239.9900'),(2198,10,101,0,162,'1.0000'),(2199,10,99,0,162,'59.9900'),(2200,10,101,0,164,'20.0000'),(2201,10,99,0,164,'4999.9500'),(2202,10,101,0,165,'10.0000'),(2203,10,101,0,166,'0.3000'),(2204,10,99,0,166,'750.0000'),(2205,10,567,0,165,'75.0000'),(2219,10,101,0,132,'42.0000');
/*!40000 ALTER TABLE `catalog_product_entity_decimal` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_entity_gallery`
--

DROP TABLE IF EXISTS `catalog_product_entity_gallery`;
CREATE TABLE `catalog_product_entity_gallery` (
  `value_id` int(11) NOT NULL auto_increment,
  `entity_type_id` smallint(5) unsigned NOT NULL default '0',
  `attribute_id` smallint(5) unsigned NOT NULL default '0',
  `store_id` smallint(5) unsigned NOT NULL default '0',
  `entity_id` int(10) unsigned NOT NULL default '0',
  `position` int(11) NOT NULL default '0',
  `value` varchar(255) NOT NULL default '',
  PRIMARY KEY  (`value_id`),
  KEY `IDX_BASE` USING BTREE (`entity_type_id`,`entity_id`,`attribute_id`,`store_id`),
  KEY `FK_ATTRIBUTE_GALLERY_ENTITY` (`entity_id`),
  KEY `FK_CATALOG_CATEGORY_ENTITY_GALLERY_ATTRIBUTE` (`attribute_id`),
  KEY `FK_CATALOG_CATEGORY_ENTITY_GALLERY_STORE` (`store_id`),
  CONSTRAINT `FK_CATALOG_PRODUCT_ENTITY_GALLERY_ATTRIBUTE` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CATALOG_PRODUCT_ENTITY_GALLERY_ENTITY` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CATALOG_PRODUCT_ENTITY_GALLERY_STORE` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=249 DEFAULT CHARSET=utf8;

--
-- Dumping data for table `catalog_product_entity_gallery`
--

LOCK TABLES `catalog_product_entity_gallery` WRITE;
/*!40000 ALTER TABLE `catalog_product_entity_gallery` DISABLE KEYS */;
INSERT INTO `catalog_product_entity_gallery` VALUES (13,10,271,1,17,0,'image_17_13.jpg'),(14,10,271,1,17,0,'image_17_14.jpg'),(17,10,271,1,18,0,'image_18_17.jpg'),(18,10,271,1,18,0,'image_18_18.jpg'),(51,10,271,1,29,0,'image_29_51.jpg'),(52,10,271,1,29,0,'image_29_52.jpg'),(55,10,271,1,30,0,'image_30_55.jpg'),(56,10,271,1,30,0,'image_30_56.jpg'),(59,10,271,1,31,0,'image_31_59.jpg'),(60,10,271,1,31,0,'image_31_60.jpg'),(63,10,271,1,32,0,'image_32_63.jpg'),(64,10,271,1,32,0,'image_32_64.jpg'),(67,10,271,1,33,0,'image_33_67.jpg'),(68,10,271,1,33,0,'image_33_68.jpg'),(71,10,271,1,34,0,'image_34_71.jpg'),(72,10,271,1,34,0,'image_34_72.jpg'),(74,10,271,1,35,0,'image_35_74.jpg'),(76,10,271,1,36,0,'image_36_76.jpg'),(78,10,271,1,37,0,'image_37_78.jpg'),(82,10,271,1,38,0,'image_38_82.jpg'),(84,10,271,1,19,2,'image_19_84.jpg'),(88,10,271,1,39,0,'image_39_88.jpg'),(101,10,271,1,45,0,'image_45_101.jpg'),(102,10,271,1,45,0,'image_45_102.jpg'),(107,10,271,1,46,0,'image_46_107.jpg'),(108,10,271,1,46,0,'image_46_108.jpg'),(113,10,271,1,47,0,'image_47_113.jpg'),(114,10,271,1,47,0,'image_47_114.jpg'),(117,10,271,1,48,0,'image_48_117.jpg'),(118,10,271,1,48,0,'image_48_118.jpg'),(121,10,271,1,44,0,'image_44_121.jpg'),(124,10,271,1,49,0,'image_49_124.jpg'),(125,10,271,1,49,0,'image_49_125.jpg'),(126,10,271,1,74,0,'image_74_126.jpg'),(127,10,271,1,74,0,'image_74_127.jpg'),(128,10,271,1,75,0,'image_75_128.jpg'),(129,10,271,1,75,0,'image_75_129.jpg'),(136,10,271,1,79,0,'image_79_136.jpg'),(137,10,271,1,79,0,'image_79_137.jpg'),(138,10,271,1,80,0,'image_80_138.jpg'),(139,10,271,1,80,0,'image_80_139.jpg'),(140,10,271,1,81,0,'image_81_140.jpg'),(141,10,271,1,81,0,'image_81_141.jpg'),(142,10,271,1,82,0,'image_82_142.jpg'),(143,10,271,1,82,0,'image_82_143.jpg'),(146,10,271,1,83,0,'image_83_146.jpg'),(147,10,271,1,83,0,'image_83_147.jpg'),(148,10,271,1,84,0,'image_84_148.jpg'),(149,10,271,1,84,0,'image_84_149.jpg'),(150,10,271,1,85,0,'image_85_150.jpg'),(151,10,271,1,85,0,'image_85_151.jpg'),(152,10,271,1,86,0,'image_86_152.jpg'),(153,10,271,1,86,0,'image_86_153.jpg'),(154,10,271,1,87,0,'image_87_154.jpg'),(155,10,271,1,87,0,'image_87_155.jpg'),(156,10,271,1,88,0,'image_88_156.jpg'),(157,10,271,1,88,0,'image_88_157.jpg'),(158,10,271,1,89,0,'image_89_158.jpg'),(159,10,271,1,89,0,'image_89_159.jpg'),(160,10,271,1,90,0,'image_90_160.jpg'),(161,10,271,1,90,0,'image_90_161.jpg'),(162,10,271,1,91,0,'image_91_162.jpg'),(163,10,271,1,91,0,'image_91_163.jpg'),(164,10,271,1,92,0,'image_92_164.jpg'),(165,10,271,1,92,0,'image_92_165.jpg'),(168,10,271,1,93,0,'image_93_168.jpg'),(170,10,271,1,94,0,'image_94_170.jpg'),(171,10,271,1,94,0,'image_94_171.jpg'),(172,10,271,1,95,0,'image_95_172.jpg'),(173,10,271,1,95,0,'image_95_173.jpg'),(174,10,271,1,96,0,'image_96_174.jpg'),(175,10,271,1,96,0,'image_96_175.jpg'),(176,10,271,1,97,0,'image_97_176.jpg'),(177,10,271,1,97,0,'image_97_177.jpg'),(178,10,271,1,99,0,'image_99_178.jpg'),(179,10,271,1,99,0,'image_99_179.jpg'),(180,10,271,1,100,0,'image_100_180.jpg'),(181,10,271,1,100,0,'image_100_181.jpg'),(182,10,271,1,101,0,'image_101_182.jpg'),(183,10,271,1,101,0,'image_101_183.jpg'),(184,10,271,1,102,0,'image_102_184.jpg'),(185,10,271,1,102,0,'image_102_185.jpg'),(188,10,271,1,103,0,'image_103_188.jpg'),(189,10,271,1,103,0,'image_103_189.jpg'),(190,10,271,1,104,0,'image_104_190.jpg'),(191,10,271,1,104,0,'image_104_191.jpg'),(192,10,271,1,105,0,'image_105_192.jpg'),(193,10,271,1,105,0,'image_105_193.jpg'),(194,10,271,1,106,0,'image_106_194.jpg'),(195,10,271,1,106,0,'image_106_195.jpg'),(196,10,271,1,107,0,'image_107_196.jpg'),(197,10,271,1,107,0,'image_107_197.jpg'),(200,10,271,1,108,0,'image_108_200.jpg'),(201,10,271,1,108,0,'image_108_201.jpg'),(202,10,271,1,109,0,'image_109_202.jpg'),(203,10,271,1,109,0,'image_109_203.jpg'),(204,10,271,1,110,0,'image_110_204.jpg'),(205,10,271,1,110,0,'image_110_205.jpg'),(206,10,271,1,111,0,'image_111_206.jpg'),(207,10,271,1,111,0,'image_111_207.jpg'),(210,10,271,1,112,0,'image_112_210.jpg'),(211,10,271,1,112,0,'image_112_211.jpg'),(212,10,271,1,113,0,'image_113_212.jpg'),(213,10,271,1,113,0,'image_113_213.jpg'),(214,10,271,1,114,0,'image_114_214.jpg'),(215,10,271,1,114,0,'image_114_215.jpg'),(216,10,271,1,115,0,'image_115_216.jpg'),(217,10,271,1,115,0,'image_115_217.jpg'),(220,10,271,1,117,0,'image_117_220.jpg'),(221,10,271,1,118,0,'image_118_221.jpg'),(223,10,271,1,119,0,'image_119_223.jpg'),(225,10,271,1,120,0,'image_120_225.jpg'),(226,10,271,1,121,0,'image_121_226.jpg'),(227,10,271,1,122,0,'image_122_227.jpg'),(229,10,271,1,123,0,'image_123_229.jpg'),(230,10,271,1,124,0,'image_124_230.jpg'),(231,10,271,1,125,0,'image_125_231.jpg'),(233,10,271,1,126,0,'image_126_233.jpg'),(234,10,271,1,127,0,'image_127_234.jpg'),(235,10,271,1,128,0,'image_128_235.jpg'),(236,10,271,1,129,0,'image_129_236.jpg'),(237,10,271,1,130,0,'image_130_237.jpg'),(238,10,271,1,131,0,'image_131_238.jpg'),(240,10,271,1,126,0,'image_126_240.jpg'),(241,10,271,1,16,0,'image_16_241.jpg'),(242,10,271,1,16,0,'image_16_242.jpg'),(247,10,271,1,135,0,'image_135_247.jpg'),(248,10,271,1,135,0,'image_135_248.jpg');
/*!40000 ALTER TABLE `catalog_product_entity_gallery` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_entity_int`
--

DROP TABLE IF EXISTS `catalog_product_entity_int`;
CREATE TABLE `catalog_product_entity_int` (
  `value_id` int(11) NOT NULL auto_increment,
  `entity_type_id` mediumint(8) unsigned NOT NULL default '0',
  `attribute_id` smallint(5) unsigned NOT NULL default '0',
  `store_id` smallint(5) unsigned NOT NULL default '0',
  `entity_id` int(10) unsigned NOT NULL default '0',
  `value` int(11) NOT NULL default '0',
  PRIMARY KEY  (`value_id`),
  KEY `FK_CATALOG_PRODUCT_ENTITY_INT_ATTRIBUTE` (`attribute_id`),
  KEY `FK_CATALOG_PRODUCT_ENTITY_INT_STORE` (`store_id`),
  KEY `FK_CATALOG_PRODUCT_ENTITY_INT_PRODUCT_ENTITY` (`entity_id`),
  KEY `IDX_ATTRIBUTE_VALUE` (`entity_id`,`attribute_id`,`store_id`),
  CONSTRAINT `FK_CATALOG_PRODUCT_ENTITY_INT_ATTRIBUTE` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CATALOG_PRODUCT_ENTITY_INT_PRODUCT_ENTITY` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CATALOG_PRODUCT_ENTITY_INT_STORE` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=4108 DEFAULT CHARSET=utf8;

--
-- Dumping data for table `catalog_product_entity_int`
--

LOCK TABLES `catalog_product_entity_int` WRITE;
/*!40000 ALTER TABLE `catalog_product_entity_int` DISABLE KEYS */;
INSERT INTO `catalog_product_entity_int` VALUES (145,10,273,1,16,1),(146,10,274,1,16,2),(148,10,272,1,16,24),(153,10,272,1,17,23),(155,10,273,1,17,1),(156,10,274,1,17,2),(161,10,272,1,18,24),(163,10,273,1,18,1),(164,10,274,1,18,2),(177,10,272,1,20,23),(179,10,273,1,20,1),(180,10,274,1,20,2),(218,10,272,1,25,23),(220,10,273,1,25,1),(221,10,274,1,25,2),(226,10,272,1,26,24),(228,10,273,1,26,1),(229,10,274,1,26,2),(234,10,272,1,27,24),(236,10,273,1,27,1),(237,10,274,1,27,2),(242,10,272,1,28,24),(244,10,273,1,28,1),(245,10,274,1,28,2),(252,10,501,1,29,35),(253,10,272,1,29,25),(254,10,502,1,29,46),(256,10,273,1,29,1),(257,10,274,1,29,2),(265,10,501,1,30,36),(266,10,272,1,30,61),(267,10,502,1,30,41),(268,10,107,1,30,49),(270,10,273,1,30,1),(271,10,274,1,30,2),(279,10,501,1,31,35),(280,10,272,1,31,26),(281,10,502,1,31,45),(282,10,107,1,31,51),(284,10,273,1,31,1),(285,10,274,1,31,2),(293,10,501,1,32,35),(294,10,272,1,32,26),(295,10,502,1,32,46),(296,10,107,1,32,51),(298,10,273,1,32,1),(299,10,274,1,32,2),(306,10,501,1,33,35),(307,10,502,1,33,46),(308,10,107,1,33,47),(310,10,273,1,33,1),(311,10,274,1,33,2),(319,10,501,1,34,36),(320,10,272,1,34,24),(321,10,502,1,34,41),(322,10,107,1,34,52),(324,10,273,1,34,1),(325,10,274,1,34,2),(332,10,272,1,35,22),(335,10,273,1,35,1),(336,10,274,1,35,2),(342,10,272,1,36,60),(345,10,273,1,36,1),(346,10,274,1,36,2),(352,10,272,1,37,60),(355,10,273,1,37,1),(356,10,274,1,37,2),(362,10,272,1,38,26),(365,10,273,1,38,1),(366,10,274,1,38,2),(367,10,272,1,19,23),(369,10,273,1,19,1),(370,10,274,1,19,2),(376,10,272,1,39,22),(379,10,273,1,39,1),(380,10,274,1,39,2),(397,10,272,1,41,59),(398,10,508,1,41,71),(400,10,273,1,41,1),(401,10,274,1,41,2),(407,10,272,1,42,59),(408,10,508,1,42,71),(410,10,273,1,42,1),(411,10,274,1,42,2),(457,10,272,1,44,24),(458,10,513,1,44,90),(460,10,273,1,44,1),(461,10,274,1,44,2),(472,10,272,1,45,23),(473,10,513,1,45,93),(475,10,273,1,45,1),(476,10,274,1,45,2),(487,10,272,1,46,23),(488,10,513,1,46,91),(490,10,273,1,46,1),(491,10,274,1,46,2),(502,10,272,1,47,23),(503,10,513,1,47,90),(505,10,273,1,47,1),(506,10,274,1,47,2),(512,10,272,1,48,23),(513,10,513,1,48,93),(515,10,273,1,48,1),(516,10,274,1,48,2),(528,10,501,1,49,35),(529,10,272,1,49,59),(530,10,502,1,49,40),(532,10,273,1,49,1),(533,10,274,1,49,2),(535,10,107,1,49,97),(549,10,272,1,51,26),(550,10,508,1,51,72),(552,10,273,1,51,1),(553,10,274,1,51,2),(559,10,272,1,52,26),(560,10,508,1,52,72),(562,10,273,1,52,1),(563,10,274,1,52,2),(569,10,272,1,53,26),(570,10,508,1,53,72),(572,10,273,1,53,1),(573,10,274,1,53,2),(578,10,272,1,54,26),(579,10,508,1,54,72),(580,10,273,1,54,1),(581,10,274,1,54,2),(807,10,526,1,16,4),(809,10,526,1,17,4),(811,10,526,1,18,4),(814,10,526,1,20,4),(816,10,526,1,25,4),(818,10,526,1,26,4),(820,10,526,1,27,4),(822,10,526,1,28,4),(824,10,526,1,29,1),(826,10,526,1,30,1),(828,10,526,1,31,1),(830,10,526,1,32,1),(832,10,526,1,33,1),(834,10,526,1,34,1),(836,10,526,1,35,1),(838,10,526,1,36,1),(840,10,526,1,37,1),(842,10,526,1,38,1),(843,10,526,1,19,4),(845,10,526,1,39,4),(849,10,526,1,41,4),(851,10,526,1,42,4),(853,10,526,1,44,4),(855,10,526,1,45,4),(857,10,526,1,46,4),(859,10,526,1,47,4),(861,10,526,1,48,4),(863,10,526,1,49,1),(865,10,526,1,51,4),(867,10,526,1,52,4),(869,10,526,1,53,4),(871,10,526,1,54,4),(899,10,510,1,28,74),(901,10,510,1,27,76),(903,10,510,1,26,79),(905,10,510,1,25,77),(906,10,107,1,29,97),(915,10,501,1,74,35),(916,10,272,1,74,59),(917,10,502,1,74,46),(919,10,273,1,74,1),(920,10,274,1,74,2),(921,10,107,1,74,97),(922,10,526,1,74,1),(931,10,501,1,75,35),(932,10,272,1,75,59),(933,10,502,1,75,45),(935,10,273,1,75,1),(936,10,274,1,75,2),(937,10,107,1,75,97),(938,10,526,1,75,1),(970,10,501,1,79,35),(971,10,272,1,79,59),(972,10,502,1,79,44),(974,10,273,1,79,1),(975,10,274,1,79,2),(976,10,107,1,79,97),(977,10,526,1,79,1),(986,10,501,1,80,35),(987,10,272,1,80,59),(988,10,502,1,80,43),(990,10,273,1,80,1),(991,10,274,1,80,2),(992,10,107,1,80,97),(993,10,526,1,80,1),(1002,10,501,1,81,35),(1003,10,272,1,81,59),(1004,10,502,1,81,42),(1006,10,273,1,81,1),(1007,10,274,1,81,2),(1008,10,107,1,81,97),(1009,10,526,1,81,1),(1018,10,501,1,82,35),(1019,10,272,1,82,59),(1020,10,502,1,82,41),(1022,10,273,1,82,1),(1023,10,274,1,82,2),(1024,10,107,1,82,97),(1025,10,526,1,82,1),(1031,10,273,1,83,1),(1032,10,274,1,83,2),(1033,10,526,1,83,4),(1034,10,107,1,83,97),(1035,10,272,1,83,25),(1044,10,501,1,84,35),(1045,10,272,1,84,25),(1046,10,502,1,84,45),(1048,10,273,1,84,1),(1049,10,274,1,84,2),(1050,10,526,1,84,1),(1051,10,107,1,84,97),(1060,10,501,1,85,35),(1061,10,272,1,85,25),(1062,10,502,1,85,44),(1064,10,273,1,85,1),(1065,10,274,1,85,2),(1066,10,526,1,85,1),(1067,10,107,1,85,97),(1076,10,501,1,86,35),(1077,10,272,1,86,25),(1078,10,502,1,86,43),(1080,10,273,1,86,1),(1081,10,274,1,86,2),(1082,10,526,1,86,1),(1083,10,107,1,86,97),(1092,10,501,1,87,35),(1093,10,272,1,87,25),(1094,10,502,1,87,42),(1096,10,273,1,87,1),(1097,10,274,1,87,2),(1098,10,526,1,87,1),(1099,10,107,1,87,97),(1108,10,501,1,88,36),(1109,10,272,1,88,25),(1110,10,502,1,88,41),(1112,10,273,1,88,1),(1113,10,274,1,88,2),(1114,10,526,1,88,1),(1115,10,107,1,88,97),(1124,10,501,1,89,36),(1125,10,272,1,89,25),(1126,10,502,1,89,40),(1128,10,273,1,89,1),(1129,10,274,1,89,2),(1130,10,526,1,89,1),(1131,10,107,1,89,97),(1140,10,501,1,90,36),(1141,10,272,1,90,25),(1142,10,502,1,90,39),(1144,10,273,1,90,1),(1145,10,274,1,90,2),(1146,10,526,1,90,1),(1147,10,107,1,90,97),(1156,10,501,1,91,36),(1157,10,272,1,91,25),(1158,10,502,1,91,38),(1160,10,273,1,91,1),(1161,10,274,1,91,2),(1162,10,526,1,91,1),(1163,10,107,1,91,97),(1172,10,501,1,92,36),(1173,10,272,1,92,25),(1174,10,502,1,92,37),(1176,10,273,1,92,1),(1177,10,274,1,92,2),(1178,10,526,1,92,1),(1179,10,107,1,92,97),(1186,10,273,1,93,1),(1187,10,274,1,93,2),(1188,10,526,1,93,4),(1189,10,107,1,93,53),(1190,10,272,1,93,61),(1191,10,501,1,93,36),(1200,10,501,1,94,36),(1201,10,272,1,94,61),(1202,10,502,1,94,40),(1203,10,107,1,94,49),(1205,10,273,1,94,1),(1206,10,274,1,94,2),(1207,10,526,1,94,1),(1216,10,501,1,95,36),(1217,10,272,1,95,61),(1218,10,502,1,95,39),(1219,10,107,1,95,49),(1221,10,273,1,95,1),(1222,10,274,1,95,2),(1223,10,526,1,95,1),(1232,10,501,1,96,36),(1233,10,272,1,96,61),(1234,10,502,1,96,38),(1235,10,107,1,96,49),(1237,10,273,1,96,1),(1238,10,274,1,96,2),(1239,10,526,1,96,1),(1248,10,501,1,97,36),(1249,10,272,1,97,61),(1250,10,502,1,97,37),(1251,10,107,1,97,49),(1253,10,273,1,97,1),(1254,10,274,1,97,2),(1255,10,526,1,97,1),(1262,10,273,1,98,1),(1263,10,274,1,98,2),(1264,10,526,1,98,4),(1265,10,107,1,98,52),(1266,10,272,1,98,24),(1267,10,501,1,98,36),(1276,10,501,1,99,36),(1277,10,272,1,99,24),(1278,10,502,1,99,40),(1279,10,107,1,99,52),(1281,10,273,1,99,1),(1282,10,274,1,99,2),(1283,10,526,1,99,1),(1292,10,501,1,100,36),(1293,10,272,1,100,24),(1294,10,502,1,100,39),(1295,10,107,1,100,52),(1297,10,273,1,100,1),(1298,10,274,1,100,2),(1299,10,526,1,100,1),(1308,10,501,1,101,36),(1309,10,272,1,101,24),(1310,10,502,1,101,38),(1311,10,107,1,101,52),(1313,10,273,1,101,1),(1314,10,274,1,101,2),(1315,10,526,1,101,1),(1324,10,501,1,102,36),(1325,10,272,1,102,24),(1326,10,502,1,102,37),(1327,10,107,1,102,52),(1329,10,273,1,102,1),(1330,10,274,1,102,2),(1331,10,526,1,102,1),(1338,10,273,1,103,1),(1339,10,274,1,103,2),(1340,10,526,1,103,4),(1341,10,107,1,103,52),(1342,10,272,1,103,26),(1343,10,501,1,103,35),(1352,10,501,1,104,35),(1353,10,272,1,104,26),(1354,10,502,1,104,44),(1355,10,107,1,104,51),(1357,10,273,1,104,1),(1358,10,274,1,104,2),(1359,10,526,1,104,1),(1368,10,501,1,105,35),(1369,10,272,1,105,26),(1370,10,502,1,105,43),(1371,10,107,1,105,51),(1373,10,273,1,105,1),(1374,10,274,1,105,2),(1375,10,526,1,105,1),(1384,10,501,1,106,35),(1385,10,272,1,106,26),(1386,10,502,1,106,42),(1387,10,107,1,106,51),(1389,10,273,1,106,1),(1390,10,274,1,106,2),(1391,10,526,1,106,1),(1400,10,501,1,107,35),(1401,10,272,1,107,26),(1402,10,502,1,107,41),(1403,10,107,1,107,51),(1405,10,273,1,107,1),(1406,10,274,1,107,2),(1407,10,526,1,107,1),(1414,10,273,1,108,1),(1415,10,274,1,108,2),(1416,10,526,1,108,4),(1417,10,107,1,108,51),(1418,10,272,1,108,26),(1419,10,501,1,108,35),(1428,10,501,1,109,35),(1429,10,272,1,109,26),(1430,10,502,1,109,45),(1431,10,107,1,109,51),(1433,10,273,1,109,1),(1434,10,274,1,109,2),(1435,10,526,1,109,1),(1444,10,501,1,110,35),(1445,10,272,1,110,26),(1446,10,502,1,110,44),(1447,10,107,1,110,51),(1449,10,273,1,110,1),(1450,10,274,1,110,2),(1451,10,526,1,110,1),(1460,10,501,1,111,35),(1461,10,272,1,111,26),(1462,10,502,1,111,43),(1463,10,107,1,111,51),(1465,10,273,1,111,1),(1466,10,274,1,111,2),(1467,10,526,1,111,1),(1474,10,273,1,112,1),(1475,10,274,1,112,2),(1476,10,526,1,112,4),(1477,10,107,1,112,47),(1478,10,272,1,112,59),(1479,10,501,1,112,35),(1481,10,272,1,33,59),(1490,10,501,1,113,35),(1491,10,502,1,113,45),(1492,10,107,1,113,47),(1494,10,273,1,113,1),(1495,10,274,1,113,2),(1496,10,526,1,113,1),(1497,10,272,1,113,59),(1506,10,501,1,114,35),(1507,10,502,1,114,44),(1508,10,107,1,114,47),(1510,10,273,1,114,1),(1511,10,274,1,114,2),(1512,10,526,1,114,1),(1513,10,272,1,114,59),(1522,10,501,1,115,35),(1523,10,502,1,115,43),(1524,10,107,1,115,47),(1526,10,273,1,115,1),(1527,10,274,1,115,2),(1528,10,526,1,115,1),(1529,10,272,1,115,59),(1531,10,525,1,35,100),(1547,10,272,1,117,22),(1550,10,273,1,117,1),(1551,10,274,1,117,2),(1552,10,526,1,117,1),(1553,10,525,1,117,99),(1561,10,272,1,118,22),(1564,10,273,1,118,1),(1565,10,274,1,118,2),(1566,10,526,1,118,1),(1567,10,525,1,118,98),(1573,10,273,1,119,1),(1574,10,274,1,119,2),(1575,10,526,1,119,4),(1576,10,501,1,119,36),(1577,10,272,1,119,22),(1579,10,501,1,36,35),(1581,10,525,1,36,100),(1587,10,273,1,120,1),(1588,10,274,1,120,2),(1589,10,526,1,120,4),(1590,10,501,1,120,35),(1591,10,272,1,120,60),(1599,10,272,1,121,60),(1601,10,273,1,121,1),(1602,10,274,1,121,2),(1603,10,526,1,121,1),(1604,10,501,1,121,35),(1605,10,525,1,121,99),(1613,10,272,1,122,60),(1615,10,273,1,122,1),(1616,10,274,1,122,2),(1617,10,526,1,122,1),(1618,10,501,1,122,35),(1619,10,525,1,122,98),(1625,10,273,1,123,1),(1626,10,274,1,123,2),(1627,10,526,1,123,4),(1628,10,501,1,123,36),(1629,10,272,1,123,60),(1631,10,501,1,37,36),(1633,10,525,1,37,100),(1641,10,272,1,124,60),(1643,10,273,1,124,1),(1644,10,274,1,124,2),(1645,10,526,1,124,1),(1646,10,501,1,124,36),(1647,10,525,1,124,99),(1655,10,272,1,125,60),(1657,10,273,1,125,1),(1658,10,274,1,125,2),(1659,10,526,1,125,1),(1660,10,501,1,125,36),(1661,10,525,1,125,98),(1666,10,273,1,126,1),(1667,10,274,1,126,2),(1668,10,526,1,126,4),(1669,10,501,1,126,36),(1671,10,501,1,38,36),(1673,10,525,1,38,100),(1681,10,272,1,127,22),(1683,10,273,1,127,1),(1684,10,274,1,127,2),(1685,10,526,1,127,1),(1686,10,501,1,127,36),(1687,10,525,1,127,100),(1695,10,272,1,128,26),(1697,10,273,1,128,1),(1698,10,274,1,128,2),(1699,10,526,1,128,1),(1700,10,501,1,128,36),(1701,10,525,1,128,99),(1709,10,272,1,129,22),(1711,10,273,1,129,1),(1712,10,274,1,129,2),(1713,10,526,1,129,1),(1714,10,501,1,129,36),(1715,10,525,1,129,99),(1723,10,272,1,130,26),(1725,10,273,1,130,1),(1726,10,274,1,130,2),(1727,10,526,1,130,1),(1728,10,501,1,130,36),(1729,10,525,1,130,98),(1737,10,272,1,131,22),(1739,10,273,1,131,1),(1740,10,274,1,131,2),(1741,10,526,1,131,1),(1742,10,501,1,131,36),(1743,10,525,1,131,98),(1745,10,501,1,117,36),(1747,10,501,1,118,36),(1757,10,273,1,133,1),(1758,10,274,1,133,2),(1759,10,526,1,133,4),(1769,10,273,1,132,1),(1770,10,274,1,132,2),(1771,10,526,1,132,4),(1785,10,273,1,134,1),(1786,10,274,1,134,2),(1787,10,526,1,134,4),(1802,10,273,1,135,1),(1803,10,274,1,135,2),(1804,10,526,1,135,4),(1805,10,107,1,135,97),(1806,10,272,1,135,59),(1807,10,501,1,135,35),(1812,10,273,0,16,1),(1813,10,274,0,16,2),(1814,10,272,0,16,24),(1815,10,272,0,17,23),(1817,10,273,0,17,1),(1818,10,274,0,17,2),(1819,10,272,0,18,24),(1821,10,273,0,18,1),(1822,10,274,0,18,2),(1823,10,272,0,20,23),(1825,10,273,0,20,1),(1826,10,274,0,20,2),(1828,10,272,0,25,23),(1830,10,273,0,25,1),(1831,10,274,0,25,2),(1832,10,272,0,26,24),(1834,10,273,0,26,1),(1835,10,274,0,26,2),(1836,10,272,0,27,24),(1838,10,273,0,27,1),(1839,10,274,0,27,2),(1840,10,272,0,28,24),(1842,10,273,0,28,1),(1843,10,274,0,28,2),(1844,10,501,0,29,35),(1845,10,272,0,29,25),(1846,10,502,0,29,46),(1848,10,273,0,29,1),(1849,10,274,0,29,2),(1850,10,501,0,30,36),(1851,10,272,0,30,61),(1852,10,502,0,30,41),(1853,10,107,0,30,49),(1855,10,273,0,30,1),(1856,10,274,0,30,2),(1857,10,501,0,31,35),(1858,10,272,0,31,26),(1859,10,502,0,31,45),(1860,10,107,0,31,51),(1862,10,273,0,31,1),(1863,10,274,0,31,2),(1864,10,501,0,32,35),(1865,10,272,0,32,26),(1866,10,502,0,32,46),(1867,10,107,0,32,51),(1869,10,273,0,32,1),(1870,10,274,0,32,2),(1871,10,501,0,33,35),(1872,10,502,0,33,46),(1873,10,107,0,33,47),(1875,10,273,0,33,1),(1876,10,274,0,33,2),(1877,10,501,0,34,36),(1878,10,272,0,34,24),(1879,10,502,0,34,41),(1880,10,107,0,34,52),(1882,10,273,0,34,1),(1883,10,274,0,34,2),(1884,10,272,0,35,22),(1886,10,273,0,35,1),(1887,10,274,0,35,2),(1888,10,272,0,36,60),(1890,10,273,0,36,1),(1891,10,274,0,36,2),(1892,10,272,0,37,60),(1894,10,273,0,37,1),(1895,10,274,0,37,2),(1896,10,272,0,38,26),(1898,10,273,0,38,1),(1899,10,274,0,38,2),(1900,10,272,0,19,23),(1902,10,273,0,19,1),(1903,10,274,0,19,2),(1904,10,272,0,39,22),(1906,10,273,0,39,1),(1907,10,274,0,39,2),(1913,10,272,0,41,59),(1914,10,508,0,41,71),(1916,10,273,0,41,1),(1917,10,274,0,41,2),(1918,10,272,0,42,59),(1919,10,508,0,42,71),(1921,10,273,0,42,1),(1922,10,274,0,42,2),(1923,10,272,0,44,24),(1924,10,513,0,44,90),(1926,10,273,0,44,1),(1927,10,274,0,44,2),(1928,10,272,0,45,23),(1929,10,513,0,45,93),(1931,10,273,0,45,1),(1932,10,274,0,45,2),(1933,10,272,0,46,23),(1934,10,513,0,46,91),(1936,10,273,0,46,1),(1937,10,274,0,46,2),(1938,10,272,0,47,23),(1939,10,513,0,47,90),(1941,10,273,0,47,1),(1942,10,274,0,47,2),(1943,10,272,0,48,23),(1944,10,513,0,48,93),(1946,10,273,0,48,1),(1947,10,274,0,48,2),(1948,10,501,0,49,35),(1949,10,272,0,49,59),(1950,10,502,0,49,40),(1952,10,273,0,49,1),(1953,10,274,0,49,2),(1954,10,107,0,49,97),(1955,10,272,0,51,26),(1956,10,508,0,51,72),(1958,10,273,0,51,1),(1959,10,274,0,51,2),(1960,10,272,0,52,26),(1961,10,508,0,52,72),(1963,10,273,0,52,1),(1964,10,274,0,52,2),(1965,10,272,0,53,26),(1966,10,508,0,53,72),(1968,10,273,0,53,1),(1969,10,274,0,53,2),(1970,10,272,0,54,26),(1971,10,508,0,54,72),(1972,10,273,0,54,1),(1973,10,274,0,54,2),(2047,10,526,0,16,4),(2048,10,526,0,17,4),(2049,10,526,0,18,4),(2050,10,526,0,20,4),(2051,10,526,0,25,4),(2052,10,526,0,26,4),(2053,10,526,0,27,4),(2054,10,526,0,28,4),(2055,10,526,0,29,1),(2056,10,526,0,30,1),(2057,10,526,0,31,1),(2058,10,526,0,32,1),(2059,10,526,0,33,1),(2060,10,526,0,34,1),(2061,10,526,0,35,1),(2062,10,526,0,36,1),(2063,10,526,0,37,1),(2064,10,526,0,38,1),(2065,10,526,0,19,4),(2066,10,526,0,39,4),(2068,10,526,0,41,4),(2069,10,526,0,42,4),(2070,10,526,0,44,4),(2071,10,526,0,45,4),(2072,10,526,0,46,4),(2073,10,526,0,47,4),(2074,10,526,0,48,4),(2075,10,526,0,49,1),(2076,10,526,0,51,4),(2077,10,526,0,52,4),(2078,10,526,0,53,4),(2079,10,526,0,54,4),(2092,10,510,0,28,74),(2093,10,510,0,27,76),(2094,10,510,0,26,79),(2095,10,510,0,25,77),(2096,10,107,0,29,97),(2097,10,501,0,74,35),(2098,10,272,0,74,59),(2099,10,502,0,74,46),(2101,10,273,0,74,1),(2102,10,274,0,74,2),(2103,10,107,0,74,97),(2104,10,526,0,74,1),(2105,10,501,0,75,35),(2106,10,272,0,75,59),(2107,10,502,0,75,45),(2109,10,273,0,75,1),(2110,10,274,0,75,2),(2111,10,107,0,75,97),(2112,10,526,0,75,1),(2113,10,501,0,79,35),(2114,10,272,0,79,59),(2115,10,502,0,79,44),(2117,10,273,0,79,1),(2118,10,274,0,79,2),(2119,10,107,0,79,97),(2120,10,526,0,79,1),(2121,10,501,0,80,35),(2122,10,272,0,80,59),(2123,10,502,0,80,43),(2125,10,273,0,80,1),(2126,10,274,0,80,2),(2127,10,107,0,80,97),(2128,10,526,0,80,1),(2129,10,501,0,81,35),(2130,10,272,0,81,59),(2131,10,502,0,81,42),(2133,10,273,0,81,1),(2134,10,274,0,81,2),(2135,10,107,0,81,97),(2136,10,526,0,81,1),(2137,10,501,0,82,35),(2138,10,272,0,82,59),(2139,10,502,0,82,41),(2141,10,273,0,82,1),(2142,10,274,0,82,2),(2143,10,107,0,82,97),(2144,10,526,0,82,1),(2145,10,273,0,83,1),(2146,10,274,0,83,2),(2147,10,526,0,83,4),(2148,10,107,0,83,97),(2149,10,272,0,83,25),(2150,10,501,0,84,35),(2151,10,272,0,84,25),(2152,10,502,0,84,45),(2154,10,273,0,84,1),(2155,10,274,0,84,2),(2156,10,526,0,84,1),(2157,10,107,0,84,97),(2158,10,501,0,85,35),(2159,10,272,0,85,25),(2160,10,502,0,85,44),(2162,10,273,0,85,1),(2163,10,274,0,85,2),(2164,10,526,0,85,1),(2165,10,107,0,85,97),(2166,10,501,0,86,35),(2167,10,272,0,86,25),(2168,10,502,0,86,43),(2170,10,273,0,86,1),(2171,10,274,0,86,2),(2172,10,526,0,86,1),(2173,10,107,0,86,97),(2174,10,501,0,87,35),(2175,10,272,0,87,25),(2176,10,502,0,87,42),(2178,10,273,0,87,1),(2179,10,274,0,87,2),(2180,10,526,0,87,1),(2181,10,107,0,87,97),(2182,10,501,0,88,36),(2183,10,272,0,88,25),(2184,10,502,0,88,41),(2186,10,273,0,88,1),(2187,10,274,0,88,2),(2188,10,526,0,88,1),(2189,10,107,0,88,97),(2190,10,501,0,89,36),(2191,10,272,0,89,25),(2192,10,502,0,89,40),(2194,10,273,0,89,1),(2195,10,274,0,89,2),(2196,10,526,0,89,1),(2197,10,107,0,89,97),(2198,10,501,0,90,36),(2199,10,272,0,90,25),(2200,10,502,0,90,39),(2202,10,273,0,90,1),(2203,10,274,0,90,2),(2204,10,526,0,90,1),(2205,10,107,0,90,97),(2206,10,501,0,91,36),(2207,10,272,0,91,25),(2208,10,502,0,91,38),(2210,10,273,0,91,1),(2211,10,274,0,91,2),(2212,10,526,0,91,1),(2213,10,107,0,91,97),(2214,10,501,0,92,36),(2215,10,272,0,92,25),(2216,10,502,0,92,37),(2218,10,273,0,92,1),(2219,10,274,0,92,2),(2220,10,526,0,92,1),(2221,10,107,0,92,97),(2222,10,273,0,93,1),(2223,10,274,0,93,2),(2224,10,526,0,93,4),(2225,10,107,0,93,53),(2226,10,272,0,93,61),(2227,10,501,0,93,36),(2228,10,501,0,94,36),(2229,10,272,0,94,61),(2230,10,502,0,94,40),(2231,10,107,0,94,49),(2233,10,273,0,94,1),(2234,10,274,0,94,2),(2235,10,526,0,94,1),(2236,10,501,0,95,36),(2237,10,272,0,95,61),(2238,10,502,0,95,39),(2239,10,107,0,95,49),(2241,10,273,0,95,1),(2242,10,274,0,95,2),(2243,10,526,0,95,1),(2244,10,501,0,96,36),(2245,10,272,0,96,61),(2246,10,502,0,96,38),(2247,10,107,0,96,49),(2249,10,273,0,96,1),(2250,10,274,0,96,2),(2251,10,526,0,96,1),(2252,10,501,0,97,36),(2253,10,272,0,97,61),(2254,10,502,0,97,37),(2255,10,107,0,97,49),(2257,10,273,0,97,1),(2258,10,274,0,97,2),(2259,10,526,0,97,1),(2260,10,273,0,98,1),(2261,10,274,0,98,2),(2262,10,526,0,98,4),(2263,10,107,0,98,52),(2264,10,272,0,98,24),(2265,10,501,0,98,36),(2266,10,501,0,99,36),(2267,10,272,0,99,24),(2268,10,502,0,99,40),(2269,10,107,0,99,52),(2271,10,273,0,99,1),(2272,10,274,0,99,2),(2273,10,526,0,99,1),(2274,10,501,0,100,36),(2275,10,272,0,100,24),(2276,10,502,0,100,39),(2277,10,107,0,100,52),(2279,10,273,0,100,1),(2280,10,274,0,100,2),(2281,10,526,0,100,1),(2282,10,501,0,101,36),(2283,10,272,0,101,24),(2284,10,502,0,101,38),(2285,10,107,0,101,52),(2287,10,273,0,101,1),(2288,10,274,0,101,2),(2289,10,526,0,101,1),(2290,10,501,0,102,36),(2291,10,272,0,102,24),(2292,10,502,0,102,37),(2293,10,107,0,102,52),(2295,10,273,0,102,1),(2296,10,274,0,102,2),(2297,10,526,0,102,1),(2298,10,273,0,103,1),(2299,10,274,0,103,2),(2300,10,526,0,103,4),(2301,10,107,0,103,52),(2302,10,272,0,103,26),(2303,10,501,0,103,35),(2304,10,501,0,104,35),(2305,10,272,0,104,26),(2306,10,502,0,104,44),(2307,10,107,0,104,51),(2309,10,273,0,104,1),(2310,10,274,0,104,2),(2311,10,526,0,104,1),(2312,10,501,0,105,35),(2313,10,272,0,105,26),(2314,10,502,0,105,43),(2315,10,107,0,105,51),(2317,10,273,0,105,1),(2318,10,274,0,105,2),(2319,10,526,0,105,1),(2320,10,501,0,106,35),(2321,10,272,0,106,26),(2322,10,502,0,106,42),(2323,10,107,0,106,51),(2325,10,273,0,106,1),(2326,10,274,0,106,2),(2327,10,526,0,106,1),(2328,10,501,0,107,35),(2329,10,272,0,107,26),(2330,10,502,0,107,41),(2331,10,107,0,107,51),(2333,10,273,0,107,1),(2334,10,274,0,107,2),(2335,10,526,0,107,1),(2336,10,273,0,108,1),(2337,10,274,0,108,2),(2338,10,526,0,108,4),(2339,10,107,0,108,51),(2340,10,272,0,108,26),(2341,10,501,0,108,35),(2342,10,501,0,109,35),(2343,10,272,0,109,26),(2344,10,502,0,109,45),(2345,10,107,0,109,51),(2347,10,273,0,109,1),(2348,10,274,0,109,2),(2349,10,526,0,109,1),(2350,10,501,0,110,35),(2351,10,272,0,110,26),(2352,10,502,0,110,44),(2353,10,107,0,110,51),(2355,10,273,0,110,1),(2356,10,274,0,110,2),(2357,10,526,0,110,1),(2358,10,501,0,111,35),(2359,10,272,0,111,26),(2360,10,502,0,111,43),(2361,10,107,0,111,51),(2363,10,273,0,111,1),(2364,10,274,0,111,2),(2365,10,526,0,111,1),(2366,10,273,0,112,1),(2367,10,274,0,112,2),(2368,10,526,0,112,4),(2369,10,107,0,112,47),(2370,10,272,0,112,59),(2371,10,501,0,112,35),(2372,10,272,0,33,59),(2373,10,501,0,113,35),(2374,10,502,0,113,45),(2375,10,107,0,113,47),(2377,10,273,0,113,1),(2378,10,274,0,113,2),(2379,10,526,0,113,1),(2380,10,272,0,113,59),(2381,10,501,0,114,35),(2382,10,502,0,114,44),(2383,10,107,0,114,47),(2385,10,273,0,114,1),(2386,10,274,0,114,2),(2387,10,526,0,114,1),(2388,10,272,0,114,59),(2389,10,501,0,115,35),(2390,10,502,0,115,43),(2391,10,107,0,115,47),(2393,10,273,0,115,1),(2394,10,274,0,115,2),(2395,10,526,0,115,1),(2396,10,272,0,115,59),(2397,10,525,0,35,100),(2398,10,272,0,117,22),(2400,10,273,0,117,1),(2401,10,274,0,117,2),(2402,10,526,0,117,1),(2403,10,525,0,117,99),(2404,10,272,0,118,22),(2406,10,273,0,118,1),(2407,10,274,0,118,2),(2408,10,526,0,118,1),(2409,10,525,0,118,98),(2410,10,273,0,119,1),(2411,10,274,0,119,2),(2412,10,526,0,119,4),(2413,10,501,0,119,36),(2414,10,272,0,119,22),(2415,10,501,0,36,35),(2416,10,525,0,36,100),(2417,10,273,0,120,1),(2418,10,274,0,120,2),(2419,10,526,0,120,4),(2420,10,501,0,120,35),(2421,10,272,0,120,60),(2422,10,272,0,121,60),(2424,10,273,0,121,1),(2425,10,274,0,121,2),(2426,10,526,0,121,1),(2427,10,501,0,121,35),(2428,10,525,0,121,99),(2429,10,272,0,122,60),(2431,10,273,0,122,1),(2432,10,274,0,122,2),(2433,10,526,0,122,1),(2434,10,501,0,122,35),(2435,10,525,0,122,98),(2436,10,273,0,123,1),(2437,10,274,0,123,2),(2438,10,526,0,123,4),(2439,10,501,0,123,36),(2440,10,272,0,123,60),(2441,10,501,0,37,36),(2442,10,525,0,37,100),(2443,10,272,0,124,60),(2445,10,273,0,124,1),(2446,10,274,0,124,2),(2447,10,526,0,124,1),(2448,10,501,0,124,36),(2449,10,525,0,124,99),(2450,10,272,0,125,60),(2452,10,273,0,125,1),(2453,10,274,0,125,2),(2454,10,526,0,125,1),(2455,10,501,0,125,36),(2456,10,525,0,125,98),(2457,10,273,0,126,1),(2458,10,274,0,126,2),(2459,10,526,0,126,4),(2460,10,501,0,126,36),(2461,10,501,0,38,36),(2462,10,525,0,38,100),(2463,10,272,0,127,22),(2465,10,273,0,127,1),(2466,10,274,0,127,2),(2467,10,526,0,127,1),(2468,10,501,0,127,36),(2469,10,525,0,127,100),(2470,10,272,0,128,26),(2472,10,273,0,128,1),(2473,10,274,0,128,2),(2474,10,526,0,128,1),(2475,10,501,0,128,36),(2476,10,525,0,128,99),(2477,10,272,0,129,22),(2479,10,273,0,129,1),(2480,10,274,0,129,2),(2481,10,526,0,129,1),(2482,10,501,0,129,36),(2483,10,525,0,129,99),(2484,10,272,0,130,26),(2486,10,273,0,130,1),(2487,10,274,0,130,2),(2488,10,526,0,130,1),(2489,10,501,0,130,36),(2490,10,525,0,130,98),(2491,10,272,0,131,22),(2493,10,273,0,131,1),(2494,10,274,0,131,2),(2495,10,526,0,131,1),(2496,10,501,0,131,36),(2497,10,525,0,131,98),(2498,10,501,0,117,36),(2499,10,501,0,118,36),(2501,10,273,0,133,1),(2502,10,274,0,133,2),(2503,10,526,0,133,4),(2505,10,273,0,132,1),(2506,10,274,0,132,2),(2507,10,526,0,132,4),(2509,10,273,0,134,1),(2510,10,274,0,134,2),(2511,10,526,0,134,4),(2512,10,273,0,135,1),(2513,10,274,0,135,2),(2514,10,526,0,135,4),(2515,10,107,0,135,97),(2516,10,272,0,135,59),(2517,10,501,0,135,35),(2522,10,273,2,16,1),(2523,10,274,2,16,2),(2524,10,272,2,16,24),(2525,10,272,2,17,23),(2527,10,273,2,17,1),(2528,10,274,2,17,2),(2529,10,272,2,18,24),(2531,10,273,2,18,1),(2532,10,274,2,18,2),(2533,10,272,2,20,23),(2535,10,273,2,20,1),(2536,10,274,2,20,2),(2538,10,272,2,25,23),(2540,10,273,2,25,1),(2541,10,274,2,25,2),(2542,10,272,2,26,24),(2544,10,273,2,26,1),(2545,10,274,2,26,2),(2546,10,272,2,27,24),(2548,10,273,2,27,1),(2549,10,274,2,27,2),(2550,10,272,2,28,24),(2552,10,273,2,28,1),(2553,10,274,2,28,2),(2554,10,501,2,29,35),(2555,10,272,2,29,25),(2556,10,502,2,29,46),(2558,10,273,2,29,1),(2559,10,274,2,29,2),(2560,10,501,2,30,36),(2561,10,272,2,30,61),(2562,10,502,2,30,41),(2563,10,107,2,30,49),(2565,10,273,2,30,1),(2566,10,274,2,30,2),(2567,10,501,2,31,35),(2568,10,272,2,31,26),(2569,10,502,2,31,45),(2570,10,107,2,31,51),(2572,10,273,2,31,1),(2573,10,274,2,31,2),(2574,10,501,2,32,35),(2575,10,272,2,32,26),(2576,10,502,2,32,46),(2577,10,107,2,32,51),(2579,10,273,2,32,1),(2580,10,274,2,32,2),(2581,10,501,2,33,35),(2582,10,502,2,33,46),(2583,10,107,2,33,47),(2585,10,273,2,33,1),(2586,10,274,2,33,2),(2587,10,501,2,34,36),(2588,10,272,2,34,24),(2589,10,502,2,34,41),(2590,10,107,2,34,52),(2592,10,273,2,34,1),(2593,10,274,2,34,2),(2594,10,272,2,35,22),(2596,10,273,2,35,1),(2597,10,274,2,35,2),(2598,10,272,2,36,60),(2600,10,273,2,36,1),(2601,10,274,2,36,2),(2602,10,272,2,37,60),(2604,10,273,2,37,1),(2605,10,274,2,37,2),(2606,10,272,2,38,26),(2608,10,273,2,38,1),(2609,10,274,2,38,2),(2610,10,272,2,19,23),(2612,10,273,2,19,1),(2613,10,274,2,19,2),(2614,10,272,2,39,22),(2616,10,273,2,39,1),(2617,10,274,2,39,2),(2623,10,272,2,41,59),(2624,10,508,2,41,71),(2626,10,273,2,41,1),(2627,10,274,2,41,2),(2628,10,272,2,42,59),(2629,10,508,2,42,71),(2631,10,273,2,42,1),(2632,10,274,2,42,2),(2633,10,272,2,44,24),(2634,10,513,2,44,90),(2636,10,273,2,44,1),(2637,10,274,2,44,2),(2638,10,272,2,45,23),(2639,10,513,2,45,93),(2641,10,273,2,45,1),(2642,10,274,2,45,2),(2643,10,272,2,46,23),(2644,10,513,2,46,91),(2646,10,273,2,46,1),(2647,10,274,2,46,2),(2648,10,272,2,47,23),(2649,10,513,2,47,90),(2651,10,273,2,47,1),(2652,10,274,2,47,2),(2653,10,272,2,48,23),(2654,10,513,2,48,93),(2656,10,273,2,48,1),(2657,10,274,2,48,2),(2658,10,501,2,49,35),(2659,10,272,2,49,59),(2660,10,502,2,49,40),(2662,10,273,2,49,1),(2663,10,274,2,49,2),(2664,10,107,2,49,97),(2665,10,272,2,51,26),(2666,10,508,2,51,72),(2668,10,273,2,51,1),(2669,10,274,2,51,2),(2670,10,272,2,52,26),(2671,10,508,2,52,72),(2673,10,273,2,52,1),(2674,10,274,2,52,2),(2675,10,272,2,53,26),(2676,10,508,2,53,72),(2678,10,273,2,53,1),(2679,10,274,2,53,2),(2680,10,272,2,54,26),(2681,10,508,2,54,72),(2682,10,273,2,54,1),(2683,10,274,2,54,2),(2757,10,526,2,16,4),(2758,10,526,2,17,4),(2759,10,526,2,18,4),(2760,10,526,2,20,4),(2761,10,526,2,25,4),(2762,10,526,2,26,4),(2763,10,526,2,27,4),(2764,10,526,2,28,4),(2765,10,526,2,29,1),(2766,10,526,2,30,1),(2767,10,526,2,31,1),(2768,10,526,2,32,1),(2769,10,526,2,33,1),(2770,10,526,2,34,1),(2771,10,526,2,35,1),(2772,10,526,2,36,1),(2773,10,526,2,37,1),(2774,10,526,2,38,1),(2775,10,526,2,19,4),(2776,10,526,2,39,4),(2778,10,526,2,41,4),(2779,10,526,2,42,4),(2780,10,526,2,44,4),(2781,10,526,2,45,4),(2782,10,526,2,46,4),(2783,10,526,2,47,4),(2784,10,526,2,48,4),(2785,10,526,2,49,1),(2786,10,526,2,51,4),(2787,10,526,2,52,4),(2788,10,526,2,53,4),(2789,10,526,2,54,4),(2802,10,510,2,28,74),(2803,10,510,2,27,76),(2804,10,510,2,26,79),(2805,10,510,2,25,77),(2806,10,107,2,29,97),(2807,10,501,2,74,35),(2808,10,272,2,74,59),(2809,10,502,2,74,46),(2811,10,273,2,74,1),(2812,10,274,2,74,2),(2813,10,107,2,74,97),(2814,10,526,2,74,1),(2815,10,501,2,75,35),(2816,10,272,2,75,59),(2817,10,502,2,75,45),(2819,10,273,2,75,1),(2820,10,274,2,75,2),(2821,10,107,2,75,97),(2822,10,526,2,75,1),(2823,10,501,2,79,35),(2824,10,272,2,79,59),(2825,10,502,2,79,44),(2827,10,273,2,79,1),(2828,10,274,2,79,2),(2829,10,107,2,79,97),(2830,10,526,2,79,1),(2831,10,501,2,80,35),(2832,10,272,2,80,59),(2833,10,502,2,80,43),(2835,10,273,2,80,1),(2836,10,274,2,80,2),(2837,10,107,2,80,97),(2838,10,526,2,80,1),(2839,10,501,2,81,35),(2840,10,272,2,81,59),(2841,10,502,2,81,42),(2843,10,273,2,81,1),(2844,10,274,2,81,2),(2845,10,107,2,81,97),(2846,10,526,2,81,1),(2847,10,501,2,82,35),(2848,10,272,2,82,59),(2849,10,502,2,82,41),(2851,10,273,2,82,1),(2852,10,274,2,82,2),(2853,10,107,2,82,97),(2854,10,526,2,82,1),(2855,10,273,2,83,1),(2856,10,274,2,83,2),(2857,10,526,2,83,4),(2858,10,107,2,83,97),(2859,10,272,2,83,25),(2860,10,501,2,84,35),(2861,10,272,2,84,25),(2862,10,502,2,84,45),(2864,10,273,2,84,1),(2865,10,274,2,84,2),(2866,10,526,2,84,1),(2867,10,107,2,84,97),(2868,10,501,2,85,35),(2869,10,272,2,85,25),(2870,10,502,2,85,44),(2872,10,273,2,85,1),(2873,10,274,2,85,2),(2874,10,526,2,85,1),(2875,10,107,2,85,97),(2876,10,501,2,86,35),(2877,10,272,2,86,25),(2878,10,502,2,86,43),(2880,10,273,2,86,1),(2881,10,274,2,86,2),(2882,10,526,2,86,1),(2883,10,107,2,86,97),(2884,10,501,2,87,35),(2885,10,272,2,87,25),(2886,10,502,2,87,42),(2888,10,273,2,87,1),(2889,10,274,2,87,2),(2890,10,526,2,87,1),(2891,10,107,2,87,97),(2892,10,501,2,88,36),(2893,10,272,2,88,25),(2894,10,502,2,88,41),(2896,10,273,2,88,1),(2897,10,274,2,88,2),(2898,10,526,2,88,1),(2899,10,107,2,88,97),(2900,10,501,2,89,36),(2901,10,272,2,89,25),(2902,10,502,2,89,40),(2904,10,273,2,89,1),(2905,10,274,2,89,2),(2906,10,526,2,89,1),(2907,10,107,2,89,97),(2908,10,501,2,90,36),(2909,10,272,2,90,25),(2910,10,502,2,90,39),(2912,10,273,2,90,1),(2913,10,274,2,90,2),(2914,10,526,2,90,1),(2915,10,107,2,90,97),(2916,10,501,2,91,36),(2917,10,272,2,91,25),(2918,10,502,2,91,38),(2920,10,273,2,91,1),(2921,10,274,2,91,2),(2922,10,526,2,91,1),(2923,10,107,2,91,97),(2924,10,501,2,92,36),(2925,10,272,2,92,25),(2926,10,502,2,92,37),(2928,10,273,2,92,1),(2929,10,274,2,92,2),(2930,10,526,2,92,1),(2931,10,107,2,92,97),(2932,10,273,2,93,1),(2933,10,274,2,93,2),(2934,10,526,2,93,4),(2935,10,107,2,93,53),(2936,10,272,2,93,61),(2937,10,501,2,93,36),(2938,10,501,2,94,36),(2939,10,272,2,94,61),(2940,10,502,2,94,40),(2941,10,107,2,94,49),(2943,10,273,2,94,1),(2944,10,274,2,94,2),(2945,10,526,2,94,1),(2946,10,501,2,95,36),(2947,10,272,2,95,61),(2948,10,502,2,95,39),(2949,10,107,2,95,49),(2951,10,273,2,95,1),(2952,10,274,2,95,2),(2953,10,526,2,95,1),(2954,10,501,2,96,36),(2955,10,272,2,96,61),(2956,10,502,2,96,38),(2957,10,107,2,96,49),(2959,10,273,2,96,1),(2960,10,274,2,96,2),(2961,10,526,2,96,1),(2962,10,501,2,97,36),(2963,10,272,2,97,61),(2964,10,502,2,97,37),(2965,10,107,2,97,49),(2967,10,273,2,97,1),(2968,10,274,2,97,2),(2969,10,526,2,97,1),(2970,10,273,2,98,1),(2971,10,274,2,98,2),(2972,10,526,2,98,4),(2973,10,107,2,98,52),(2974,10,272,2,98,24),(2975,10,501,2,98,36),(2976,10,501,2,99,36),(2977,10,272,2,99,24),(2978,10,502,2,99,40),(2979,10,107,2,99,52),(2981,10,273,2,99,1),(2982,10,274,2,99,2),(2983,10,526,2,99,1),(2984,10,501,2,100,36),(2985,10,272,2,100,24),(2986,10,502,2,100,39),(2987,10,107,2,100,52),(2989,10,273,2,100,1),(2990,10,274,2,100,2),(2991,10,526,2,100,1),(2992,10,501,2,101,36),(2993,10,272,2,101,24),(2994,10,502,2,101,38),(2995,10,107,2,101,52),(2997,10,273,2,101,1),(2998,10,274,2,101,2),(2999,10,526,2,101,1),(3000,10,501,2,102,36),(3001,10,272,2,102,24),(3002,10,502,2,102,37),(3003,10,107,2,102,52),(3005,10,273,2,102,1),(3006,10,274,2,102,2),(3007,10,526,2,102,1),(3008,10,273,2,103,1),(3009,10,274,2,103,2),(3010,10,526,2,103,4),(3011,10,107,2,103,52),(3012,10,272,2,103,26),(3013,10,501,2,103,35),(3014,10,501,2,104,35),(3015,10,272,2,104,26),(3016,10,502,2,104,44),(3017,10,107,2,104,51),(3019,10,273,2,104,1),(3020,10,274,2,104,2),(3021,10,526,2,104,1),(3022,10,501,2,105,35),(3023,10,272,2,105,26),(3024,10,502,2,105,43),(3025,10,107,2,105,51),(3027,10,273,2,105,1),(3028,10,274,2,105,2),(3029,10,526,2,105,1),(3030,10,501,2,106,35),(3031,10,272,2,106,26),(3032,10,502,2,106,42),(3033,10,107,2,106,51),(3035,10,273,2,106,1),(3036,10,274,2,106,2),(3037,10,526,2,106,1),(3038,10,501,2,107,35),(3039,10,272,2,107,26),(3040,10,502,2,107,41),(3041,10,107,2,107,51),(3043,10,273,2,107,1),(3044,10,274,2,107,2),(3045,10,526,2,107,1),(3046,10,273,2,108,1),(3047,10,274,2,108,2),(3048,10,526,2,108,4),(3049,10,107,2,108,51),(3050,10,272,2,108,26),(3051,10,501,2,108,35),(3052,10,501,2,109,35),(3053,10,272,2,109,26),(3054,10,502,2,109,45),(3055,10,107,2,109,51),(3057,10,273,2,109,1),(3058,10,274,2,109,2),(3059,10,526,2,109,1),(3060,10,501,2,110,35),(3061,10,272,2,110,26),(3062,10,502,2,110,44),(3063,10,107,2,110,51),(3065,10,273,2,110,1),(3066,10,274,2,110,2),(3067,10,526,2,110,1),(3068,10,501,2,111,35),(3069,10,272,2,111,26),(3070,10,502,2,111,43),(3071,10,107,2,111,51),(3073,10,273,2,111,1),(3074,10,274,2,111,2),(3075,10,526,2,111,1),(3076,10,273,2,112,1),(3077,10,274,2,112,2),(3078,10,526,2,112,4),(3079,10,107,2,112,47),(3080,10,272,2,112,59),(3081,10,501,2,112,35),(3082,10,272,2,33,59),(3083,10,501,2,113,35),(3084,10,502,2,113,45),(3085,10,107,2,113,47),(3087,10,273,2,113,1),(3088,10,274,2,113,2),(3089,10,526,2,113,1),(3090,10,272,2,113,59),(3091,10,501,2,114,35),(3092,10,502,2,114,44),(3093,10,107,2,114,47),(3095,10,273,2,114,1),(3096,10,274,2,114,2),(3097,10,526,2,114,1),(3098,10,272,2,114,59),(3099,10,501,2,115,35),(3100,10,502,2,115,43),(3101,10,107,2,115,47),(3103,10,273,2,115,1),(3104,10,274,2,115,2),(3105,10,526,2,115,1),(3106,10,272,2,115,59),(3107,10,525,2,35,100),(3108,10,272,2,117,22),(3110,10,273,2,117,1),(3111,10,274,2,117,2),(3112,10,526,2,117,1),(3113,10,525,2,117,99),(3114,10,272,2,118,22),(3116,10,273,2,118,1),(3117,10,274,2,118,2),(3118,10,526,2,118,1),(3119,10,525,2,118,98),(3120,10,273,2,119,1),(3121,10,274,2,119,2),(3122,10,526,2,119,4),(3123,10,501,2,119,36),(3124,10,272,2,119,22),(3125,10,501,2,36,35),(3126,10,525,2,36,100),(3127,10,273,2,120,1),(3128,10,274,2,120,2),(3129,10,526,2,120,4),(3130,10,501,2,120,35),(3131,10,272,2,120,60),(3132,10,272,2,121,60),(3134,10,273,2,121,1),(3135,10,274,2,121,2),(3136,10,526,2,121,1),(3137,10,501,2,121,35),(3138,10,525,2,121,99),(3139,10,272,2,122,60),(3141,10,273,2,122,1),(3142,10,274,2,122,2),(3143,10,526,2,122,1),(3144,10,501,2,122,35),(3145,10,525,2,122,98),(3146,10,273,2,123,1),(3147,10,274,2,123,2),(3148,10,526,2,123,4),(3149,10,501,2,123,36),(3150,10,272,2,123,60),(3151,10,501,2,37,36),(3152,10,525,2,37,100),(3153,10,272,2,124,60),(3155,10,273,2,124,1),(3156,10,274,2,124,2),(3157,10,526,2,124,1),(3158,10,501,2,124,36),(3159,10,525,2,124,99),(3160,10,272,2,125,60),(3162,10,273,2,125,1),(3163,10,274,2,125,2),(3164,10,526,2,125,1),(3165,10,501,2,125,36),(3166,10,525,2,125,98),(3167,10,273,2,126,1),(3168,10,274,2,126,2),(3169,10,526,2,126,4),(3170,10,501,2,126,36),(3171,10,501,2,38,36),(3172,10,525,2,38,100),(3173,10,272,2,127,22),(3175,10,273,2,127,1),(3176,10,274,2,127,2),(3177,10,526,2,127,1),(3178,10,501,2,127,36),(3179,10,525,2,127,100),(3180,10,272,2,128,26),(3182,10,273,2,128,1),(3183,10,274,2,128,2),(3184,10,526,2,128,1),(3185,10,501,2,128,36),(3186,10,525,2,128,99),(3187,10,272,2,129,22),(3189,10,273,2,129,1),(3190,10,274,2,129,2),(3191,10,526,2,129,1),(3192,10,501,2,129,36),(3193,10,525,2,129,99),(3194,10,272,2,130,26),(3196,10,273,2,130,1),(3197,10,274,2,130,2),(3198,10,526,2,130,1),(3199,10,501,2,130,36),(3200,10,525,2,130,98),(3201,10,272,2,131,22),(3203,10,273,2,131,1),(3204,10,274,2,131,2),(3205,10,526,2,131,1),(3206,10,501,2,131,36),(3207,10,525,2,131,98),(3208,10,501,2,117,36),(3209,10,501,2,118,36),(3211,10,273,2,133,1),(3212,10,274,2,133,2),(3213,10,526,2,133,4),(3215,10,273,2,132,1),(3216,10,274,2,132,2),(3217,10,526,2,132,4),(3219,10,273,2,134,1),(3220,10,274,2,134,2),(3221,10,526,2,134,4),(3222,10,273,2,135,1),(3223,10,274,2,135,2),(3224,10,526,2,135,4),(3225,10,107,2,135,97),(3226,10,272,2,135,59),(3227,10,501,2,135,35),(3232,10,273,3,16,1),(3233,10,274,3,16,2),(3234,10,272,3,16,24),(3235,10,272,3,17,23),(3237,10,273,3,17,1),(3238,10,274,3,17,2),(3239,10,272,3,18,24),(3241,10,273,3,18,1),(3242,10,274,3,18,2),(3243,10,272,3,20,23),(3245,10,273,3,20,1),(3246,10,274,3,20,2),(3248,10,272,3,25,23),(3250,10,273,3,25,1),(3251,10,274,3,25,2),(3252,10,272,3,26,24),(3254,10,273,3,26,1),(3255,10,274,3,26,2),(3256,10,272,3,27,24),(3258,10,273,3,27,1),(3259,10,274,3,27,2),(3260,10,272,3,28,24),(3262,10,273,3,28,1),(3263,10,274,3,28,2),(3264,10,501,3,29,35),(3265,10,272,3,29,25),(3266,10,502,3,29,46),(3268,10,273,3,29,1),(3269,10,274,3,29,2),(3270,10,501,3,30,36),(3271,10,272,3,30,61),(3272,10,502,3,30,41),(3273,10,107,3,30,49),(3275,10,273,3,30,1),(3276,10,274,3,30,2),(3277,10,501,3,31,35),(3278,10,272,3,31,26),(3279,10,502,3,31,45),(3280,10,107,3,31,51),(3282,10,273,3,31,1),(3283,10,274,3,31,2),(3284,10,501,3,32,35),(3285,10,272,3,32,26),(3286,10,502,3,32,46),(3287,10,107,3,32,51),(3289,10,273,3,32,1),(3290,10,274,3,32,2),(3291,10,501,3,33,35),(3292,10,502,3,33,46),(3293,10,107,3,33,47),(3295,10,273,3,33,1),(3296,10,274,3,33,2),(3297,10,501,3,34,36),(3298,10,272,3,34,24),(3299,10,502,3,34,41),(3300,10,107,3,34,52),(3302,10,273,3,34,1),(3303,10,274,3,34,2),(3304,10,272,3,35,22),(3306,10,273,3,35,1),(3307,10,274,3,35,2),(3308,10,272,3,36,60),(3310,10,273,3,36,1),(3311,10,274,3,36,2),(3312,10,272,3,37,60),(3314,10,273,3,37,1),(3315,10,274,3,37,2),(3316,10,272,3,38,26),(3318,10,273,3,38,1),(3319,10,274,3,38,2),(3320,10,272,3,19,23),(3322,10,273,3,19,1),(3323,10,274,3,19,2),(3324,10,272,3,39,22),(3326,10,273,3,39,1),(3327,10,274,3,39,2),(3333,10,272,3,41,59),(3334,10,508,3,41,71),(3336,10,273,3,41,1),(3337,10,274,3,41,2),(3338,10,272,3,42,59),(3339,10,508,3,42,71),(3341,10,273,3,42,1),(3342,10,274,3,42,2),(3343,10,272,3,44,24),(3344,10,513,3,44,90),(3346,10,273,3,44,1),(3347,10,274,3,44,2),(3348,10,272,3,45,23),(3349,10,513,3,45,93),(3351,10,273,3,45,1),(3352,10,274,3,45,2),(3353,10,272,3,46,23),(3354,10,513,3,46,91),(3356,10,273,3,46,1),(3357,10,274,3,46,2),(3358,10,272,3,47,23),(3359,10,513,3,47,90),(3361,10,273,3,47,1),(3362,10,274,3,47,2),(3363,10,272,3,48,23),(3364,10,513,3,48,93),(3366,10,273,3,48,1),(3367,10,274,3,48,2),(3368,10,501,3,49,35),(3369,10,272,3,49,59),(3370,10,502,3,49,40),(3372,10,273,3,49,1),(3373,10,274,3,49,2),(3374,10,107,3,49,97),(3375,10,272,3,51,26),(3376,10,508,3,51,72),(3378,10,273,3,51,1),(3379,10,274,3,51,2),(3380,10,272,3,52,26),(3381,10,508,3,52,72),(3383,10,273,3,52,1),(3384,10,274,3,52,2),(3385,10,272,3,53,26),(3386,10,508,3,53,72),(3388,10,273,3,53,1),(3389,10,274,3,53,2),(3390,10,272,3,54,26),(3391,10,508,3,54,72),(3392,10,273,3,54,1),(3393,10,274,3,54,2),(3467,10,526,3,16,4),(3468,10,526,3,17,4),(3469,10,526,3,18,4),(3470,10,526,3,20,4),(3471,10,526,3,25,4),(3472,10,526,3,26,4),(3473,10,526,3,27,4),(3474,10,526,3,28,4),(3475,10,526,3,29,1),(3476,10,526,3,30,1),(3477,10,526,3,31,1),(3478,10,526,3,32,1),(3479,10,526,3,33,1),(3480,10,526,3,34,1),(3481,10,526,3,35,1),(3482,10,526,3,36,1),(3483,10,526,3,37,1),(3484,10,526,3,38,1),(3485,10,526,3,19,4),(3486,10,526,3,39,4),(3488,10,526,3,41,4),(3489,10,526,3,42,4),(3490,10,526,3,44,4),(3491,10,526,3,45,4),(3492,10,526,3,46,4),(3493,10,526,3,47,4),(3494,10,526,3,48,4),(3495,10,526,3,49,1),(3496,10,526,3,51,4),(3497,10,526,3,52,4),(3498,10,526,3,53,4),(3499,10,526,3,54,4),(3512,10,510,3,28,74),(3513,10,510,3,27,76),(3514,10,510,3,26,79),(3515,10,510,3,25,77),(3516,10,107,3,29,97),(3517,10,501,3,74,35),(3518,10,272,3,74,59),(3519,10,502,3,74,46),(3521,10,273,3,74,1),(3522,10,274,3,74,2),(3523,10,107,3,74,97),(3524,10,526,3,74,1),(3525,10,501,3,75,35),(3526,10,272,3,75,59),(3527,10,502,3,75,45),(3529,10,273,3,75,1),(3530,10,274,3,75,2),(3531,10,107,3,75,97),(3532,10,526,3,75,1),(3533,10,501,3,79,35),(3534,10,272,3,79,59),(3535,10,502,3,79,44),(3537,10,273,3,79,1),(3538,10,274,3,79,2),(3539,10,107,3,79,97),(3540,10,526,3,79,1),(3541,10,501,3,80,35),(3542,10,272,3,80,59),(3543,10,502,3,80,43),(3545,10,273,3,80,1),(3546,10,274,3,80,2),(3547,10,107,3,80,97),(3548,10,526,3,80,1),(3549,10,501,3,81,35),(3550,10,272,3,81,59),(3551,10,502,3,81,42),(3553,10,273,3,81,1),(3554,10,274,3,81,2),(3555,10,107,3,81,97),(3556,10,526,3,81,1),(3557,10,501,3,82,35),(3558,10,272,3,82,59),(3559,10,502,3,82,41),(3561,10,273,3,82,1),(3562,10,274,3,82,2),(3563,10,107,3,82,97),(3564,10,526,3,82,1),(3565,10,273,3,83,1),(3566,10,274,3,83,2),(3567,10,526,3,83,4),(3568,10,107,3,83,97),(3569,10,272,3,83,25),(3570,10,501,3,84,35),(3571,10,272,3,84,25),(3572,10,502,3,84,45),(3574,10,273,3,84,1),(3575,10,274,3,84,2),(3576,10,526,3,84,1),(3577,10,107,3,84,97),(3578,10,501,3,85,35),(3579,10,272,3,85,25),(3580,10,502,3,85,44),(3582,10,273,3,85,1),(3583,10,274,3,85,2),(3584,10,526,3,85,1),(3585,10,107,3,85,97),(3586,10,501,3,86,35),(3587,10,272,3,86,25),(3588,10,502,3,86,43),(3590,10,273,3,86,1),(3591,10,274,3,86,2),(3592,10,526,3,86,1),(3593,10,107,3,86,97),(3594,10,501,3,87,35),(3595,10,272,3,87,25),(3596,10,502,3,87,42),(3598,10,273,3,87,1),(3599,10,274,3,87,2),(3600,10,526,3,87,1),(3601,10,107,3,87,97),(3602,10,501,3,88,36),(3603,10,272,3,88,25),(3604,10,502,3,88,41),(3606,10,273,3,88,1),(3607,10,274,3,88,2),(3608,10,526,3,88,1),(3609,10,107,3,88,97),(3610,10,501,3,89,36),(3611,10,272,3,89,25),(3612,10,502,3,89,40),(3614,10,273,3,89,1),(3615,10,274,3,89,2),(3616,10,526,3,89,1),(3617,10,107,3,89,97),(3618,10,501,3,90,36),(3619,10,272,3,90,25),(3620,10,502,3,90,39),(3622,10,273,3,90,1),(3623,10,274,3,90,2),(3624,10,526,3,90,1),(3625,10,107,3,90,97),(3626,10,501,3,91,36),(3627,10,272,3,91,25),(3628,10,502,3,91,38),(3630,10,273,3,91,1),(3631,10,274,3,91,2),(3632,10,526,3,91,1),(3633,10,107,3,91,97),(3634,10,501,3,92,36),(3635,10,272,3,92,25),(3636,10,502,3,92,37),(3638,10,273,3,92,1),(3639,10,274,3,92,2),(3640,10,526,3,92,1),(3641,10,107,3,92,97),(3642,10,273,3,93,1),(3643,10,274,3,93,2),(3644,10,526,3,93,4),(3645,10,107,3,93,53),(3646,10,272,3,93,61),(3647,10,501,3,93,36),(3648,10,501,3,94,36),(3649,10,272,3,94,61),(3650,10,502,3,94,40),(3651,10,107,3,94,49),(3653,10,273,3,94,1),(3654,10,274,3,94,2),(3655,10,526,3,94,1),(3656,10,501,3,95,36),(3657,10,272,3,95,61),(3658,10,502,3,95,39),(3659,10,107,3,95,49),(3661,10,273,3,95,1),(3662,10,274,3,95,2),(3663,10,526,3,95,1),(3664,10,501,3,96,36),(3665,10,272,3,96,61),(3666,10,502,3,96,38),(3667,10,107,3,96,49),(3669,10,273,3,96,1),(3670,10,274,3,96,2),(3671,10,526,3,96,1),(3672,10,501,3,97,36),(3673,10,272,3,97,61),(3674,10,502,3,97,37),(3675,10,107,3,97,49),(3677,10,273,3,97,1),(3678,10,274,3,97,2),(3679,10,526,3,97,1),(3680,10,273,3,98,1),(3681,10,274,3,98,2),(3682,10,526,3,98,4),(3683,10,107,3,98,52),(3684,10,272,3,98,24),(3685,10,501,3,98,36),(3686,10,501,3,99,36),(3687,10,272,3,99,24),(3688,10,502,3,99,40),(3689,10,107,3,99,52),(3691,10,273,3,99,1),(3692,10,274,3,99,2),(3693,10,526,3,99,1),(3694,10,501,3,100,36),(3695,10,272,3,100,24),(3696,10,502,3,100,39),(3697,10,107,3,100,52),(3699,10,273,3,100,1),(3700,10,274,3,100,2),(3701,10,526,3,100,1),(3702,10,501,3,101,36),(3703,10,272,3,101,24),(3704,10,502,3,101,38),(3705,10,107,3,101,52),(3707,10,273,3,101,1),(3708,10,274,3,101,2),(3709,10,526,3,101,1),(3710,10,501,3,102,36),(3711,10,272,3,102,24),(3712,10,502,3,102,37),(3713,10,107,3,102,52),(3715,10,273,3,102,1),(3716,10,274,3,102,2),(3717,10,526,3,102,1),(3718,10,273,3,103,1),(3719,10,274,3,103,2),(3720,10,526,3,103,4),(3721,10,107,3,103,52),(3722,10,272,3,103,26),(3723,10,501,3,103,35),(3724,10,501,3,104,35),(3725,10,272,3,104,26),(3726,10,502,3,104,44),(3727,10,107,3,104,51),(3729,10,273,3,104,1),(3730,10,274,3,104,2),(3731,10,526,3,104,1),(3732,10,501,3,105,35),(3733,10,272,3,105,26),(3734,10,502,3,105,43),(3735,10,107,3,105,51),(3737,10,273,3,105,1),(3738,10,274,3,105,2),(3739,10,526,3,105,1),(3740,10,501,3,106,35),(3741,10,272,3,106,26),(3742,10,502,3,106,42),(3743,10,107,3,106,51),(3745,10,273,3,106,1),(3746,10,274,3,106,2),(3747,10,526,3,106,1),(3748,10,501,3,107,35),(3749,10,272,3,107,26),(3750,10,502,3,107,41),(3751,10,107,3,107,51),(3753,10,273,3,107,1),(3754,10,274,3,107,2),(3755,10,526,3,107,1),(3756,10,273,3,108,1),(3757,10,274,3,108,2),(3758,10,526,3,108,4),(3759,10,107,3,108,51),(3760,10,272,3,108,26),(3761,10,501,3,108,35),(3762,10,501,3,109,35),(3763,10,272,3,109,26),(3764,10,502,3,109,45),(3765,10,107,3,109,51),(3767,10,273,3,109,1),(3768,10,274,3,109,2),(3769,10,526,3,109,1),(3770,10,501,3,110,35),(3771,10,272,3,110,26),(3772,10,502,3,110,44),(3773,10,107,3,110,51),(3775,10,273,3,110,1),(3776,10,274,3,110,2),(3777,10,526,3,110,1),(3778,10,501,3,111,35),(3779,10,272,3,111,26),(3780,10,502,3,111,43),(3781,10,107,3,111,51),(3783,10,273,3,111,1),(3784,10,274,3,111,2),(3785,10,526,3,111,1),(3786,10,273,3,112,1),(3787,10,274,3,112,2),(3788,10,526,3,112,4),(3789,10,107,3,112,47),(3790,10,272,3,112,59),(3791,10,501,3,112,35),(3792,10,272,3,33,59),(3793,10,501,3,113,35),(3794,10,502,3,113,45),(3795,10,107,3,113,47),(3797,10,273,3,113,1),(3798,10,274,3,113,2),(3799,10,526,3,113,1),(3800,10,272,3,113,59),(3801,10,501,3,114,35),(3802,10,502,3,114,44),(3803,10,107,3,114,47),(3805,10,273,3,114,1),(3806,10,274,3,114,2),(3807,10,526,3,114,1),(3808,10,272,3,114,59),(3809,10,501,3,115,35),(3810,10,502,3,115,43),(3811,10,107,3,115,47),(3813,10,273,3,115,1),(3814,10,274,3,115,2),(3815,10,526,3,115,1),(3816,10,272,3,115,59),(3817,10,525,3,35,100),(3818,10,272,3,117,22),(3820,10,273,3,117,1),(3821,10,274,3,117,2),(3822,10,526,3,117,1),(3823,10,525,3,117,99),(3824,10,272,3,118,22),(3826,10,273,3,118,1),(3827,10,274,3,118,2),(3828,10,526,3,118,1),(3829,10,525,3,118,98),(3830,10,273,3,119,1),(3831,10,274,3,119,2),(3832,10,526,3,119,4),(3833,10,501,3,119,36),(3834,10,272,3,119,22),(3835,10,501,3,36,35),(3836,10,525,3,36,100),(3837,10,273,3,120,1),(3838,10,274,3,120,2),(3839,10,526,3,120,4),(3840,10,501,3,120,35),(3841,10,272,3,120,60),(3842,10,272,3,121,60),(3844,10,273,3,121,1),(3845,10,274,3,121,2),(3846,10,526,3,121,1),(3847,10,501,3,121,35),(3848,10,525,3,121,99),(3849,10,272,3,122,60),(3851,10,273,3,122,1),(3852,10,274,3,122,2),(3853,10,526,3,122,1),(3854,10,501,3,122,35),(3855,10,525,3,122,98),(3856,10,273,3,123,1),(3857,10,274,3,123,2),(3858,10,526,3,123,4),(3859,10,501,3,123,36),(3860,10,272,3,123,60),(3861,10,501,3,37,36),(3862,10,525,3,37,100),(3863,10,272,3,124,60),(3865,10,273,3,124,1),(3866,10,274,3,124,2),(3867,10,526,3,124,1),(3868,10,501,3,124,36),(3869,10,525,3,124,99),(3870,10,272,3,125,60),(3872,10,273,3,125,1),(3873,10,274,3,125,2),(3874,10,526,3,125,1),(3875,10,501,3,125,36),(3876,10,525,3,125,98),(3877,10,273,3,126,1),(3878,10,274,3,126,2),(3879,10,526,3,126,4),(3880,10,501,3,126,36),(3881,10,501,3,38,36),(3882,10,525,3,38,100),(3883,10,272,3,127,22),(3885,10,273,3,127,1),(3886,10,274,3,127,2),(3887,10,526,3,127,1),(3888,10,501,3,127,36),(3889,10,525,3,127,100),(3890,10,272,3,128,26),(3892,10,273,3,128,1),(3893,10,274,3,128,2),(3894,10,526,3,128,1),(3895,10,501,3,128,36),(3896,10,525,3,128,99),(3897,10,272,3,129,22),(3899,10,273,3,129,1),(3900,10,274,3,129,2),(3901,10,526,3,129,1),(3902,10,501,3,129,36),(3903,10,525,3,129,99),(3904,10,272,3,130,26),(3906,10,273,3,130,1),(3907,10,274,3,130,2),(3908,10,526,3,130,1),(3909,10,501,3,130,36),(3910,10,525,3,130,98),(3911,10,272,3,131,22),(3913,10,273,3,131,1),(3914,10,274,3,131,2),(3915,10,526,3,131,1),(3916,10,501,3,131,36),(3917,10,525,3,131,98),(3918,10,501,3,117,36),(3919,10,501,3,118,36),(3921,10,273,3,133,1),(3922,10,274,3,133,2),(3923,10,526,3,133,4),(3925,10,273,3,132,1),(3926,10,274,3,132,2),(3927,10,526,3,132,4),(3929,10,273,3,134,1),(3930,10,274,3,134,2),(3931,10,526,3,134,4),(3932,10,273,3,135,1),(3933,10,274,3,135,2),(3934,10,526,3,135,4),(3935,10,107,3,135,97),(3936,10,272,3,135,59),(3937,10,501,3,135,35),(3946,10,272,0,137,24),(3948,10,273,0,137,2),(3949,10,274,0,137,2),(3950,10,526,0,137,1),(3951,10,501,0,137,36),(3952,10,525,0,137,99),(3953,10,540,0,25,1),(3954,10,540,1,25,1),(3955,10,540,2,25,1),(3956,10,540,3,25,1),(3957,10,540,0,51,1),(3958,10,540,1,51,1),(3959,10,540,2,51,1),(3960,10,540,3,51,1),(3961,10,540,0,19,1),(3962,10,540,1,19,1),(3963,10,540,2,19,1),(3964,10,540,3,19,1),(3965,10,501,0,39,36),(3966,10,525,0,39,99),(3967,10,273,0,138,1),(3968,10,274,0,138,1),(3969,10,526,0,138,4),(3970,10,272,0,138,24),(3971,10,273,0,139,1),(3972,10,274,0,139,1),(3973,10,526,0,139,4),(3974,10,272,0,139,23),(3975,10,273,0,140,1),(3976,10,274,0,140,1),(3977,10,526,0,140,4),(3978,10,102,0,140,111),(3979,10,273,0,141,1),(3980,10,274,0,141,1),(3981,10,526,0,141,4),(3982,10,102,0,141,111),(3983,10,273,0,142,1),(3984,10,274,0,142,0),(3985,10,526,0,142,1),(3986,10,273,0,143,1),(3987,10,274,0,143,1),(3988,10,526,0,143,4),(3989,10,102,0,143,111),(3990,10,273,0,144,1),(3991,10,274,0,144,0),(3992,10,526,0,144,1),(3993,10,273,0,145,1),(3994,10,274,0,145,1),(3995,10,526,0,145,4),(3996,10,102,0,145,117),(3997,10,877,0,145,113),(3998,10,273,0,146,1),(3999,10,274,0,146,0),(4000,10,526,0,146,1),(4001,10,273,0,147,1),(4002,10,274,0,147,0),(4003,10,526,0,147,4),(4004,10,102,0,147,3),(4005,10,875,0,147,110),(4006,10,273,0,148,1),(4007,10,274,0,148,1),(4008,10,526,0,148,4),(4009,10,102,0,148,117),(4010,10,877,0,148,115),(4011,10,273,0,149,1),(4012,10,274,0,149,1),(4013,10,526,0,149,4),(4014,10,102,0,149,118),(4015,10,273,0,150,1),(4016,10,274,0,150,1),(4017,10,526,0,150,4),(4018,10,102,0,150,118),(4019,10,273,0,151,1),(4020,10,274,0,151,1),(4021,10,526,0,151,4),(4022,10,102,0,151,116),(4023,10,877,0,151,112),(4024,10,273,0,152,1),(4025,10,274,0,152,1),(4026,10,526,0,152,4),(4027,10,102,0,152,1),(4028,10,875,0,152,106),(4029,10,273,0,153,1),(4030,10,274,0,153,1),(4031,10,526,0,153,4),(4032,10,102,0,153,116),(4033,10,877,0,153,114),(4034,10,273,0,154,1),(4035,10,274,0,154,1),(4036,10,526,0,154,4),(4037,10,102,0,154,119),(4038,10,273,0,155,1),(4039,10,274,0,155,1),(4040,10,526,0,155,4),(4041,10,102,0,155,119),(4042,10,273,0,156,1),(4043,10,274,0,156,0),(4044,10,526,0,156,4),(4045,10,102,0,156,1),(4046,10,875,0,156,106),(4047,10,273,0,157,1),(4048,10,274,0,157,0),(4049,10,526,0,157,4),(4050,10,102,0,157,29),(4051,10,875,0,157,107),(4052,10,860,0,158,1),(4053,10,861,0,158,0),(4054,10,273,0,158,1),(4055,10,274,0,158,2),(4056,10,526,0,158,4),(4057,10,859,0,158,0),(4058,10,862,0,158,1),(4059,10,863,0,158,0),(4060,10,273,0,159,1),(4061,10,274,0,159,0),(4062,10,526,0,159,4),(4063,10,102,0,159,120),(4064,10,273,0,160,1),(4065,10,274,0,160,1),(4066,10,526,0,160,4),(4067,10,102,0,160,121),(4068,10,272,0,160,59),(4069,10,273,0,161,1),(4070,10,274,0,161,0),(4071,10,526,0,161,4),(4072,10,102,0,161,121),(4073,10,273,0,162,1),(4074,10,274,0,162,1),(4075,10,526,0,162,4),(4076,10,102,0,162,120),(4077,10,272,0,162,24),(4078,10,860,0,163,0),(4079,10,861,0,163,0),(4080,10,273,0,163,1),(4081,10,274,0,163,1),(4082,10,526,0,163,4),(4083,10,859,0,163,0),(4084,10,862,0,163,0),(4085,10,863,0,163,0),(4086,10,860,0,164,1),(4087,10,861,0,164,1),(4088,10,273,0,164,1),(4089,10,274,0,164,1),(4090,10,526,0,164,4),(4091,10,859,0,164,1),(4092,10,862,0,164,0),(4093,10,863,0,164,1),(4094,10,860,0,165,1),(4095,10,861,0,165,1),(4096,10,273,0,165,1),(4097,10,274,0,165,1),(4098,10,526,0,165,4),(4099,10,859,0,165,0),(4100,10,862,0,165,0),(4101,10,863,0,165,0),(4102,10,273,0,166,1),(4103,10,274,0,166,2),(4104,10,526,0,166,4),(4105,10,272,0,166,24),(4106,10,102,0,166,122),(4107,10,501,0,35,36);
/*!40000 ALTER TABLE `catalog_product_entity_int` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_entity_media_gallery`
--

DROP TABLE IF EXISTS `catalog_product_entity_media_gallery`;
CREATE TABLE `catalog_product_entity_media_gallery` (
  `value_id` int(11) unsigned NOT NULL auto_increment,
  `attribute_id` smallint(5) unsigned NOT NULL default '0',
  `entity_id` int(10) unsigned NOT NULL default '0',
  `value` varchar(255) default NULL,
  PRIMARY KEY  (`value_id`),
  KEY `FK_CATALOG_PRODUCT_MEDIA_GALLERY_ATTRIBUTE` (`attribute_id`),
  KEY `FK_CATALOG_PRODUCT_MEDIA_GALLERY_ENTITY` (`entity_id`),
  CONSTRAINT `FK_CATALOG_PRODUCT_MEDIA_GALLERY_ATTRIBUTE` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `FK_CATALOG_PRODUCT_MEDIA_GALLERY_ENTITY` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=366 DEFAULT CHARSET=utf8 COMMENT='Catalog product media gallery';

--
-- Dumping data for table `catalog_product_entity_media_gallery`
--

LOCK TABLES `catalog_product_entity_media_gallery` WRITE;
/*!40000 ALTER TABLE `catalog_product_entity_media_gallery` DISABLE KEYS */;
INSERT INTO `catalog_product_entity_media_gallery` VALUES (1,703,17,'/b/l/blackberry-8100-pearl.jpg'),(2,703,17,'/b/l/blackberry-8100-pearl-1.jpg'),(3,703,18,'/s/o/sony-ericsson-w810i.jpg'),(4,703,18,'/s/o/sony-ericsson-w810i-1.jpg'),(5,703,29,'/c/n/cn-clogs-beach-garden-clog.jpg'),(6,703,29,'/c/n/cn-clogs-beach-garden-clog-1.jpg'),(7,703,30,'/a/s/asics-men-s-gel-kayano-xii.jpg'),(8,703,30,'/a/s/asics-men-s-gel-kayano-xii-1.jpg'),(9,703,31,'/s/t/steven-by-steve-madden-pryme-pump.jpg'),(10,703,31,'/s/t/steven-by-steve-madden-pryme-pump-1.jpg'),(11,703,32,'/n/i/nine-west-women-s-lucero-pump.jpg'),(12,703,32,'/n/i/nine-west-women-s-lucero-pump-1.jpg'),(13,703,33,'/e/c/ecco-womens-golf-flexor-golf-shoe.jpg'),(14,703,33,'/e/c/ecco-womens-golf-flexor-golf-shoe-1.jpg'),(15,703,34,'/k/e/kenneth-cole-new-york-men-s-con-verge-slip-on.jpg'),(16,703,34,'/k/e/kenneth-cole-new-york-men-s-con-verge-slip-on-1.jpg'),(17,703,35,'/c/o/coalesce-functioning-on-impatience-t-shirt.jpg'),(18,703,36,'/i/n/ink-eater-krylon-bombear-destroyed-tee.jpg'),(19,703,37,'/t/h/the-only-children-paisley-t-shirt.jpg'),(20,703,38,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt.jpg'),(21,703,19,'/a/t/at-t-8525-pda.jpg'),(22,703,39,'/t/h/the-get-up-kids-band-camp-pullover-hoodie.jpg'),(24,703,45,'/a/r/argus-qc-2185-quick-click-5mp-digital-camera.jpg'),(25,703,45,'/a/r/argus-qc-2185-quick-click-5mp-digital-camera-1.jpg'),(26,703,46,'/o/l/olympus-stylus-750-7-1mp-digital-camera.jpg'),(27,703,46,'/o/l/olympus-stylus-750-7-1mp-digital-camera-1.jpg'),(28,703,47,'/c/a/canon-powershot-a630-8mp-digital-camera-with-4x-optical-zoom.jpg'),(29,703,47,'/c/a/canon-powershot-a630-8mp-digital-camera-with-4x-optical-zoom-1.jpg'),(30,703,48,'/k/o/kodak-easyshare-c530-5mp-digital-camera.jpg'),(31,703,48,'/k/o/kodak-easyshare-c530-5mp-digital-camera-1.jpg'),(32,703,44,'/c/a/canon-digital-rebel-xt-8mp-digital-slr-camera.jpg'),(33,703,49,'/a/n/anashria-womens-premier-leather-sandal.jpg'),(34,703,49,'/a/n/anashria-womens-premier-leather-sandal-1.jpg'),(35,703,74,'/a/n/anashria-womens-premier-leather-sandal.jpg'),(36,703,74,'/a/n/anashria-womens-premier-leather-sandal-1.jpg'),(37,703,75,'/a/n/anashria-womens-premier-leather-sandal.jpg'),(38,703,75,'/a/n/anashria-womens-premier-leather-sandal-1.jpg'),(47,703,83,'/c/n/cn-clogs-beach-garden-clog.jpg'),(84,703,103,'/s/t/steven-by-steve-madden-pryme-pump.jpg'),(102,703,112,'/e/c/ecco-womens-golf-flexor-golf-shoe.jpg'),(112,703,119,'/c/o/coalesce-functioning-on-impatience-t-shirt.jpg'),(113,703,120,'/i/n/ink-eater-krylon-bombear-destroyed-tee.jpg'),(116,703,123,'/t/h/the-only-children-paisley-t-shirt.jpg'),(119,703,126,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt.jpg'),(126,703,16,'/n/o/nokia-2610-phone.jpg'),(127,703,16,'/n/o/nokia-2610-phone-1.jpg'),(130,703,44,'/c/a/canon-digital-rebel-xt-8mp-digital-slr-camera-1.jpg'),(131,703,134,'/u/n/universal-camera-charger.jpg'),(133,703,119,'/c/o/coalesce-functioning-on-impatience-t-shirt-1.jpg'),(136,703,27,'/s/o/sony-vaio-vgn-txn27n-b-11-1-notebook-pc.jpg'),(137,703,39,'/t/h/the-get-up-kids-band-camp-pullover-hoodie-1.jpg'),(139,703,41,'/a/k/akio-dresser.jpg'),(140,703,42,'/b/a/barcelona-bamboo-platform-bed.jpg'),(141,703,138,'/a/p/apevia-black-x-cruiser-case-atx-mid-tower-case-default.jpg'),(142,703,139,'/n/z/nzxt-lexa-silver-aluminum-atx-mid-tower-case-default.jpg'),(143,703,145,'/a/m/amd-phenom-x4-9850-black-ed-2-50ghz-retail.jpg'),(144,703,148,'/a/m/amd-a64-x2-3800-2-0ghz-oem.jpg'),(145,703,147,'/2/2/22-syncmaster-lcd-monitor.jpg'),(146,703,151,'/i/n/intel-c2d-e8400-3-0ghz-retail.jpg'),(147,703,152,'/2/4/24-widescreen-flat-panel-lcd-monitor.jpg'),(148,703,153,'/i/n/intel-core-2-extreme-qx9775-3-20ghz-retail.jpg'),(149,703,156,'/1/9/19-widescreen-flat-panel-lcd-monitor.jpg'),(150,703,157,'/3/0/30-flat-panel-tft-lcd-cinema-hd-monitor.jpg'),(151,703,159,'/m/i/microsoft-natural-ergonomic-keyboard-4000.jpg'),(152,703,161,'/l/o/logitech-dinovo-edge-keyboard.jpg'),(153,703,162,'/m/i/microsoft-wireless-optical-mouse-5000.jpg'),(154,703,160,'/l/o/logitech-cordless-optical-trackman.jpg'),(155,703,163,'/c/o/computer.jpg'),(156,703,164,'/g/a/gaming-computer.jpg'),(157,703,165,'/m/y/my-computer.jpg'),(158,703,158,'/s/o/sony-vaio-11-1-notebook-pc.jpg'),(159,703,155,'/s/e/seagate-250gb-hd-5400rpm.jpg'),(160,703,154,'/s/e/seagate-500gb-hd-5400rpm.jpg'),(161,703,150,'/w/e/western-digital-500gb-hd-7200rpm.jpg'),(162,703,149,'/w/e/western-digital-1tb-hd-7200rpm.jpg'),(163,703,143,'/c/r/crucial-512mb-pc4200-ddr2-533mhz-memory.jpg'),(164,703,141,'/c/r/crucial-1gb-pc4200-ddr2-533mhz-memory.jpg'),(165,703,140,'/c/r/crucial-2gb-pc4200-ddr2-533mhz-memory.jpg'),(166,703,166,'/h/t/htc-touch-diamond.jpg'),(167,703,26,'/a/c/acer-ferrari-3200-notebook-computer-pc.jpg'),(168,703,25,'/a/p/apple-macbook-pro-ma464ll-a-15-4-notebook-pc.jpg'),(171,703,93,'/a/s/asics-men-s-gel-kayano-xii.jpg'),(172,703,93,'/a/s/asics-men-s-gel-kayano-xii-1.jpg'),(173,703,93,'/a/s/asics-men-s-gel-kayano-xii-2.jpg'),(174,703,108,'/n/i/nine-west-women-s-lucero-pump.jpg'),(175,703,108,'/n/i/nine-west-women-s-lucero-pump-1.jpg'),(176,703,108,'/n/i/nine-west-women-s-lucero-pump-2.jpg'),(177,703,135,'/a/n/anashria-womens-premier-leather-sandal-2.jpg'),(178,703,135,'/a/n/anashria-womens-premier-leather-sandal-1.jpg'),(179,703,135,'/a/n/anashria-womens-premier-leather-sandal.jpg'),(180,703,83,'/c/n/cn-clogs-beach-garden-clog-2.jpg'),(181,703,83,'/c/n/cn-clogs-beach-garden-clog-1.jpg'),(182,703,112,'/e/c/ecco-womens-golf-flexor-golf-shoe-1.jpg'),(183,703,112,'/e/c/ecco-womens-golf-flexor-golf-shoe-2.jpg'),(184,703,120,'/i/n/ink-eater-krylon-bombear-destroyed-tee-1.jpg'),(185,703,126,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt-2.jpg'),(186,703,126,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt-1.jpg'),(187,703,103,'/s/t/steven-by-steve-madden-pryme-pump-2.jpg'),(188,703,103,'/s/t/steven-by-steve-madden-pryme-pump-1.jpg'),(189,703,16,'/n/o/nokia-2610-phone-2.jpg'),(190,703,17,'/b/l/blackberry-8100-pearl-2.jpg'),(191,703,18,'/s/o/sony-ericsson-w810i-2.jpg'),(192,703,20,'/s/a/samsung-mm-a900m-ace.jpg'),(193,703,28,'/t/o/toshiba-m285-e-14.jpg'),(194,703,34,'/k/e/kenneth-cole-new-york-men-s-con-verge-slip-on-2.jpg'),(195,703,37,'/t/h/the-only-children-paisley-t-shirt-1.jpg'),(196,703,19,'/a/t/at-t-8525-pda-1.jpg'),(197,703,45,'/a/r/argus-qc-2185-quick-click-5mp-digital-camera-2.jpg'),(198,703,46,'/o/l/olympus-stylus-750-7-1mp-digital-camera-2.jpg'),(199,703,47,'/c/a/canon-powershot-a630-8mp-digital-camera-with-4x-optical-zoom-2.jpg'),(200,703,48,'/k/o/kodak-easyshare-c530-5mp-digital-camera-2.jpg'),(201,703,51,'/o/t/ottoman.jpg'),(202,703,52,'/c/h/chair.jpg'),(203,703,53,'/c/o/couch.jpg'),(204,703,54,'/m/a/magento-red-furniture-set.jpg'),(205,703,133,'/u/n/universal-camera-case.jpg'),(206,703,132,'/s/l/slr-camera-tripod.jpg'),(212,703,29,'/c/n/cn-clogs-beach-garden-clog-3.jpg'),(213,703,31,'/s/t/steven-by-steve-madden-pryme-pump-3.jpg'),(214,703,33,'/e/c/ecco-womens-golf-flexor-golf-shoe-3.jpg'),(215,703,34,'/k/e/kenneth-cole-new-york-men-s-con-verge-slip-on-3.jpg'),(216,703,37,'/t/h/the-only-children-paisley-t-shirt-2.jpg'),(222,703,49,'/a/n/anashria-womens-premier-leather-sandal-3.jpg'),(227,703,75,'/a/n/anashria-womens-premier-leather-sandal-3.jpg'),(228,703,124,'/t/h/the-only-children-paisley-t-shirt-1.jpg'),(229,703,125,'/t/h/the-only-children-paisley-t-shirt-1.jpg'),(230,703,133,'/u/n/universal-camera-case-1.jpg'),(237,703,29,'/c/n/cn-clogs-beach-garden-clog-4.jpg'),(238,703,31,'/s/t/steven-by-steve-madden-pryme-pump-4.jpg'),(239,703,33,'/e/c/ecco-womens-golf-flexor-golf-shoe-4.jpg'),(240,703,34,'/k/e/kenneth-cole-new-york-men-s-con-verge-slip-on-4.jpg'),(241,703,37,'/t/h/the-only-children-paisley-t-shirt-3.jpg'),(242,703,38,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt-3.jpg'),(248,703,49,'/a/n/anashria-womens-premier-leather-sandal-4.jpg'),(253,703,75,'/a/n/anashria-womens-premier-leather-sandal-4.jpg'),(255,703,99,'/k/e/kenneth-cole-new-york-men-s-con-verge-slip-on-2.jpg'),(256,703,100,'/k/e/kenneth-cole-new-york-men-s-con-verge-slip-on-2.jpg'),(257,703,101,'/k/e/kenneth-cole-new-york-men-s-con-verge-slip-on-2.jpg'),(258,703,102,'/k/e/kenneth-cole-new-york-men-s-con-verge-slip-on-2.jpg'),(259,703,121,'/i/n/ink-eater-krylon-bombear-destroyed-tee-2.jpg'),(260,703,122,'/i/n/ink-eater-krylon-bombear-destroyed-tee-2.jpg'),(261,703,124,'/t/h/the-only-children-paisley-t-shirt-2.jpg'),(262,703,125,'/t/h/the-only-children-paisley-t-shirt-2.jpg'),(263,703,133,'/u/n/universal-camera-case-2.jpg'),(265,703,29,'/c/n/cn-clogs-beach-garden-clog-2.jpg'),(266,703,31,'/s/t/steven-by-steve-madden-pryme-pump-2.jpg'),(267,703,33,'/e/c/ecco-womens-golf-flexor-golf-shoe-2.jpg'),(268,703,38,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt-1.jpg'),(269,703,49,'/a/n/anashria-womens-premier-leather-sandal-2.jpg'),(270,703,75,'/a/n/anashria-womens-premier-leather-sandal-2.jpg'),(271,703,79,'/a/n/anashria-womens-premier-leather-sandal.jpg'),(272,703,80,'/a/n/anashria-womens-premier-leather-sandal.jpg'),(273,703,81,'/a/n/anashria-womens-premier-leather-sandal.jpg'),(274,703,82,'/a/n/anashria-womens-premier-leather-sandal.jpg'),(275,703,84,'/c/n/cn-clogs-beach-garden-clog.jpg'),(276,703,85,'/c/n/cn-clogs-beach-garden-clog.jpg'),(277,703,86,'/c/n/cn-clogs-beach-garden-clog.jpg'),(278,703,87,'/c/n/cn-clogs-beach-garden-clog.jpg'),(279,703,88,'/c/n/cn-clogs-beach-garden-clog.jpg'),(280,703,89,'/c/n/cn-clogs-beach-garden-clog.jpg'),(281,703,90,'/c/n/cn-clogs-beach-garden-clog.jpg'),(282,703,91,'/c/n/cn-clogs-beach-garden-clog.jpg'),(283,703,92,'/c/n/cn-clogs-beach-garden-clog.jpg'),(284,703,98,'/k/e/kenneth-cole-new-york-men-s-con-verge-slip-on.jpg'),(285,703,99,'/k/e/kenneth-cole-new-york-men-s-con-verge-slip-on.jpg'),(286,703,100,'/k/e/kenneth-cole-new-york-men-s-con-verge-slip-on.jpg'),(287,703,101,'/k/e/kenneth-cole-new-york-men-s-con-verge-slip-on.jpg'),(288,703,102,'/k/e/kenneth-cole-new-york-men-s-con-verge-slip-on.jpg'),(289,703,104,'/s/t/steven-by-steve-madden-pryme-pump.jpg'),(290,703,105,'/s/t/steven-by-steve-madden-pryme-pump.jpg'),(291,703,106,'/s/t/steven-by-steve-madden-pryme-pump.jpg'),(292,703,107,'/s/t/steven-by-steve-madden-pryme-pump.jpg'),(293,703,113,'/e/c/ecco-womens-golf-flexor-golf-shoe.jpg'),(294,703,114,'/e/c/ecco-womens-golf-flexor-golf-shoe.jpg'),(295,703,115,'/e/c/ecco-womens-golf-flexor-golf-shoe.jpg'),(296,703,121,'/i/n/ink-eater-krylon-bombear-destroyed-tee.jpg'),(297,703,122,'/i/n/ink-eater-krylon-bombear-destroyed-tee.jpg'),(298,703,124,'/t/h/the-only-children-paisley-t-shirt.jpg'),(299,703,125,'/t/h/the-only-children-paisley-t-shirt.jpg'),(300,703,127,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt.jpg'),(301,703,128,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt.jpg'),(302,703,129,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt.jpg'),(303,703,130,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt.jpg'),(304,703,131,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt.jpg'),(305,703,137,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt.jpg'),(306,703,38,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt-2.jpg'),(307,703,79,'/a/n/anashria-womens-premier-leather-sandal-1.jpg'),(308,703,80,'/a/n/anashria-womens-premier-leather-sandal-1.jpg'),(309,703,81,'/a/n/anashria-womens-premier-leather-sandal-1.jpg'),(310,703,82,'/a/n/anashria-womens-premier-leather-sandal-1.jpg'),(311,703,84,'/c/n/cn-clogs-beach-garden-clog-1.jpg'),(312,703,85,'/c/n/cn-clogs-beach-garden-clog-1.jpg'),(313,703,86,'/c/n/cn-clogs-beach-garden-clog-1.jpg'),(314,703,87,'/c/n/cn-clogs-beach-garden-clog-1.jpg'),(315,703,88,'/c/n/cn-clogs-beach-garden-clog-1.jpg'),(316,703,89,'/c/n/cn-clogs-beach-garden-clog-1.jpg'),(317,703,90,'/c/n/cn-clogs-beach-garden-clog-1.jpg'),(318,703,91,'/c/n/cn-clogs-beach-garden-clog-1.jpg'),(319,703,92,'/c/n/cn-clogs-beach-garden-clog-1.jpg'),(321,703,99,'/k/e/kenneth-cole-new-york-men-s-con-verge-slip-on-1.jpg'),(322,703,100,'/k/e/kenneth-cole-new-york-men-s-con-verge-slip-on-1.jpg'),(323,703,101,'/k/e/kenneth-cole-new-york-men-s-con-verge-slip-on-1.jpg'),(324,703,102,'/k/e/kenneth-cole-new-york-men-s-con-verge-slip-on-1.jpg'),(325,703,104,'/s/t/steven-by-steve-madden-pryme-pump-1.jpg'),(326,703,105,'/s/t/steven-by-steve-madden-pryme-pump-1.jpg'),(327,703,106,'/s/t/steven-by-steve-madden-pryme-pump-1.jpg'),(328,703,107,'/s/t/steven-by-steve-madden-pryme-pump-1.jpg'),(329,703,113,'/e/c/ecco-womens-golf-flexor-golf-shoe-1.jpg'),(330,703,114,'/e/c/ecco-womens-golf-flexor-golf-shoe-1.jpg'),(331,703,115,'/e/c/ecco-womens-golf-flexor-golf-shoe-1.jpg'),(332,703,121,'/i/n/ink-eater-krylon-bombear-destroyed-tee-1.jpg'),(333,703,122,'/i/n/ink-eater-krylon-bombear-destroyed-tee-1.jpg'),(334,703,127,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt-1.jpg'),(335,703,128,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt-1.jpg'),(336,703,129,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt-1.jpg'),(337,703,130,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt-1.jpg'),(338,703,131,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt-1.jpg'),(339,703,137,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt-1.jpg'),(340,703,79,'/a/n/anashria-womens-premier-leather-sandal-2.jpg'),(341,703,80,'/a/n/anashria-womens-premier-leather-sandal-2.jpg'),(342,703,81,'/a/n/anashria-womens-premier-leather-sandal-2.jpg'),(343,703,82,'/a/n/anashria-womens-premier-leather-sandal-2.jpg'),(344,703,84,'/c/n/cn-clogs-beach-garden-clog-2.jpg'),(345,703,85,'/c/n/cn-clogs-beach-garden-clog-2.jpg'),(346,703,86,'/c/n/cn-clogs-beach-garden-clog-2.jpg'),(347,703,87,'/c/n/cn-clogs-beach-garden-clog-2.jpg'),(348,703,88,'/c/n/cn-clogs-beach-garden-clog-2.jpg'),(349,703,89,'/c/n/cn-clogs-beach-garden-clog-2.jpg'),(350,703,90,'/c/n/cn-clogs-beach-garden-clog-2.jpg'),(351,703,91,'/c/n/cn-clogs-beach-garden-clog-2.jpg'),(352,703,92,'/c/n/cn-clogs-beach-garden-clog-2.jpg'),(353,703,104,'/s/t/steven-by-steve-madden-pryme-pump-2.jpg'),(354,703,105,'/s/t/steven-by-steve-madden-pryme-pump-2.jpg'),(355,703,106,'/s/t/steven-by-steve-madden-pryme-pump-2.jpg'),(356,703,107,'/s/t/steven-by-steve-madden-pryme-pump-2.jpg'),(357,703,113,'/e/c/ecco-womens-golf-flexor-golf-shoe-2.jpg'),(358,703,114,'/e/c/ecco-womens-golf-flexor-golf-shoe-2.jpg'),(359,703,115,'/e/c/ecco-womens-golf-flexor-golf-shoe-2.jpg'),(360,703,127,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt-2.jpg'),(361,703,128,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt-2.jpg'),(362,703,129,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt-2.jpg'),(363,703,130,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt-2.jpg'),(364,703,131,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt-2.jpg'),(365,703,137,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt-2.jpg');
/*!40000 ALTER TABLE `catalog_product_entity_media_gallery` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_entity_media_gallery_value`
--

DROP TABLE IF EXISTS `catalog_product_entity_media_gallery_value`;
CREATE TABLE `catalog_product_entity_media_gallery_value` (
  `value_id` int(11) unsigned NOT NULL default '0',
  `store_id` smallint(5) unsigned NOT NULL default '0',
  `label` varchar(255) default NULL,
  `position` int(11) unsigned default NULL,
  `disabled` tinyint(1) unsigned NOT NULL default '0',
  PRIMARY KEY  (`value_id`,`store_id`),
  KEY `FK_CATALOG_PRODUCT_MEDIA_GALLERY_VALUE_STORE` (`store_id`),
  CONSTRAINT `FK_CATALOG_PRODUCT_MEDIA_GALLERY_VALUE_GALLERY` FOREIGN KEY (`value_id`) REFERENCES `catalog_product_entity_media_gallery` (`value_id`) ON DELETE CASCADE,
  CONSTRAINT `FK_CATALOG_PRODUCT_MEDIA_GALLERY_VALUE_STORE` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog product media gallery values';

--
-- Dumping data for table `catalog_product_entity_media_gallery_value`
--

LOCK TABLES `catalog_product_entity_media_gallery_value` WRITE;
/*!40000 ALTER TABLE `catalog_product_entity_media_gallery_value` DISABLE KEYS */;
INSERT INTO `catalog_product_entity_media_gallery_value` VALUES (1,0,'',2,0),(2,0,'',1,0),(3,0,'',0,0),(4,0,'',0,0),(5,0,'',0,1),(6,0,'',0,1),(7,0,'',0,0),(8,0,'',0,0),(9,0,'',0,1),(10,0,'',0,1),(11,0,'',0,0),(12,0,'',0,0),(13,0,'',0,1),(14,0,'',0,1),(15,0,'',0,1),(16,0,'',0,1),(17,0,'',0,0),(18,0,'',0,0),(19,0,'',0,0),(20,0,'',0,0),(21,0,'',0,0),(22,0,'',0,0),(24,0,'',1,0),(25,0,'',2,0),(26,0,'',0,0),(27,0,'',0,0),(28,0,'',1,0),(29,0,'',2,0),(30,0,'',0,0),(31,0,'',0,0),(32,0,'',0,0),(33,0,'',0,1),(34,0,'',0,1),(35,0,'',0,1),(36,0,'',0,1),(37,0,'',0,1),(38,0,'',0,1),(47,0,'',0,1),(84,0,'',0,1),(102,0,'',0,1),(112,0,'',0,0),(113,0,'',0,1),(116,0,'',0,1),(119,0,'',0,1),(126,0,'',2,0),(127,0,'',1,0),(130,0,'',1,1),(131,0,'',1,1),(133,0,'',1,1),(136,0,'',1,1),(137,0,'',1,1),(139,0,'',1,1),(140,0,'',1,1),(141,0,'',1,0),(142,0,'',1,0),(143,0,'',1,1),(144,0,'',1,1),(145,0,'',1,1),(146,0,'',1,1),(147,0,'',1,1),(148,0,'',1,1),(149,0,'',1,1),(150,0,'',1,1),(151,0,'',1,1),(152,0,'',1,1),(153,0,'',1,1),(154,0,'',1,1),(155,0,'',1,1),(156,0,'',1,1),(157,0,'',1,1),(158,0,'',1,1),(159,0,'',1,1),(160,0,'',1,1),(161,0,'',1,1),(162,0,'',1,1),(163,0,'',1,1),(164,0,'',1,1),(165,0,'',1,1),(166,0,'',1,1),(167,0,'',1,1),(168,0,'',1,1),(171,0,'',2,0),(172,0,'',1,0),(173,0,'',0,1),(174,0,'',0,1),(175,0,'',1,0),(176,0,'',2,0),(177,0,'',2,0),(178,0,'',1,0),(179,0,'',0,1),(180,0,'',0,0),(181,0,'',0,0),(182,0,'',1,0),(183,0,'',2,0),(184,0,'',0,0),(185,0,'',0,0),(186,0,'',0,0),(187,0,'',1,0),(188,0,'',2,0),(189,0,'',0,1),(190,0,'',0,1),(191,0,'',0,1),(192,0,'',0,1),(193,0,'',0,1),(194,0,'',0,1),(195,0,'',0,1),(196,0,'',0,1),(197,0,'',0,1),(198,0,'',0,1),(199,0,'',0,1),(200,0,'',0,1),(201,0,'',0,1),(202,0,'',0,1),(203,0,'',0,1),(204,0,'',0,1),(205,0,'',0,1),(206,0,'',0,1),(212,0,'',0,1),(213,0,'',0,1),(214,0,'',0,1),(215,0,'',0,1),(216,0,'',0,1),(222,0,'',0,1),(227,0,'',0,1),(228,0,'',0,1),(229,0,'',0,1),(230,0,'',0,1),(237,0,'',0,1),(238,0,'',0,1),(239,0,'',0,1),(240,0,'',0,1),(241,0,'',0,1),(242,0,'',0,1),(248,0,'',0,1),(253,0,'',0,1),(255,0,'',0,1),(256,0,'',0,1),(257,0,'',0,1),(258,0,'',0,1),(259,0,'',0,1),(260,0,'',0,1),(261,0,'',0,1),(262,0,'',0,1),(263,0,'',0,1),(265,0,'',0,1),(266,0,'',0,1),(267,0,'',0,1),(268,0,'',0,1),(269,0,'',0,1),(270,0,'',0,1),(271,0,'',0,1),(272,0,'',0,1),(273,0,'',0,1),(274,0,'',0,1),(275,0,'',0,1),(276,0,'',0,1),(277,0,'',0,1),(278,0,'',0,1),(279,0,'',0,1),(280,0,'',0,1),(281,0,'',0,1),(282,0,'',0,1),(283,0,'',0,1),(284,0,'',0,1),(285,0,'',0,1),(286,0,'',0,1),(287,0,'',0,1),(288,0,'',0,1),(289,0,'',0,1),(290,0,'',0,1),(291,0,'',0,1),(292,0,'',0,1),(293,0,'',0,1),(294,0,'',0,1),(295,0,'',0,1),(296,0,'',0,1),(297,0,'',0,1),(298,0,'',0,1),(299,0,'',0,1),(300,0,'',0,1),(301,0,'',0,1),(302,0,'',0,1),(303,0,'',0,1),(304,0,'',0,1),(305,0,'',0,1),(306,0,'',0,1),(307,0,'',0,1),(308,0,'',0,1),(309,0,'',0,1),(310,0,'',0,1),(311,0,'',0,1),(312,0,'',0,1),(313,0,'',0,1),(314,0,'',0,1),(315,0,'',0,1),(316,0,'',0,1),(317,0,'',0,1),(318,0,'',0,1),(319,0,'',0,1),(321,0,'',0,1),(322,0,'',0,1),(323,0,'',0,1),(324,0,'',0,1),(325,0,'',0,1),(326,0,'',0,1),(327,0,'',0,1),(328,0,'',0,1),(329,0,'',0,1),(330,0,'',0,1),(331,0,'',0,1),(332,0,'',0,1),(333,0,'',0,1),(334,0,'',0,1),(335,0,'',0,1),(336,0,'',0,1),(337,0,'',0,1),(338,0,'',0,1),(339,0,'',0,1),(340,0,'',0,1),(341,0,'',0,1),(342,0,'',0,1),(343,0,'',0,1),(344,0,'',0,1),(345,0,'',0,1),(346,0,'',0,1),(347,0,'',0,1),(348,0,'',0,1),(349,0,'',0,1),(350,0,'',0,1),(351,0,'',0,1),(352,0,'',0,1),(353,0,'',0,1),(354,0,'',0,1),(355,0,'',0,1),(356,0,'',0,1),(357,0,'',0,1),(358,0,'',0,1),(359,0,'',0,1),(360,0,'',0,1),(361,0,'',0,1),(362,0,'',0,1),(363,0,'',0,1),(364,0,'',0,1),(365,0,'',0,1);
/*!40000 ALTER TABLE `catalog_product_entity_media_gallery_value` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_entity_text`
--

DROP TABLE IF EXISTS `catalog_product_entity_text`;
CREATE TABLE `catalog_product_entity_text` (
  `value_id` int(11) NOT NULL auto_increment,
  `entity_type_id` mediumint(8) unsigned NOT NULL default '0',
  `attribute_id` smallint(5) unsigned NOT NULL default '0',
  `store_id` smallint(5) unsigned NOT NULL default '0',
  `entity_id` int(10) unsigned NOT NULL default '0',
  `value` text NOT NULL,
  PRIMARY KEY  (`value_id`),
  KEY `FK_CATALOG_PRODUCT_ENTITY_TEXT_ATTRIBUTE` (`attribute_id`),
  KEY `FK_CATALOG_PRODUCT_ENTITY_TEXT_STORE` (`store_id`),
  KEY `FK_CATALOG_PRODUCT_ENTITY_TEXT_PRODUCT_ENTITY` (`entity_id`),
  KEY `IDX_ATTRIBUTE_VALUE` (`entity_id`,`attribute_id`,`store_id`),
  CONSTRAINT `FK_CATALOG_PRODUCT_ENTITY_TEXT_ATTRIBUTE` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CATALOG_PRODUCT_ENTITY_TEXT_PRODUCT_ENTITY` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CATALOG_PRODUCT_ENTITY_TEXT_STORE` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=4589 DEFAULT CHARSET=utf8;

--
-- Dumping data for table `catalog_product_entity_text`
--

LOCK TABLES `catalog_product_entity_text` WRITE;
/*!40000 ALTER TABLE `catalog_product_entity_text` DISABLE KEYS */;
INSERT INTO `catalog_product_entity_text` VALUES (66,10,495,1,16,'2610'),(67,10,494,1,16,'4.1 x 1.7 x 0.7 inches '),(68,10,97,1,16,'The Nokia 2610 is an easy to use device that combines multiple messaging options including email, instant messaging, and more. You can even download MP3 ringtones, graphics, and games straight to the phone, or surf the Internet with Cingular\'s MEdia Net service. It\'s the perfect complement to Cingular service for those even remotely interested in mobile Web capabilities in an affordable handset.<br><br>\r\n\r\n<b>Design</b><br>\r\nCompact and stylish, the 2610 features a candybar design sporting a bright 128 x 128 pixel display capable of displaying over 65,000 colors. Most of the phone\'s features and on-screen menus are controlled by a center toggle on the control pad. A standard hands-free headphone jack is provided, as are volume control keys, and there\'s even a \"Go-To\" button that can be assigned by the user for quick access to favorite applications. Lastly, the included speakerphone allows you to talk handsfree, and because the phone sports an internal antenna, there\'s nothing to snag or break off.\r\n\r\n'),(69,10,492,1,16,'<ul>\r\n<ul class\"disc\">\r\n<li>Integrated camera with video recorder to capture those special moments<br></li>\r\n<li>Enriched data connections for complete mobile access via Email, MMS, and MEdia Net<br></li>\r\n<li> Personalize with downloadable MP3 and polyphonic Ring tones, Games, and Graphics<br></li>\r\n<li>Use AIM, Yahoo! and MSN Messenger to stay in touch on the go<br></li>\r\n<li>Mobile Internet browser and email</li>\r\n</ul>'),(70,10,496,1,16,'Conditional $250 Equipment Discount Included: Your price paid includes an equipment discount of $250 that has been provided to you in exchange for either activating a new, non-substitute line of service or renewing an existing line of service with AT&T and your agreement that for the 181-day period following such activation or renewal you will: (1) pay your balance due to AT&T each month and otherwise maintain your account in good standing; (2) not disconnect this AT&T line of service; (3) not transfer this equipment to another AT&T line of service; (4) not change your AT&T service rate plan to a lower monthly service rate--this includes canceling or removing required PDA, BlackBerry, or smartphone features after your product has shipped; (5) not use this line of service to replace an existing account with AT&T. If these conditions are not met, you hereby authorize Magento to charge your credit card $250 as reimbursement of this equipment discount without need for further approval.'),(71,10,104,1,16,'Nokia 2610, cell, phone, '),(78,10,495,1,17,'8100'),(79,10,494,1,17,'4.2 x 2 x 0.6 inches '),(80,10,97,1,17,' Like the BlackBerry 7105t, the BlackBerry 8100 Pearl is \r\nThe BlackBerry 8100 Pearl sports a large 240 x 260 screen that supports over 65,000 colors-- plenty of real estate to view your e-mails, Web browser content, messaging sessions, and attachments. The venerable BlackBerry trackwheel has been replaced on this model with an innovative four-way trackball placed below the screen. On the rear of the handheld, you\'ll find a 1.3-megapixel camera and a self portrait mirror. The handheld\'s microSD memory card slot is located inside the device, behind the battery. There\'s also a standard 2.5mm headset jack that can be used with the included headset, as well as a mini-USB port for data connectivity.'),(81,10,492,1,17,'<ul>\r\n<ul class=\"disc\">\r\n<li> 1.3 mega pixel camera to capture those special moments<br></li>\r\n<li> MP3 player lets you listen to your favorite music on the go<br></li>\r\n<li>Menu and escape keys on the front of the device for easier access<br></li>\r\n<li> Bluetooth technology lets you experience hands free and wire free features<br></li>\r\n<li>Package Contents: phone,AC adapter,software CD,headset,USB cable,sim- card,get started poster,reference guide<br></li>\r\n</ul>'),(82,10,496,1,17,'CONDITIONAL $250 Equipment Discount Included: Your price paid includes an Equipment Discount of $250 that has been provided to you in exchange for activating a new, non-substitute line of service with T-Mobile and your agreement that for the 181-day period following such activation you will (1) pay your balance due to T-Mobile each month and otherwise maintain your account in good standing, (2) not disconnect this T-Mobile line of service, (3) not transfer this equipment to another T-Mobile line of service, (4) not change your T-Mobile service rate plan to a lower monthly service rate--this includes canceling or removing required PDA, BlackBerry, or smartphone features after your product has shipped, (5) not use this line of service to replace an existing account with T-Mobile. If these conditions are not met, you hereby authorize Magento.com to charge your credit card $250 as reimbursement of this Equipment Discount without need for further approval.'),(83,10,104,1,17,'Blackberry, 8100, pearl, cell, phone'),(90,10,495,1,18,'W810i'),(91,10,494,1,18,' 3.5 x 1.8 x 1 inches'),(92,10,97,1,18,'The W810i\'s screen sports 176 x 220 pixel resolution with support for 262,000 colors. Quick access buttons below the screen make it easy to control the phone\'s Walkman music features, while a five-way center button controls most of the phone\'s menus and features.'),(93,10,492,1,18,'<ul>\r\n<ul class=\"disc\">\r\n \r\n<li>Disc2Phone™ music copying software is supplied in the W810 kit and it’s easy to copy songs from your favorite CDs, and PC music folders<br></li>\r\n<li>The built-in W810 2 megapixel digital camera with autofus takes excellent photos and when you need to catch some action, W810 has video too<br></li>\r\n<li>Sharing images and other phone content is easy. Use Bluetooth™, or Multimedia messaging when you want to send images and video<br></li>\r\n<li> Wherever you are, you have high speed access to the internet with EDGE technology<br></li>\r\n<li> A full-function email client in your W810 gives you access to your inbox wherever you go</li>\r\n</ul>'),(94,10,496,1,18,'Conditional $250 Equipment Discount Included: Your price paid includes an equipment discount of $250 that has been provided to you in exchange for either activating a new, non-substitute line of service or renewing an existing line of service with AT&T and your agreement that for the 181-day period following such activation or renewal you will: (1) pay your balance due to AT&T each month and otherwise maintain your account in good standing; (2) not disconnect this AT&T line of service; (3) not transfer this equipment to another AT&T line of service; (4) not change your AT&T service rate plan to a lower monthly service rate--this includes canceling or removing required PDA, BlackBerry, or smartphone features after your product has shipped; (5) not use this line of service to replace an existing account with AT&T. If these conditions are not met, you hereby authorize Magento.com to charge your credit card $250 as reimbursement of this equipment discount without need for further approval.'),(95,10,104,1,18,'Sony, Ericsson ,W810i, cell, phone'),(114,10,495,1,20,'MM-A900M'),(115,10,494,1,20,'3.9 x 2 x 0.6 inches'),(116,10,97,1,20,'New services supported by both the MM-A900m include the newly announced Sprint Music StoreSM, which allows users to immediately buy and download complete songs directly to their phone; 30 channels of live and on demand video and audio from Sprint TVSM and On Demand, a personalized resource guide to news, traffic, weather, sports and entertainment. The MM-A900m offers great-looking design with the ability to download a rich selection of content directly to the phone. Features like external music-navigation keys make these phones both functional and attractive. These handsets are sure to be at the top of many wish lists.'),(117,10,492,1,20,'<ul>\r\n<ul class=\"disc\">\r\n<li>Bluetooth Wireless Technology: Built-in radio technology allows fast, secure transmission between your phone and accessories without cables or wires. Bluetooth wireless accessories are sold separately.<br></li>\r\n<li>Mass Storage Area: Store pictures, videos, voice memos and music within the internal memory of the phone.<br></li>\r\n<li>Streaming Music Enabled: Stream music to your phone with Music Choice®. Select from Pop, Rock, Hip Hop, and R&B plus exclusive video clips, performances, and artist interviews.<br></li>\r\n</ul>\r\n   '),(118,10,496,1,20,'CONDITIONAL $250 Equipment Discount Included: Your price paid includes an equipment discount of $250 that has been provided to you in exchange for activating a new, non-substitute line of service with Sprint and your agreement that for the 181-day period following such activation you will (1) pay your balance due to Sprint each month and otherwise maintain your account in good standing, (2) not disconnect this Sprint line of service, (3) not transfer this equipment to another Sprint line of service, (4) not change your Sprint service rate plan to a lower monthly service rate--this includes canceling or removing required PDA, BlackBerry, or smartphone features after your product has shipped, and (5) not use this line of service to replace an existing account with Sprint. If these conditions are not met, you hereby authorize Magento.com to charge your credit card $250 as reimbursement of this equipment discount without need for further approval.'),(119,10,104,1,20,'Samsung, MM-A900M, cell, phone'),(172,10,495,1,25,'MA464LL/A'),(173,10,494,1,25,'19.5 x 7.6 x 19.5 inches'),(174,10,497,1,25,'2.0 GHz Intel Core Duo processor with 2 MB shared L2 Cache'),(175,10,498,1,25,'1 GB (single SODIMM) 667 MHz DDR2 SDRAM (PC2-5300)'),(176,10,499,1,25,'100 GB 5400 rpm Serial ATA hard drive'),(177,10,500,1,25,'15.4-inch TFT widescreen display with 1440 x 900 resolution'),(178,10,97,1,25,'This, combined with myriad other engineering leaps, boosts performance up to four times higher than the PowerBook G4. With this awesome power, it\'s a breeze to render complex 3D models, enjoy smooth playback of HD video, or host a four-way video conference.Intel Core Duo is the first chip built using Intel\'s groundbreaking 65-nanometer process - resulting in transistors so small, you could fit a hundred inside a single human cell. With smaller distances for electrons to travel, and two processors designed to share resources and conserve power, Intel Core Duo achieves higher levels of performance as it uses fewer watts. Which is what makes it possible to design a super-powerful MacBook Pro that\'s only one inch thin.When Mac technology makes something easy, it\'s hardly news. So here\'s more non-news for MacBook Pro owners: software just works. If you see the Universal logo on a new application, that means it will run on Intel- and PowerPC-based Mac computers. For most existing applications, you simply do what you\'ve always done: double-click them. Thanks to the Rosetta technology in Mac OS X, they look and feel just like they did before.'),(179,10,492,1,25,' <ul>\r\n<ul class=\"disc\">\r\n<li>2.0 GHz Intel Core Duo processor with 2 MB shared L2 Cache<br></li>\r\n<li>1 GB (single SODIMM) 667 MHz DDR2 SDRAM (PC2-5300); 100 GB 5400 rpm Serial ATA hard drive; slot-load SuperDrive (DVD±RW/CD-RW)<br></li>\r\n<li>One FireWire 400, two USB 2.0 ports, and ExpressCard/34 slot; no FireWire 800 slots<br></li>\r\n<li>Built-in 10/100/1000BASE-T (Gigabit); built-in 54 Mbps AirPort Extreme (802.11g); built-in Bluetooth 2.0+EDR<br></li>\r\n<li>15.4-inch TFT widescreen display with 1440 x 900 resolution</li>'),(180,10,104,1,25,'Apple MacBook Pro MA464LL/A 15.4\" Notebook PC (2.0 GHz Intel Core Duo, 1 GB RAM, 100 GB Hard Drive, SuperDrive) '),(189,10,495,1,26,'LX.FR206.001'),(190,10,497,1,26,'Mobile AMD Athlon 64 2800+'),(191,10,498,1,26,'512MB of PC2700 DDR333 SDRAM'),(192,10,499,1,26,'80 gig Western Digital'),(193,10,500,1,26,'15-inch, 200-nit, high-brightness TFT LCD screen '),(194,10,97,1,26,' Acer has flawlessly designed the Ferrari 3200, instilling it with exceptional performance, brilliant graphics, and lightning-fast connectivity. This exclusive edition is another striking symbol of cooperation between Acer and Ferrari -- two progressive companies with proud heritages built on passion, innovation, power and success.'),(195,10,492,1,26,' <ul>\r\n<ul class=\"disc\">\r\n<li>Mobile AMD Athlon 64 2800+<br></li>\r\n<li>1MB L2 Cache<br></li>\r\n<li>512MB of PC2700 DDR333 SDRAM<br></li>\r\n<li>2 RAM Slots (0 open - upgrading requires chip removal)<br></li>\r\n<li>RAM is upgradeable to 2GB</li>\r\n</ul>'),(196,10,104,1,26,'Acer Ferrari 3200 Notebook Computer PC '),(206,10,495,1,27,'VGN-TXN27N/B'),(207,10,494,1,27,'10.7 x 1.23 x 7.7 inches (WxHxD)'),(208,10,497,1,27,'Intel Core Solo Processor U1500'),(209,10,498,1,27,'2 GB RAM'),(210,10,499,1,27,'100 GB Hard Drive'),(211,10,500,1,27,'9 inches'),(212,10,97,1,27,' Weighing in at just an amazing 2.84 pounds and offering a sleek, durable carbon-fiber case in charcoal black. And with 4 to 10 hours of standard battery life, it has the stamina to power you through your most demanding applications. With the integrated wireless WAN, you can access the national Sprint Mobile Broadband service to extend your wireless coverage beyond LAN access networks and hotspots, giving you the freedom to go farther, do more, and stay connected.\r\n\r\n'),(213,10,492,1,27,' <ul>\r\n<ul class=\"disc\">\r\n<li>Processor: The Ultra Low Voltage Intel Core Solo U1500 processor offers a 1.33 GHz speed paired with a fast 533 MHz front-side bus and large 2 MB L2 cache. (An L2, or secondary, cache temporarily stores data; and a larger L2 cache can help speed up your system\'s performance. The FSB carries data between the CPU and RAM, and a faster front-side bus will deliver better overall performance.) The Core Solo processor delivers enhanced performance for today\'s demanding applications such as CAD tools, 3-D and 2-D modeling, video editing, digital music, digital photography and gaming. And Intel\'s Smart Cache technology enables smarter, more efficient cache and bus design for enhanced performance, responsiveness and power savings.</li>\r\n</ul>\r\n\r\n   '),(214,10,104,1,27,'Sony, VAIO, VGN-TXN27N/B , Notebook, PC, Intel, 2 GB RAM, '),(224,10,495,1,28,'M285-E'),(225,10,494,1,28,'17 x 7 x 13 inches'),(226,10,497,1,28,'1.66 GHz Intel Core Duo T2300E processor'),(227,10,498,1,28,'1 GB RAM'),(228,10,499,1,28,'60 GB hard drive'),(229,10,500,1,28,'14-inch screen '),(230,10,97,1,28,'Easily mobile at just 6 pounds, the Toshiba Satellite A135-S4527 makes it easy to get your work done with a large, bright 15.4-inch widescreen LCD. The XGA-resolution screen (1280 x 800) permits side-by-side viewing of documents for increased productivity. It\'s also great for using as a media center, with Toshiba\'s unique Express Media Player enabling you to bypass the system and access CDs and DVDs with a touch of button. This affordable notebook PC is powered by Intel\'s 1.73 GHz Core Duo T2080 processor, which provides an optimized, multithreaded architecture for improved gaming and multitasking performance and efficient power consumption. It also offers a 120 GB hard drive, 1 GB of installed RAM (2 GB maximum), dual-layer/multi-format DVD drive that also burns CDs, integrated 54g wireless connectivity, and Intel GMA 950 video card with up to 256 MB of shared video RAM.\r\n\r\n'),(231,10,492,1,28,' <ul>\r\n<ul class=\"disc\">\r\n<li>Processor: The Intel Core Duo T2080 processor is built with the Mobile Intel 945PM Express chipset, and it has a 1.73 GHz processor speed, fast 533 MHz front-side bus (FSB), and 1 MB L2 cache. (An L2, or secondary, cache temporarily stores data; and a larger L2 cache can help speed up your system\'s performance. The FSB carries data between the CPU and RAM, and a faster front-side bus will deliver better overall performance.)</li>\r\n</ul>'),(232,10,104,1,28,'Toshiba, notebook, laptop, intel, '),(237,10,495,1,29,'B000JI2N0I'),(238,10,97,1,29,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear. Wear them either at the beach, in your garden, at the mall or just about anywhere you would want to be comfortable.'),(239,10,492,1,29,'    * Made of EVA foam\r\n    * Heel strap keeps shoe on foot\r\n    * Non-marking, slip-resistant outsole\r\n    * Weigh just 6-10 ounces\r\n\r\n'),(240,10,104,1,29,'CN Clogs Beach/Garden Clog '),(245,10,495,1,30,'B000CP1M00'),(246,10,97,1,30,'The ASICS® GEL-Kayano® XII running shoe delivers the ultimate blend of cushioning and support. Biomorphic Fit™ upper offers enhanced upper fit and comfort while decreasing the potential for irritation. Solyte midsole material is lighter than standard EVA and SpEVA® combined with improved cushioning and durability. Impact Guidance System (I.G.S.®) uses linked componentry to encourage optimal gait while allowing for natural foot movement from heel strike to toe off. DuoMax® support system helps ensure that the shoe maintains proper support for the foot during the critical transition from heel strike to toe off. Space Trusstic® System creates a pocket between the Trusstic® System device and the midsole, allowing for greater midsole deformation and more efficient foot function. GEL® Cushioning System provides maximum rearfoot and forefoot shock attenuation. Wt. 12.6 oz.'),(247,10,492,1,30,'# I.G.S.?: Allows for natural foot movement from heel strike to toe-off\r\n# DuoMax? Support System: Maintains proper support for the foot during the critical transition from heel strike to toe-off\r\n# Space Trusstic System?: Allows for greater midsole deformation and more efficient foot function\r\n# GEL? Cushioning System: Provides maximum rearfoot/forefoot shock attenuation\r\n# Biomorphic Fit Upper: Provides enhanced upper fit and comfort while limiting irritation'),(248,10,104,1,30,'ASICS® Men\'s GEL-Kayano® XII '),(253,10,495,1,31,'B000NOGIKY'),(254,10,97,1,31,'Nothing will turn his head faster than you wearing the sexy Pryme pump from Steven by Steve Madden. This daring pump has a pretty patent leather upper with light shirring, a double stitch detail surrounding the collar, and a vampy almond shaped toe. It also features smooth linings, a fully cushioned insole, a sexy covered stiletto heel, and a lightly textured dress leather outsole. Any way you wear the Pryme, you\'re certain to catch a lot of attention.'),(255,10,492,1,31,'A prime example of chic style. Patent leather upper. Round toe. 3-1/2 inch covered heel. Flex leather sole. Imported. '),(256,10,104,1,31,'Steven by Steve Madden Pryme Pump'),(261,10,495,1,32,'B000LJQVF8'),(262,10,97,1,32,'The Lucero pump from Nine West may just leave him at a loss for words. This flirty pump has a leather upper, a pretty almond-shaped toe with a slight V-cut vamp, leather linings, and a cushioned insole for long-wearing comfort. The stiletto heel radiates a subtle hint of sensuality, so sass up your jean and t-shirt look or nighttime attire with this hot pump and you\'ll be absolutely unforgettable.'),(263,10,492,1,32,'The perfect pump will suit any ensemble. Leather upper. 3-3/4 inch stacked heel. Man-made sole. Imported. '),(264,10,104,1,32,'Nine West Women\'s Lucero Pump '),(269,10,495,1,33,'B000NPOA1M'),(270,10,97,1,33,'Featuring a wide toe box and delivering optimum support, the sporty Golf Flexor golf shoe is a stylish cleat that you\'ll love wearing on and off the links. The contrasting embossed snakeskin panels attract interest, while the laid back lace-up style keeps things simple. And thanks to the one-year waterproof guarantee, you can trust these shoes to keep you in the game, even when conditions are less than perfect.'),(271,10,492,1,33,'Featuring a wide toe box and delivering optimum support, the sporty Golf Flexor golf shoe is a stylish cleat that you\'ll love wearing on and off the links. The contrasting embossed snakeskin panels attract interest, while the laid back lace-up style keeps things simple. And thanks to the one-year waterproof guarantee, you can trust these shoes to keep you in the game, even when conditions are less than perfect.'),(272,10,104,1,33,'ECCO Womens Golf Flexor Golf Shoe'),(277,10,495,1,34,'B000IKC6AY'),(278,10,97,1,34,'High fashion and classic good looks converge in this suave slip on from Kenneth Cole. Smooth leather upper in a dress slip on style, with a stitched and covered seam moc-inspired square toe, quarter panel curved overlays and flared tongue with side elastic panels for a comfortable, secure fit. Smooth leather lining, cushioned leather topped insole. Dress midsole with a beveled edge, 1 inch capped dress heel. Flat traction outsole.'),(279,10,492,1,34,'The handsome style of the Con-Verge slip-on from Kenneth Cole New York is larger than life. This sharp shoe has a semi-polished smooth leather upper, a squared off stitched apron toe, and dual-goring for easy on/off accessibility. It also features soft leather linings, a cushioned insole, and a paneled rubber outsole for a sturdy step. The Con-Verge is a perfect companion to your business and special occasion wardrobes.'),(280,10,104,1,34,'Kenneth Cole New York Men\'s Con-verge Slip-on'),(284,10,495,1,35,'Impatience'),(285,10,97,1,35,'# 6.1 oz. 100% preshrunk heavyweight cotton \r\n# Shoulder-to-shoulder taping\r\n# Double-needle sleeves and bottom hem'),(286,10,104,1,35,'Coalesce: Functioning On Impatience T-Shirt'),(290,10,495,1,36,'Ink Eater:'),(291,10,97,1,36,'We bought these with the intention of making shirts for our family reunion, only to come back the next day to find each and every one of them had been tagged by The Bear.  Oh well -- can\'t argue with art.  Now you can make your grandparents proud by wearing an original piece of graf work to YOUR family reunion!'),(292,10,104,1,36,'Ink Eater: Krylon Bombear Destroyed Tee'),(296,10,495,1,37,'The Only Children: Paisley T-Shirt'),(297,10,97,1,37,'# 6.1 oz. 100% preshrunk heavyweight cotton \r\n# Double-needle sleeves and bottom hem'),(298,10,104,1,37,'The Only Children: Paisley T-Shirt'),(302,10,495,1,38,'Zolof The Rock And Roll Destroyer: LOL Cat T-shirt'),(303,10,97,1,38,'# 6.1 oz. 100% preshrunk heavyweight cotton \r\n# Shoulder-to-shoulder taping\r\n# Double-needle sleeves and bottom hem'),(304,10,104,1,38,'Zolof The Rock And Roll Destroyer: LOL Cat T-shirt'),(305,10,495,1,19,'8525 PDA'),(306,10,494,1,19,'4.4 x 2.4 x 0.9 inches'),(307,10,97,1,19,' The design of the 8525 is clean and uncluttered, with just a few buttons for mail, Internet Explorer, and contextual menus. Meanwhile, call answer and end buttons surround a five-way toggle that allows you to navigate and control the Windows Mobile interface. As mentioned, a full QWERTY keyboard cleverly slides out from underneath the screen. This allows you to hold the device horizontally, and the screen is automatically placed in landscape mode when you\'re using the keyboard. A side scroll wheel is conveniently tucked away on the side, making navigation when accessing the music player and other various applications a cinch when needed. A mini-SD memory expansion card slot is provided, as is an infrared port and support for a stereo Bluetooth headset. A mini-USB port is also included for wired data transfers and charging.'),(308,10,492,1,19,'<ul>\r\n<ul class=\"disc\">\r\n<li>tri-band UMTS/HSDPA; quad-band GSM/GPRS/EDGE for global use<br></li>\r\n<li>Windows Mobile 5.0 with Messaging & Security Feature Pack<br></li>\r\n<li>sliding QWERTY keyboard with improved keypad design and improved backlight for easier use in low light conditions<br></li>\r\n<li>128MB ROM / 64MB RAM; ~51MB user available memory<br></li>\r\n<li>2.0 mega-pixel camera with video capabilities</li>\r\n</ul>'),(309,10,496,1,19,'Conditional $250 Equipment Discount Included: Your price paid includes an equipment discount of $250 that has been provided to you in exchange for either activating a new, non-substitute line of service or renewing an existing line of service with AT&T and your agreement that for the 181-day period following such activation or renewal you will: (1) pay your balance due to AT&T each month and otherwise maintain your account in good standing; (2) not disconnect this AT&T line of service; (3) not transfer this equipment to another AT&T line of service; (4) not change your AT&T service rate plan to a lower monthly service rate--this includes canceling or removing required PDA, BlackBerry, or smartphone features after your product has shipped; (5) not use this line of service to replace an existing account with AT&T. If these conditions are not met, you hereby authorize Magento.com to charge your credit card $250 as reimbursement of this equipment discount without need for further approval.'),(310,10,104,1,19,'At&t, 8525, cell, phone'),(314,10,495,1,39,'The Get Up Kids: Band Camp Pullover Hoodie'),(315,10,97,1,39,'Printed on American Apparel Classic style 5495 California Fleece Pull-Over Hoodies.  Sizing info is available here. '),(316,10,104,1,39,'The Get Up Kids: Band Camp Pullover Hoodie'),(365,10,495,1,41,'384822'),(366,10,494,1,41,'21\"W x 44\"L x 35.5\"H'),(367,10,507,1,41,'Thailand'),(368,10,509,1,41,'Asian Beechwood'),(370,10,97,1,41,'Features include inset panel sides and for spacious drawers and two wicker baskets. 41\"Wx18\"Dx36\"H.'),(371,10,104,1,41,'Hardwood, drawers, wicker, asian, beechwood'),(379,10,495,1,42,'bar1234'),(380,10,494,1,42,'62\"W x 84\"L x 8\"H'),(381,10,507,1,42,'Thailand'),(382,10,509,1,42,'Bamboo'),(384,10,97,1,42,'Entirely handcrafted of solid Bamboo. Designed for use with a mattress alone, it includes a sturdy, padded wood platform for comfort and proper mattress support.'),(385,10,104,1,42,'bamboo, barcelona, platform, bed'),(433,10,495,1,44,'Rebel XT '),(434,10,494,1,44,'5 x 3.7 x 2.5 inches'),(436,10,97,1,44,'The Canon EOS Digital Rebel camera now has a new, faster, even smaller big brother. Sibling rivalries aside, the 8.0-megapixel Canon EOS Digital Rebel XT SLR adds resolution, speed, extra creative control, and enhanced comfort in the hand to one of the smallest and lightest digital cameras in its class. Even with its advancements in ergonomic design and technology, this easy-to-use EOS digital camera is compatible with all of Canon\'s EF lenses, including the EF-S lenses.'),(437,10,492,1,44,'<ul>\r\n<ul class=\"disc\"> \r\n\r\n<li>8.0-megapixel CMOS sensor captures enough detail for photo-quality 16 x 22-inch prints<br></li>\r\n<li>Includes Canon\'s EF-S 18-55mm, f3.5-5.6 zoom lens<br></li>\r\n<li>DIGIC II Image Processor provides fast, accurate image processing; captures images at a rate of up to 3 frames per second<br></li>\r\n<li>Fast start-up time--.2 seconds<br></li>\r\n<li>Powered by rechargeable Lithium-ion battery (included, with charger)</li>\r\n</ul>\r\n'),(438,10,104,1,44,'canon, slr, camera, 8, digital'),(451,10,495,1,45,'QC-2185'),(452,10,494,1,45,'2.75 inches x 1.5 inches'),(454,10,97,1,45,'The Argus QC-2185 Quick Click 5MP digital camera offers all the basic features you need in a compact and stylish digital camera. This unit is easy to use, and is perfect for those who want a completely portable option for taking good pictures, without having to empty their wallet.\r\n\r\nThe Argus QC-2185 features a clear and bright 1.1-inch CSTN (color super-twist nematic) LCD display that makes it easy to frame the perfect picture. Thanks to its USB 1.1 connection compatibility, this digital camera lets you quickly download pictures to your Mac or PC, and can also function as a handy web camera. The QC-2185 includes eight megabytes of internal SDRAM memory, with the ability to expand camera memory via a built-in SD (secure digital) storage card slot for easy storage and transfer of your pictures. This unit also includes a built-in auto flash with a three to seven foot range, and comes with ArcSoft PhotoImpression\'s photo editing software which makes it easy for you to edit, crop, adjust and improve all your best pictures to make them even better.\r\n'),(455,10,492,1,45,'<ul>\r\n<ul class=\"disc\".  \r\n<li>5 megapixel digital camera with a 1600 x 1200 resolution and an f2.8 aperture</li>\r\n<li> Clear and bright 1.1-inch CSTN LCD display makes it easy to frame the perfect picture</li>\r\n<li>USB 1.1 connection compatibility lets you quickly download pictures to your Mac or PC, and function as a web camera</li>\r\n<li>Runs on 3 AAA batteries, and requires; Windows OS 98 or higher, at least 32 MB of RAM and 125 MB of hard disk space, and an available USB port</li>\r\n<li>Weighs 3.4 ounces, measures 3.6 x 2.4 x 1.1 inches (W x H x D), and is backed by a 1-year manufacturer\'s warranty</li>\r\n</ul>\r\n'),(456,10,104,1,45,'Argus, QC-2185, digital, camera, 2MP'),(469,10,495,1,46,'750'),(470,10,494,1,46,'3.8 x 2.1 x 1 inches'),(472,10,97,1,46,'Olympus continues to innovate with the launch of the Stylus 750 digital camera, a technically sophisticated point-and-shoot camera offering a number of pioneering technologies such as Dual Image Stabilization, Bright Capture Technology, and TruePic Turbo, as well as a powerful 5x optical zoom that tucks away into a streamlined metal, all-weather body design. The camera is distinguished by a number of premium features, including:\r\n\r\n    * An advanced combination of the mechanical CCD-shift Image Stabilization and Digital Image Stabilization work together to ensure the clearest pictures possible in any situation;\r\n    * A 5x optical zoom lens with a newly developed lens element to maintain a small compact size;\r\n    * A 2.5-inch LCD and Bright Capture Technology dramatically improve composition, capture and review of images in low-light situations;\r\n    * Olympus\' exclusive TruePic Turbo Image Processing engine is coupled with a 7.1-megapixel image sensor to produce crisp, high-quality p'),(473,10,492,1,46,'<ul>\r\n<ul class=\"disc\">\r\n\r\n<li>7.1-megapixel CCD captures enough detail for photo-quality 15 x 20-inch prints<br></li>\r\n<li>5x image-stabilized optical zoom; 2.5-inch LCD display<br></li>\r\n<li>Compact, all-weather body measures 3.8 x 2.1 x 0.96 inches<br></li>\r\n<li>Bright Capture technology; 27 selectable shooting modes; built-in Help guide<br></li>\r\n<li>Stores images on xD Picture Cards; powered by Li-Ion battery (battery and charger included)</li>\r\n</ul>'),(474,10,104,1,46,'Olympus, stylus, 750, 7MP, digital, camera, zoom'),(487,10,495,1,47,'A630 '),(488,10,494,1,47,'4.3 x 2.6 x 1.9 inches '),(490,10,97,1,47,'Replacing the highly popular PowerShot A620, the PowerShot A630 features a rotating 2.5-inch vari-angle LCD, 4x optical zoom lens, and a vast array of creative shooting modes.<br>\r\n\r\nThe PowerShot A630 packs a vast array of advanced features into a remarkably compact space<br><br>\r\n\r\n'),(491,10,492,1,47,'<ul>\r\n<ul class=\"disc\">\r\n<li>8-megapixel CCD captures enough detail for photo-quality 16 x 22-inch prints<br></li>\r\n<li>4x optical zoom; 2.5-inch vari-angle LCD display<br></li>\r\n<li>ISO range up to ISO 800 for less blur in low light while hand-holding<br></li>\r\n<li>3:2 guide masks LCD to display 4 x 6-inch print size; 16:9 format option for still images<br></li>\r\n<li>Stores images on SD cards; powered by 4 AA-size batteries</li>\r\n</ul>'),(492,10,104,1,47,'canon, powershot, A630, digital, camera, optical, zoom'),(499,10,495,1,48,'C530 '),(500,10,494,1,48,' 4 x 6 x 9 inches'),(502,10,97,1,48,'Small on size. Big on value. Kodak\'s newest C-Series digital camera, the C530, sports awesome features--such as 5.0-megapixel CCD resolution, on-camera image cropping, and an on-camera Share button--at a very affordable price.'),(503,10,492,1,48,'<ul>\r\n<ul class=\"disc\">   \r\n\r\n<li>5.0-megapixel CCD captures enough detail for photo-quality 13 x 17-inch prints<br></li>\r\n<li>1.5-inch LCD display<br></li>\r\n<li>Continuous QVGA video<br></li>\r\n<li>Auto scene mode and three color modes; in-camera cropping<br></li>\r\n<li>Powered by AA size batteries; stores images on SD memory cards (includes 16 MB internal memory)</li>\r\n</ul>'),(504,10,104,1,48,'kodak, eayshare, c530, 5MP, digital, camera'),(516,10,495,1,49,'B000KJ43SG'),(518,10,97,1,49,'Womens Premier Leather Single Layer Narrow Strap - NEW Colors Available - Womens Style - Genuine Top Grain Premier Leather - Rich Color Tones - Straps lined with 2000 lb test nylon - Guaranteed for the Life of the Sole - Non-slip sole - Note: Rainbow is in the process of unveiling a new toe post tag that is much smaller than the original tag.'),(519,10,492,1,49,'Womens Premier Leather Single Layer Narrow Strap - '),(520,10,104,1,49,'womens, sandal, leather, anashria, '),(537,10,495,1,51,'magotto'),(538,10,507,1,51,'Italy'),(539,10,509,1,51,'Microfiber'),(541,10,97,1,51,'The Magento ottoman will impress with its style while it delivers on quality. This piece of living room furniture is built to last with durable solid wood framing, generous padding and plush stain-resistant microfiber upholstery.'),(542,10,104,1,51,'Ottoman'),(549,10,495,1,52,'1112'),(550,10,507,1,52,'Italy'),(551,10,509,1,52,'Microfiber'),(553,10,97,1,52,'This Magento chair features a fun, futuristic design, with fluid curves and gentle angles that follow the shape of the body to enhance ultimate relaxation. It combines a hint of nostalgia with the up-to-date sensibility and function of modern chairs. It is in soft, velvety microfiber.'),(554,10,104,1,52,'Chair'),(561,10,495,1,53,'1113'),(562,10,507,1,53,'Italy'),(563,10,509,1,53,'Microfiber'),(565,10,97,1,53,'Inspired by the classic camelback sofa, Magento offers comfort and style in a low maintenance package.  For a sleek, simple and stylish piece, look no further than the Magento sofa - or sofabed!'),(566,10,104,1,53,'Couch'),(573,10,495,1,54,'RFS'),(574,10,507,1,54,'Italy'),(575,10,509,1,54,'Microfiber'),(577,10,97,1,54,'The perfect furniture set for the living room!  Love red?  You\'ll love these pieces of handmade modern furniture!'),(578,10,104,1,54,'Magento, Red, Furniture, Set, ottoman, couch, chair'),(2093,10,506,1,39,'Printed on American Apparel Classic style 5495 California Fleece Pull-Over Hoodies.  '),(2094,10,506,1,38,'Printed on American Apparel Classic style 5495 California t-shirts.  '),(2095,10,506,1,37,'Printed on American Apparel Classic style 5495 California cotton T shirst.   '),(2096,10,506,1,36,'We bought these with the intention of making shirts for our family reunion, only to come back the next day to find each and every one of them had been tagged by The Bear.  Oh well -- can\'t argue with art.  Now you can make your grandparents proud by wearing an original piece of graf work to YOUR family reunion!'),(2097,10,506,1,35,'# 6.1 oz. 100% preshrunk heavyweight cotton \r\n# Shoulder-to-shoulder taping\r\n# Double-needle sleeves and bottom hem'),(2098,10,506,1,34,'High fashion and classic good looks converge in this suave slip on from Kenneth Cole. Smooth leather upper in a dress slip on style, with a stitched and covered seam moc-inspired square toe, quarter panel curved overlays and flared tongue'),(2099,10,506,1,33,'Featuring a wide toe box and delivering optimum support, the sporty Golf Flexor golf shoe is a stylish cleat that you\'ll love wearing on and off the links.'),(2100,10,506,1,32,'The Lucero pump from Nine West may just leave him at a loss for words. This flirty pump has a leather upper, a pretty almond-shaped toe with a slight V-cut vamp'),(2101,10,506,1,31,'Nothing will turn his head faster than you wearing the sexy Pryme pump from Steven by Steve Madden. This daring pump has a pretty patent leather upper with light shirring, a double stitch detail surrounding the collar, and a vampy almond shaped toe'),(2102,10,506,1,29,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear'),(2103,10,506,1,28,'Get the competitive edge with the Gateway M285-E. This widescreen Convertible Notebook functions as both a conventional notebook and a tablet.'),(2104,10,506,1,27,'Take a load off your shoulders when you\'re racing for your plane with the sleekly designed and ultra-portable Sony Vaio VGN-TXN27N/B notebook PC.'),(2105,10,506,1,26,'This exclusive edition is another striking symbol of cooperation between Acer and Ferrari -- two progressive companies with proud heritages built on passion, innovation, power and success'),(2106,10,506,1,25,'You\'ve seen improvements in notebook performance before - but never on this scale. The Intel Core Duo powering MacBook Pro is actually two processors built into a single chip.'),(2107,10,506,1,20,'The MM-A900m offers great-looking design with the ability to download a rich selection of content directly to the phone. '),(2108,10,506,1,19,'Under the hood, the 8525 features 128MB of embedded memory and 64MB RAM, running on a 400 MHz Samsung processor. Up front, the 240 x 320 LCD touch-screen supports over 65,000 colors, while the rear of the device houses a 2.0 megapixel camera.'),(2109,10,506,1,18,'The W810i follows a long tradition of beautifully designed and crafted phones from Sony Ericsson. The same candy-bar style that graced the W800 is here.'),(2110,10,506,1,17,'The BlackBerry 8100 Pearl is a departure from the form factor of previous BlackBerry devices. This BlackBerry handset is far more phone-like, and RIM\'s engineers have managed to fit a QWERTY keyboard onto the handset\'s slim frame.'),(2111,10,506,1,16,'The words \"entry level\" no longer mean \"low-end,\" especially when it comes to the Nokia 2610. Offering advanced media and calling features without breaking the bank'),(2112,10,506,1,30,'The ASICS® GEL-Kayano® XII running shoe delivers the ultimate blend of cushioning and support. Biomorphic Fit™ upper offers enhanced upper fit and comfort while decreasing the potential for irritation. '),(2114,10,506,1,41,'Our Akio dresser has a solid hardwood frame.  '),(2115,10,506,1,42,'Our Barcelona platform bed captures the spirit and drama of late 20th century design with a variety of subtle details.'),(2116,10,506,1,44,' Canon EOS Digital Rebel XT SLR adds resolution, speed, extra creative control, and enhanced comfort in the hand to one of the smallest and lightest digital cameras in its class. '),(2117,10,506,1,45,'The Argus QC-2185 Quick Click 5MP digital camera offers all the basic features you need in a compact and stylish digital camera. This unit is easy to use, and is perfect for those who want a completely portable option for taking good pictures, without having to empty their wallet.'),(2118,10,506,1,46,'A technically sophisticated point-and-shoot camera offering a number of pioneering technologies such as Dual Image Stabilization, Bright Capture Technology, and TruePic Turbo, as well as a powerful 5x optical zoom.'),(2119,10,506,1,47,'Replacing the highly popular PowerShot A620, the PowerShot A630 features a rotating 2.5-inch vari-angle LCD, 4x optical zoom lens, and a vast array of creative shooting modes.'),(2120,10,506,1,48,'Small on size. Big on value. Kodak\'s newest C-Series digital camera, the C530, sports awesome features'),(2121,10,506,1,49,'Womens Premier Leather Single Layer Narrow Strap - NEW Colors Available - Womens Style - Genuine Top Grain Premier Leather - Rich Color Tones - Straps lined with 2000 lb test nylon - Guaranteed for the Life of the Sole - Non-slip sole - Note: Rainbow is in the process of unveiling a new toe post tag that is much smaller than the original tag.'),(2122,10,506,1,51,'With durable solid wood framing, generous padding and plush stain-resistant microfiber upholstery.'),(2123,10,506,1,52,'Combining a hint of nostalgia with the up-to-date sensibility and function of modern chairs. It is in soft, velvety microfiber.'),(2124,10,506,1,53,'For a sleek, simple and stylish piece, look no further than the Magento sofa - or sofabed!'),(2125,10,506,1,54,'Love red?  You\'ll love these pieces of handmade modern furniture!'),(2238,10,495,1,74,'B000KJ43SG'),(2239,10,97,1,74,'Womens Premier Leather Single Layer Narrow Strap - NEW Colors Available - Womens Style - Genuine Top Grain Premier Leather - Rich Color Tones - Straps lined with 2000 lb test nylon - Guaranteed for the Life of the Sole - Non-slip sole - Note: Rainbow is in the process of unveiling a new toe post tag that is much smaller than the original tag.'),(2240,10,492,1,74,'Womens Premier Leather Single Layer Narrow Strap - '),(2241,10,104,1,74,'womens, sandal, leather, anashria, '),(2242,10,506,1,74,'Womens Premier Leather Single Layer Narrow Strap - NEW Colors Available - Womens Style - Genuine Top Grain Premier Leather - Rich Color Tones - Straps lined with 2000 lb test nylon - Guaranteed for the Life of the Sole - Non-slip sole - Note: Rainbow is in the process of unveiling a new toe post tag that is much smaller than the original tag.'),(2248,10,495,1,75,'B000KJ43SG'),(2249,10,97,1,75,'Womens Premier Leather Single Layer Narrow Strap - NEW Colors Available - Womens Style - Genuine Top Grain Premier Leather - Rich Color Tones - Straps lined with 2000 lb test nylon - Guaranteed for the Life of the Sole - Non-slip sole - Note: Rainbow is in the process of unveiling a new toe post tag that is much smaller than the original tag.'),(2250,10,492,1,75,'Womens Premier Leather Single Layer Narrow Strap - '),(2251,10,104,1,75,'womens, sandal, leather, anashria, '),(2252,10,506,1,75,'Womens Premier Leather Single Layer Narrow Strap - NEW Colors Available - Womens Style - Genuine Top Grain Premier Leather - Rich Color Tones - Straps lined with 2000 lb test nylon - Guaranteed for the Life of the Sole - Non-slip sole - Note: Rainbow is in the process of unveiling a new toe post tag that is much smaller than the original tag.'),(2273,10,495,1,79,'B000KJ43SG'),(2274,10,97,1,79,'Womens Premier Leather Single Layer Narrow Strap - NEW Colors Available - Womens Style - Genuine Top Grain Premier Leather - Rich Color Tones - Straps lined with 2000 lb test nylon - Guaranteed for the Life of the Sole - Non-slip sole - Note: Rainbow is in the process of unveiling a new toe post tag that is much smaller than the original tag.'),(2275,10,492,1,79,'Womens Premier Leather Single Layer Narrow Strap - '),(2276,10,104,1,79,'womens, sandal, leather, anashria, '),(2277,10,506,1,79,'Womens Premier Leather Single Layer Narrow Strap - NEW Colors Available - Womens Style - Genuine Top Grain Premier Leather - Rich Color Tones - Straps lined with 2000 lb test nylon - Guaranteed for the Life of the Sole - Non-slip sole - Note: Rainbow is in the process of unveiling a new toe post tag that is much smaller than the original tag.'),(2283,10,495,1,80,'B000KJ43SG'),(2284,10,97,1,80,'Womens Premier Leather Single Layer Narrow Strap - NEW Colors Available - Womens Style - Genuine Top Grain Premier Leather - Rich Color Tones - Straps lined with 2000 lb test nylon - Guaranteed for the Life of the Sole - Non-slip sole - Note: Rainbow is in the process of unveiling a new toe post tag that is much smaller than the original tag.'),(2285,10,492,1,80,'Womens Premier Leather Single Layer Narrow Strap - '),(2286,10,104,1,80,'womens, sandal, leather, anashria, '),(2287,10,506,1,80,'Womens Premier Leather Single Layer Narrow Strap - NEW Colors Available - Womens Style - Genuine Top Grain Premier Leather - Rich Color Tones - Straps lined with 2000 lb test nylon - Guaranteed for the Life of the Sole - Non-slip sole - Note: Rainbow is in the process of unveiling a new toe post tag that is much smaller than the original tag.'),(2293,10,495,1,81,'B000KJ43SG'),(2294,10,97,1,81,'Womens Premier Leather Single Layer Narrow Strap - NEW Colors Available - Womens Style - Genuine Top Grain Premier Leather - Rich Color Tones - Straps lined with 2000 lb test nylon - Guaranteed for the Life of the Sole - Non-slip sole - Note: Rainbow is in the process of unveiling a new toe post tag that is much smaller than the original tag.'),(2295,10,492,1,81,'Womens Premier Leather Single Layer Narrow Strap - '),(2296,10,104,1,81,'womens, sandal, leather, anashria, '),(2297,10,506,1,81,'Womens Premier Leather Single Layer Narrow Strap - NEW Colors Available - Womens Style - Genuine Top Grain Premier Leather - Rich Color Tones - Straps lined with 2000 lb test nylon - Guaranteed for the Life of the Sole - Non-slip sole - Note: Rainbow is in the process of unveiling a new toe post tag that is much smaller than the original tag.'),(2303,10,495,1,82,'B000KJ43SG'),(2304,10,97,1,82,'Womens Premier Leather Single Layer Narrow Strap - NEW Colors Available - Womens Style - Genuine Top Grain Premier Leather - Rich Color Tones - Straps lined with 2000 lb test nylon - Guaranteed for the Life of the Sole - Non-slip sole - Note: Rainbow is in the process of unveiling a new toe post tag that is much smaller than the original tag.'),(2305,10,492,1,82,'Womens Premier Leather Single Layer Narrow Strap - '),(2306,10,104,1,82,'womens, sandal, leather, anashria, '),(2307,10,506,1,82,'Womens Premier Leather Single Layer Narrow Strap - NEW Colors Available - Womens Style - Genuine Top Grain Premier Leather - Rich Color Tones - Straps lined with 2000 lb test nylon - Guaranteed for the Life of the Sole - Non-slip sole - Note: Rainbow is in the process of unveiling a new toe post tag that is much smaller than the original tag.'),(2313,10,495,1,83,'B000JI2N0I'),(2314,10,104,1,83,'cn, clogs, outdoor, shoes, sandals, comfortable'),(2315,10,506,1,83,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear'),(2316,10,97,1,83,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear. Wear them either at the beach, in your garden, at the mall or just about anywhere you would want to be comfortable.'),(2317,10,492,1,83,'<ul>\r\n<ul class=\"disc\">\r\n<li>Made of EVA foam<br></li>\r\n<li>Heel strap keeps shoe on foot<br></li>\r\n<li>Non-marking, slip-resistant outsole<br></li>\r\n<li> Weigh just 6-10 ounces<br></li>\r\n'),(2323,10,495,1,84,'B000JI2N0I'),(2324,10,97,1,84,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear. Wear them either at the beach, in your garden, at the mall or just about anywhere you would want to be comfortable.'),(2325,10,492,1,84,'    * Made of EVA foam\r\n    * Heel strap keeps shoe on foot\r\n    * Non-marking, slip-resistant outsole\r\n    * Weigh just 6-10 ounces\r\n\r\n'),(2326,10,104,1,84,'CN Clogs Beach/Garden Clog '),(2327,10,506,1,84,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear'),(2333,10,495,1,85,'B000JI2N0I'),(2334,10,97,1,85,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear. Wear them either at the beach, in your garden, at the mall or just about anywhere you would want to be comfortable.'),(2335,10,492,1,85,'    * Made of EVA foam\r\n    * Heel strap keeps shoe on foot\r\n    * Non-marking, slip-resistant outsole\r\n    * Weigh just 6-10 ounces\r\n\r\n'),(2336,10,104,1,85,'CN Clogs Beach/Garden Clog '),(2337,10,506,1,85,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear'),(2343,10,495,1,86,'B000JI2N0I'),(2344,10,97,1,86,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear. Wear them either at the beach, in your garden, at the mall or just about anywhere you would want to be comfortable.'),(2345,10,492,1,86,'    * Made of EVA foam\r\n    * Heel strap keeps shoe on foot\r\n    * Non-marking, slip-resistant outsole\r\n    * Weigh just 6-10 ounces\r\n\r\n'),(2346,10,104,1,86,'CN Clogs Beach/Garden Clog '),(2347,10,506,1,86,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear'),(2353,10,495,1,87,'B000JI2N0I'),(2354,10,97,1,87,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear. Wear them either at the beach, in your garden, at the mall or just about anywhere you would want to be comfortable.'),(2355,10,492,1,87,'    * Made of EVA foam\r\n    * Heel strap keeps shoe on foot\r\n    * Non-marking, slip-resistant outsole\r\n    * Weigh just 6-10 ounces\r\n\r\n'),(2356,10,104,1,87,'CN Clogs Beach/Garden Clog '),(2357,10,506,1,87,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear'),(2363,10,495,1,88,'B000JI2N0I'),(2364,10,97,1,88,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear. Wear them either at the beach, in your garden, at the mall or just about anywhere you would want to be comfortable.'),(2365,10,492,1,88,'    * Made of EVA foam\r\n    * Heel strap keeps shoe on foot\r\n    * Non-marking, slip-resistant outsole\r\n    * Weigh just 6-10 ounces\r\n\r\n'),(2366,10,104,1,88,'CN Clogs Beach/Garden Clog '),(2367,10,506,1,88,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear'),(2373,10,495,1,89,'B000JI2N0I'),(2374,10,97,1,89,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear. Wear them either at the beach, in your garden, at the mall or just about anywhere you would want to be comfortable.'),(2375,10,492,1,89,'    * Made of EVA foam\r\n    * Heel strap keeps shoe on foot\r\n    * Non-marking, slip-resistant outsole\r\n    * Weigh just 6-10 ounces\r\n\r\n'),(2376,10,104,1,89,'CN Clogs Beach/Garden Clog '),(2377,10,506,1,89,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear'),(2383,10,495,1,90,'B000JI2N0I'),(2384,10,97,1,90,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear. Wear them either at the beach, in your garden, at the mall or just about anywhere you would want to be comfortable.'),(2385,10,492,1,90,'    * Made of EVA foam\r\n    * Heel strap keeps shoe on foot\r\n    * Non-marking, slip-resistant outsole\r\n    * Weigh just 6-10 ounces\r\n\r\n'),(2386,10,104,1,90,'CN Clogs Beach/Garden Clog '),(2387,10,506,1,90,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear'),(2393,10,495,1,91,'B000JI2N0I'),(2394,10,97,1,91,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear. Wear them either at the beach, in your garden, at the mall or just about anywhere you would want to be comfortable.'),(2395,10,492,1,91,'    * Made of EVA foam\r\n    * Heel strap keeps shoe on foot\r\n    * Non-marking, slip-resistant outsole\r\n    * Weigh just 6-10 ounces\r\n\r\n'),(2396,10,104,1,91,'CN Clogs Beach/Garden Clog '),(2397,10,506,1,91,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear'),(2403,10,495,1,92,'B000JI2N0I'),(2404,10,97,1,92,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear. Wear them either at the beach, in your garden, at the mall or just about anywhere you would want to be comfortable.'),(2405,10,492,1,92,'    * Made of EVA foam\r\n    * Heel strap keeps shoe on foot\r\n    * Non-marking, slip-resistant outsole\r\n    * Weigh just 6-10 ounces\r\n\r\n'),(2406,10,104,1,92,'CN Clogs Beach/Garden Clog '),(2407,10,506,1,92,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear'),(2413,10,495,1,93,'B000CP1M00'),(2414,10,104,1,93,'asics, gel, kayano'),(2415,10,506,1,93,'The ASICS® GEL-Kayano® XII running shoe delivers the ultimate blend of cushioning and support. '),(2416,10,97,1,93,'Biomorphic Fit™ upper offers enhanced upper fit and comfort while decreasing the potential for irritation. Solyte midsole material is lighter than standard EVA and SpEVA® combined with improved cushioning and durability. Impact Guidance System (I.G.S.®) uses linked componentry to encourage optimal gait while allowing for natural foot movement from heel strike to toe off. DuoMax® support system helps ensure that the shoe maintains proper support for the foot during the critical transition from heel strike to toe off. Space Trusstic® System creates a pocket between the Trusstic® System device and the midsole, allowing for greater midsole deformation and more efficient foot function. GEL® Cushioning System provides maximum rearfoot and forefoot shock attenuation. Wt. 12.6 oz.'),(2417,10,492,1,93,'<ul>\r\n<ul class=\"disc\">\r\n<li> I.G.S.: Allows for natural foot movement from heel strike to toe-off<br></li>\r\n<li>DuoMax Support System: Maintains proper support for the foot during the critical transition from heel strike to toe-off<br></li>\r\n<li> Space Trusstic System: Allows for greater midsole deformation and more efficient foot function<br></li>\r\n<li>GEL Cushioning System: Provides maximum rearfoot/forefoot shock attenuation<br></li>\r\n<li>Biomorphic Fit Upper: Provides enhanced upper fit and comfort while limiting irritation</li>\r\n\r\n</ul>'),(2423,10,495,1,94,'B000CP1M00'),(2424,10,97,1,94,'The ASICS® GEL-Kayano® XII running shoe delivers the ultimate blend of cushioning and support. Biomorphic Fit™ upper offers enhanced upper fit and comfort while decreasing the potential for irritation. Solyte midsole material is lighter than standard EVA and SpEVA® combined with improved cushioning and durability. Impact Guidance System (I.G.S.®) uses linked componentry to encourage optimal gait while allowing for natural foot movement from heel strike to toe off. DuoMax® support system helps ensure that the shoe maintains proper support for the foot during the critical transition from heel strike to toe off. Space Trusstic® System creates a pocket between the Trusstic® System device and the midsole, allowing for greater midsole deformation and more efficient foot function. GEL® Cushioning System provides maximum rearfoot and forefoot shock attenuation. Wt. 12.6 oz.'),(2425,10,492,1,94,'# I.G.S.?: Allows for natural foot movement from heel strike to toe-off\r\n# DuoMax? Support System: Maintains proper support for the foot during the critical transition from heel strike to toe-off\r\n# Space Trusstic System?: Allows for greater midsole deformation and more efficient foot function\r\n# GEL? Cushioning System: Provides maximum rearfoot/forefoot shock attenuation\r\n# Biomorphic Fit Upper: Provides enhanced upper fit and comfort while limiting irritation'),(2426,10,104,1,94,'ASICS® Men\'s GEL-Kayano® XII '),(2427,10,506,1,94,'The ASICS® GEL-Kayano® XII running shoe delivers the ultimate blend of cushioning and support. Biomorphic Fit™ upper offers enhanced upper fit and comfort while decreasing the potential for irritation. '),(2433,10,495,1,95,'B000CP1M00'),(2434,10,97,1,95,'The ASICS® GEL-Kayano® XII running shoe delivers the ultimate blend of cushioning and support. Biomorphic Fit™ upper offers enhanced upper fit and comfort while decreasing the potential for irritation. Solyte midsole material is lighter than standard EVA and SpEVA® combined with improved cushioning and durability. Impact Guidance System (I.G.S.®) uses linked componentry to encourage optimal gait while allowing for natural foot movement from heel strike to toe off. DuoMax® support system helps ensure that the shoe maintains proper support for the foot during the critical transition from heel strike to toe off. Space Trusstic® System creates a pocket between the Trusstic® System device and the midsole, allowing for greater midsole deformation and more efficient foot function. GEL® Cushioning System provides maximum rearfoot and forefoot shock attenuation. Wt. 12.6 oz.'),(2435,10,492,1,95,'# I.G.S.?: Allows for natural foot movement from heel strike to toe-off\r\n# DuoMax? Support System: Maintains proper support for the foot during the critical transition from heel strike to toe-off\r\n# Space Trusstic System?: Allows for greater midsole deformation and more efficient foot function\r\n# GEL? Cushioning System: Provides maximum rearfoot/forefoot shock attenuation\r\n# Biomorphic Fit Upper: Provides enhanced upper fit and comfort while limiting irritation'),(2436,10,104,1,95,'ASICS® Men\'s GEL-Kayano® XII '),(2437,10,506,1,95,'The ASICS® GEL-Kayano® XII running shoe delivers the ultimate blend of cushioning and support. Biomorphic Fit™ upper offers enhanced upper fit and comfort while decreasing the potential for irritation. '),(2443,10,495,1,96,'B000CP1M00'),(2444,10,97,1,96,'The ASICS® GEL-Kayano® XII running shoe delivers the ultimate blend of cushioning and support. Biomorphic Fit™ upper offers enhanced upper fit and comfort while decreasing the potential for irritation. Solyte midsole material is lighter than standard EVA and SpEVA® combined with improved cushioning and durability. Impact Guidance System (I.G.S.®) uses linked componentry to encourage optimal gait while allowing for natural foot movement from heel strike to toe off. DuoMax® support system helps ensure that the shoe maintains proper support for the foot during the critical transition from heel strike to toe off. Space Trusstic® System creates a pocket between the Trusstic® System device and the midsole, allowing for greater midsole deformation and more efficient foot function. GEL® Cushioning System provides maximum rearfoot and forefoot shock attenuation. Wt. 12.6 oz.'),(2445,10,492,1,96,'# I.G.S.?: Allows for natural foot movement from heel strike to toe-off\r\n# DuoMax? Support System: Maintains proper support for the foot during the critical transition from heel strike to toe-off\r\n# Space Trusstic System?: Allows for greater midsole deformation and more efficient foot function\r\n# GEL? Cushioning System: Provides maximum rearfoot/forefoot shock attenuation\r\n# Biomorphic Fit Upper: Provides enhanced upper fit and comfort while limiting irritation'),(2446,10,104,1,96,'ASICS® Men\'s GEL-Kayano® XII '),(2447,10,506,1,96,'The ASICS® GEL-Kayano® XII running shoe delivers the ultimate blend of cushioning and support. Biomorphic Fit™ upper offers enhanced upper fit and comfort while decreasing the potential for irritation. '),(2453,10,495,1,97,'B000CP1M00'),(2454,10,97,1,97,'The ASICS® GEL-Kayano® XII running shoe delivers the ultimate blend of cushioning and support. Biomorphic Fit™ upper offers enhanced upper fit and comfort while decreasing the potential for irritation. Solyte midsole material is lighter than standard EVA and SpEVA® combined with improved cushioning and durability. Impact Guidance System (I.G.S.®) uses linked componentry to encourage optimal gait while allowing for natural foot movement from heel strike to toe off. DuoMax® support system helps ensure that the shoe maintains proper support for the foot during the critical transition from heel strike to toe off. Space Trusstic® System creates a pocket between the Trusstic® System device and the midsole, allowing for greater midsole deformation and more efficient foot function. GEL® Cushioning System provides maximum rearfoot and forefoot shock attenuation. Wt. 12.6 oz.'),(2455,10,492,1,97,'# I.G.S.?: Allows for natural foot movement from heel strike to toe-off\r\n# DuoMax? Support System: Maintains proper support for the foot during the critical transition from heel strike to toe-off\r\n# Space Trusstic System?: Allows for greater midsole deformation and more efficient foot function\r\n# GEL? Cushioning System: Provides maximum rearfoot/forefoot shock attenuation\r\n# Biomorphic Fit Upper: Provides enhanced upper fit and comfort while limiting irritation'),(2456,10,104,1,97,'ASICS® Men\'s GEL-Kayano® XII '),(2457,10,506,1,97,'The ASICS® GEL-Kayano® XII running shoe delivers the ultimate blend of cushioning and support. Biomorphic Fit™ upper offers enhanced upper fit and comfort while decreasing the potential for irritation. '),(2463,10,495,1,98,'B000IKC6AY'),(2464,10,104,1,98,'Kenneth Cole, New York, Men\'s, Con-verge, Slip-on'),(2465,10,506,1,98,'Smooth leather upper in a dress slip on style, with a stitched and covered seam moc-inspired square toe.'),(2466,10,97,1,98,'High fashion and classic good looks converge in this suave slip on from Kenneth Cole. Smooth leather upper in a dress slip on style, with a stitched and covered seam moc-inspired square toe, quarter panel curved overlays and flared tongue with side elastic panels for a comfortable, secure fit. Smooth leather lining, cushioned leather topped insole. Dress midsole with a beveled edge, 1 inch capped dress heel. Flat traction outsole.'),(2467,10,492,1,98,'The handsome style of the Con-Verge slip-on from Kenneth Cole New York is larger than life. This sharp shoe has a semi-polished smooth leather upper, a squared off stitched apron toe, and dual-goring for easy on/off accessibility. It also features soft leather linings, a cushioned insole, and a paneled rubber outsole for a sturdy step. The Con-Verge is a perfect companion to your business and special occasion wardrobes.'),(2473,10,495,1,99,'B000IKC6AY'),(2474,10,97,1,99,'High fashion and classic good looks converge in this suave slip on from Kenneth Cole. Smooth leather upper in a dress slip on style, with a stitched and covered seam moc-inspired square toe, quarter panel curved overlays and flared tongue with side elastic panels for a comfortable, secure fit. Smooth leather lining, cushioned leather topped insole. Dress midsole with a beveled edge, 1 inch capped dress heel. Flat traction outsole.'),(2475,10,492,1,99,'The handsome style of the Con-Verge slip-on from Kenneth Cole New York is larger than life. This sharp shoe has a semi-polished smooth leather upper, a squared off stitched apron toe, and dual-goring for easy on/off accessibility. It also features soft leather linings, a cushioned insole, and a paneled rubber outsole for a sturdy step. The Con-Verge is a perfect companion to your business and special occasion wardrobes.'),(2476,10,104,1,99,'Kenneth Cole New York Men\'s Con-verge Slip-on'),(2477,10,506,1,99,'High fashion and classic good looks converge in this suave slip on from Kenneth Cole. Smooth leather upper in a dress slip on style, with a stitched and covered seam moc-inspired square toe, quarter panel curved overlays and flared tongue'),(2483,10,495,1,100,'B000IKC6AY'),(2484,10,97,1,100,'High fashion and classic good looks converge in this suave slip on from Kenneth Cole. Smooth leather upper in a dress slip on style, with a stitched and covered seam moc-inspired square toe, quarter panel curved overlays and flared tongue with side elastic panels for a comfortable, secure fit. Smooth leather lining, cushioned leather topped insole. Dress midsole with a beveled edge, 1 inch capped dress heel. Flat traction outsole.'),(2485,10,492,1,100,'The handsome style of the Con-Verge slip-on from Kenneth Cole New York is larger than life. This sharp shoe has a semi-polished smooth leather upper, a squared off stitched apron toe, and dual-goring for easy on/off accessibility. It also features soft leather linings, a cushioned insole, and a paneled rubber outsole for a sturdy step. The Con-Verge is a perfect companion to your business and special occasion wardrobes.'),(2486,10,104,1,100,'Kenneth Cole New York Men\'s Con-verge Slip-on'),(2487,10,506,1,100,'High fashion and classic good looks converge in this suave slip on from Kenneth Cole. Smooth leather upper in a dress slip on style, with a stitched and covered seam moc-inspired square toe, quarter panel curved overlays and flared tongue'),(2493,10,495,1,101,'B000IKC6AY'),(2494,10,97,1,101,'High fashion and classic good looks converge in this suave slip on from Kenneth Cole. Smooth leather upper in a dress slip on style, with a stitched and covered seam moc-inspired square toe, quarter panel curved overlays and flared tongue with side elastic panels for a comfortable, secure fit. Smooth leather lining, cushioned leather topped insole. Dress midsole with a beveled edge, 1 inch capped dress heel. Flat traction outsole.'),(2495,10,492,1,101,'The handsome style of the Con-Verge slip-on from Kenneth Cole New York is larger than life. This sharp shoe has a semi-polished smooth leather upper, a squared off stitched apron toe, and dual-goring for easy on/off accessibility. It also features soft leather linings, a cushioned insole, and a paneled rubber outsole for a sturdy step. The Con-Verge is a perfect companion to your business and special occasion wardrobes.'),(2496,10,104,1,101,'Kenneth Cole New York Men\'s Con-verge Slip-on'),(2497,10,506,1,101,'High fashion and classic good looks converge in this suave slip on from Kenneth Cole. Smooth leather upper in a dress slip on style, with a stitched and covered seam moc-inspired square toe, quarter panel curved overlays and flared tongue'),(2503,10,495,1,102,'B000IKC6AY'),(2504,10,97,1,102,'High fashion and classic good looks converge in this suave slip on from Kenneth Cole. Smooth leather upper in a dress slip on style, with a stitched and covered seam moc-inspired square toe, quarter panel curved overlays and flared tongue with side elastic panels for a comfortable, secure fit. Smooth leather lining, cushioned leather topped insole. Dress midsole with a beveled edge, 1 inch capped dress heel. Flat traction outsole.'),(2505,10,492,1,102,'The handsome style of the Con-Verge slip-on from Kenneth Cole New York is larger than life. This sharp shoe has a semi-polished smooth leather upper, a squared off stitched apron toe, and dual-goring for easy on/off accessibility. It also features soft leather linings, a cushioned insole, and a paneled rubber outsole for a sturdy step. The Con-Verge is a perfect companion to your business and special occasion wardrobes.'),(2506,10,104,1,102,'Kenneth Cole New York Men\'s Con-verge Slip-on'),(2507,10,506,1,102,'High fashion and classic good looks converge in this suave slip on from Kenneth Cole. Smooth leather upper in a dress slip on style, with a stitched and covered seam moc-inspired square toe, quarter panel curved overlays and flared tongue'),(2513,10,495,1,103,'B000NOGIKY'),(2514,10,104,1,103,'Steven by Steve Madden Pryme Pump'),(2515,10,506,1,103,' This daring pump has a pretty patent leather upper with light shirring, a double stitch detail surrounding the collar, and a vampy almond shaped toe'),(2516,10,97,1,103,'Nothing will turn his head faster than you wearing the sexy Pryme pump from Steven by Steve Madden. This daring pump has a pretty patent leather upper with light shirring, a double stitch detail surrounding the collar, and a vampy almond shaped toe. It also features smooth linings, a fully cushioned insole, a sexy covered stiletto heel, and a lightly textured dress leather outsole. Any way you wear the Pryme, you\'re certain to catch a lot of attention.'),(2517,10,492,1,103,'A prime example of chic style. Patent leather upper. Round toe. 3-1/2 inch covered heel. Flex leather sole. Imported. '),(2523,10,495,1,104,'B000NOGIKY'),(2524,10,97,1,104,'Nothing will turn his head faster than you wearing the sexy Pryme pump from Steven by Steve Madden. This daring pump has a pretty patent leather upper with light shirring, a double stitch detail surrounding the collar, and a vampy almond shaped toe. It also features smooth linings, a fully cushioned insole, a sexy covered stiletto heel, and a lightly textured dress leather outsole. Any way you wear the Pryme, you\'re certain to catch a lot of attention.'),(2525,10,492,1,104,'A prime example of chic style. Patent leather upper. Round toe. 3-1/2 inch covered heel. Flex leather sole. Imported. '),(2526,10,104,1,104,'Steven by Steve Madden Pryme Pump'),(2527,10,506,1,104,'Nothing will turn his head faster than you wearing the sexy Pryme pump from Steven by Steve Madden. This daring pump has a pretty patent leather upper with light shirring, a double stitch detail surrounding the collar, and a vampy almond shaped toe'),(2533,10,495,1,105,'B000NOGIKY'),(2534,10,97,1,105,'Nothing will turn his head faster than you wearing the sexy Pryme pump from Steven by Steve Madden. This daring pump has a pretty patent leather upper with light shirring, a double stitch detail surrounding the collar, and a vampy almond shaped toe. It also features smooth linings, a fully cushioned insole, a sexy covered stiletto heel, and a lightly textured dress leather outsole. Any way you wear the Pryme, you\'re certain to catch a lot of attention.'),(2535,10,492,1,105,'A prime example of chic style. Patent leather upper. Round toe. 3-1/2 inch covered heel. Flex leather sole. Imported. '),(2536,10,104,1,105,'Steven by Steve Madden Pryme Pump'),(2537,10,506,1,105,'Nothing will turn his head faster than you wearing the sexy Pryme pump from Steven by Steve Madden. This daring pump has a pretty patent leather upper with light shirring, a double stitch detail surrounding the collar, and a vampy almond shaped toe'),(2543,10,495,1,106,'B000NOGIKY'),(2544,10,97,1,106,'Nothing will turn his head faster than you wearing the sexy Pryme pump from Steven by Steve Madden. This daring pump has a pretty patent leather upper with light shirring, a double stitch detail surrounding the collar, and a vampy almond shaped toe. It also features smooth linings, a fully cushioned insole, a sexy covered stiletto heel, and a lightly textured dress leather outsole. Any way you wear the Pryme, you\'re certain to catch a lot of attention.'),(2545,10,492,1,106,'A prime example of chic style. Patent leather upper. Round toe. 3-1/2 inch covered heel. Flex leather sole. Imported. '),(2546,10,104,1,106,'Steven by Steve Madden Pryme Pump'),(2547,10,506,1,106,'Nothing will turn his head faster than you wearing the sexy Pryme pump from Steven by Steve Madden. This daring pump has a pretty patent leather upper with light shirring, a double stitch detail surrounding the collar, and a vampy almond shaped toe'),(2553,10,495,1,107,'B000NOGIKY'),(2554,10,97,1,107,'Nothing will turn his head faster than you wearing the sexy Pryme pump from Steven by Steve Madden. This daring pump has a pretty patent leather upper with light shirring, a double stitch detail surrounding the collar, and a vampy almond shaped toe. It also features smooth linings, a fully cushioned insole, a sexy covered stiletto heel, and a lightly textured dress leather outsole. Any way you wear the Pryme, you\'re certain to catch a lot of attention.'),(2555,10,492,1,107,'A prime example of chic style. Patent leather upper. Round toe. 3-1/2 inch covered heel. Flex leather sole. Imported. '),(2556,10,104,1,107,'Steven by Steve Madden Pryme Pump'),(2557,10,506,1,107,'Nothing will turn his head faster than you wearing the sexy Pryme pump from Steven by Steve Madden. This daring pump has a pretty patent leather upper with light shirring, a double stitch detail surrounding the collar, and a vampy almond shaped toe'),(2563,10,495,1,108,'B000LJQVF8'),(2564,10,104,1,108,'Nine West, Women, Lucero, Pump'),(2565,10,506,1,108,'This flirty pump has a leather upper, a pretty almond-shaped toe with a slight V-cut vamp'),(2566,10,97,1,108,'The Lucero pump from Nine West may just leave him at a loss for words. This flirty pump has a leather upper, a pretty almond-shaped toe with a slight V-cut vamp, leather linings, and a cushioned insole for long-wearing comfort. The stiletto heel radiates a subtle hint of sensuality, so sass up your jean and t-shirt look or nighttime attire with this hot pump and you\'ll be absolutely unforgettable.'),(2567,10,492,1,108,'The perfect pump will suit any ensemble. Leather upper. 3-3/4 inch stacked heel. Man-made sole. Imported. '),(2573,10,495,1,109,'B000LJQVF8'),(2574,10,97,1,109,'The Lucero pump from Nine West may just leave him at a loss for words. This flirty pump has a leather upper, a pretty almond-shaped toe with a slight V-cut vamp, leather linings, and a cushioned insole for long-wearing comfort. The stiletto heel radiates a subtle hint of sensuality, so sass up your jean and t-shirt look or nighttime attire with this hot pump and you\'ll be absolutely unforgettable.'),(2575,10,492,1,109,'The perfect pump will suit any ensemble. Leather upper. 3-3/4 inch stacked heel. Man-made sole. Imported. '),(2576,10,104,1,109,'Nine West Women\'s Lucero Pump '),(2577,10,506,1,109,'The Lucero pump from Nine West may just leave him at a loss for words. This flirty pump has a leather upper, a pretty almond-shaped toe with a slight V-cut vamp'),(2583,10,495,1,110,'B000LJQVF8'),(2584,10,97,1,110,'The Lucero pump from Nine West may just leave him at a loss for words. This flirty pump has a leather upper, a pretty almond-shaped toe with a slight V-cut vamp, leather linings, and a cushioned insole for long-wearing comfort. The stiletto heel radiates a subtle hint of sensuality, so sass up your jean and t-shirt look or nighttime attire with this hot pump and you\'ll be absolutely unforgettable.'),(2585,10,492,1,110,'The perfect pump will suit any ensemble. Leather upper. 3-3/4 inch stacked heel. Man-made sole. Imported. '),(2586,10,104,1,110,'Nine West Women\'s Lucero Pump '),(2587,10,506,1,110,'The Lucero pump from Nine West may just leave him at a loss for words. This flirty pump has a leather upper, a pretty almond-shaped toe with a slight V-cut vamp'),(2593,10,495,1,111,'B000LJQVF8'),(2594,10,97,1,111,'The Lucero pump from Nine West may just leave him at a loss for words. This flirty pump has a leather upper, a pretty almond-shaped toe with a slight V-cut vamp, leather linings, and a cushioned insole for long-wearing comfort. The stiletto heel radiates a subtle hint of sensuality, so sass up your jean and t-shirt look or nighttime attire with this hot pump and you\'ll be absolutely unforgettable.'),(2595,10,492,1,111,'The perfect pump will suit any ensemble. Leather upper. 3-3/4 inch stacked heel. Man-made sole. Imported. '),(2596,10,104,1,111,'Nine West Women\'s Lucero Pump '),(2597,10,506,1,111,'The Lucero pump from Nine West may just leave him at a loss for words. This flirty pump has a leather upper, a pretty almond-shaped toe with a slight V-cut vamp'),(2603,10,495,1,112,'B000NPOA1M'),(2604,10,104,1,112,'ECCO, Womens, Golf, Flexor, Shoe'),(2605,10,506,1,112,'With a wide toe box and delivering optimum support, the sporty Golf Flexor golf shoe is a stylish cleat that you\'ll love wearing on and off the links.'),(2606,10,97,1,112,'Featuring a wide toe box and delivering optimum support, the sporty Golf Flexor golf shoe is a stylish cleat that you\'ll love wearing on and off the links. The contrasting embossed snakeskin panels attract interest, while the laid back lace-up style keeps things simple. And thanks to the one-year waterproof guarantee, you can trust these shoes to keep you in the game, even when conditions are less than perfect.'),(2607,10,492,1,112,'<ul>\r\n<ul class=\"disc\">\r\n<li>Breathable mesh fabric lining<br></li>\r\n<li>Cushioned Comfort Fibre System(R) <br></li>\r\n<li>Moisture absorbent<br></li>\r\n<li>Anti-bacterial insole<br></li>\r\n</ul>'),(2613,10,495,1,113,'B000NPOA1M'),(2614,10,97,1,113,'Featuring a wide toe box and delivering optimum support, the sporty Golf Flexor golf shoe is a stylish cleat that you\'ll love wearing on and off the links. The contrasting embossed snakeskin panels attract interest, while the laid back lace-up style keeps things simple. And thanks to the one-year waterproof guarantee, you can trust these shoes to keep you in the game, even when conditions are less than perfect.'),(2615,10,492,1,113,'Featuring a wide toe box and delivering optimum support, the sporty Golf Flexor golf shoe is a stylish cleat that you\'ll love wearing on and off the links. The contrasting embossed snakeskin panels attract interest, while the laid back lace-up style keeps things simple. And thanks to the one-year waterproof guarantee, you can trust these shoes to keep you in the game, even when conditions are less than perfect.'),(2616,10,104,1,113,'ECCO Womens Golf Flexor Golf Shoe'),(2617,10,506,1,113,'Featuring a wide toe box and delivering optimum support, the sporty Golf Flexor golf shoe is a stylish cleat that you\'ll love wearing on and off the links.'),(2623,10,495,1,114,'B000NPOA1M'),(2624,10,97,1,114,'Featuring a wide toe box and delivering optimum support, the sporty Golf Flexor golf shoe is a stylish cleat that you\'ll love wearing on and off the links. The contrasting embossed snakeskin panels attract interest, while the laid back lace-up style keeps things simple. And thanks to the one-year waterproof guarantee, you can trust these shoes to keep you in the game, even when conditions are less than perfect.'),(2625,10,492,1,114,'Featuring a wide toe box and delivering optimum support, the sporty Golf Flexor golf shoe is a stylish cleat that you\'ll love wearing on and off the links. The contrasting embossed snakeskin panels attract interest, while the laid back lace-up style keeps things simple. And thanks to the one-year waterproof guarantee, you can trust these shoes to keep you in the game, even when conditions are less than perfect.'),(2626,10,104,1,114,'ECCO Womens Golf Flexor Golf Shoe'),(2627,10,506,1,114,'Featuring a wide toe box and delivering optimum support, the sporty Golf Flexor golf shoe is a stylish cleat that you\'ll love wearing on and off the links.'),(2633,10,495,1,115,'B000NPOA1M'),(2634,10,97,1,115,'Featuring a wide toe box and delivering optimum support, the sporty Golf Flexor golf shoe is a stylish cleat that you\'ll love wearing on and off the links. The contrasting embossed snakeskin panels attract interest, while the laid back lace-up style keeps things simple. And thanks to the one-year waterproof guarantee, you can trust these shoes to keep you in the game, even when conditions are less than perfect.'),(2635,10,492,1,115,'Featuring a wide toe box and delivering optimum support, the sporty Golf Flexor golf shoe is a stylish cleat that you\'ll love wearing on and off the links. The contrasting embossed snakeskin panels attract interest, while the laid back lace-up style keeps things simple. And thanks to the one-year waterproof guarantee, you can trust these shoes to keep you in the game, even when conditions are less than perfect.'),(2636,10,104,1,115,'ECCO Womens Golf Flexor Golf Shoe'),(2637,10,506,1,115,'Featuring a wide toe box and delivering optimum support, the sporty Golf Flexor golf shoe is a stylish cleat that you\'ll love wearing on and off the links.'),(2650,10,495,1,117,'Impatience'),(2651,10,97,1,117,'# 6.1 oz. 100% preshrunk heavyweight cotton \r\n# Shoulder-to-shoulder taping\r\n# Double-needle sleeves and bottom hem'),(2652,10,104,1,117,'Coalesce: Functioning On Impatience T-Shirt'),(2653,10,506,1,117,'# 6.1 oz. 100% preshrunk heavyweight cotton \r\n# Shoulder-to-shoulder taping\r\n# Double-needle sleeves and bottom hem'),(2658,10,495,1,118,'Impatience'),(2659,10,97,1,118,'# 6.1 oz. 100% preshrunk heavyweight cotton \r\n# Shoulder-to-shoulder taping\r\n# Double-needle sleeves and bottom hem'),(2660,10,104,1,118,'Coalesce: Functioning On Impatience T-Shirt'),(2661,10,506,1,118,'# 6.1 oz. 100% preshrunk heavyweight cotton \r\n# Shoulder-to-shoulder taping\r\n# Double-needle sleeves and bottom hem'),(2666,10,495,1,119,'Impatience'),(2667,10,104,1,119,'Coalesce, T-Shirt'),(2668,10,506,1,119,'<ul>\r\n<ul class=\"disc\">\r\n\r\n<li>6.1 oz. 100% preshrunk heavyweight cotton<br></li>\r\n<li>Shoulder-to-shoulder taping<br></li>\r\n<li>Double-needle sleeves and bottom hem<br></li>\r\n</ul>'),(2669,10,97,1,119,'Comfortable preshrunk shirts.  Highest Quality Printing.<br><br>\r\n<ul>\r\n<ul class=\"disc\">\r\n<li>6.1 oz. 100% preshrunk heavyweight cotton<br></li>\r\n<li>Shoulder-to-shoulder taping<br></li>\r\n<li>Double-needle sleeves and bottom hem<br></li>'),(2674,10,495,1,120,'Ink Eater:'),(2675,10,104,1,120,'Ink Eater, Krylon, Bombear , Destroyed, Tee, t shirt'),(2676,10,506,1,120,'Now you can make your grandparents proud by wearing an original piece of graf work to YOUR family reunion!'),(2677,10,97,1,120,'We bought these with the intention of making shirts for our family reunion, only to come back the next day to find each and every one of them had been tagged by The Bear.  Oh well -- can\'t argue with art.  Now you can make your grandparents proud by wearing an original piece of graf work to YOUR family reunion!'),(2682,10,495,1,121,'Ink Eater:'),(2683,10,97,1,121,'We bought these with the intention of making shirts for our family reunion, only to come back the next day to find each and every one of them had been tagged by The Bear.  Oh well -- can\'t argue with art.  Now you can make your grandparents proud by wearing an original piece of graf work to YOUR family reunion!'),(2684,10,104,1,121,'Ink Eater: Krylon Bombear Destroyed Tee'),(2685,10,506,1,121,'We bought these with the intention of making shirts for our family reunion, only to come back the next day to find each and every one of them had been tagged by The Bear.  Oh well -- can\'t argue with art.  Now you can make your grandparents proud by wearing an original piece of graf work to YOUR family reunion!'),(2690,10,495,1,122,'Ink Eater:'),(2691,10,97,1,122,'We bought these with the intention of making shirts for our family reunion, only to come back the next day to find each and every one of them had been tagged by The Bear.  Oh well -- can\'t argue with art.  Now you can make your grandparents proud by wearing an original piece of graf work to YOUR family reunion!'),(2692,10,104,1,122,'Ink Eater: Krylon Bombear Destroyed Tee'),(2693,10,506,1,122,'We bought these with the intention of making shirts for our family reunion, only to come back the next day to find each and every one of them had been tagged by The Bear.  Oh well -- can\'t argue with art.  Now you can make your grandparents proud by wearing an original piece of graf work to YOUR family reunion!'),(2698,10,495,1,123,'paisley'),(2699,10,104,1,123,'The Only Children: Paisley T-Shirt'),(2700,10,506,1,123,'Printed on American Apparel Classic style 5495 California cotton T shirt.   '),(2701,10,97,1,123,'<ul>\r\n<ul class=\"disc\">\r\n<li>6.1 oz. 100% preshrunk heavyweight cotton <br></li>\r\n<li>Double-needle sleeves and bottom hem</li>\r\n</ul>'),(2706,10,495,1,124,'The Only Children: Paisley T-Shirt'),(2707,10,97,1,124,'# 6.1 oz. 100% preshrunk heavyweight cotton \r\n# Double-needle sleeves and bottom hem'),(2708,10,104,1,124,'The Only Children: Paisley T-Shirt'),(2709,10,506,1,124,'Printed on American Apparel Classic style 5495 California cotton T shirst.   '),(2714,10,495,1,125,'The Only Children: Paisley T-Shirt'),(2715,10,97,1,125,'# 6.1 oz. 100% preshrunk heavyweight cotton \r\n# Double-needle sleeves and bottom hem'),(2716,10,104,1,125,'The Only Children: Paisley T-Shirt'),(2717,10,506,1,125,'Printed on American Apparel Classic style 5495 California cotton T shirst.   '),(2722,10,495,1,126,'zolof'),(2723,10,104,1,126,'Zolof The Rock And Roll Destroyer: LOL Cat T-shirt'),(2724,10,506,1,126,'Printed on American Apparel Classic style 5495 California t-shirts.  '),(2725,10,97,1,126,'<ul>\r\n<ul class=\"disc\")\r\n<li> 6.1 oz. 100% preshrunk heavyweight cotton <br></li>\r\n<li> Shoulder-to-shoulder taping<br></li>\r\n<li>Double-needle sleeves and bottom hem<br></li>\r\n</ul>'),(2730,10,495,1,127,'Zolof The Rock And Roll Destroyer: LOL Cat T-shirt'),(2731,10,97,1,127,'# 6.1 oz. 100% preshrunk heavyweight cotton \r\n# Shoulder-to-shoulder taping\r\n# Double-needle sleeves and bottom hem'),(2732,10,104,1,127,'Zolof The Rock And Roll Destroyer: LOL Cat T-shirt'),(2733,10,506,1,127,'Printed on American Apparel Classic style 5495 California t-shirts.  '),(2738,10,495,1,128,'Zolof The Rock And Roll Destroyer: LOL Cat T-shirt'),(2739,10,97,1,128,'# 6.1 oz. 100% preshrunk heavyweight cotton \r\n# Shoulder-to-shoulder taping\r\n# Double-needle sleeves and bottom hem'),(2740,10,104,1,128,'Zolof The Rock And Roll Destroyer: LOL Cat T-shirt'),(2741,10,506,1,128,'Printed on American Apparel Classic style 5495 California t-shirts.  '),(2746,10,495,1,129,'Zolof The Rock And Roll Destroyer: LOL Cat T-shirt'),(2747,10,97,1,129,'# 6.1 oz. 100% preshrunk heavyweight cotton \r\n# Shoulder-to-shoulder taping\r\n# Double-needle sleeves and bottom hem'),(2748,10,104,1,129,'Zolof The Rock And Roll Destroyer: LOL Cat T-shirt'),(2749,10,506,1,129,'Printed on American Apparel Classic style 5495 California t-shirts.  '),(2754,10,495,1,130,'Zolof The Rock And Roll Destroyer: LOL Cat T-shirt'),(2755,10,97,1,130,'# 6.1 oz. 100% preshrunk heavyweight cotton \r\n# Shoulder-to-shoulder taping\r\n# Double-needle sleeves and bottom hem'),(2756,10,104,1,130,'Zolof The Rock And Roll Destroyer: LOL Cat T-shirt'),(2757,10,506,1,130,'Printed on American Apparel Classic style 5495 California t-shirts.  '),(2762,10,495,1,131,'Zolof The Rock And Roll Destroyer: LOL Cat T-shirt'),(2763,10,97,1,131,'# 6.1 oz. 100% preshrunk heavyweight cotton \r\n# Shoulder-to-shoulder taping\r\n# Double-needle sleeves and bottom hem'),(2764,10,104,1,131,'Zolof The Rock And Roll Destroyer: LOL Cat T-shirt'),(2765,10,506,1,131,'Printed on American Apparel Classic style 5495 California t-shirts.  '),(2770,10,97,1,133,'A stylish digital camera demands stylish protection. This leather carrying case will defend your camera from the dings and scratches of travel and everyday use while looking smart all the time.'),(2771,10,506,1,133,'A stylish digital camera demands stylish protection. This leather carrying case will defend your camera from the dings and scratches of travel and everyday use while looking smart all the time.'),(2776,10,97,1,132,'Sturdy, lightweight tripods are designed to meet the needs of amateur and professional photographers and videographers.'),(2777,10,506,1,132,'Sturdy, lightweight tripods are designed to meet the needs of amateur and professional photographers and videographers.'),(2784,10,97,1,134,'Features foldable Flat Pin for Easy Storage/ Slim/ Lightweight Design and Smart Charging LED Indicator.'),(2785,10,506,1,134,'Features foldable Flat Pin for Easy Storage/ Slim/ Lightweight Design and Smart Charging LED Indicator.'),(2795,10,495,1,135,'B000KJ43SG!'),(2796,10,104,1,135,'womens, sandal, leather, anashria, '),(2797,10,506,1,135,'Buckle embellished contrasting straps adorn both the heel and canvas covered wedge of this t-strap sandal to make it a truly unique addition to your wardrobe'),(2798,10,97,1,135,'Smooth kidskin upper in a dress platform wedge t-strap sandal style, with a round open toe, front and ankle adjustable buckles and tonal stitching accents. Ankle buckle features elastic panel. Smooth faux leather lining, cushioning faux leather and fabric topped insole. 1 inch matching leather and fabric wrapped midsole.'),(2799,10,492,1,135,'<ul>\r\n<ul class=\"disc\">\r\n<li>Womens Style <br></li>\r\n<li>Genuine Top Grain Premier Leather <br></li>\r\n<li>Rich Color Tones <br></li>\r\n<li>Straps lined with 2000 lb test nylon <br></li>\r\n<li>Guaranteed for the Life of the Sole - Non-slip sole<br></li>\r\n</ul>'),(2803,10,495,0,16,'2610'),(2804,10,494,0,16,'4.1 x 1.7 x 0.7 inches '),(2805,10,97,0,16,'The Nokia 2610 is an easy to use device that combines multiple messaging options including email, instant messaging, and more. You can even download MP3 ringtones, graphics, and games straight to the phone, or surf the Internet with Cingular\'s MEdia Net service. It\'s the perfect complement to Cingular service for those even remotely interested in mobile Web capabilities in an affordable handset.<br><br>\r\n\r\n<b>Design</b><br>\r\nCompact and stylish, the 2610 features a candybar design sporting a bright 128 x 128 pixel display capable of displaying over 65,000 colors. Most of the phone\'s features and on-screen menus are controlled by a center toggle on the control pad. A standard hands-free headphone jack is provided, as are volume control keys, and there\'s even a \"Go-To\" button that can be assigned by the user for quick access to favorite applications. Lastly, the included speakerphone allows you to talk handsfree, and because the phone sports an internal antenna, there\'s nothing to snag or break off.\r\n\r\n'),(2806,10,492,0,16,'<ul>\r\n<ul class\"disc\">\r\n<li>Integrated camera with video recorder to capture those special moments<br></li>\r\n<li>Enriched data connections for complete mobile access via Email, MMS, and MEdia Net<br></li>\r\n<li> Personalize with downloadable MP3 and polyphonic Ring tones, Games, and Graphics<br></li>\r\n<li>Use AIM, Yahoo! and MSN Messenger to stay in touch on the go<br></li>\r\n<li>Mobile Internet browser and email</li>\r\n</ul>'),(2807,10,496,0,16,'Conditional $250 Equipment Discount Included: Your price paid includes an equipment discount of $250 that has been provided to you in exchange for either activating a new, non-substitute line of service or renewing an existing line of service with AT&T and your agreement that for the 181-day period following such activation or renewal you will: (1) pay your balance due to AT&T each month and otherwise maintain your account in good standing; (2) not disconnect this AT&T line of service; (3) not transfer this equipment to another AT&T line of service; (4) not change your AT&T service rate plan to a lower monthly service rate--this includes canceling or removing required PDA, BlackBerry, or smartphone features after your product has shipped; (5) not use this line of service to replace an existing account with AT&T. If these conditions are not met, you hereby authorize Magento to charge your credit card $250 as reimbursement of this equipment discount without need for further approval.'),(2808,10,104,0,16,'Nokia 2610, cell, phone, '),(2809,10,495,0,17,'8100'),(2810,10,494,0,17,'4.2 x 2 x 0.6 inches '),(2811,10,97,0,17,' Like the BlackBerry 7105t, the BlackBerry 8100 Pearl is \r\nThe BlackBerry 8100 Pearl sports a large 240 x 260 screen that supports over 65,000 colors-- plenty of real estate to view your e-mails, Web browser content, messaging sessions, and attachments. The venerable BlackBerry trackwheel has been replaced on this model with an innovative four-way trackball placed below the screen. On the rear of the handheld, you\'ll find a 1.3-megapixel camera and a self portrait mirror. The handheld\'s microSD memory card slot is located inside the device, behind the battery. There\'s also a standard 2.5mm headset jack that can be used with the included headset, as well as a mini-USB port for data connectivity.'),(2812,10,492,0,17,'<ul>\r\n<ul class=\"disc\">\r\n<li> 1.3 mega pixel camera to capture those special moments<br></li>\r\n<li> MP3 player lets you listen to your favorite music on the go<br></li>\r\n<li>Menu and escape keys on the front of the device for easier access<br></li>\r\n<li> Bluetooth technology lets you experience hands free and wire free features<br></li>\r\n<li>Package Contents: phone,AC adapter,software CD,headset,USB cable,sim- card,get started poster,reference guide<br></li>\r\n</ul>'),(2813,10,496,0,17,'CONDITIONAL $250 Equipment Discount Included: Your price paid includes an Equipment Discount of $250 that has been provided to you in exchange for activating a new, non-substitute line of service with T-Mobile and your agreement that for the 181-day period following such activation you will (1) pay your balance due to T-Mobile each month and otherwise maintain your account in good standing, (2) not disconnect this T-Mobile line of service, (3) not transfer this equipment to another T-Mobile line of service, (4) not change your T-Mobile service rate plan to a lower monthly service rate--this includes canceling or removing required PDA, BlackBerry, or smartphone features after your product has shipped, (5) not use this line of service to replace an existing account with T-Mobile. If these conditions are not met, you hereby authorize Magento.com to charge your credit card $250 as reimbursement of this Equipment Discount without need for further approval.'),(2814,10,104,0,17,'Blackberry, 8100, pearl, cell, phone'),(2815,10,495,0,18,'W810i'),(2816,10,494,0,18,' 3.5 x 1.8 x 1 inches'),(2817,10,97,0,18,'The W810i\'s screen sports 176 x 220 pixel resolution with support for 262,000 colors. Quick access buttons below the screen make it easy to control the phone\'s Walkman music features, while a five-way center button controls most of the phone\'s menus and features.'),(2818,10,492,0,18,'<ul>\r\n<ul class=\"disc\">\r\n \r\n<li>Disc2Phone™ music copying software is supplied in the W810 kit and it’s easy to copy songs from your favorite CDs, and PC music folders<br></li>\r\n<li>The built-in W810 2 megapixel digital camera with autofus takes excellent photos and when you need to catch some action, W810 has video too<br></li>\r\n<li>Sharing images and other phone content is easy. Use Bluetooth™, or Multimedia messaging when you want to send images and video<br></li>\r\n<li> Wherever you are, you have high speed access to the internet with EDGE technology<br></li>\r\n<li> A full-function email client in your W810 gives you access to your inbox wherever you go</li>\r\n</ul>'),(2819,10,496,0,18,'Conditional $250 Equipment Discount Included: Your price paid includes an equipment discount of $250 that has been provided to you in exchange for either activating a new, non-substitute line of service or renewing an existing line of service with AT&T and your agreement that for the 181-day period following such activation or renewal you will: (1) pay your balance due to AT&T each month and otherwise maintain your account in good standing; (2) not disconnect this AT&T line of service; (3) not transfer this equipment to another AT&T line of service; (4) not change your AT&T service rate plan to a lower monthly service rate--this includes canceling or removing required PDA, BlackBerry, or smartphone features after your product has shipped; (5) not use this line of service to replace an existing account with AT&T. If these conditions are not met, you hereby authorize Magento.com to charge your credit card $250 as reimbursement of this equipment discount without need for further approval.'),(2820,10,104,0,18,'Sony, Ericsson ,W810i, cell, phone'),(2821,10,495,0,20,'MM-A900M'),(2822,10,494,0,20,'3.9 x 2 x 0.6 inches'),(2823,10,97,0,20,'New services supported by both the MM-A900m include the newly announced Sprint Music StoreSM, which allows users to immediately buy and download complete songs directly to their phone; 30 channels of live and on demand video and audio from Sprint TVSM and On Demand, a personalized resource guide to news, traffic, weather, sports and entertainment. The MM-A900m offers great-looking design with the ability to download a rich selection of content directly to the phone. Features like external music-navigation keys make these phones both functional and attractive. These handsets are sure to be at the top of many wish lists.'),(2824,10,492,0,20,'<ul>\r\n<ul class=\"disc\">\r\n<li>Bluetooth Wireless Technology: Built-in radio technology allows fast, secure transmission between your phone and accessories without cables or wires. Bluetooth wireless accessories are sold separately.<br></li>\r\n<li>Mass Storage Area: Store pictures, videos, voice memos and music within the internal memory of the phone.<br></li>\r\n<li>Streaming Music Enabled: Stream music to your phone with Music Choice®. Select from Pop, Rock, Hip Hop, and R&B plus exclusive video clips, performances, and artist interviews.<br></li>\r\n</ul>\r\n   '),(2825,10,496,0,20,'CONDITIONAL $250 Equipment Discount Included: Your price paid includes an equipment discount of $250 that has been provided to you in exchange for activating a new, non-substitute line of service with Sprint and your agreement that for the 181-day period following such activation you will (1) pay your balance due to Sprint each month and otherwise maintain your account in good standing, (2) not disconnect this Sprint line of service, (3) not transfer this equipment to another Sprint line of service, (4) not change your Sprint service rate plan to a lower monthly service rate--this includes canceling or removing required PDA, BlackBerry, or smartphone features after your product has shipped, and (5) not use this line of service to replace an existing account with Sprint. If these conditions are not met, you hereby authorize Magento.com to charge your credit card $250 as reimbursement of this equipment discount without need for further approval.'),(2826,10,104,0,20,'Samsung, MM-A900M, cell, phone'),(2829,10,495,0,25,'MA464LL/A'),(2830,10,494,0,25,'19.5 x 7.6 x 19.5 inches'),(2831,10,497,0,25,'2.0 GHz Intel Core Duo processor with 2 MB shared L2 Cache'),(2832,10,498,0,25,'1 GB (single SODIMM) 667 MHz DDR2 SDRAM (PC2-5300)'),(2833,10,499,0,25,'100 GB 5400 rpm Serial ATA hard drive'),(2834,10,500,0,25,'15.4-inch TFT widescreen display with 1440 x 900 resolution'),(2835,10,97,0,25,'This, combined with myriad other engineering leaps, boosts performance up to four times higher than the PowerBook G4. With this awesome power, it\'s a breeze to render complex 3D models, enjoy smooth playback of HD video, or host a four-way video conference.Intel Core Duo is the first chip built using Intel\'s groundbreaking 65-nanometer process - resulting in transistors so small, you could fit a hundred inside a single human cell. With smaller distances for electrons to travel, and two processors designed to share resources and conserve power, Intel Core Duo achieves higher levels of performance as it uses fewer watts. Which is what makes it possible to design a super-powerful MacBook Pro that\'s only one inch thin.When Mac technology makes something easy, it\'s hardly news. So here\'s more non-news for MacBook Pro owners: software just works. If you see the Universal logo on a new application, that means it will run on Intel- and PowerPC-based Mac computers. For most existing applications, you simply do what you\'ve always done: double-click them. Thanks to the Rosetta technology in Mac OS X, they look and feel just like they did before.'),(2836,10,492,0,25,' <ul>\r\n<ul class=\"disc\">\r\n<li>2.0 GHz Intel Core Duo processor with 2 MB shared L2 Cache<br></li>\r\n<li>1 GB (single SODIMM) 667 MHz DDR2 SDRAM (PC2-5300); 100 GB 5400 rpm Serial ATA hard drive; slot-load SuperDrive (DVD±RW/CD-RW)<br></li>\r\n<li>One FireWire 400, two USB 2.0 ports, and ExpressCard/34 slot; no FireWire 800 slots<br></li>\r\n<li>Built-in 10/100/1000BASE-T (Gigabit); built-in 54 Mbps AirPort Extreme (802.11g); built-in Bluetooth 2.0+EDR<br></li>\r\n<li>15.4-inch TFT widescreen display with 1440 x 900 resolution</li>'),(2837,10,104,0,25,'Apple MacBook Pro MA464LL/A 15.4\" Notebook PC (2.0 GHz Intel Core Duo, 1 GB RAM, 100 GB Hard Drive, SuperDrive) '),(2838,10,495,0,26,'LX.FR206.001'),(2839,10,497,0,26,'Mobile AMD Athlon 64 2800+'),(2840,10,498,0,26,'512MB of PC2700 DDR333 SDRAM'),(2841,10,499,0,26,'80 gig Western Digital'),(2842,10,500,0,26,'15-inch, 200-nit, high-brightness TFT LCD screen '),(2843,10,97,0,26,' Acer has flawlessly designed the Ferrari 3200, instilling it with exceptional performance, brilliant graphics, and lightning-fast connectivity. This exclusive edition is another striking symbol of cooperation between Acer and Ferrari -- two progressive companies with proud heritages built on passion, innovation, power and success.'),(2844,10,492,0,26,' <ul>\r\n<ul class=\"disc\">\r\n<li>Mobile AMD Athlon 64 2800+<br></li>\r\n<li>1MB L2 Cache<br></li>\r\n<li>512MB of PC2700 DDR333 SDRAM<br></li>\r\n<li>2 RAM Slots (0 open - upgrading requires chip removal)<br></li>\r\n<li>RAM is upgradeable to 2GB</li>\r\n</ul>'),(2845,10,104,0,26,'Acer Ferrari 3200 Notebook Computer PC '),(2846,10,495,0,27,'VGN-TXN27N/B'),(2847,10,494,0,27,'10.7 x 1.23 x 7.7 inches (WxHxD)'),(2848,10,497,0,27,'Intel Core Solo Processor U1500'),(2849,10,498,0,27,'2 GB RAM'),(2850,10,499,0,27,'100 GB Hard Drive'),(2851,10,500,0,27,'9 inches'),(2852,10,97,0,27,' Weighing in at just an amazing 2.84 pounds and offering a sleek, durable carbon-fiber case in charcoal black. And with 4 to 10 hours of standard battery life, it has the stamina to power you through your most demanding applications. With the integrated wireless WAN, you can access the national Sprint Mobile Broadband service to extend your wireless coverage beyond LAN access networks and hotspots, giving you the freedom to go farther, do more, and stay connected.\r\n\r\n'),(2853,10,492,0,27,' <ul>\r\n<ul class=\"disc\">\r\n<li>Processor: The Ultra Low Voltage Intel Core Solo U1500 processor offers a 1.33 GHz speed paired with a fast 533 MHz front-side bus and large 2 MB L2 cache. (An L2, or secondary, cache temporarily stores data; and a larger L2 cache can help speed up your system\'s performance. The FSB carries data between the CPU and RAM, and a faster front-side bus will deliver better overall performance.) The Core Solo processor delivers enhanced performance for today\'s demanding applications such as CAD tools, 3-D and 2-D modeling, video editing, digital music, digital photography and gaming. And Intel\'s Smart Cache technology enables smarter, more efficient cache and bus design for enhanced performance, responsiveness and power savings.</li>\r\n</ul>\r\n\r\n   '),(2854,10,104,0,27,'Sony, VAIO, VGN-TXN27N/B , Notebook, PC, Intel, 2 GB RAM, Laptop'),(2855,10,495,0,28,'M285-E'),(2856,10,494,0,28,'17 x 7 x 13 inches'),(2857,10,497,0,28,'1.66 GHz Intel Core Duo T2300E processor'),(2858,10,498,0,28,'1 GB RAM'),(2859,10,499,0,28,'60 GB hard drive'),(2860,10,500,0,28,'14-inch screen '),(2861,10,97,0,28,'Easily mobile at just 6 pounds, the Toshiba Satellite A135-S4527 makes it easy to get your work done with a large, bright 15.4-inch widescreen LCD. The XGA-resolution screen (1280 x 800) permits side-by-side viewing of documents for increased productivity. It\'s also great for using as a media center, with Toshiba\'s unique Express Media Player enabling you to bypass the system and access CDs and DVDs with a touch of button. This affordable notebook PC is powered by Intel\'s 1.73 GHz Core Duo T2080 processor, which provides an optimized, multithreaded architecture for improved gaming and multitasking performance and efficient power consumption. It also offers a 120 GB hard drive, 1 GB of installed RAM (2 GB maximum), dual-layer/multi-format DVD drive that also burns CDs, integrated 54g wireless connectivity, and Intel GMA 950 video card with up to 256 MB of shared video RAM.\r\n\r\n'),(2862,10,492,0,28,' <ul>\r\n<ul class=\"disc\">\r\n<li>Processor: The Intel Core Duo T2080 processor is built with the Mobile Intel 945PM Express chipset, and it has a 1.73 GHz processor speed, fast 533 MHz front-side bus (FSB), and 1 MB L2 cache. (An L2, or secondary, cache temporarily stores data; and a larger L2 cache can help speed up your system\'s performance. The FSB carries data between the CPU and RAM, and a faster front-side bus will deliver better overall performance.)</li>\r\n</ul>'),(2863,10,104,0,28,'Toshiba, notebook, laptop, intel, '),(2864,10,495,0,29,'B000JI2N0I'),(2865,10,97,0,29,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear. Wear them either at the beach, in your garden, at the mall or just about anywhere you would want to be comfortable.'),(2866,10,492,0,29,'    * Made of EVA foam\r\n    * Heel strap keeps shoe on foot\r\n    * Non-marking, slip-resistant outsole\r\n    * Weigh just 6-10 ounces\r\n\r\n'),(2867,10,104,0,29,'CN Clogs Beach/Garden Clog '),(2868,10,495,0,30,'B000CP1M00'),(2869,10,97,0,30,'The ASICS® GEL-Kayano® XII running shoe delivers the ultimate blend of cushioning and support. Biomorphic Fit™ upper offers enhanced upper fit and comfort while decreasing the potential for irritation. Solyte midsole material is lighter than standard EVA and SpEVA® combined with improved cushioning and durability. Impact Guidance System (I.G.S.®) uses linked componentry to encourage optimal gait while allowing for natural foot movement from heel strike to toe off. DuoMax® support system helps ensure that the shoe maintains proper support for the foot during the critical transition from heel strike to toe off. Space Trusstic® System creates a pocket between the Trusstic® System device and the midsole, allowing for greater midsole deformation and more efficient foot function. GEL® Cushioning System provides maximum rearfoot and forefoot shock attenuation. Wt. 12.6 oz.'),(2870,10,492,0,30,'# I.G.S.?: Allows for natural foot movement from heel strike to toe-off\r\n# DuoMax? Support System: Maintains proper support for the foot during the critical transition from heel strike to toe-off\r\n# Space Trusstic System?: Allows for greater midsole deformation and more efficient foot function\r\n# GEL? Cushioning System: Provides maximum rearfoot/forefoot shock attenuation\r\n# Biomorphic Fit Upper: Provides enhanced upper fit and comfort while limiting irritation'),(2871,10,104,0,30,'ASICS® Men\'s GEL-Kayano® XII '),(2872,10,495,0,31,'B000NOGIKY'),(2873,10,97,0,31,'Nothing will turn his head faster than you wearing the sexy Pryme pump from Steven by Steve Madden. This daring pump has a pretty patent leather upper with light shirring, a double stitch detail surrounding the collar, and a vampy almond shaped toe. It also features smooth linings, a fully cushioned insole, a sexy covered stiletto heel, and a lightly textured dress leather outsole. Any way you wear the Pryme, you\'re certain to catch a lot of attention.'),(2874,10,492,0,31,'A prime example of chic style. Patent leather upper. Round toe. 3-1/2 inch covered heel. Flex leather sole. Imported. '),(2875,10,104,0,31,'Steven by Steve Madden Pryme Pump'),(2876,10,495,0,32,'B000LJQVF8'),(2877,10,97,0,32,'The Lucero pump from Nine West may just leave him at a loss for words. This flirty pump has a leather upper, a pretty almond-shaped toe with a slight V-cut vamp, leather linings, and a cushioned insole for long-wearing comfort. The stiletto heel radiates a subtle hint of sensuality, so sass up your jean and t-shirt look or nighttime attire with this hot pump and you\'ll be absolutely unforgettable.'),(2878,10,492,0,32,'The perfect pump will suit any ensemble. Leather upper. 3-3/4 inch stacked heel. Man-made sole. Imported. '),(2879,10,104,0,32,'Nine West Women\'s Lucero Pump '),(2880,10,495,0,33,'B000NPOA1M'),(2881,10,97,0,33,'Featuring a wide toe box and delivering optimum support, the sporty Golf Flexor golf shoe is a stylish cleat that you\'ll love wearing on and off the links. The contrasting embossed snakeskin panels attract interest, while the laid back lace-up style keeps things simple. And thanks to the one-year waterproof guarantee, you can trust these shoes to keep you in the game, even when conditions are less than perfect.'),(2882,10,492,0,33,'Featuring a wide toe box and delivering optimum support, the sporty Golf Flexor golf shoe is a stylish cleat that you\'ll love wearing on and off the links. The contrasting embossed snakeskin panels attract interest, while the laid back lace-up style keeps things simple. And thanks to the one-year waterproof guarantee, you can trust these shoes to keep you in the game, even when conditions are less than perfect.'),(2883,10,104,0,33,'ECCO Womens Golf Flexor Golf Shoe'),(2884,10,495,0,34,'B000IKC6AY'),(2885,10,97,0,34,'High fashion and classic good looks converge in this suave slip on from Kenneth Cole. Smooth leather upper in a dress slip on style, with a stitched and covered seam moc-inspired square toe, quarter panel curved overlays and flared tongue with side elastic panels for a comfortable, secure fit. Smooth leather lining, cushioned leather topped insole. Dress midsole with a beveled edge, 1 inch capped dress heel. Flat traction outsole.'),(2886,10,492,0,34,'The handsome style of the Con-Verge slip-on from Kenneth Cole New York is larger than life. This sharp shoe has a semi-polished smooth leather upper, a squared off stitched apron toe, and dual-goring for easy on/off accessibility. It also features soft leather linings, a cushioned insole, and a paneled rubber outsole for a sturdy step. The Con-Verge is a perfect companion to your business and special occasion wardrobes.'),(2887,10,104,0,34,'Kenneth Cole New York Men\'s Con-verge Slip-on'),(2888,10,495,0,35,'Impatience'),(2889,10,97,0,35,'# 6.1 oz. 100% preshrunk heavyweight cotton \r\n# Shoulder-to-shoulder taping\r\n# Double-needle sleeves and bottom hem'),(2890,10,104,0,35,'Coalesce: Functioning On Impatience T-Shirt'),(2891,10,495,0,36,'Ink Eater:'),(2892,10,97,0,36,'We bought these with the intention of making shirts for our family reunion, only to come back the next day to find each and every one of them had been tagged by The Bear.  Oh well -- can\'t argue with art.  Now you can make your grandparents proud by wearing an original piece of graf work to YOUR family reunion!'),(2893,10,104,0,36,'Ink Eater: Krylon Bombear Destroyed Tee'),(2894,10,495,0,37,'The Only Children: Paisley T-Shirt'),(2895,10,97,0,37,'# 6.1 oz. 100% preshrunk heavyweight cotton \r\n# Double-needle sleeves and bottom hem'),(2896,10,104,0,37,'The Only Children: Paisley T-Shirt'),(2897,10,495,0,38,'Zolof The Rock And Roll Destroyer: LOL Cat T-shirt'),(2898,10,97,0,38,'# 6.1 oz. 100% preshrunk heavyweight cotton \r\n# Shoulder-to-shoulder taping\r\n# Double-needle sleeves and bottom hem'),(2899,10,104,0,38,'Zolof The Rock And Roll Destroyer: LOL Cat T-shirt'),(2900,10,495,0,19,'8525 PDA'),(2901,10,494,0,19,'4.4 x 2.4 x 0.9 inches'),(2902,10,97,0,19,' The design of the 8525 is clean and uncluttered, with just a few buttons for mail, Internet Explorer, and contextual menus. Meanwhile, call answer and end buttons surround a five-way toggle that allows you to navigate and control the Windows Mobile interface. As mentioned, a full QWERTY keyboard cleverly slides out from underneath the screen. This allows you to hold the device horizontally, and the screen is automatically placed in landscape mode when you\'re using the keyboard. A side scroll wheel is conveniently tucked away on the side, making navigation when accessing the music player and other various applications a cinch when needed. A mini-SD memory expansion card slot is provided, as is an infrared port and support for a stereo Bluetooth headset. A mini-USB port is also included for wired data transfers and charging.'),(2903,10,492,0,19,'<ul>\r\n<ul class=\"disc\">\r\n<li>tri-band UMTS/HSDPA; quad-band GSM/GPRS/EDGE for global use<br></li>\r\n<li>Windows Mobile 5.0 with Messaging & Security Feature Pack<br></li>\r\n<li>sliding QWERTY keyboard with improved keypad design and improved backlight for easier use in low light conditions<br></li>\r\n<li>128MB ROM / 64MB RAM; ~51MB user available memory<br></li>\r\n<li>2.0 mega-pixel camera with video capabilities</li>\r\n</ul>'),(2904,10,496,0,19,'Conditional $250 Equipment Discount Included: Your price paid includes an equipment discount of $250 that has been provided to you in exchange for either activating a new, non-substitute line of service or renewing an existing line of service with AT&T and your agreement that for the 181-day period following such activation or renewal you will: (1) pay your balance due to AT&T each month and otherwise maintain your account in good standing; (2) not disconnect this AT&T line of service; (3) not transfer this equipment to another AT&T line of service; (4) not change your AT&T service rate plan to a lower monthly service rate--this includes canceling or removing required PDA, BlackBerry, or smartphone features after your product has shipped; (5) not use this line of service to replace an existing account with AT&T. If these conditions are not met, you hereby authorize Magento.com to charge your credit card $250 as reimbursement of this equipment discount without need for further approval.'),(2905,10,104,0,19,'At&t, 8525, cell, phone'),(2906,10,495,0,39,'The Get Up Kids: Band Camp Pullover Hoodie'),(2907,10,97,0,39,'Printed on American Apparel Classic style 5495 California Fleece Pull-Over Hoodies.  Sizing info is available here. '),(2908,10,104,0,39,'The Get Up Kids: Band Camp Pullover Hoodie'),(2915,10,495,0,41,'384822'),(2916,10,494,0,41,'21\"W x 44\"L x 35.5\"H'),(2917,10,507,0,41,'Thailand'),(2918,10,509,0,41,'Asian Beechwood'),(2919,10,97,0,41,'Features include inset panel sides and for spacious drawers and two wicker baskets. 41\"Wx18\"Dx36\"H.'),(2920,10,104,0,41,'Hardwood, drawers, wicker, asian, beechwood'),(2921,10,495,0,42,'bar1234'),(2922,10,494,0,42,'62\"W x 84\"L x 8\"H'),(2923,10,507,0,42,'Thailand'),(2924,10,509,0,42,'Bamboo'),(2925,10,97,0,42,'Entirely handcrafted of solid Bamboo. Designed for use with a mattress alone, it includes a sturdy, padded wood platform for comfort and proper mattress support.'),(2926,10,104,0,42,'bamboo, barcelona, platform, bed'),(2927,10,495,0,44,'Rebel XT '),(2928,10,494,0,44,'5 x 3.7 x 2.5 inches'),(2929,10,97,0,44,'The Canon EOS Digital Rebel camera now has a new, faster, even smaller big brother. Sibling rivalries aside, the 8.0-megapixel Canon EOS Digital Rebel XT SLR adds resolution, speed, extra creative control, and enhanced comfort in the hand to one of the smallest and lightest digital cameras in its class. Even with its advancements in ergonomic design and technology, this easy-to-use EOS digital camera is compatible with all of Canon\'s EF lenses, including the EF-S lenses.'),(2930,10,492,0,44,'<ul>\r\n<ul class=\"disc\"> \r\n\r\n<li>8.0-megapixel CMOS sensor captures enough detail for photo-quality 16 x 22-inch prints<br></li>\r\n<li>Includes Canon\'s EF-S 18-55mm, f3.5-5.6 zoom lens<br></li>\r\n<li>DIGIC II Image Processor provides fast, accurate image processing; captures images at a rate of up to 3 frames per second<br></li>\r\n<li>Fast start-up time--.2 seconds<br></li>\r\n<li>Powered by rechargeable Lithium-ion battery (included, with charger)</li>\r\n</ul>\r\n'),(2931,10,104,0,44,'canon, slr, camera, 8, digital'),(2932,10,495,0,45,'QC-2185'),(2933,10,494,0,45,'2.75 inches x 1.5 inches'),(2934,10,97,0,45,'The Argus QC-2185 Quick Click 5MP digital camera offers all the basic features you need in a compact and stylish digital camera. This unit is easy to use, and is perfect for those who want a completely portable option for taking good pictures, without having to empty their wallet.\r\n\r\nThe Argus QC-2185 features a clear and bright 1.1-inch CSTN (color super-twist nematic) LCD display that makes it easy to frame the perfect picture. Thanks to its USB 1.1 connection compatibility, this digital camera lets you quickly download pictures to your Mac or PC, and can also function as a handy web camera. The QC-2185 includes eight megabytes of internal SDRAM memory, with the ability to expand camera memory via a built-in SD (secure digital) storage card slot for easy storage and transfer of your pictures. This unit also includes a built-in auto flash with a three to seven foot range, and comes with ArcSoft PhotoImpression\'s photo editing software which makes it easy for you to edit, crop, adjust and improve all your best pictures to make them even better.\r\n'),(2935,10,492,0,45,'<ul>\r\n<ul class=\"disc\".  \r\n<li>5 megapixel digital camera with a 1600 x 1200 resolution and an f2.8 aperture</li>\r\n<li> Clear and bright 1.1-inch CSTN LCD display makes it easy to frame the perfect picture</li>\r\n<li>USB 1.1 connection compatibility lets you quickly download pictures to your Mac or PC, and function as a web camera</li>\r\n<li>Runs on 3 AAA batteries, and requires; Windows OS 98 or higher, at least 32 MB of RAM and 125 MB of hard disk space, and an available USB port</li>\r\n<li>Weighs 3.4 ounces, measures 3.6 x 2.4 x 1.1 inches (W x H x D), and is backed by a 1-year manufacturer\'s warranty</li>\r\n</ul>\r\n'),(2936,10,104,0,45,'Argus, QC-2185, digital, camera, 2MP'),(2937,10,495,0,46,'750'),(2938,10,494,0,46,'3.8 x 2.1 x 1 inches'),(2939,10,97,0,46,'Olympus continues to innovate with the launch of the Stylus 750 digital camera, a technically sophisticated point-and-shoot camera offering a number of pioneering technologies such as Dual Image Stabilization, Bright Capture Technology, and TruePic Turbo, as well as a powerful 5x optical zoom that tucks away into a streamlined metal, all-weather body design. The camera is distinguished by a number of premium features, including:\r\n\r\n    * An advanced combination of the mechanical CCD-shift Image Stabilization and Digital Image Stabilization work together to ensure the clearest pictures possible in any situation;\r\n    * A 5x optical zoom lens with a newly developed lens element to maintain a small compact size;\r\n    * A 2.5-inch LCD and Bright Capture Technology dramatically improve composition, capture and review of images in low-light situations;\r\n    * Olympus\' exclusive TruePic Turbo Image Processing engine is coupled with a 7.1-megapixel image sensor to produce crisp, high-quality p'),(2940,10,492,0,46,'<ul>\r\n<ul class=\"disc\">\r\n\r\n<li>7.1-megapixel CCD captures enough detail for photo-quality 15 x 20-inch prints<br></li>\r\n<li>5x image-stabilized optical zoom; 2.5-inch LCD display<br></li>\r\n<li>Compact, all-weather body measures 3.8 x 2.1 x 0.96 inches<br></li>\r\n<li>Bright Capture technology; 27 selectable shooting modes; built-in Help guide<br></li>\r\n<li>Stores images on xD Picture Cards; powered by Li-Ion battery (battery and charger included)</li>\r\n</ul>'),(2941,10,104,0,46,'Olympus, stylus, 750, 7MP, digital, camera, zoom'),(2942,10,495,0,47,'A630 '),(2943,10,494,0,47,'4.3 x 2.6 x 1.9 inches '),(2944,10,97,0,47,'Replacing the highly popular PowerShot A620, the PowerShot A630 features a rotating 2.5-inch vari-angle LCD, 4x optical zoom lens, and a vast array of creative shooting modes.<br>\r\n\r\nThe PowerShot A630 packs a vast array of advanced features into a remarkably compact space<br><br>\r\n\r\n'),(2945,10,492,0,47,'<ul>\r\n<ul class=\"disc\">\r\n<li>8-megapixel CCD captures enough detail for photo-quality 16 x 22-inch prints<br></li>\r\n<li>4x optical zoom; 2.5-inch vari-angle LCD display<br></li>\r\n<li>ISO range up to ISO 800 for less blur in low light while hand-holding<br></li>\r\n<li>3:2 guide masks LCD to display 4 x 6-inch print size; 16:9 format option for still images<br></li>\r\n<li>Stores images on SD cards; powered by 4 AA-size batteries</li>\r\n</ul>'),(2946,10,104,0,47,'canon, powershot, A630, digital, camera, optical, zoom'),(2947,10,495,0,48,'C530 '),(2948,10,494,0,48,' 4 x 6 x 9 inches'),(2949,10,97,0,48,'Small on size. Big on value. Kodak\'s newest C-Series digital camera, the C530, sports awesome features--such as 5.0-megapixel CCD resolution, on-camera image cropping, and an on-camera Share button--at a very affordable price.'),(2950,10,492,0,48,'<ul>\r\n<ul class=\"disc\">   \r\n\r\n<li>5.0-megapixel CCD captures enough detail for photo-quality 13 x 17-inch prints<br></li>\r\n<li>1.5-inch LCD display<br></li>\r\n<li>Continuous QVGA video<br></li>\r\n<li>Auto scene mode and three color modes; in-camera cropping<br></li>\r\n<li>Powered by AA size batteries; stores images on SD memory cards (includes 16 MB internal memory)</li>\r\n</ul>'),(2951,10,104,0,48,'kodak, eayshare, c530, 5MP, digital, camera'),(2952,10,495,0,49,'B000KJ43SG'),(2953,10,97,0,49,'Womens Premier Leather Single Layer Narrow Strap - NEW Colors Available - Womens Style - Genuine Top Grain Premier Leather - Rich Color Tones - Straps lined with 2000 lb test nylon - Guaranteed for the Life of the Sole - Non-slip sole - Note: Rainbow is in the process of unveiling a new toe post tag that is much smaller than the original tag.'),(2954,10,492,0,49,'Womens Premier Leather Single Layer Narrow Strap - '),(2955,10,104,0,49,'womens, sandal, leather, anashria, '),(2956,10,495,0,51,'magotto'),(2957,10,507,0,51,'Italy'),(2958,10,509,0,51,'Microfiber'),(2959,10,97,0,51,'The Magento ottoman will impress with its style while it delivers on quality. This piece of living room furniture is built to last with durable solid wood framing, generous padding and plush stain-resistant microfiber upholstery.'),(2960,10,104,0,51,'Ottoman'),(2961,10,495,0,52,'1112'),(2962,10,507,0,52,'Italy'),(2963,10,509,0,52,'Microfiber'),(2964,10,97,0,52,'This Magento chair features a fun, futuristic design, with fluid curves and gentle angles that follow the shape of the body to enhance ultimate relaxation. It combines a hint of nostalgia with the up-to-date sensibility and function of modern chairs. It is in soft, velvety microfiber.'),(2965,10,104,0,52,'Chair'),(2966,10,495,0,53,'1113'),(2967,10,507,0,53,'Italy'),(2968,10,509,0,53,'Microfiber'),(2969,10,97,0,53,'Inspired by the classic camelback sofa, Magento offers comfort and style in a low maintenance package.  For a sleek, simple and stylish piece, look no further than the Magento sofa - or sofabed!'),(2970,10,104,0,53,'Couch'),(2971,10,495,0,54,'RFS'),(2972,10,507,0,54,'Italy'),(2973,10,509,0,54,'Microfiber'),(2974,10,97,0,54,'The perfect furniture set for the living room!  Love red?  You\'ll love these pieces of handmade modern furniture!'),(2975,10,104,0,54,'Magento, Red, Furniture, Set, ottoman, couch, chair'),(2989,10,506,0,39,'Printed on American Apparel Classic style 5495 California Fleece Pull-Over Hoodies.  '),(2990,10,506,0,38,'Printed on American Apparel Classic style 5495 California t-shirts.  '),(2991,10,506,0,37,'Printed on American Apparel Classic style 5495 California cotton T shirst.   '),(2992,10,506,0,36,'We bought these with the intention of making shirts for our family reunion, only to come back the next day to find each and every one of them had been tagged by The Bear.  Oh well -- can\'t argue with art.  Now you can make your grandparents proud by wearing an original piece of graf work to YOUR family reunion!'),(2993,10,506,0,35,'# 6.1 oz. 100% preshrunk heavyweight cotton \r\n# Shoulder-to-shoulder taping\r\n# Double-needle sleeves and bottom hem'),(2994,10,506,0,34,'High fashion and classic good looks converge in this suave slip on from Kenneth Cole. Smooth leather upper in a dress slip on style, with a stitched and covered seam moc-inspired square toe, quarter panel curved overlays and flared tongue'),(2995,10,506,0,33,'Featuring a wide toe box and delivering optimum support, the sporty Golf Flexor golf shoe is a stylish cleat that you\'ll love wearing on and off the links.'),(2996,10,506,0,32,'The Lucero pump from Nine West may just leave him at a loss for words. This flirty pump has a leather upper, a pretty almond-shaped toe with a slight V-cut vamp'),(2997,10,506,0,31,'Nothing will turn his head faster than you wearing the sexy Pryme pump from Steven by Steve Madden. This daring pump has a pretty patent leather upper with light shirring, a double stitch detail surrounding the collar, and a vampy almond shaped toe'),(2998,10,506,0,29,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear'),(2999,10,506,0,28,'Get the competitive edge with the Gateway M285-E. This widescreen Convertible Notebook functions as both a conventional notebook and a tablet.'),(3000,10,506,0,27,'Take a load off your shoulders when you\'re racing for your plane with the sleekly designed and ultra-portable Sony Vaio VGN-TXN27N/B notebook PC.'),(3001,10,506,0,26,'This exclusive edition is another striking symbol of cooperation between Acer and Ferrari -- two progressive companies with proud heritages built on passion, innovation, power and success'),(3002,10,506,0,25,'You\'ve seen improvements in notebook performance before - but never on this scale. The Intel Core Duo powering MacBook Pro is actually two processors built into a single chip.'),(3003,10,506,0,20,'The MM-A900m offers great-looking design with the ability to download a rich selection of content directly to the phone. '),(3004,10,506,0,19,'Under the hood, the 8525 features 128MB of embedded memory and 64MB RAM, running on a 400 MHz Samsung processor. Up front, the 240 x 320 LCD touch-screen supports over 65,000 colors, while the rear of the device houses a 2.0 megapixel camera.'),(3005,10,506,0,18,'The W810i follows a long tradition of beautifully designed and crafted phones from Sony Ericsson. The same candy-bar style that graced the W800 is here.'),(3006,10,506,0,17,'The BlackBerry 8100 Pearl is a departure from the form factor of previous BlackBerry devices. This BlackBerry handset is far more phone-like, and RIM\'s engineers have managed to fit a QWERTY keyboard onto the handset\'s slim frame.'),(3007,10,506,0,16,'The words \"entry level\" no longer mean \"low-end,\" especially when it comes to the Nokia 2610. Offering advanced media and calling features without breaking the bank'),(3008,10,506,0,30,'The ASICS® GEL-Kayano® XII running shoe delivers the ultimate blend of cushioning and support. Biomorphic Fit™ upper offers enhanced upper fit and comfort while decreasing the potential for irritation. '),(3010,10,506,0,41,'Our Akio dresser has a solid hardwood frame.  '),(3011,10,506,0,42,'Our Barcelona platform bed captures the spirit and drama of late 20th century design with a variety of subtle details.'),(3012,10,506,0,44,' Canon EOS Digital Rebel XT SLR adds resolution, speed, extra creative control, and enhanced comfort in the hand to one of the smallest and lightest digital cameras in its class. '),(3013,10,506,0,45,'The Argus QC-2185 Quick Click 5MP digital camera offers all the basic features you need in a compact and stylish digital camera. This unit is easy to use, and is perfect for those who want a completely portable option for taking good pictures, without having to empty their wallet.'),(3014,10,506,0,46,'A technically sophisticated point-and-shoot camera offering a number of pioneering technologies such as Dual Image Stabilization, Bright Capture Technology, and TruePic Turbo, as well as a powerful 5x optical zoom.'),(3015,10,506,0,47,'Replacing the highly popular PowerShot A620, the PowerShot A630 features a rotating 2.5-inch vari-angle LCD, 4x optical zoom lens, and a vast array of creative shooting modes.'),(3016,10,506,0,48,'Small on size. Big on value. Kodak\'s newest C-Series digital camera, the C530, sports awesome features'),(3017,10,506,0,49,'Womens Premier Leather Single Layer Narrow Strap - NEW Colors Available - Womens Style - Genuine Top Grain Premier Leather - Rich Color Tones - Straps lined with 2000 lb test nylon - Guaranteed for the Life of the Sole - Non-slip sole - Note: Rainbow is in the process of unveiling a new toe post tag that is much smaller than the original tag.'),(3018,10,506,0,51,'With durable solid wood framing, generous padding and plush stain-resistant microfiber upholstery.'),(3019,10,506,0,52,'Combining a hint of nostalgia with the up-to-date sensibility and function of modern chairs. It is in soft, velvety microfiber.'),(3020,10,506,0,53,'For a sleek, simple and stylish piece, look no further than the Magento sofa - or sofabed!'),(3021,10,506,0,54,'Love red?  You\'ll love these pieces of handmade modern furniture!'),(3034,10,495,0,74,'B000KJ43SG'),(3035,10,97,0,74,'Womens Premier Leather Single Layer Narrow Strap - NEW Colors Available - Womens Style - Genuine Top Grain Premier Leather - Rich Color Tones - Straps lined with 2000 lb test nylon - Guaranteed for the Life of the Sole - Non-slip sole - Note: Rainbow is in the process of unveiling a new toe post tag that is much smaller than the original tag.'),(3036,10,492,0,74,'Womens Premier Leather Single Layer Narrow Strap - '),(3037,10,104,0,74,'womens, sandal, leather, anashria, '),(3038,10,506,0,74,'Womens Premier Leather Single Layer Narrow Strap - NEW Colors Available - Womens Style - Genuine Top Grain Premier Leather - Rich Color Tones - Straps lined with 2000 lb test nylon - Guaranteed for the Life of the Sole - Non-slip sole - Note: Rainbow is in the process of unveiling a new toe post tag that is much smaller than the original tag.'),(3039,10,495,0,75,'B000KJ43SG'),(3040,10,97,0,75,'Womens Premier Leather Single Layer Narrow Strap - NEW Colors Available - Womens Style - Genuine Top Grain Premier Leather - Rich Color Tones - Straps lined with 2000 lb test nylon - Guaranteed for the Life of the Sole - Non-slip sole - Note: Rainbow is in the process of unveiling a new toe post tag that is much smaller than the original tag.'),(3041,10,492,0,75,'Womens Premier Leather Single Layer Narrow Strap - '),(3042,10,104,0,75,'womens, sandal, leather, anashria, '),(3043,10,506,0,75,'Womens Premier Leather Single Layer Narrow Strap - NEW Colors Available - Womens Style - Genuine Top Grain Premier Leather - Rich Color Tones - Straps lined with 2000 lb test nylon - Guaranteed for the Life of the Sole - Non-slip sole - Note: Rainbow is in the process of unveiling a new toe post tag that is much smaller than the original tag.'),(3044,10,495,0,79,'B000KJ43SG'),(3045,10,97,0,79,'Womens Premier Leather Single Layer Narrow Strap - NEW Colors Available - Womens Style - Genuine Top Grain Premier Leather - Rich Color Tones - Straps lined with 2000 lb test nylon - Guaranteed for the Life of the Sole - Non-slip sole - Note: Rainbow is in the process of unveiling a new toe post tag that is much smaller than the original tag.'),(3046,10,492,0,79,'Womens Premier Leather Single Layer Narrow Strap - '),(3047,10,104,0,79,'womens, sandal, leather, anashria, '),(3048,10,506,0,79,'Womens Premier Leather Single Layer Narrow Strap - NEW Colors Available - Womens Style - Genuine Top Grain Premier Leather - Rich Color Tones - Straps lined with 2000 lb test nylon - Guaranteed for the Life of the Sole - Non-slip sole - Note: Rainbow is in the process of unveiling a new toe post tag that is much smaller than the original tag.'),(3049,10,495,0,80,'B000KJ43SG'),(3050,10,97,0,80,'Womens Premier Leather Single Layer Narrow Strap - NEW Colors Available - Womens Style - Genuine Top Grain Premier Leather - Rich Color Tones - Straps lined with 2000 lb test nylon - Guaranteed for the Life of the Sole - Non-slip sole - Note: Rainbow is in the process of unveiling a new toe post tag that is much smaller than the original tag.'),(3051,10,492,0,80,'Womens Premier Leather Single Layer Narrow Strap - '),(3052,10,104,0,80,'womens, sandal, leather, anashria, '),(3053,10,506,0,80,'Womens Premier Leather Single Layer Narrow Strap - NEW Colors Available - Womens Style - Genuine Top Grain Premier Leather - Rich Color Tones - Straps lined with 2000 lb test nylon - Guaranteed for the Life of the Sole - Non-slip sole - Note: Rainbow is in the process of unveiling a new toe post tag that is much smaller than the original tag.'),(3054,10,495,0,81,'B000KJ43SG'),(3055,10,97,0,81,'Womens Premier Leather Single Layer Narrow Strap - NEW Colors Available - Womens Style - Genuine Top Grain Premier Leather - Rich Color Tones - Straps lined with 2000 lb test nylon - Guaranteed for the Life of the Sole - Non-slip sole - Note: Rainbow is in the process of unveiling a new toe post tag that is much smaller than the original tag.'),(3056,10,492,0,81,'Womens Premier Leather Single Layer Narrow Strap - '),(3057,10,104,0,81,'womens, sandal, leather, anashria, '),(3058,10,506,0,81,'Womens Premier Leather Single Layer Narrow Strap - NEW Colors Available - Womens Style - Genuine Top Grain Premier Leather - Rich Color Tones - Straps lined with 2000 lb test nylon - Guaranteed for the Life of the Sole - Non-slip sole - Note: Rainbow is in the process of unveiling a new toe post tag that is much smaller than the original tag.'),(3059,10,495,0,82,'B000KJ43SG'),(3060,10,97,0,82,'Womens Premier Leather Single Layer Narrow Strap - NEW Colors Available - Womens Style - Genuine Top Grain Premier Leather - Rich Color Tones - Straps lined with 2000 lb test nylon - Guaranteed for the Life of the Sole - Non-slip sole - Note: Rainbow is in the process of unveiling a new toe post tag that is much smaller than the original tag.'),(3061,10,492,0,82,'Womens Premier Leather Single Layer Narrow Strap - '),(3062,10,104,0,82,'womens, sandal, leather, anashria, '),(3063,10,506,0,82,'Womens Premier Leather Single Layer Narrow Strap - NEW Colors Available - Womens Style - Genuine Top Grain Premier Leather - Rich Color Tones - Straps lined with 2000 lb test nylon - Guaranteed for the Life of the Sole - Non-slip sole - Note: Rainbow is in the process of unveiling a new toe post tag that is much smaller than the original tag.'),(3064,10,495,0,83,'B000JI2N0I'),(3065,10,104,0,83,'cn, clogs, outdoor, shoes, sandals, comfortable'),(3066,10,506,0,83,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear'),(3067,10,97,0,83,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear. Wear them either at the beach, in your garden, at the mall or just about anywhere you would want to be comfortable.'),(3068,10,492,0,83,'<ul>\r\n<ul class=\"disc\">\r\n<li>Made of EVA foam<br></li>\r\n<li>Heel strap keeps shoe on foot<br></li>\r\n<li>Non-marking, slip-resistant outsole<br></li>\r\n<li> Weigh just 6-10 ounces<br></li>\r\n'),(3069,10,495,0,84,'B000JI2N0I'),(3070,10,97,0,84,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear. Wear them either at the beach, in your garden, at the mall or just about anywhere you would want to be comfortable.'),(3071,10,492,0,84,'    * Made of EVA foam\r\n    * Heel strap keeps shoe on foot\r\n    * Non-marking, slip-resistant outsole\r\n    * Weigh just 6-10 ounces\r\n\r\n'),(3072,10,104,0,84,'CN Clogs Beach/Garden Clog '),(3073,10,506,0,84,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear'),(3074,10,495,0,85,'B000JI2N0I'),(3075,10,97,0,85,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear. Wear them either at the beach, in your garden, at the mall or just about anywhere you would want to be comfortable.'),(3076,10,492,0,85,'    * Made of EVA foam\r\n    * Heel strap keeps shoe on foot\r\n    * Non-marking, slip-resistant outsole\r\n    * Weigh just 6-10 ounces\r\n\r\n'),(3077,10,104,0,85,'CN Clogs Beach/Garden Clog '),(3078,10,506,0,85,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear'),(3079,10,495,0,86,'B000JI2N0I'),(3080,10,97,0,86,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear. Wear them either at the beach, in your garden, at the mall or just about anywhere you would want to be comfortable.'),(3081,10,492,0,86,'    * Made of EVA foam\r\n    * Heel strap keeps shoe on foot\r\n    * Non-marking, slip-resistant outsole\r\n    * Weigh just 6-10 ounces\r\n\r\n'),(3082,10,104,0,86,'CN Clogs Beach/Garden Clog '),(3083,10,506,0,86,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear'),(3084,10,495,0,87,'B000JI2N0I'),(3085,10,97,0,87,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear. Wear them either at the beach, in your garden, at the mall or just about anywhere you would want to be comfortable.'),(3086,10,492,0,87,'    * Made of EVA foam\r\n    * Heel strap keeps shoe on foot\r\n    * Non-marking, slip-resistant outsole\r\n    * Weigh just 6-10 ounces\r\n\r\n'),(3087,10,104,0,87,'CN Clogs Beach/Garden Clog '),(3088,10,506,0,87,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear'),(3089,10,495,0,88,'B000JI2N0I'),(3090,10,97,0,88,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear. Wear them either at the beach, in your garden, at the mall or just about anywhere you would want to be comfortable.'),(3091,10,492,0,88,'    * Made of EVA foam\r\n    * Heel strap keeps shoe on foot\r\n    * Non-marking, slip-resistant outsole\r\n    * Weigh just 6-10 ounces\r\n\r\n'),(3092,10,104,0,88,'CN Clogs Beach/Garden Clog '),(3093,10,506,0,88,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear'),(3094,10,495,0,89,'B000JI2N0I'),(3095,10,97,0,89,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear. Wear them either at the beach, in your garden, at the mall or just about anywhere you would want to be comfortable.'),(3096,10,492,0,89,'    * Made of EVA foam\r\n    * Heel strap keeps shoe on foot\r\n    * Non-marking, slip-resistant outsole\r\n    * Weigh just 6-10 ounces\r\n\r\n'),(3097,10,104,0,89,'CN Clogs Beach/Garden Clog '),(3098,10,506,0,89,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear'),(3099,10,495,0,90,'B000JI2N0I'),(3100,10,97,0,90,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear. Wear them either at the beach, in your garden, at the mall or just about anywhere you would want to be comfortable.'),(3101,10,492,0,90,'    * Made of EVA foam\r\n    * Heel strap keeps shoe on foot\r\n    * Non-marking, slip-resistant outsole\r\n    * Weigh just 6-10 ounces\r\n\r\n'),(3102,10,104,0,90,'CN Clogs Beach/Garden Clog '),(3103,10,506,0,90,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear'),(3104,10,495,0,91,'B000JI2N0I'),(3105,10,97,0,91,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear. Wear them either at the beach, in your garden, at the mall or just about anywhere you would want to be comfortable.'),(3106,10,492,0,91,'    * Made of EVA foam\r\n    * Heel strap keeps shoe on foot\r\n    * Non-marking, slip-resistant outsole\r\n    * Weigh just 6-10 ounces\r\n\r\n'),(3107,10,104,0,91,'CN Clogs Beach/Garden Clog '),(3108,10,506,0,91,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear'),(3109,10,495,0,92,'B000JI2N0I'),(3110,10,97,0,92,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear. Wear them either at the beach, in your garden, at the mall or just about anywhere you would want to be comfortable.'),(3111,10,492,0,92,'    * Made of EVA foam\r\n    * Heel strap keeps shoe on foot\r\n    * Non-marking, slip-resistant outsole\r\n    * Weigh just 6-10 ounces\r\n\r\n'),(3112,10,104,0,92,'CN Clogs Beach/Garden Clog '),(3113,10,506,0,92,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear'),(3114,10,495,0,93,'B000CP1M00'),(3115,10,104,0,93,'asics, gel, kayano'),(3116,10,506,0,93,'The ASICS® GEL-Kayano® XII running shoe delivers the ultimate blend of cushioning and support. '),(3117,10,97,0,93,'Biomorphic Fit™ upper offers enhanced upper fit and comfort while decreasing the potential for irritation. Solyte midsole material is lighter than standard EVA and SpEVA® combined with improved cushioning and durability. Impact Guidance System (I.G.S.®) uses linked componentry to encourage optimal gait while allowing for natural foot movement from heel strike to toe off. DuoMax® support system helps ensure that the shoe maintains proper support for the foot during the critical transition from heel strike to toe off. Space Trusstic® System creates a pocket between the Trusstic® System device and the midsole, allowing for greater midsole deformation and more efficient foot function. GEL® Cushioning System provides maximum rearfoot and forefoot shock attenuation. Wt. 12.6 oz.'),(3118,10,492,0,93,'<ul>\r\n<ul class=\"disc\">\r\n<li> I.G.S.: Allows for natural foot movement from heel strike to toe-off<br></li>\r\n<li>DuoMax Support System: Maintains proper support for the foot during the critical transition from heel strike to toe-off<br></li>\r\n<li> Space Trusstic System: Allows for greater midsole deformation and more efficient foot function<br></li>\r\n<li>GEL Cushioning System: Provides maximum rearfoot/forefoot shock attenuation<br></li>\r\n<li>Biomorphic Fit Upper: Provides enhanced upper fit and comfort while limiting irritation</li>\r\n\r\n</ul>'),(3119,10,495,0,94,'B000CP1M00'),(3120,10,97,0,94,'The ASICS® GEL-Kayano® XII running shoe delivers the ultimate blend of cushioning and support. Biomorphic Fit™ upper offers enhanced upper fit and comfort while decreasing the potential for irritation. Solyte midsole material is lighter than standard EVA and SpEVA® combined with improved cushioning and durability. Impact Guidance System (I.G.S.®) uses linked componentry to encourage optimal gait while allowing for natural foot movement from heel strike to toe off. DuoMax® support system helps ensure that the shoe maintains proper support for the foot during the critical transition from heel strike to toe off. Space Trusstic® System creates a pocket between the Trusstic® System device and the midsole, allowing for greater midsole deformation and more efficient foot function. GEL® Cushioning System provides maximum rearfoot and forefoot shock attenuation. Wt. 12.6 oz.'),(3121,10,492,0,94,'# I.G.S.?: Allows for natural foot movement from heel strike to toe-off\r\n# DuoMax? Support System: Maintains proper support for the foot during the critical transition from heel strike to toe-off\r\n# Space Trusstic System?: Allows for greater midsole deformation and more efficient foot function\r\n# GEL? Cushioning System: Provides maximum rearfoot/forefoot shock attenuation\r\n# Biomorphic Fit Upper: Provides enhanced upper fit and comfort while limiting irritation'),(3122,10,104,0,94,'ASICS® Men\'s GEL-Kayano® XII '),(3123,10,506,0,94,'The ASICS® GEL-Kayano® XII running shoe delivers the ultimate blend of cushioning and support. Biomorphic Fit™ upper offers enhanced upper fit and comfort while decreasing the potential for irritation. '),(3124,10,495,0,95,'B000CP1M00'),(3125,10,97,0,95,'The ASICS® GEL-Kayano® XII running shoe delivers the ultimate blend of cushioning and support. Biomorphic Fit™ upper offers enhanced upper fit and comfort while decreasing the potential for irritation. Solyte midsole material is lighter than standard EVA and SpEVA® combined with improved cushioning and durability. Impact Guidance System (I.G.S.®) uses linked componentry to encourage optimal gait while allowing for natural foot movement from heel strike to toe off. DuoMax® support system helps ensure that the shoe maintains proper support for the foot during the critical transition from heel strike to toe off. Space Trusstic® System creates a pocket between the Trusstic® System device and the midsole, allowing for greater midsole deformation and more efficient foot function. GEL® Cushioning System provides maximum rearfoot and forefoot shock attenuation. Wt. 12.6 oz.'),(3126,10,492,0,95,'# I.G.S.?: Allows for natural foot movement from heel strike to toe-off\r\n# DuoMax? Support System: Maintains proper support for the foot during the critical transition from heel strike to toe-off\r\n# Space Trusstic System?: Allows for greater midsole deformation and more efficient foot function\r\n# GEL? Cushioning System: Provides maximum rearfoot/forefoot shock attenuation\r\n# Biomorphic Fit Upper: Provides enhanced upper fit and comfort while limiting irritation'),(3127,10,104,0,95,'ASICS® Men\'s GEL-Kayano® XII '),(3128,10,506,0,95,'The ASICS® GEL-Kayano® XII running shoe delivers the ultimate blend of cushioning and support. Biomorphic Fit™ upper offers enhanced upper fit and comfort while decreasing the potential for irritation. '),(3129,10,495,0,96,'B000CP1M00'),(3130,10,97,0,96,'The ASICS® GEL-Kayano® XII running shoe delivers the ultimate blend of cushioning and support. Biomorphic Fit™ upper offers enhanced upper fit and comfort while decreasing the potential for irritation. Solyte midsole material is lighter than standard EVA and SpEVA® combined with improved cushioning and durability. Impact Guidance System (I.G.S.®) uses linked componentry to encourage optimal gait while allowing for natural foot movement from heel strike to toe off. DuoMax® support system helps ensure that the shoe maintains proper support for the foot during the critical transition from heel strike to toe off. Space Trusstic® System creates a pocket between the Trusstic® System device and the midsole, allowing for greater midsole deformation and more efficient foot function. GEL® Cushioning System provides maximum rearfoot and forefoot shock attenuation. Wt. 12.6 oz.'),(3131,10,492,0,96,'# I.G.S.?: Allows for natural foot movement from heel strike to toe-off\r\n# DuoMax? Support System: Maintains proper support for the foot during the critical transition from heel strike to toe-off\r\n# Space Trusstic System?: Allows for greater midsole deformation and more efficient foot function\r\n# GEL? Cushioning System: Provides maximum rearfoot/forefoot shock attenuation\r\n# Biomorphic Fit Upper: Provides enhanced upper fit and comfort while limiting irritation'),(3132,10,104,0,96,'ASICS® Men\'s GEL-Kayano® XII '),(3133,10,506,0,96,'The ASICS® GEL-Kayano® XII running shoe delivers the ultimate blend of cushioning and support. Biomorphic Fit™ upper offers enhanced upper fit and comfort while decreasing the potential for irritation. '),(3134,10,495,0,97,'B000CP1M00'),(3135,10,97,0,97,'The ASICS® GEL-Kayano® XII running shoe delivers the ultimate blend of cushioning and support. Biomorphic Fit™ upper offers enhanced upper fit and comfort while decreasing the potential for irritation. Solyte midsole material is lighter than standard EVA and SpEVA® combined with improved cushioning and durability. Impact Guidance System (I.G.S.®) uses linked componentry to encourage optimal gait while allowing for natural foot movement from heel strike to toe off. DuoMax® support system helps ensure that the shoe maintains proper support for the foot during the critical transition from heel strike to toe off. Space Trusstic® System creates a pocket between the Trusstic® System device and the midsole, allowing for greater midsole deformation and more efficient foot function. GEL® Cushioning System provides maximum rearfoot and forefoot shock attenuation. Wt. 12.6 oz.'),(3136,10,492,0,97,'# I.G.S.?: Allows for natural foot movement from heel strike to toe-off\r\n# DuoMax? Support System: Maintains proper support for the foot during the critical transition from heel strike to toe-off\r\n# Space Trusstic System?: Allows for greater midsole deformation and more efficient foot function\r\n# GEL? Cushioning System: Provides maximum rearfoot/forefoot shock attenuation\r\n# Biomorphic Fit Upper: Provides enhanced upper fit and comfort while limiting irritation'),(3137,10,104,0,97,'ASICS® Men\'s GEL-Kayano® XII '),(3138,10,506,0,97,'The ASICS® GEL-Kayano® XII running shoe delivers the ultimate blend of cushioning and support. Biomorphic Fit™ upper offers enhanced upper fit and comfort while decreasing the potential for irritation. '),(3139,10,495,0,98,'B000IKC6AY'),(3140,10,104,0,98,'Kenneth Cole, New York, Men\'s, Con-verge, Slip-on'),(3141,10,506,0,98,'Smooth leather upper in a dress slip on style, with a stitched and covered seam moc-inspired square toe.'),(3142,10,97,0,98,'High fashion and classic good looks converge in this suave slip on from Kenneth Cole. Smooth leather upper in a dress slip on style, with a stitched and covered seam moc-inspired square toe, quarter panel curved overlays and flared tongue with side elastic panels for a comfortable, secure fit. Smooth leather lining, cushioned leather topped insole. Dress midsole with a beveled edge, 1 inch capped dress heel. Flat traction outsole.'),(3143,10,492,0,98,'The handsome style of the Con-Verge slip-on from Kenneth Cole New York is larger than life. This sharp shoe has a semi-polished smooth leather upper, a squared off stitched apron toe, and dual-goring for easy on/off accessibility. It also features soft leather linings, a cushioned insole, and a paneled rubber outsole for a sturdy step. The Con-Verge is a perfect companion to your business and special occasion wardrobes.'),(3144,10,495,0,99,'B000IKC6AY'),(3145,10,97,0,99,'High fashion and classic good looks converge in this suave slip on from Kenneth Cole. Smooth leather upper in a dress slip on style, with a stitched and covered seam moc-inspired square toe, quarter panel curved overlays and flared tongue with side elastic panels for a comfortable, secure fit. Smooth leather lining, cushioned leather topped insole. Dress midsole with a beveled edge, 1 inch capped dress heel. Flat traction outsole.'),(3146,10,492,0,99,'The handsome style of the Con-Verge slip-on from Kenneth Cole New York is larger than life. This sharp shoe has a semi-polished smooth leather upper, a squared off stitched apron toe, and dual-goring for easy on/off accessibility. It also features soft leather linings, a cushioned insole, and a paneled rubber outsole for a sturdy step. The Con-Verge is a perfect companion to your business and special occasion wardrobes.'),(3147,10,104,0,99,'Kenneth Cole New York Men\'s Con-verge Slip-on'),(3148,10,506,0,99,'High fashion and classic good looks converge in this suave slip on from Kenneth Cole. Smooth leather upper in a dress slip on style, with a stitched and covered seam moc-inspired square toe, quarter panel curved overlays and flared tongue'),(3149,10,495,0,100,'B000IKC6AY'),(3150,10,97,0,100,'High fashion and classic good looks converge in this suave slip on from Kenneth Cole. Smooth leather upper in a dress slip on style, with a stitched and covered seam moc-inspired square toe, quarter panel curved overlays and flared tongue with side elastic panels for a comfortable, secure fit. Smooth leather lining, cushioned leather topped insole. Dress midsole with a beveled edge, 1 inch capped dress heel. Flat traction outsole.'),(3151,10,492,0,100,'The handsome style of the Con-Verge slip-on from Kenneth Cole New York is larger than life. This sharp shoe has a semi-polished smooth leather upper, a squared off stitched apron toe, and dual-goring for easy on/off accessibility. It also features soft leather linings, a cushioned insole, and a paneled rubber outsole for a sturdy step. The Con-Verge is a perfect companion to your business and special occasion wardrobes.'),(3152,10,104,0,100,'Kenneth Cole New York Men\'s Con-verge Slip-on'),(3153,10,506,0,100,'High fashion and classic good looks converge in this suave slip on from Kenneth Cole. Smooth leather upper in a dress slip on style, with a stitched and covered seam moc-inspired square toe, quarter panel curved overlays and flared tongue'),(3154,10,495,0,101,'B000IKC6AY'),(3155,10,97,0,101,'High fashion and classic good looks converge in this suave slip on from Kenneth Cole. Smooth leather upper in a dress slip on style, with a stitched and covered seam moc-inspired square toe, quarter panel curved overlays and flared tongue with side elastic panels for a comfortable, secure fit. Smooth leather lining, cushioned leather topped insole. Dress midsole with a beveled edge, 1 inch capped dress heel. Flat traction outsole.'),(3156,10,492,0,101,'The handsome style of the Con-Verge slip-on from Kenneth Cole New York is larger than life. This sharp shoe has a semi-polished smooth leather upper, a squared off stitched apron toe, and dual-goring for easy on/off accessibility. It also features soft leather linings, a cushioned insole, and a paneled rubber outsole for a sturdy step. The Con-Verge is a perfect companion to your business and special occasion wardrobes.'),(3157,10,104,0,101,'Kenneth Cole New York Men\'s Con-verge Slip-on'),(3158,10,506,0,101,'High fashion and classic good looks converge in this suave slip on from Kenneth Cole. Smooth leather upper in a dress slip on style, with a stitched and covered seam moc-inspired square toe, quarter panel curved overlays and flared tongue'),(3159,10,495,0,102,'B000IKC6AY'),(3160,10,97,0,102,'High fashion and classic good looks converge in this suave slip on from Kenneth Cole. Smooth leather upper in a dress slip on style, with a stitched and covered seam moc-inspired square toe, quarter panel curved overlays and flared tongue with side elastic panels for a comfortable, secure fit. Smooth leather lining, cushioned leather topped insole. Dress midsole with a beveled edge, 1 inch capped dress heel. Flat traction outsole.'),(3161,10,492,0,102,'The handsome style of the Con-Verge slip-on from Kenneth Cole New York is larger than life. This sharp shoe has a semi-polished smooth leather upper, a squared off stitched apron toe, and dual-goring for easy on/off accessibility. It also features soft leather linings, a cushioned insole, and a paneled rubber outsole for a sturdy step. The Con-Verge is a perfect companion to your business and special occasion wardrobes.'),(3162,10,104,0,102,'Kenneth Cole New York Men\'s Con-verge Slip-on'),(3163,10,506,0,102,'High fashion and classic good looks converge in this suave slip on from Kenneth Cole. Smooth leather upper in a dress slip on style, with a stitched and covered seam moc-inspired square toe, quarter panel curved overlays and flared tongue'),(3164,10,495,0,103,'B000NOGIKY'),(3165,10,104,0,103,'Steven by Steve Madden Pryme Pump'),(3166,10,506,0,103,' This daring pump has a pretty patent leather upper with light shirring, a double stitch detail surrounding the collar, and a vampy almond shaped toe'),(3167,10,97,0,103,'Nothing will turn his head faster than you wearing the sexy Pryme pump from Steven by Steve Madden. This daring pump has a pretty patent leather upper with light shirring, a double stitch detail surrounding the collar, and a vampy almond shaped toe. It also features smooth linings, a fully cushioned insole, a sexy covered stiletto heel, and a lightly textured dress leather outsole. Any way you wear the Pryme, you\'re certain to catch a lot of attention.'),(3168,10,492,0,103,'A prime example of chic style. Patent leather upper. Round toe. 3-1/2 inch covered heel. Flex leather sole. Imported. '),(3169,10,495,0,104,'B000NOGIKY'),(3170,10,97,0,104,'Nothing will turn his head faster than you wearing the sexy Pryme pump from Steven by Steve Madden. This daring pump has a pretty patent leather upper with light shirring, a double stitch detail surrounding the collar, and a vampy almond shaped toe. It also features smooth linings, a fully cushioned insole, a sexy covered stiletto heel, and a lightly textured dress leather outsole. Any way you wear the Pryme, you\'re certain to catch a lot of attention.'),(3171,10,492,0,104,'A prime example of chic style. Patent leather upper. Round toe. 3-1/2 inch covered heel. Flex leather sole. Imported. '),(3172,10,104,0,104,'Steven by Steve Madden Pryme Pump'),(3173,10,506,0,104,'Nothing will turn his head faster than you wearing the sexy Pryme pump from Steven by Steve Madden. This daring pump has a pretty patent leather upper with light shirring, a double stitch detail surrounding the collar, and a vampy almond shaped toe'),(3174,10,495,0,105,'B000NOGIKY'),(3175,10,97,0,105,'Nothing will turn his head faster than you wearing the sexy Pryme pump from Steven by Steve Madden. This daring pump has a pretty patent leather upper with light shirring, a double stitch detail surrounding the collar, and a vampy almond shaped toe. It also features smooth linings, a fully cushioned insole, a sexy covered stiletto heel, and a lightly textured dress leather outsole. Any way you wear the Pryme, you\'re certain to catch a lot of attention.'),(3176,10,492,0,105,'A prime example of chic style. Patent leather upper. Round toe. 3-1/2 inch covered heel. Flex leather sole. Imported. '),(3177,10,104,0,105,'Steven by Steve Madden Pryme Pump'),(3178,10,506,0,105,'Nothing will turn his head faster than you wearing the sexy Pryme pump from Steven by Steve Madden. This daring pump has a pretty patent leather upper with light shirring, a double stitch detail surrounding the collar, and a vampy almond shaped toe'),(3179,10,495,0,106,'B000NOGIKY'),(3180,10,97,0,106,'Nothing will turn his head faster than you wearing the sexy Pryme pump from Steven by Steve Madden. This daring pump has a pretty patent leather upper with light shirring, a double stitch detail surrounding the collar, and a vampy almond shaped toe. It also features smooth linings, a fully cushioned insole, a sexy covered stiletto heel, and a lightly textured dress leather outsole. Any way you wear the Pryme, you\'re certain to catch a lot of attention.'),(3181,10,492,0,106,'A prime example of chic style. Patent leather upper. Round toe. 3-1/2 inch covered heel. Flex leather sole. Imported. '),(3182,10,104,0,106,'Steven by Steve Madden Pryme Pump'),(3183,10,506,0,106,'Nothing will turn his head faster than you wearing the sexy Pryme pump from Steven by Steve Madden. This daring pump has a pretty patent leather upper with light shirring, a double stitch detail surrounding the collar, and a vampy almond shaped toe'),(3184,10,495,0,107,'B000NOGIKY'),(3185,10,97,0,107,'Nothing will turn his head faster than you wearing the sexy Pryme pump from Steven by Steve Madden. This daring pump has a pretty patent leather upper with light shirring, a double stitch detail surrounding the collar, and a vampy almond shaped toe. It also features smooth linings, a fully cushioned insole, a sexy covered stiletto heel, and a lightly textured dress leather outsole. Any way you wear the Pryme, you\'re certain to catch a lot of attention.'),(3186,10,492,0,107,'A prime example of chic style. Patent leather upper. Round toe. 3-1/2 inch covered heel. Flex leather sole. Imported. '),(3187,10,104,0,107,'Steven by Steve Madden Pryme Pump'),(3188,10,506,0,107,'Nothing will turn his head faster than you wearing the sexy Pryme pump from Steven by Steve Madden. This daring pump has a pretty patent leather upper with light shirring, a double stitch detail surrounding the collar, and a vampy almond shaped toe'),(3189,10,495,0,108,'B000LJQVF8'),(3190,10,104,0,108,'Nine West, Women, Lucero, Pump'),(3191,10,506,0,108,'This flirty pump has a leather upper, a pretty almond-shaped toe with a slight V-cut vamp'),(3192,10,97,0,108,'The Lucero pump from Nine West may just leave him at a loss for words. This flirty pump has a leather upper, a pretty almond-shaped toe with a slight V-cut vamp, leather linings, and a cushioned insole for long-wearing comfort. The stiletto heel radiates a subtle hint of sensuality, so sass up your jean and t-shirt look or nighttime attire with this hot pump and you\'ll be absolutely unforgettable.'),(3193,10,492,0,108,'The perfect pump will suit any ensemble. Leather upper. 3-3/4 inch stacked heel. Man-made sole. Imported. '),(3194,10,495,0,109,'B000LJQVF8'),(3195,10,97,0,109,'The Lucero pump from Nine West may just leave him at a loss for words. This flirty pump has a leather upper, a pretty almond-shaped toe with a slight V-cut vamp, leather linings, and a cushioned insole for long-wearing comfort. The stiletto heel radiates a subtle hint of sensuality, so sass up your jean and t-shirt look or nighttime attire with this hot pump and you\'ll be absolutely unforgettable.'),(3196,10,492,0,109,'The perfect pump will suit any ensemble. Leather upper. 3-3/4 inch stacked heel. Man-made sole. Imported. '),(3197,10,104,0,109,'Nine West Women\'s Lucero Pump '),(3198,10,506,0,109,'The Lucero pump from Nine West may just leave him at a loss for words. This flirty pump has a leather upper, a pretty almond-shaped toe with a slight V-cut vamp'),(3199,10,495,0,110,'B000LJQVF8'),(3200,10,97,0,110,'The Lucero pump from Nine West may just leave him at a loss for words. This flirty pump has a leather upper, a pretty almond-shaped toe with a slight V-cut vamp, leather linings, and a cushioned insole for long-wearing comfort. The stiletto heel radiates a subtle hint of sensuality, so sass up your jean and t-shirt look or nighttime attire with this hot pump and you\'ll be absolutely unforgettable.'),(3201,10,492,0,110,'The perfect pump will suit any ensemble. Leather upper. 3-3/4 inch stacked heel. Man-made sole. Imported. '),(3202,10,104,0,110,'Nine West Women\'s Lucero Pump '),(3203,10,506,0,110,'The Lucero pump from Nine West may just leave him at a loss for words. This flirty pump has a leather upper, a pretty almond-shaped toe with a slight V-cut vamp'),(3204,10,495,0,111,'B000LJQVF8'),(3205,10,97,0,111,'The Lucero pump from Nine West may just leave him at a loss for words. This flirty pump has a leather upper, a pretty almond-shaped toe with a slight V-cut vamp, leather linings, and a cushioned insole for long-wearing comfort. The stiletto heel radiates a subtle hint of sensuality, so sass up your jean and t-shirt look or nighttime attire with this hot pump and you\'ll be absolutely unforgettable.'),(3206,10,492,0,111,'The perfect pump will suit any ensemble. Leather upper. 3-3/4 inch stacked heel. Man-made sole. Imported. '),(3207,10,104,0,111,'Nine West Women\'s Lucero Pump '),(3208,10,506,0,111,'The Lucero pump from Nine West may just leave him at a loss for words. This flirty pump has a leather upper, a pretty almond-shaped toe with a slight V-cut vamp'),(3209,10,495,0,112,'B000NPOA1M'),(3210,10,104,0,112,'ECCO, Womens, Golf, Flexor, Shoe'),(3211,10,506,0,112,'With a wide toe box and delivering optimum support, the sporty Golf Flexor golf shoe is a stylish cleat that you\'ll love wearing on and off the links.'),(3212,10,97,0,112,'Featuring a wide toe box and delivering optimum support, the sporty Golf Flexor golf shoe is a stylish cleat that you\'ll love wearing on and off the links. The contrasting embossed snakeskin panels attract interest, while the laid back lace-up style keeps things simple. And thanks to the one-year waterproof guarantee, you can trust these shoes to keep you in the game, even when conditions are less than perfect.'),(3213,10,492,0,112,'<ul>\r\n<ul class=\"disc\">\r\n<li>Breathable mesh fabric lining<br></li>\r\n<li>Cushioned Comfort Fibre System(R) <br></li>\r\n<li>Moisture absorbent<br></li>\r\n<li>Anti-bacterial insole<br></li>\r\n</ul>'),(3214,10,495,0,113,'B000NPOA1M'),(3215,10,97,0,113,'Featuring a wide toe box and delivering optimum support, the sporty Golf Flexor golf shoe is a stylish cleat that you\'ll love wearing on and off the links. The contrasting embossed snakeskin panels attract interest, while the laid back lace-up style keeps things simple. And thanks to the one-year waterproof guarantee, you can trust these shoes to keep you in the game, even when conditions are less than perfect.'),(3216,10,492,0,113,'Featuring a wide toe box and delivering optimum support, the sporty Golf Flexor golf shoe is a stylish cleat that you\'ll love wearing on and off the links. The contrasting embossed snakeskin panels attract interest, while the laid back lace-up style keeps things simple. And thanks to the one-year waterproof guarantee, you can trust these shoes to keep you in the game, even when conditions are less than perfect.'),(3217,10,104,0,113,'ECCO Womens Golf Flexor Golf Shoe'),(3218,10,506,0,113,'Featuring a wide toe box and delivering optimum support, the sporty Golf Flexor golf shoe is a stylish cleat that you\'ll love wearing on and off the links.'),(3219,10,495,0,114,'B000NPOA1M'),(3220,10,97,0,114,'Featuring a wide toe box and delivering optimum support, the sporty Golf Flexor golf shoe is a stylish cleat that you\'ll love wearing on and off the links. The contrasting embossed snakeskin panels attract interest, while the laid back lace-up style keeps things simple. And thanks to the one-year waterproof guarantee, you can trust these shoes to keep you in the game, even when conditions are less than perfect.'),(3221,10,492,0,114,'Featuring a wide toe box and delivering optimum support, the sporty Golf Flexor golf shoe is a stylish cleat that you\'ll love wearing on and off the links. The contrasting embossed snakeskin panels attract interest, while the laid back lace-up style keeps things simple. And thanks to the one-year waterproof guarantee, you can trust these shoes to keep you in the game, even when conditions are less than perfect.'),(3222,10,104,0,114,'ECCO Womens Golf Flexor Golf Shoe'),(3223,10,506,0,114,'Featuring a wide toe box and delivering optimum support, the sporty Golf Flexor golf shoe is a stylish cleat that you\'ll love wearing on and off the links.'),(3224,10,495,0,115,'B000NPOA1M'),(3225,10,97,0,115,'Featuring a wide toe box and delivering optimum support, the sporty Golf Flexor golf shoe is a stylish cleat that you\'ll love wearing on and off the links. The contrasting embossed snakeskin panels attract interest, while the laid back lace-up style keeps things simple. And thanks to the one-year waterproof guarantee, you can trust these shoes to keep you in the game, even when conditions are less than perfect.'),(3226,10,492,0,115,'Featuring a wide toe box and delivering optimum support, the sporty Golf Flexor golf shoe is a stylish cleat that you\'ll love wearing on and off the links. The contrasting embossed snakeskin panels attract interest, while the laid back lace-up style keeps things simple. And thanks to the one-year waterproof guarantee, you can trust these shoes to keep you in the game, even when conditions are less than perfect.'),(3227,10,104,0,115,'ECCO Womens Golf Flexor Golf Shoe'),(3228,10,506,0,115,'Featuring a wide toe box and delivering optimum support, the sporty Golf Flexor golf shoe is a stylish cleat that you\'ll love wearing on and off the links.'),(3229,10,495,0,117,'Impatience'),(3230,10,97,0,117,'# 6.1 oz. 100% preshrunk heavyweight cotton \r\n# Shoulder-to-shoulder taping\r\n# Double-needle sleeves and bottom hem'),(3231,10,104,0,117,'Coalesce: Functioning On Impatience T-Shirt'),(3232,10,506,0,117,'# 6.1 oz. 100% preshrunk heavyweight cotton \r\n# Shoulder-to-shoulder taping\r\n# Double-needle sleeves and bottom hem'),(3233,10,495,0,118,'Impatience'),(3234,10,97,0,118,'# 6.1 oz. 100% preshrunk heavyweight cotton \r\n# Shoulder-to-shoulder taping\r\n# Double-needle sleeves and bottom hem'),(3235,10,104,0,118,'Coalesce: Functioning On Impatience T-Shirt'),(3236,10,506,0,118,'# 6.1 oz. 100% preshrunk heavyweight cotton \r\n# Shoulder-to-shoulder taping\r\n# Double-needle sleeves and bottom hem'),(3237,10,495,0,119,'Impatience'),(3238,10,104,0,119,'Coalesce, T-Shirt'),(3239,10,506,0,119,'<ul>\r\n<ul class=\"disc\">\r\n\r\n<li>6.1 oz. 100% preshrunk heavyweight cotton<br></li>\r\n<li>Shoulder-to-shoulder taping<br></li>\r\n<li>Double-needle sleeves and bottom hem<br></li>\r\n</ul>'),(3240,10,97,0,119,'Comfortable preshrunk shirts.  Highest Quality Printing.<br><br>\r\n<ul>\r\n<ul class=\"disc\">\r\n<li>6.1 oz. 100% preshrunk heavyweight cotton<br></li>\r\n<li>Shoulder-to-shoulder taping<br></li>\r\n<li>Double-needle sleeves and bottom hem<br></li>'),(3241,10,495,0,120,'Ink Eater:'),(3242,10,104,0,120,'Ink Eater, Krylon, Bombear , Destroyed, Tee, t shirt'),(3243,10,506,0,120,'Now you can make your grandparents proud by wearing an original piece of graf work to YOUR family reunion!'),(3244,10,97,0,120,'We bought these with the intention of making shirts for our family reunion, only to come back the next day to find each and every one of them had been tagged by The Bear.  Oh well -- can\'t argue with art.  Now you can make your grandparents proud by wearing an original piece of graf work to YOUR family reunion!'),(3245,10,495,0,121,'Ink Eater:'),(3246,10,97,0,121,'We bought these with the intention of making shirts for our family reunion, only to come back the next day to find each and every one of them had been tagged by The Bear.  Oh well -- can\'t argue with art.  Now you can make your grandparents proud by wearing an original piece of graf work to YOUR family reunion!'),(3247,10,104,0,121,'Ink Eater: Krylon Bombear Destroyed Tee'),(3248,10,506,0,121,'We bought these with the intention of making shirts for our family reunion, only to come back the next day to find each and every one of them had been tagged by The Bear.  Oh well -- can\'t argue with art.  Now you can make your grandparents proud by wearing an original piece of graf work to YOUR family reunion!'),(3249,10,495,0,122,'Ink Eater:'),(3250,10,97,0,122,'We bought these with the intention of making shirts for our family reunion, only to come back the next day to find each and every one of them had been tagged by The Bear.  Oh well -- can\'t argue with art.  Now you can make your grandparents proud by wearing an original piece of graf work to YOUR family reunion!'),(3251,10,104,0,122,'Ink Eater: Krylon Bombear Destroyed Tee'),(3252,10,506,0,122,'We bought these with the intention of making shirts for our family reunion, only to come back the next day to find each and every one of them had been tagged by The Bear.  Oh well -- can\'t argue with art.  Now you can make your grandparents proud by wearing an original piece of graf work to YOUR family reunion!'),(3253,10,495,0,123,'paisley'),(3254,10,104,0,123,'The Only Children: Paisley T-Shirt'),(3255,10,506,0,123,'Printed on American Apparel Classic style 5495 California cotton T shirt.   '),(3256,10,97,0,123,'<ul>\r\n<ul class=\"disc\">\r\n<li>6.1 oz. 100% preshrunk heavyweight cotton <br></li>\r\n<li>Double-needle sleeves and bottom hem</li>\r\n</ul>'),(3257,10,495,0,124,'The Only Children: Paisley T-Shirt'),(3258,10,97,0,124,'# 6.1 oz. 100% preshrunk heavyweight cotton \r\n# Double-needle sleeves and bottom hem'),(3259,10,104,0,124,'The Only Children: Paisley T-Shirt'),(3260,10,506,0,124,'Printed on American Apparel Classic style 5495 California cotton T shirst.   '),(3261,10,495,0,125,'The Only Children: Paisley T-Shirt'),(3262,10,97,0,125,'# 6.1 oz. 100% preshrunk heavyweight cotton \r\n# Double-needle sleeves and bottom hem'),(3263,10,104,0,125,'The Only Children: Paisley T-Shirt'),(3264,10,506,0,125,'Printed on American Apparel Classic style 5495 California cotton T shirst.   '),(3265,10,495,0,126,'zolof'),(3266,10,104,0,126,'Zolof The Rock And Roll Destroyer: LOL Cat T-shirt'),(3267,10,506,0,126,'Printed on American Apparel Classic style 5495 California t-shirts.  '),(3268,10,97,0,126,'<ul>\r\n<ul class=\"disc\")\r\n<li> 6.1 oz. 100% preshrunk heavyweight cotton <br></li>\r\n<li> Shoulder-to-shoulder taping<br></li>\r\n<li>Double-needle sleeves and bottom hem<br></li>\r\n</ul>'),(3269,10,495,0,127,'Zolof The Rock And Roll Destroyer: LOL Cat T-shirt'),(3270,10,97,0,127,'# 6.1 oz. 100% preshrunk heavyweight cotton \r\n# Shoulder-to-shoulder taping\r\n# Double-needle sleeves and bottom hem'),(3271,10,104,0,127,'Zolof The Rock And Roll Destroyer: LOL Cat T-shirt'),(3272,10,506,0,127,'Printed on American Apparel Classic style 5495 California t-shirts.  '),(3273,10,495,0,128,'Zolof The Rock And Roll Destroyer: LOL Cat T-shirt'),(3274,10,97,0,128,'# 6.1 oz. 100% preshrunk heavyweight cotton \r\n# Shoulder-to-shoulder taping\r\n# Double-needle sleeves and bottom hem'),(3275,10,104,0,128,'Zolof The Rock And Roll Destroyer: LOL Cat T-shirt'),(3276,10,506,0,128,'Printed on American Apparel Classic style 5495 California t-shirts.  '),(3277,10,495,0,129,'Zolof The Rock And Roll Destroyer: LOL Cat T-shirt'),(3278,10,97,0,129,'# 6.1 oz. 100% preshrunk heavyweight cotton \r\n# Shoulder-to-shoulder taping\r\n# Double-needle sleeves and bottom hem'),(3279,10,104,0,129,'Zolof The Rock And Roll Destroyer: LOL Cat T-shirt'),(3280,10,506,0,129,'Printed on American Apparel Classic style 5495 California t-shirts.  '),(3281,10,495,0,130,'Zolof The Rock And Roll Destroyer: LOL Cat T-shirt'),(3282,10,97,0,130,'# 6.1 oz. 100% preshrunk heavyweight cotton \r\n# Shoulder-to-shoulder taping\r\n# Double-needle sleeves and bottom hem'),(3283,10,104,0,130,'Zolof The Rock And Roll Destroyer: LOL Cat T-shirt'),(3284,10,506,0,130,'Printed on American Apparel Classic style 5495 California t-shirts.  '),(3285,10,495,0,131,'Zolof The Rock And Roll Destroyer: LOL Cat T-shirt'),(3286,10,97,0,131,'# 6.1 oz. 100% preshrunk heavyweight cotton \r\n# Shoulder-to-shoulder taping\r\n# Double-needle sleeves and bottom hem'),(3287,10,104,0,131,'Zolof The Rock And Roll Destroyer: LOL Cat T-shirt'),(3288,10,506,0,131,'Printed on American Apparel Classic style 5495 California t-shirts.  '),(3289,10,97,0,133,'A stylish digital camera demands stylish protection. This leather carrying case will defend your camera from the dings and scratches of travel and everyday use while looking smart all the time.'),(3290,10,506,0,133,'A stylish digital camera demands stylish protection. This leather carrying case will defend your camera from the dings and scratches of travel and everyday use while looking smart all the time.'),(3291,10,97,0,132,'Sturdy, lightweight tripods are designed to meet the needs of amateur and professional photographers and videographers.'),(3292,10,506,0,132,'Sturdy, lightweight tripods are designed to meet the needs of amateur and professional photographers and videographers.'),(3293,10,97,0,134,'Features foldable Flat Pin for Easy Storage/ Slim/ Lightweight Design and Smart Charging LED Indicator.'),(3294,10,506,0,134,'Features foldable Flat Pin for Easy Storage/ Slim/ Lightweight Design and Smart Charging LED Indicator.'),(3295,10,495,0,135,'B000KJ43SG!'),(3296,10,104,0,135,'womens, sandal, leather, anashria, '),(3297,10,506,0,135,'Buckle embellished contrasting straps adorn both the heel and canvas covered wedge of this t-strap sandal to make it a truly unique addition to your wardrobe'),(3298,10,97,0,135,'Smooth kidskin upper in a dress platform wedge t-strap sandal style, with a round open toe, front and ankle adjustable buckles and tonal stitching accents. Ankle buckle features elastic panel. Smooth faux leather lining, cushioning faux leather and fabric topped insole. 1 inch matching leather and fabric wrapped midsole.'),(3299,10,492,0,135,'<ul>\r\n<ul class=\"disc\">\r\n<li>Womens Style <br></li>\r\n<li>Genuine Top Grain Premier Leather <br></li>\r\n<li>Rich Color Tones <br></li>\r\n<li>Straps lined with 2000 lb test nylon <br></li>\r\n<li>Guaranteed for the Life of the Sole - Non-slip sole<br></li>\r\n</ul>'),(3303,10,495,2,16,'2610'),(3304,10,494,2,16,'4.1 x 1.7 x 0.7 inches '),(3305,10,97,2,16,'The Nokia 2610 is an easy to use device that combines multiple messaging options including email, instant messaging, and more. You can even download MP3 ringtones, graphics, and games straight to the phone, or surf the Internet with Cingular\'s MEdia Net service. It\'s the perfect complement to Cingular service for those even remotely interested in mobile Web capabilities in an affordable handset.<br><br>\r\n\r\n<b>Design</b><br>\r\nCompact and stylish, the 2610 features a candybar design sporting a bright 128 x 128 pixel display capable of displaying over 65,000 colors. Most of the phone\'s features and on-screen menus are controlled by a center toggle on the control pad. A standard hands-free headphone jack is provided, as are volume control keys, and there\'s even a \"Go-To\" button that can be assigned by the user for quick access to favorite applications. Lastly, the included speakerphone allows you to talk handsfree, and because the phone sports an internal antenna, there\'s nothing to snag or break off.\r\n\r\n'),(3306,10,492,2,16,'<ul>\r\n<ul class\"disc\">\r\n<li>Integrated camera with video recorder to capture those special moments<br></li>\r\n<li>Enriched data connections for complete mobile access via Email, MMS, and MEdia Net<br></li>\r\n<li> Personalize with downloadable MP3 and polyphonic Ring tones, Games, and Graphics<br></li>\r\n<li>Use AIM, Yahoo! and MSN Messenger to stay in touch on the go<br></li>\r\n<li>Mobile Internet browser and email</li>\r\n</ul>'),(3307,10,496,2,16,'Conditional $250 Equipment Discount Included: Your price paid includes an equipment discount of $250 that has been provided to you in exchange for either activating a new, non-substitute line of service or renewing an existing line of service with AT&T and your agreement that for the 181-day period following such activation or renewal you will: (1) pay your balance due to AT&T each month and otherwise maintain your account in good standing; (2) not disconnect this AT&T line of service; (3) not transfer this equipment to another AT&T line of service; (4) not change your AT&T service rate plan to a lower monthly service rate--this includes canceling or removing required PDA, BlackBerry, or smartphone features after your product has shipped; (5) not use this line of service to replace an existing account with AT&T. If these conditions are not met, you hereby authorize Magento to charge your credit card $250 as reimbursement of this equipment discount without need for further approval.'),(3308,10,104,2,16,'Nokia 2610, cell, phone, '),(3309,10,495,2,17,'8100'),(3310,10,494,2,17,'4.2 x 2 x 0.6 inches '),(3311,10,97,2,17,' Like the BlackBerry 7105t, the BlackBerry 8100 Pearl is \r\nThe BlackBerry 8100 Pearl sports a large 240 x 260 screen that supports over 65,000 colors-- plenty of real estate to view your e-mails, Web browser content, messaging sessions, and attachments. The venerable BlackBerry trackwheel has been replaced on this model with an innovative four-way trackball placed below the screen. On the rear of the handheld, you\'ll find a 1.3-megapixel camera and a self portrait mirror. The handheld\'s microSD memory card slot is located inside the device, behind the battery. There\'s also a standard 2.5mm headset jack that can be used with the included headset, as well as a mini-USB port for data connectivity.'),(3312,10,492,2,17,'<ul>\r\n<ul class=\"disc\">\r\n<li> 1.3 mega pixel camera to capture those special moments<br></li>\r\n<li> MP3 player lets you listen to your favorite music on the go<br></li>\r\n<li>Menu and escape keys on the front of the device for easier access<br></li>\r\n<li> Bluetooth technology lets you experience hands free and wire free features<br></li>\r\n<li>Package Contents: phone,AC adapter,software CD,headset,USB cable,sim- card,get started poster,reference guide<br></li>\r\n</ul>'),(3313,10,496,2,17,'CONDITIONAL $250 Equipment Discount Included: Your price paid includes an Equipment Discount of $250 that has been provided to you in exchange for activating a new, non-substitute line of service with T-Mobile and your agreement that for the 181-day period following such activation you will (1) pay your balance due to T-Mobile each month and otherwise maintain your account in good standing, (2) not disconnect this T-Mobile line of service, (3) not transfer this equipment to another T-Mobile line of service, (4) not change your T-Mobile service rate plan to a lower monthly service rate--this includes canceling or removing required PDA, BlackBerry, or smartphone features after your product has shipped, (5) not use this line of service to replace an existing account with T-Mobile. If these conditions are not met, you hereby authorize Magento.com to charge your credit card $250 as reimbursement of this Equipment Discount without need for further approval.'),(3314,10,104,2,17,'Blackberry, 8100, pearl, cell, phone'),(3315,10,495,2,18,'W810i'),(3316,10,494,2,18,' 3.5 x 1.8 x 1 inches'),(3317,10,97,2,18,'The W810i\'s screen sports 176 x 220 pixel resolution with support for 262,000 colors. Quick access buttons below the screen make it easy to control the phone\'s Walkman music features, while a five-way center button controls most of the phone\'s menus and features.'),(3318,10,492,2,18,'<ul>\r\n<ul class=\"disc\">\r\n \r\n<li>Disc2Phone™ music copying software is supplied in the W810 kit and it’s easy to copy songs from your favorite CDs, and PC music folders<br></li>\r\n<li>The built-in W810 2 megapixel digital camera with autofus takes excellent photos and when you need to catch some action, W810 has video too<br></li>\r\n<li>Sharing images and other phone content is easy. Use Bluetooth™, or Multimedia messaging when you want to send images and video<br></li>\r\n<li> Wherever you are, you have high speed access to the internet with EDGE technology<br></li>\r\n<li> A full-function email client in your W810 gives you access to your inbox wherever you go</li>\r\n</ul>'),(3319,10,496,2,18,'Conditional $250 Equipment Discount Included: Your price paid includes an equipment discount of $250 that has been provided to you in exchange for either activating a new, non-substitute line of service or renewing an existing line of service with AT&T and your agreement that for the 181-day period following such activation or renewal you will: (1) pay your balance due to AT&T each month and otherwise maintain your account in good standing; (2) not disconnect this AT&T line of service; (3) not transfer this equipment to another AT&T line of service; (4) not change your AT&T service rate plan to a lower monthly service rate--this includes canceling or removing required PDA, BlackBerry, or smartphone features after your product has shipped; (5) not use this line of service to replace an existing account with AT&T. If these conditions are not met, you hereby authorize Magento.com to charge your credit card $250 as reimbursement of this equipment discount without need for further approval.'),(3320,10,104,2,18,'Sony, Ericsson ,W810i, cell, phone'),(3321,10,495,2,20,'MM-A900M'),(3322,10,494,2,20,'3.9 x 2 x 0.6 inches'),(3323,10,97,2,20,'New services supported by both the MM-A900m include the newly announced Sprint Music StoreSM, which allows users to immediately buy and download complete songs directly to their phone; 30 channels of live and on demand video and audio from Sprint TVSM and On Demand, a personalized resource guide to news, traffic, weather, sports and entertainment. The MM-A900m offers great-looking design with the ability to download a rich selection of content directly to the phone. Features like external music-navigation keys make these phones both functional and attractive. These handsets are sure to be at the top of many wish lists.'),(3324,10,492,2,20,'<ul>\r\n<ul class=\"disc\">\r\n<li>Bluetooth Wireless Technology: Built-in radio technology allows fast, secure transmission between your phone and accessories without cables or wires. Bluetooth wireless accessories are sold separately.<br></li>\r\n<li>Mass Storage Area: Store pictures, videos, voice memos and music within the internal memory of the phone.<br></li>\r\n<li>Streaming Music Enabled: Stream music to your phone with Music Choice®. Select from Pop, Rock, Hip Hop, and R&B plus exclusive video clips, performances, and artist interviews.<br></li>\r\n</ul>\r\n   '),(3325,10,496,2,20,'CONDITIONAL $250 Equipment Discount Included: Your price paid includes an equipment discount of $250 that has been provided to you in exchange for activating a new, non-substitute line of service with Sprint and your agreement that for the 181-day period following such activation you will (1) pay your balance due to Sprint each month and otherwise maintain your account in good standing, (2) not disconnect this Sprint line of service, (3) not transfer this equipment to another Sprint line of service, (4) not change your Sprint service rate plan to a lower monthly service rate--this includes canceling or removing required PDA, BlackBerry, or smartphone features after your product has shipped, and (5) not use this line of service to replace an existing account with Sprint. If these conditions are not met, you hereby authorize Magento.com to charge your credit card $250 as reimbursement of this equipment discount without need for further approval.'),(3326,10,104,2,20,'Samsung, MM-A900M, cell, phone'),(3329,10,495,2,25,'MA464LL/A'),(3330,10,494,2,25,'19.5 x 7.6 x 19.5 inches'),(3331,10,497,2,25,'2.0 GHz Intel Core Duo processor with 2 MB shared L2 Cache'),(3332,10,498,2,25,'1 GB (single SODIMM) 667 MHz DDR2 SDRAM (PC2-5300)'),(3333,10,499,2,25,'100 GB 5400 rpm Serial ATA hard drive'),(3334,10,500,2,25,'15.4-inch TFT widescreen display with 1440 x 900 resolution'),(3335,10,97,2,25,'This, combined with myriad other engineering leaps, boosts performance up to four times higher than the PowerBook G4. With this awesome power, it\'s a breeze to render complex 3D models, enjoy smooth playback of HD video, or host a four-way video conference.Intel Core Duo is the first chip built using Intel\'s groundbreaking 65-nanometer process - resulting in transistors so small, you could fit a hundred inside a single human cell. With smaller distances for electrons to travel, and two processors designed to share resources and conserve power, Intel Core Duo achieves higher levels of performance as it uses fewer watts. Which is what makes it possible to design a super-powerful MacBook Pro that\'s only one inch thin.When Mac technology makes something easy, it\'s hardly news. So here\'s more non-news for MacBook Pro owners: software just works. If you see the Universal logo on a new application, that means it will run on Intel- and PowerPC-based Mac computers. For most existing applications, you simply do what you\'ve always done: double-click them. Thanks to the Rosetta technology in Mac OS X, they look and feel just like they did before.'),(3336,10,492,2,25,' <ul>\r\n<ul class=\"disc\">\r\n<li>2.0 GHz Intel Core Duo processor with 2 MB shared L2 Cache<br></li>\r\n<li>1 GB (single SODIMM) 667 MHz DDR2 SDRAM (PC2-5300); 100 GB 5400 rpm Serial ATA hard drive; slot-load SuperDrive (DVD±RW/CD-RW)<br></li>\r\n<li>One FireWire 400, two USB 2.0 ports, and ExpressCard/34 slot; no FireWire 800 slots<br></li>\r\n<li>Built-in 10/100/1000BASE-T (Gigabit); built-in 54 Mbps AirPort Extreme (802.11g); built-in Bluetooth 2.0+EDR<br></li>\r\n<li>15.4-inch TFT widescreen display with 1440 x 900 resolution</li>'),(3337,10,104,2,25,'Apple MacBook Pro MA464LL/A 15.4\" Notebook PC (2.0 GHz Intel Core Duo, 1 GB RAM, 100 GB Hard Drive, SuperDrive) '),(3338,10,495,2,26,'LX.FR206.001'),(3339,10,497,2,26,'Mobile AMD Athlon 64 2800+'),(3340,10,498,2,26,'512MB of PC2700 DDR333 SDRAM'),(3341,10,499,2,26,'80 gig Western Digital'),(3342,10,500,2,26,'15-inch, 200-nit, high-brightness TFT LCD screen '),(3343,10,97,2,26,' Acer has flawlessly designed the Ferrari 3200, instilling it with exceptional performance, brilliant graphics, and lightning-fast connectivity. This exclusive edition is another striking symbol of cooperation between Acer and Ferrari -- two progressive companies with proud heritages built on passion, innovation, power and success.'),(3344,10,492,2,26,' <ul>\r\n<ul class=\"disc\">\r\n<li>Mobile AMD Athlon 64 2800+<br></li>\r\n<li>1MB L2 Cache<br></li>\r\n<li>512MB of PC2700 DDR333 SDRAM<br></li>\r\n<li>2 RAM Slots (0 open - upgrading requires chip removal)<br></li>\r\n<li>RAM is upgradeable to 2GB</li>\r\n</ul>'),(3345,10,104,2,26,'Acer Ferrari 3200 Notebook Computer PC '),(3346,10,495,2,27,'VGN-TXN27N/B'),(3347,10,494,2,27,'10.7 x 1.23 x 7.7 inches (WxHxD)'),(3348,10,497,2,27,'Intel Core Solo Processor U1500'),(3349,10,498,2,27,'2 GB RAM'),(3350,10,499,2,27,'100 GB Hard Drive'),(3351,10,500,2,27,'9 inches'),(3352,10,97,2,27,' Weighing in at just an amazing 2.84 pounds and offering a sleek, durable carbon-fiber case in charcoal black. And with 4 to 10 hours of standard battery life, it has the stamina to power you through your most demanding applications. With the integrated wireless WAN, you can access the national Sprint Mobile Broadband service to extend your wireless coverage beyond LAN access networks and hotspots, giving you the freedom to go farther, do more, and stay connected.\r\n\r\n'),(3353,10,492,2,27,' <ul>\r\n<ul class=\"disc\">\r\n<li>Processor: The Ultra Low Voltage Intel Core Solo U1500 processor offers a 1.33 GHz speed paired with a fast 533 MHz front-side bus and large 2 MB L2 cache. (An L2, or secondary, cache temporarily stores data; and a larger L2 cache can help speed up your system\'s performance. The FSB carries data between the CPU and RAM, and a faster front-side bus will deliver better overall performance.) The Core Solo processor delivers enhanced performance for today\'s demanding applications such as CAD tools, 3-D and 2-D modeling, video editing, digital music, digital photography and gaming. And Intel\'s Smart Cache technology enables smarter, more efficient cache and bus design for enhanced performance, responsiveness and power savings.</li>\r\n</ul>\r\n\r\n   '),(3354,10,104,2,27,'Sony, VAIO, VGN-TXN27N/B , Notebook, PC, Intel, 2 GB RAM, '),(3355,10,495,2,28,'M285-E'),(3356,10,494,2,28,'17 x 7 x 13 inches'),(3357,10,497,2,28,'1.66 GHz Intel Core Duo T2300E processor'),(3358,10,498,2,28,'1 GB RAM'),(3359,10,499,2,28,'60 GB hard drive'),(3360,10,500,2,28,'14-inch screen '),(3361,10,97,2,28,'Easily mobile at just 6 pounds, the Toshiba Satellite A135-S4527 makes it easy to get your work done with a large, bright 15.4-inch widescreen LCD. The XGA-resolution screen (1280 x 800) permits side-by-side viewing of documents for increased productivity. It\'s also great for using as a media center, with Toshiba\'s unique Express Media Player enabling you to bypass the system and access CDs and DVDs with a touch of button. This affordable notebook PC is powered by Intel\'s 1.73 GHz Core Duo T2080 processor, which provides an optimized, multithreaded architecture for improved gaming and multitasking performance and efficient power consumption. It also offers a 120 GB hard drive, 1 GB of installed RAM (2 GB maximum), dual-layer/multi-format DVD drive that also burns CDs, integrated 54g wireless connectivity, and Intel GMA 950 video card with up to 256 MB of shared video RAM.\r\n\r\n'),(3362,10,492,2,28,' <ul>\r\n<ul class=\"disc\">\r\n<li>Processor: The Intel Core Duo T2080 processor is built with the Mobile Intel 945PM Express chipset, and it has a 1.73 GHz processor speed, fast 533 MHz front-side bus (FSB), and 1 MB L2 cache. (An L2, or secondary, cache temporarily stores data; and a larger L2 cache can help speed up your system\'s performance. The FSB carries data between the CPU and RAM, and a faster front-side bus will deliver better overall performance.)</li>\r\n</ul>'),(3363,10,104,2,28,'Toshiba, notebook, laptop, intel, '),(3364,10,495,2,29,'B000JI2N0I'),(3365,10,97,2,29,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear. Wear them either at the beach, in your garden, at the mall or just about anywhere you would want to be comfortable.'),(3366,10,492,2,29,'    * Made of EVA foam\r\n    * Heel strap keeps shoe on foot\r\n    * Non-marking, slip-resistant outsole\r\n    * Weigh just 6-10 ounces\r\n\r\n'),(3367,10,104,2,29,'CN Clogs Beach/Garden Clog '),(3368,10,495,2,30,'B000CP1M00'),(3369,10,97,2,30,'The ASICS® GEL-Kayano® XII running shoe delivers the ultimate blend of cushioning and support. Biomorphic Fit™ upper offers enhanced upper fit and comfort while decreasing the potential for irritation. Solyte midsole material is lighter than standard EVA and SpEVA® combined with improved cushioning and durability. Impact Guidance System (I.G.S.®) uses linked componentry to encourage optimal gait while allowing for natural foot movement from heel strike to toe off. DuoMax® support system helps ensure that the shoe maintains proper support for the foot during the critical transition from heel strike to toe off. Space Trusstic® System creates a pocket between the Trusstic® System device and the midsole, allowing for greater midsole deformation and more efficient foot function. GEL® Cushioning System provides maximum rearfoot and forefoot shock attenuation. Wt. 12.6 oz.'),(3370,10,492,2,30,'# I.G.S.?: Allows for natural foot movement from heel strike to toe-off\r\n# DuoMax? Support System: Maintains proper support for the foot during the critical transition from heel strike to toe-off\r\n# Space Trusstic System?: Allows for greater midsole deformation and more efficient foot function\r\n# GEL? Cushioning System: Provides maximum rearfoot/forefoot shock attenuation\r\n# Biomorphic Fit Upper: Provides enhanced upper fit and comfort while limiting irritation'),(3371,10,104,2,30,'ASICS® Men\'s GEL-Kayano® XII '),(3372,10,495,2,31,'B000NOGIKY'),(3373,10,97,2,31,'Nothing will turn his head faster than you wearing the sexy Pryme pump from Steven by Steve Madden. This daring pump has a pretty patent leather upper with light shirring, a double stitch detail surrounding the collar, and a vampy almond shaped toe. It also features smooth linings, a fully cushioned insole, a sexy covered stiletto heel, and a lightly textured dress leather outsole. Any way you wear the Pryme, you\'re certain to catch a lot of attention.'),(3374,10,492,2,31,'A prime example of chic style. Patent leather upper. Round toe. 3-1/2 inch covered heel. Flex leather sole. Imported. '),(3375,10,104,2,31,'Steven by Steve Madden Pryme Pump'),(3376,10,495,2,32,'B000LJQVF8'),(3377,10,97,2,32,'The Lucero pump from Nine West may just leave him at a loss for words. This flirty pump has a leather upper, a pretty almond-shaped toe with a slight V-cut vamp, leather linings, and a cushioned insole for long-wearing comfort. The stiletto heel radiates a subtle hint of sensuality, so sass up your jean and t-shirt look or nighttime attire with this hot pump and you\'ll be absolutely unforgettable.'),(3378,10,492,2,32,'The perfect pump will suit any ensemble. Leather upper. 3-3/4 inch stacked heel. Man-made sole. Imported. '),(3379,10,104,2,32,'Nine West Women\'s Lucero Pump '),(3380,10,495,2,33,'B000NPOA1M'),(3381,10,97,2,33,'Featuring a wide toe box and delivering optimum support, the sporty Golf Flexor golf shoe is a stylish cleat that you\'ll love wearing on and off the links. The contrasting embossed snakeskin panels attract interest, while the laid back lace-up style keeps things simple. And thanks to the one-year waterproof guarantee, you can trust these shoes to keep you in the game, even when conditions are less than perfect.'),(3382,10,492,2,33,'Featuring a wide toe box and delivering optimum support, the sporty Golf Flexor golf shoe is a stylish cleat that you\'ll love wearing on and off the links. The contrasting embossed snakeskin panels attract interest, while the laid back lace-up style keeps things simple. And thanks to the one-year waterproof guarantee, you can trust these shoes to keep you in the game, even when conditions are less than perfect.'),(3383,10,104,2,33,'ECCO Womens Golf Flexor Golf Shoe'),(3384,10,495,2,34,'B000IKC6AY'),(3385,10,97,2,34,'High fashion and classic good looks converge in this suave slip on from Kenneth Cole. Smooth leather upper in a dress slip on style, with a stitched and covered seam moc-inspired square toe, quarter panel curved overlays and flared tongue with side elastic panels for a comfortable, secure fit. Smooth leather lining, cushioned leather topped insole. Dress midsole with a beveled edge, 1 inch capped dress heel. Flat traction outsole.'),(3386,10,492,2,34,'The handsome style of the Con-Verge slip-on from Kenneth Cole New York is larger than life. This sharp shoe has a semi-polished smooth leather upper, a squared off stitched apron toe, and dual-goring for easy on/off accessibility. It also features soft leather linings, a cushioned insole, and a paneled rubber outsole for a sturdy step. The Con-Verge is a perfect companion to your business and special occasion wardrobes.'),(3387,10,104,2,34,'Kenneth Cole New York Men\'s Con-verge Slip-on'),(3388,10,495,2,35,'Impatience'),(3389,10,97,2,35,'# 6.1 oz. 100% preshrunk heavyweight cotton \r\n# Shoulder-to-shoulder taping\r\n# Double-needle sleeves and bottom hem'),(3390,10,104,2,35,'Coalesce: Functioning On Impatience T-Shirt'),(3391,10,495,2,36,'Ink Eater:'),(3392,10,97,2,36,'We bought these with the intention of making shirts for our family reunion, only to come back the next day to find each and every one of them had been tagged by The Bear.  Oh well -- can\'t argue with art.  Now you can make your grandparents proud by wearing an original piece of graf work to YOUR family reunion!'),(3393,10,104,2,36,'Ink Eater: Krylon Bombear Destroyed Tee'),(3394,10,495,2,37,'The Only Children: Paisley T-Shirt'),(3395,10,97,2,37,'# 6.1 oz. 100% preshrunk heavyweight cotton \r\n# Double-needle sleeves and bottom hem'),(3396,10,104,2,37,'The Only Children: Paisley T-Shirt'),(3397,10,495,2,38,'Zolof The Rock And Roll Destroyer: LOL Cat T-shirt'),(3398,10,97,2,38,'# 6.1 oz. 100% preshrunk heavyweight cotton \r\n# Shoulder-to-shoulder taping\r\n# Double-needle sleeves and bottom hem'),(3399,10,104,2,38,'Zolof The Rock And Roll Destroyer: LOL Cat T-shirt'),(3400,10,495,2,19,'8525 PDA'),(3401,10,494,2,19,'4.4 x 2.4 x 0.9 inches'),(3402,10,97,2,19,' The design of the 8525 is clean and uncluttered, with just a few buttons for mail, Internet Explorer, and contextual menus. Meanwhile, call answer and end buttons surround a five-way toggle that allows you to navigate and control the Windows Mobile interface. As mentioned, a full QWERTY keyboard cleverly slides out from underneath the screen. This allows you to hold the device horizontally, and the screen is automatically placed in landscape mode when you\'re using the keyboard. A side scroll wheel is conveniently tucked away on the side, making navigation when accessing the music player and other various applications a cinch when needed. A mini-SD memory expansion card slot is provided, as is an infrared port and support for a stereo Bluetooth headset. A mini-USB port is also included for wired data transfers and charging.'),(3403,10,492,2,19,'<ul>\r\n<ul class=\"disc\">\r\n<li>tri-band UMTS/HSDPA; quad-band GSM/GPRS/EDGE for global use<br></li>\r\n<li>Windows Mobile 5.0 with Messaging & Security Feature Pack<br></li>\r\n<li>sliding QWERTY keyboard with improved keypad design and improved backlight for easier use in low light conditions<br></li>\r\n<li>128MB ROM / 64MB RAM; ~51MB user available memory<br></li>\r\n<li>2.0 mega-pixel camera with video capabilities</li>\r\n</ul>'),(3404,10,496,2,19,'Conditional $250 Equipment Discount Included: Your price paid includes an equipment discount of $250 that has been provided to you in exchange for either activating a new, non-substitute line of service or renewing an existing line of service with AT&T and your agreement that for the 181-day period following such activation or renewal you will: (1) pay your balance due to AT&T each month and otherwise maintain your account in good standing; (2) not disconnect this AT&T line of service; (3) not transfer this equipment to another AT&T line of service; (4) not change your AT&T service rate plan to a lower monthly service rate--this includes canceling or removing required PDA, BlackBerry, or smartphone features after your product has shipped; (5) not use this line of service to replace an existing account with AT&T. If these conditions are not met, you hereby authorize Magento.com to charge your credit card $250 as reimbursement of this equipment discount without need for further approval.'),(3405,10,104,2,19,'At&t, 8525, cell, phone'),(3406,10,495,2,39,'The Get Up Kids: Band Camp Pullover Hoodie'),(3407,10,97,2,39,'Printed on American Apparel Classic style 5495 California Fleece Pull-Over Hoodies.  Sizing info is available here. '),(3408,10,104,2,39,'The Get Up Kids: Band Camp Pullover Hoodie'),(3415,10,495,2,41,'384822'),(3416,10,494,2,41,'21\"W x 44\"L x 35.5\"H'),(3417,10,507,2,41,'Thailand'),(3418,10,509,2,41,'Asian Beechwood'),(3419,10,97,2,41,'Features include inset panel sides and for spacious drawers and two wicker baskets. 41\"Wx18\"Dx36\"H.'),(3420,10,104,2,41,'Hardwood, drawers, wicker, asian, beechwood'),(3421,10,495,2,42,'bar1234'),(3422,10,494,2,42,'62\"W x 84\"L x 8\"H'),(3423,10,507,2,42,'Thailand'),(3424,10,509,2,42,'Bamboo'),(3425,10,97,2,42,'Entirely handcrafted of solid Bamboo. Designed for use with a mattress alone, it includes a sturdy, padded wood platform for comfort and proper mattress support.'),(3426,10,104,2,42,'bamboo, barcelona, platform, bed'),(3427,10,495,2,44,'Rebel XT '),(3428,10,494,2,44,'5 x 3.7 x 2.5 inches'),(3429,10,97,2,44,'The Canon EOS Digital Rebel camera now has a new, faster, even smaller big brother. Sibling rivalries aside, the 8.0-megapixel Canon EOS Digital Rebel XT SLR adds resolution, speed, extra creative control, and enhanced comfort in the hand to one of the smallest and lightest digital cameras in its class. Even with its advancements in ergonomic design and technology, this easy-to-use EOS digital camera is compatible with all of Canon\'s EF lenses, including the EF-S lenses.'),(3430,10,492,2,44,'<ul>\r\n<ul class=\"disc\"> \r\n\r\n<li>8.0-megapixel CMOS sensor captures enough detail for photo-quality 16 x 22-inch prints<br></li>\r\n<li>Includes Canon\'s EF-S 18-55mm, f3.5-5.6 zoom lens<br></li>\r\n<li>DIGIC II Image Processor provides fast, accurate image processing; captures images at a rate of up to 3 frames per second<br></li>\r\n<li>Fast start-up time--.2 seconds<br></li>\r\n<li>Powered by rechargeable Lithium-ion battery (included, with charger)</li>\r\n</ul>\r\n'),(3431,10,104,2,44,'canon, slr, camera, 8, digital'),(3432,10,495,2,45,'QC-2185'),(3433,10,494,2,45,'2.75 inches x 1.5 inches'),(3434,10,97,2,45,'The Argus QC-2185 Quick Click 5MP digital camera offers all the basic features you need in a compact and stylish digital camera. This unit is easy to use, and is perfect for those who want a completely portable option for taking good pictures, without having to empty their wallet.\r\n\r\nThe Argus QC-2185 features a clear and bright 1.1-inch CSTN (color super-twist nematic) LCD display that makes it easy to frame the perfect picture. Thanks to its USB 1.1 connection compatibility, this digital camera lets you quickly download pictures to your Mac or PC, and can also function as a handy web camera. The QC-2185 includes eight megabytes of internal SDRAM memory, with the ability to expand camera memory via a built-in SD (secure digital) storage card slot for easy storage and transfer of your pictures. This unit also includes a built-in auto flash with a three to seven foot range, and comes with ArcSoft PhotoImpression\'s photo editing software which makes it easy for you to edit, crop, adjust and improve all your best pictures to make them even better.\r\n'),(3435,10,492,2,45,'<ul>\r\n<ul class=\"disc\".  \r\n<li>5 megapixel digital camera with a 1600 x 1200 resolution and an f2.8 aperture</li>\r\n<li> Clear and bright 1.1-inch CSTN LCD display makes it easy to frame the perfect picture</li>\r\n<li>USB 1.1 connection compatibility lets you quickly download pictures to your Mac or PC, and function as a web camera</li>\r\n<li>Runs on 3 AAA batteries, and requires; Windows OS 98 or higher, at least 32 MB of RAM and 125 MB of hard disk space, and an available USB port</li>\r\n<li>Weighs 3.4 ounces, measures 3.6 x 2.4 x 1.1 inches (W x H x D), and is backed by a 1-year manufacturer\'s warranty</li>\r\n</ul>\r\n'),(3436,10,104,2,45,'Argus, QC-2185, digital, camera, 2MP'),(3437,10,495,2,46,'750'),(3438,10,494,2,46,'3.8 x 2.1 x 1 inches'),(3439,10,97,2,46,'Olympus continues to innovate with the launch of the Stylus 750 digital camera, a technically sophisticated point-and-shoot camera offering a number of pioneering technologies such as Dual Image Stabilization, Bright Capture Technology, and TruePic Turbo, as well as a powerful 5x optical zoom that tucks away into a streamlined metal, all-weather body design. The camera is distinguished by a number of premium features, including:\r\n\r\n    * An advanced combination of the mechanical CCD-shift Image Stabilization and Digital Image Stabilization work together to ensure the clearest pictures possible in any situation;\r\n    * A 5x optical zoom lens with a newly developed lens element to maintain a small compact size;\r\n    * A 2.5-inch LCD and Bright Capture Technology dramatically improve composition, capture and review of images in low-light situations;\r\n    * Olympus\' exclusive TruePic Turbo Image Processing engine is coupled with a 7.1-megapixel image sensor to produce crisp, high-quality p'),(3440,10,492,2,46,'<ul>\r\n<ul class=\"disc\">\r\n\r\n<li>7.1-megapixel CCD captures enough detail for photo-quality 15 x 20-inch prints<br></li>\r\n<li>5x image-stabilized optical zoom; 2.5-inch LCD display<br></li>\r\n<li>Compact, all-weather body measures 3.8 x 2.1 x 0.96 inches<br></li>\r\n<li>Bright Capture technology; 27 selectable shooting modes; built-in Help guide<br></li>\r\n<li>Stores images on xD Picture Cards; powered by Li-Ion battery (battery and charger included)</li>\r\n</ul>'),(3441,10,104,2,46,'Olympus, stylus, 750, 7MP, digital, camera, zoom'),(3442,10,495,2,47,'A630 '),(3443,10,494,2,47,'4.3 x 2.6 x 1.9 inches '),(3444,10,97,2,47,'Replacing the highly popular PowerShot A620, the PowerShot A630 features a rotating 2.5-inch vari-angle LCD, 4x optical zoom lens, and a vast array of creative shooting modes.<br>\r\n\r\nThe PowerShot A630 packs a vast array of advanced features into a remarkably compact space<br><br>\r\n\r\n'),(3445,10,492,2,47,'<ul>\r\n<ul class=\"disc\">\r\n<li>8-megapixel CCD captures enough detail for photo-quality 16 x 22-inch prints<br></li>\r\n<li>4x optical zoom; 2.5-inch vari-angle LCD display<br></li>\r\n<li>ISO range up to ISO 800 for less blur in low light while hand-holding<br></li>\r\n<li>3:2 guide masks LCD to display 4 x 6-inch print size; 16:9 format option for still images<br></li>\r\n<li>Stores images on SD cards; powered by 4 AA-size batteries</li>\r\n</ul>'),(3446,10,104,2,47,'canon, powershot, A630, digital, camera, optical, zoom'),(3447,10,495,2,48,'C530 '),(3448,10,494,2,48,' 4 x 6 x 9 inches'),(3449,10,97,2,48,'Small on size. Big on value. Kodak\'s newest C-Series digital camera, the C530, sports awesome features--such as 5.0-megapixel CCD resolution, on-camera image cropping, and an on-camera Share button--at a very affordable price.'),(3450,10,492,2,48,'<ul>\r\n<ul class=\"disc\">   \r\n\r\n<li>5.0-megapixel CCD captures enough detail for photo-quality 13 x 17-inch prints<br></li>\r\n<li>1.5-inch LCD display<br></li>\r\n<li>Continuous QVGA video<br></li>\r\n<li>Auto scene mode and three color modes; in-camera cropping<br></li>\r\n<li>Powered by AA size batteries; stores images on SD memory cards (includes 16 MB internal memory)</li>\r\n</ul>'),(3451,10,104,2,48,'kodak, eayshare, c530, 5MP, digital, camera'),(3452,10,495,2,49,'B000KJ43SG'),(3453,10,97,2,49,'Womens Premier Leather Single Layer Narrow Strap - NEW Colors Available - Womens Style - Genuine Top Grain Premier Leather - Rich Color Tones - Straps lined with 2000 lb test nylon - Guaranteed for the Life of the Sole - Non-slip sole - Note: Rainbow is in the process of unveiling a new toe post tag that is much smaller than the original tag.'),(3454,10,492,2,49,'Womens Premier Leather Single Layer Narrow Strap - '),(3455,10,104,2,49,'womens, sandal, leather, anashria, '),(3456,10,495,2,51,'magotto'),(3457,10,507,2,51,'Italy'),(3458,10,509,2,51,'Microfiber'),(3459,10,97,2,51,'The Magento ottoman will impress with its style while it delivers on quality. This piece of living room furniture is built to last with durable solid wood framing, generous padding and plush stain-resistant microfiber upholstery.'),(3460,10,104,2,51,'Ottoman'),(3461,10,495,2,52,'1112'),(3462,10,507,2,52,'Italy'),(3463,10,509,2,52,'Microfiber'),(3464,10,97,2,52,'This Magento chair features a fun, futuristic design, with fluid curves and gentle angles that follow the shape of the body to enhance ultimate relaxation. It combines a hint of nostalgia with the up-to-date sensibility and function of modern chairs. It is in soft, velvety microfiber.'),(3465,10,104,2,52,'Chair'),(3466,10,495,2,53,'1113'),(3467,10,507,2,53,'Italy'),(3468,10,509,2,53,'Microfiber'),(3469,10,97,2,53,'Inspired by the classic camelback sofa, Magento offers comfort and style in a low maintenance package.  For a sleek, simple and stylish piece, look no further than the Magento sofa - or sofabed!'),(3470,10,104,2,53,'Couch'),(3471,10,495,2,54,'RFS'),(3472,10,507,2,54,'Italy'),(3473,10,509,2,54,'Microfiber'),(3474,10,97,2,54,'The perfect furniture set for the living room!  Love red?  You\'ll love these pieces of handmade modern furniture!'),(3475,10,104,2,54,'Magento, Red, Furniture, Set, ottoman, couch, chair'),(3489,10,506,2,39,'Printed on American Apparel Classic style 5495 California Fleece Pull-Over Hoodies.  '),(3490,10,506,2,38,'Printed on American Apparel Classic style 5495 California t-shirts.  '),(3491,10,506,2,37,'Printed on American Apparel Classic style 5495 California cotton T shirst.   '),(3492,10,506,2,36,'We bought these with the intention of making shirts for our family reunion, only to come back the next day to find each and every one of them had been tagged by The Bear.  Oh well -- can\'t argue with art.  Now you can make your grandparents proud by wearing an original piece of graf work to YOUR family reunion!'),(3493,10,506,2,35,'# 6.1 oz. 100% preshrunk heavyweight cotton \r\n# Shoulder-to-shoulder taping\r\n# Double-needle sleeves and bottom hem'),(3494,10,506,2,34,'High fashion and classic good looks converge in this suave slip on from Kenneth Cole. Smooth leather upper in a dress slip on style, with a stitched and covered seam moc-inspired square toe, quarter panel curved overlays and flared tongue'),(3495,10,506,2,33,'Featuring a wide toe box and delivering optimum support, the sporty Golf Flexor golf shoe is a stylish cleat that you\'ll love wearing on and off the links.'),(3496,10,506,2,32,'The Lucero pump from Nine West may just leave him at a loss for words. This flirty pump has a leather upper, a pretty almond-shaped toe with a slight V-cut vamp'),(3497,10,506,2,31,'Nothing will turn his head faster than you wearing the sexy Pryme pump from Steven by Steve Madden. This daring pump has a pretty patent leather upper with light shirring, a double stitch detail surrounding the collar, and a vampy almond shaped toe'),(3498,10,506,2,29,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear'),(3499,10,506,2,28,'Get the competitive edge with the Gateway M285-E. This widescreen Convertible Notebook functions as both a conventional notebook and a tablet.'),(3500,10,506,2,27,'Take a load off your shoulders when you\'re racing for your plane with the sleekly designed and ultra-portable Sony Vaio VGN-TXN27N/B notebook PC.'),(3501,10,506,2,26,'This exclusive edition is another striking symbol of cooperation between Acer and Ferrari -- two progressive companies with proud heritages built on passion, innovation, power and success'),(3502,10,506,2,25,'You\'ve seen improvements in notebook performance before - but never on this scale. The Intel Core Duo powering MacBook Pro is actually two processors built into a single chip.'),(3503,10,506,2,20,'The MM-A900m offers great-looking design with the ability to download a rich selection of content directly to the phone. '),(3504,10,506,2,19,'Under the hood, the 8525 features 128MB of embedded memory and 64MB RAM, running on a 400 MHz Samsung processor. Up front, the 240 x 320 LCD touch-screen supports over 65,000 colors, while the rear of the device houses a 2.0 megapixel camera.'),(3505,10,506,2,18,'The W810i follows a long tradition of beautifully designed and crafted phones from Sony Ericsson. The same candy-bar style that graced the W800 is here.'),(3506,10,506,2,17,'The BlackBerry 8100 Pearl is a departure from the form factor of previous BlackBerry devices. This BlackBerry handset is far more phone-like, and RIM\'s engineers have managed to fit a QWERTY keyboard onto the handset\'s slim frame.'),(3507,10,506,2,16,'The words \"entry level\" no longer mean \"low-end,\" especially when it comes to the Nokia 2610. Offering advanced media and calling features without breaking the bank'),(3508,10,506,2,30,'The ASICS® GEL-Kayano® XII running shoe delivers the ultimate blend of cushioning and support. Biomorphic Fit™ upper offers enhanced upper fit and comfort while decreasing the potential for irritation. '),(3510,10,506,2,41,'Our Akio dresser has a solid hardwood frame.  '),(3511,10,506,2,42,'Our Barcelona platform bed captures the spirit and drama of late 20th century design with a variety of subtle details.'),(3512,10,506,2,44,' Canon EOS Digital Rebel XT SLR adds resolution, speed, extra creative control, and enhanced comfort in the hand to one of the smallest and lightest digital cameras in its class. '),(3513,10,506,2,45,'The Argus QC-2185 Quick Click 5MP digital camera offers all the basic features you need in a compact and stylish digital camera. This unit is easy to use, and is perfect for those who want a completely portable option for taking good pictures, without having to empty their wallet.'),(3514,10,506,2,46,'A technically sophisticated point-and-shoot camera offering a number of pioneering technologies such as Dual Image Stabilization, Bright Capture Technology, and TruePic Turbo, as well as a powerful 5x optical zoom.'),(3515,10,506,2,47,'Replacing the highly popular PowerShot A620, the PowerShot A630 features a rotating 2.5-inch vari-angle LCD, 4x optical zoom lens, and a vast array of creative shooting modes.'),(3516,10,506,2,48,'Small on size. Big on value. Kodak\'s newest C-Series digital camera, the C530, sports awesome features'),(3517,10,506,2,49,'Womens Premier Leather Single Layer Narrow Strap - NEW Colors Available - Womens Style - Genuine Top Grain Premier Leather - Rich Color Tones - Straps lined with 2000 lb test nylon - Guaranteed for the Life of the Sole - Non-slip sole - Note: Rainbow is in the process of unveiling a new toe post tag that is much smaller than the original tag.'),(3518,10,506,2,51,'With durable solid wood framing, generous padding and plush stain-resistant microfiber upholstery.'),(3519,10,506,2,52,'Combining a hint of nostalgia with the up-to-date sensibility and function of modern chairs. It is in soft, velvety microfiber.'),(3520,10,506,2,53,'For a sleek, simple and stylish piece, look no further than the Magento sofa - or sofabed!'),(3521,10,506,2,54,'Love red?  You\'ll love these pieces of handmade modern furniture!'),(3534,10,495,2,74,'B000KJ43SG'),(3535,10,97,2,74,'Womens Premier Leather Single Layer Narrow Strap - NEW Colors Available - Womens Style - Genuine Top Grain Premier Leather - Rich Color Tones - Straps lined with 2000 lb test nylon - Guaranteed for the Life of the Sole - Non-slip sole - Note: Rainbow is in the process of unveiling a new toe post tag that is much smaller than the original tag.'),(3536,10,492,2,74,'Womens Premier Leather Single Layer Narrow Strap - '),(3537,10,104,2,74,'womens, sandal, leather, anashria, '),(3538,10,506,2,74,'Womens Premier Leather Single Layer Narrow Strap - NEW Colors Available - Womens Style - Genuine Top Grain Premier Leather - Rich Color Tones - Straps lined with 2000 lb test nylon - Guaranteed for the Life of the Sole - Non-slip sole - Note: Rainbow is in the process of unveiling a new toe post tag that is much smaller than the original tag.'),(3539,10,495,2,75,'B000KJ43SG'),(3540,10,97,2,75,'Womens Premier Leather Single Layer Narrow Strap - NEW Colors Available - Womens Style - Genuine Top Grain Premier Leather - Rich Color Tones - Straps lined with 2000 lb test nylon - Guaranteed for the Life of the Sole - Non-slip sole - Note: Rainbow is in the process of unveiling a new toe post tag that is much smaller than the original tag.'),(3541,10,492,2,75,'Womens Premier Leather Single Layer Narrow Strap - '),(3542,10,104,2,75,'womens, sandal, leather, anashria, '),(3543,10,506,2,75,'Womens Premier Leather Single Layer Narrow Strap - NEW Colors Available - Womens Style - Genuine Top Grain Premier Leather - Rich Color Tones - Straps lined with 2000 lb test nylon - Guaranteed for the Life of the Sole - Non-slip sole - Note: Rainbow is in the process of unveiling a new toe post tag that is much smaller than the original tag.'),(3544,10,495,2,79,'B000KJ43SG'),(3545,10,97,2,79,'Womens Premier Leather Single Layer Narrow Strap - NEW Colors Available - Womens Style - Genuine Top Grain Premier Leather - Rich Color Tones - Straps lined with 2000 lb test nylon - Guaranteed for the Life of the Sole - Non-slip sole - Note: Rainbow is in the process of unveiling a new toe post tag that is much smaller than the original tag.'),(3546,10,492,2,79,'Womens Premier Leather Single Layer Narrow Strap - '),(3547,10,104,2,79,'womens, sandal, leather, anashria, '),(3548,10,506,2,79,'Womens Premier Leather Single Layer Narrow Strap - NEW Colors Available - Womens Style - Genuine Top Grain Premier Leather - Rich Color Tones - Straps lined with 2000 lb test nylon - Guaranteed for the Life of the Sole - Non-slip sole - Note: Rainbow is in the process of unveiling a new toe post tag that is much smaller than the original tag.'),(3549,10,495,2,80,'B000KJ43SG'),(3550,10,97,2,80,'Womens Premier Leather Single Layer Narrow Strap - NEW Colors Available - Womens Style - Genuine Top Grain Premier Leather - Rich Color Tones - Straps lined with 2000 lb test nylon - Guaranteed for the Life of the Sole - Non-slip sole - Note: Rainbow is in the process of unveiling a new toe post tag that is much smaller than the original tag.'),(3551,10,492,2,80,'Womens Premier Leather Single Layer Narrow Strap - '),(3552,10,104,2,80,'womens, sandal, leather, anashria, '),(3553,10,506,2,80,'Womens Premier Leather Single Layer Narrow Strap - NEW Colors Available - Womens Style - Genuine Top Grain Premier Leather - Rich Color Tones - Straps lined with 2000 lb test nylon - Guaranteed for the Life of the Sole - Non-slip sole - Note: Rainbow is in the process of unveiling a new toe post tag that is much smaller than the original tag.'),(3554,10,495,2,81,'B000KJ43SG'),(3555,10,97,2,81,'Womens Premier Leather Single Layer Narrow Strap - NEW Colors Available - Womens Style - Genuine Top Grain Premier Leather - Rich Color Tones - Straps lined with 2000 lb test nylon - Guaranteed for the Life of the Sole - Non-slip sole - Note: Rainbow is in the process of unveiling a new toe post tag that is much smaller than the original tag.'),(3556,10,492,2,81,'Womens Premier Leather Single Layer Narrow Strap - '),(3557,10,104,2,81,'womens, sandal, leather, anashria, '),(3558,10,506,2,81,'Womens Premier Leather Single Layer Narrow Strap - NEW Colors Available - Womens Style - Genuine Top Grain Premier Leather - Rich Color Tones - Straps lined with 2000 lb test nylon - Guaranteed for the Life of the Sole - Non-slip sole - Note: Rainbow is in the process of unveiling a new toe post tag that is much smaller than the original tag.'),(3559,10,495,2,82,'B000KJ43SG'),(3560,10,97,2,82,'Womens Premier Leather Single Layer Narrow Strap - NEW Colors Available - Womens Style - Genuine Top Grain Premier Leather - Rich Color Tones - Straps lined with 2000 lb test nylon - Guaranteed for the Life of the Sole - Non-slip sole - Note: Rainbow is in the process of unveiling a new toe post tag that is much smaller than the original tag.'),(3561,10,492,2,82,'Womens Premier Leather Single Layer Narrow Strap - '),(3562,10,104,2,82,'womens, sandal, leather, anashria, '),(3563,10,506,2,82,'Womens Premier Leather Single Layer Narrow Strap - NEW Colors Available - Womens Style - Genuine Top Grain Premier Leather - Rich Color Tones - Straps lined with 2000 lb test nylon - Guaranteed for the Life of the Sole - Non-slip sole - Note: Rainbow is in the process of unveiling a new toe post tag that is much smaller than the original tag.'),(3564,10,495,2,83,'B000JI2N0I'),(3565,10,104,2,83,'cn, clogs, outdoor, shoes, sandals, comfortable'),(3566,10,506,2,83,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear'),(3567,10,97,2,83,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear. Wear them either at the beach, in your garden, at the mall or just about anywhere you would want to be comfortable.'),(3568,10,492,2,83,'<ul>\r\n<ul class=\"disc\">\r\n<li>Made of EVA foam<br></li>\r\n<li>Heel strap keeps shoe on foot<br></li>\r\n<li>Non-marking, slip-resistant outsole<br></li>\r\n<li> Weigh just 6-10 ounces<br></li>\r\n'),(3569,10,495,2,84,'B000JI2N0I'),(3570,10,97,2,84,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear. Wear them either at the beach, in your garden, at the mall or just about anywhere you would want to be comfortable.'),(3571,10,492,2,84,'    * Made of EVA foam\r\n    * Heel strap keeps shoe on foot\r\n    * Non-marking, slip-resistant outsole\r\n    * Weigh just 6-10 ounces\r\n\r\n'),(3572,10,104,2,84,'CN Clogs Beach/Garden Clog '),(3573,10,506,2,84,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear'),(3574,10,495,2,85,'B000JI2N0I'),(3575,10,97,2,85,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear. Wear them either at the beach, in your garden, at the mall or just about anywhere you would want to be comfortable.'),(3576,10,492,2,85,'    * Made of EVA foam\r\n    * Heel strap keeps shoe on foot\r\n    * Non-marking, slip-resistant outsole\r\n    * Weigh just 6-10 ounces\r\n\r\n'),(3577,10,104,2,85,'CN Clogs Beach/Garden Clog '),(3578,10,506,2,85,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear'),(3579,10,495,2,86,'B000JI2N0I'),(3580,10,97,2,86,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear. Wear them either at the beach, in your garden, at the mall or just about anywhere you would want to be comfortable.'),(3581,10,492,2,86,'    * Made of EVA foam\r\n    * Heel strap keeps shoe on foot\r\n    * Non-marking, slip-resistant outsole\r\n    * Weigh just 6-10 ounces\r\n\r\n'),(3582,10,104,2,86,'CN Clogs Beach/Garden Clog '),(3583,10,506,2,86,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear'),(3584,10,495,2,87,'B000JI2N0I'),(3585,10,97,2,87,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear. Wear them either at the beach, in your garden, at the mall or just about anywhere you would want to be comfortable.'),(3586,10,492,2,87,'    * Made of EVA foam\r\n    * Heel strap keeps shoe on foot\r\n    * Non-marking, slip-resistant outsole\r\n    * Weigh just 6-10 ounces\r\n\r\n'),(3587,10,104,2,87,'CN Clogs Beach/Garden Clog '),(3588,10,506,2,87,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear'),(3589,10,495,2,88,'B000JI2N0I'),(3590,10,97,2,88,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear. Wear them either at the beach, in your garden, at the mall or just about anywhere you would want to be comfortable.'),(3591,10,492,2,88,'    * Made of EVA foam\r\n    * Heel strap keeps shoe on foot\r\n    * Non-marking, slip-resistant outsole\r\n    * Weigh just 6-10 ounces\r\n\r\n'),(3592,10,104,2,88,'CN Clogs Beach/Garden Clog '),(3593,10,506,2,88,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear'),(3594,10,495,2,89,'B000JI2N0I'),(3595,10,97,2,89,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear. Wear them either at the beach, in your garden, at the mall or just about anywhere you would want to be comfortable.'),(3596,10,492,2,89,'    * Made of EVA foam\r\n    * Heel strap keeps shoe on foot\r\n    * Non-marking, slip-resistant outsole\r\n    * Weigh just 6-10 ounces\r\n\r\n'),(3597,10,104,2,89,'CN Clogs Beach/Garden Clog '),(3598,10,506,2,89,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear'),(3599,10,495,2,90,'B000JI2N0I'),(3600,10,97,2,90,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear. Wear them either at the beach, in your garden, at the mall or just about anywhere you would want to be comfortable.'),(3601,10,492,2,90,'    * Made of EVA foam\r\n    * Heel strap keeps shoe on foot\r\n    * Non-marking, slip-resistant outsole\r\n    * Weigh just 6-10 ounces\r\n\r\n'),(3602,10,104,2,90,'CN Clogs Beach/Garden Clog '),(3603,10,506,2,90,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear'),(3604,10,495,2,91,'B000JI2N0I'),(3605,10,97,2,91,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear. Wear them either at the beach, in your garden, at the mall or just about anywhere you would want to be comfortable.'),(3606,10,492,2,91,'    * Made of EVA foam\r\n    * Heel strap keeps shoe on foot\r\n    * Non-marking, slip-resistant outsole\r\n    * Weigh just 6-10 ounces\r\n\r\n'),(3607,10,104,2,91,'CN Clogs Beach/Garden Clog '),(3608,10,506,2,91,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear'),(3609,10,495,2,92,'B000JI2N0I'),(3610,10,97,2,92,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear. Wear them either at the beach, in your garden, at the mall or just about anywhere you would want to be comfortable.'),(3611,10,492,2,92,'    * Made of EVA foam\r\n    * Heel strap keeps shoe on foot\r\n    * Non-marking, slip-resistant outsole\r\n    * Weigh just 6-10 ounces\r\n\r\n'),(3612,10,104,2,92,'CN Clogs Beach/Garden Clog '),(3613,10,506,2,92,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear'),(3614,10,495,2,93,'B000CP1M00'),(3615,10,104,2,93,'asics, gel, kayano'),(3616,10,506,2,93,'The ASICS® GEL-Kayano® XII running shoe delivers the ultimate blend of cushioning and support. '),(3617,10,97,2,93,'Biomorphic Fit™ upper offers enhanced upper fit and comfort while decreasing the potential for irritation. Solyte midsole material is lighter than standard EVA and SpEVA® combined with improved cushioning and durability. Impact Guidance System (I.G.S.®) uses linked componentry to encourage optimal gait while allowing for natural foot movement from heel strike to toe off. DuoMax® support system helps ensure that the shoe maintains proper support for the foot during the critical transition from heel strike to toe off. Space Trusstic® System creates a pocket between the Trusstic® System device and the midsole, allowing for greater midsole deformation and more efficient foot function. GEL® Cushioning System provides maximum rearfoot and forefoot shock attenuation. Wt. 12.6 oz.'),(3618,10,492,2,93,'<ul>\r\n<ul class=\"disc\">\r\n<li> I.G.S.: Allows for natural foot movement from heel strike to toe-off<br></li>\r\n<li>DuoMax Support System: Maintains proper support for the foot during the critical transition from heel strike to toe-off<br></li>\r\n<li> Space Trusstic System: Allows for greater midsole deformation and more efficient foot function<br></li>\r\n<li>GEL Cushioning System: Provides maximum rearfoot/forefoot shock attenuation<br></li>\r\n<li>Biomorphic Fit Upper: Provides enhanced upper fit and comfort while limiting irritation</li>\r\n\r\n</ul>'),(3619,10,495,2,94,'B000CP1M00'),(3620,10,97,2,94,'The ASICS® GEL-Kayano® XII running shoe delivers the ultimate blend of cushioning and support. Biomorphic Fit™ upper offers enhanced upper fit and comfort while decreasing the potential for irritation. Solyte midsole material is lighter than standard EVA and SpEVA® combined with improved cushioning and durability. Impact Guidance System (I.G.S.®) uses linked componentry to encourage optimal gait while allowing for natural foot movement from heel strike to toe off. DuoMax® support system helps ensure that the shoe maintains proper support for the foot during the critical transition from heel strike to toe off. Space Trusstic® System creates a pocket between the Trusstic® System device and the midsole, allowing for greater midsole deformation and more efficient foot function. GEL® Cushioning System provides maximum rearfoot and forefoot shock attenuation. Wt. 12.6 oz.'),(3621,10,492,2,94,'# I.G.S.?: Allows for natural foot movement from heel strike to toe-off\r\n# DuoMax? Support System: Maintains proper support for the foot during the critical transition from heel strike to toe-off\r\n# Space Trusstic System?: Allows for greater midsole deformation and more efficient foot function\r\n# GEL? Cushioning System: Provides maximum rearfoot/forefoot shock attenuation\r\n# Biomorphic Fit Upper: Provides enhanced upper fit and comfort while limiting irritation'),(3622,10,104,2,94,'ASICS® Men\'s GEL-Kayano® XII '),(3623,10,506,2,94,'The ASICS® GEL-Kayano® XII running shoe delivers the ultimate blend of cushioning and support. Biomorphic Fit™ upper offers enhanced upper fit and comfort while decreasing the potential for irritation. '),(3624,10,495,2,95,'B000CP1M00'),(3625,10,97,2,95,'The ASICS® GEL-Kayano® XII running shoe delivers the ultimate blend of cushioning and support. Biomorphic Fit™ upper offers enhanced upper fit and comfort while decreasing the potential for irritation. Solyte midsole material is lighter than standard EVA and SpEVA® combined with improved cushioning and durability. Impact Guidance System (I.G.S.®) uses linked componentry to encourage optimal gait while allowing for natural foot movement from heel strike to toe off. DuoMax® support system helps ensure that the shoe maintains proper support for the foot during the critical transition from heel strike to toe off. Space Trusstic® System creates a pocket between the Trusstic® System device and the midsole, allowing for greater midsole deformation and more efficient foot function. GEL® Cushioning System provides maximum rearfoot and forefoot shock attenuation. Wt. 12.6 oz.'),(3626,10,492,2,95,'# I.G.S.?: Allows for natural foot movement from heel strike to toe-off\r\n# DuoMax? Support System: Maintains proper support for the foot during the critical transition from heel strike to toe-off\r\n# Space Trusstic System?: Allows for greater midsole deformation and more efficient foot function\r\n# GEL? Cushioning System: Provides maximum rearfoot/forefoot shock attenuation\r\n# Biomorphic Fit Upper: Provides enhanced upper fit and comfort while limiting irritation'),(3627,10,104,2,95,'ASICS® Men\'s GEL-Kayano® XII '),(3628,10,506,2,95,'The ASICS® GEL-Kayano® XII running shoe delivers the ultimate blend of cushioning and support. Biomorphic Fit™ upper offers enhanced upper fit and comfort while decreasing the potential for irritation. '),(3629,10,495,2,96,'B000CP1M00'),(3630,10,97,2,96,'The ASICS® GEL-Kayano® XII running shoe delivers the ultimate blend of cushioning and support. Biomorphic Fit™ upper offers enhanced upper fit and comfort while decreasing the potential for irritation. Solyte midsole material is lighter than standard EVA and SpEVA® combined with improved cushioning and durability. Impact Guidance System (I.G.S.®) uses linked componentry to encourage optimal gait while allowing for natural foot movement from heel strike to toe off. DuoMax® support system helps ensure that the shoe maintains proper support for the foot during the critical transition from heel strike to toe off. Space Trusstic® System creates a pocket between the Trusstic® System device and the midsole, allowing for greater midsole deformation and more efficient foot function. GEL® Cushioning System provides maximum rearfoot and forefoot shock attenuation. Wt. 12.6 oz.'),(3631,10,492,2,96,'# I.G.S.?: Allows for natural foot movement from heel strike to toe-off\r\n# DuoMax? Support System: Maintains proper support for the foot during the critical transition from heel strike to toe-off\r\n# Space Trusstic System?: Allows for greater midsole deformation and more efficient foot function\r\n# GEL? Cushioning System: Provides maximum rearfoot/forefoot shock attenuation\r\n# Biomorphic Fit Upper: Provides enhanced upper fit and comfort while limiting irritation'),(3632,10,104,2,96,'ASICS® Men\'s GEL-Kayano® XII '),(3633,10,506,2,96,'The ASICS® GEL-Kayano® XII running shoe delivers the ultimate blend of cushioning and support. Biomorphic Fit™ upper offers enhanced upper fit and comfort while decreasing the potential for irritation. '),(3634,10,495,2,97,'B000CP1M00'),(3635,10,97,2,97,'The ASICS® GEL-Kayano® XII running shoe delivers the ultimate blend of cushioning and support. Biomorphic Fit™ upper offers enhanced upper fit and comfort while decreasing the potential for irritation. Solyte midsole material is lighter than standard EVA and SpEVA® combined with improved cushioning and durability. Impact Guidance System (I.G.S.®) uses linked componentry to encourage optimal gait while allowing for natural foot movement from heel strike to toe off. DuoMax® support system helps ensure that the shoe maintains proper support for the foot during the critical transition from heel strike to toe off. Space Trusstic® System creates a pocket between the Trusstic® System device and the midsole, allowing for greater midsole deformation and more efficient foot function. GEL® Cushioning System provides maximum rearfoot and forefoot shock attenuation. Wt. 12.6 oz.'),(3636,10,492,2,97,'# I.G.S.?: Allows for natural foot movement from heel strike to toe-off\r\n# DuoMax? Support System: Maintains proper support for the foot during the critical transition from heel strike to toe-off\r\n# Space Trusstic System?: Allows for greater midsole deformation and more efficient foot function\r\n# GEL? Cushioning System: Provides maximum rearfoot/forefoot shock attenuation\r\n# Biomorphic Fit Upper: Provides enhanced upper fit and comfort while limiting irritation'),(3637,10,104,2,97,'ASICS® Men\'s GEL-Kayano® XII '),(3638,10,506,2,97,'The ASICS® GEL-Kayano® XII running shoe delivers the ultimate blend of cushioning and support. Biomorphic Fit™ upper offers enhanced upper fit and comfort while decreasing the potential for irritation. '),(3639,10,495,2,98,'B000IKC6AY'),(3640,10,104,2,98,'Kenneth Cole, New York, Men\'s, Con-verge, Slip-on'),(3641,10,506,2,98,'Smooth leather upper in a dress slip on style, with a stitched and covered seam moc-inspired square toe.'),(3642,10,97,2,98,'High fashion and classic good looks converge in this suave slip on from Kenneth Cole. Smooth leather upper in a dress slip on style, with a stitched and covered seam moc-inspired square toe, quarter panel curved overlays and flared tongue with side elastic panels for a comfortable, secure fit. Smooth leather lining, cushioned leather topped insole. Dress midsole with a beveled edge, 1 inch capped dress heel. Flat traction outsole.'),(3643,10,492,2,98,'The handsome style of the Con-Verge slip-on from Kenneth Cole New York is larger than life. This sharp shoe has a semi-polished smooth leather upper, a squared off stitched apron toe, and dual-goring for easy on/off accessibility. It also features soft leather linings, a cushioned insole, and a paneled rubber outsole for a sturdy step. The Con-Verge is a perfect companion to your business and special occasion wardrobes.'),(3644,10,495,2,99,'B000IKC6AY'),(3645,10,97,2,99,'High fashion and classic good looks converge in this suave slip on from Kenneth Cole. Smooth leather upper in a dress slip on style, with a stitched and covered seam moc-inspired square toe, quarter panel curved overlays and flared tongue with side elastic panels for a comfortable, secure fit. Smooth leather lining, cushioned leather topped insole. Dress midsole with a beveled edge, 1 inch capped dress heel. Flat traction outsole.'),(3646,10,492,2,99,'The handsome style of the Con-Verge slip-on from Kenneth Cole New York is larger than life. This sharp shoe has a semi-polished smooth leather upper, a squared off stitched apron toe, and dual-goring for easy on/off accessibility. It also features soft leather linings, a cushioned insole, and a paneled rubber outsole for a sturdy step. The Con-Verge is a perfect companion to your business and special occasion wardrobes.'),(3647,10,104,2,99,'Kenneth Cole New York Men\'s Con-verge Slip-on'),(3648,10,506,2,99,'High fashion and classic good looks converge in this suave slip on from Kenneth Cole. Smooth leather upper in a dress slip on style, with a stitched and covered seam moc-inspired square toe, quarter panel curved overlays and flared tongue'),(3649,10,495,2,100,'B000IKC6AY'),(3650,10,97,2,100,'High fashion and classic good looks converge in this suave slip on from Kenneth Cole. Smooth leather upper in a dress slip on style, with a stitched and covered seam moc-inspired square toe, quarter panel curved overlays and flared tongue with side elastic panels for a comfortable, secure fit. Smooth leather lining, cushioned leather topped insole. Dress midsole with a beveled edge, 1 inch capped dress heel. Flat traction outsole.'),(3651,10,492,2,100,'The handsome style of the Con-Verge slip-on from Kenneth Cole New York is larger than life. This sharp shoe has a semi-polished smooth leather upper, a squared off stitched apron toe, and dual-goring for easy on/off accessibility. It also features soft leather linings, a cushioned insole, and a paneled rubber outsole for a sturdy step. The Con-Verge is a perfect companion to your business and special occasion wardrobes.'),(3652,10,104,2,100,'Kenneth Cole New York Men\'s Con-verge Slip-on'),(3653,10,506,2,100,'High fashion and classic good looks converge in this suave slip on from Kenneth Cole. Smooth leather upper in a dress slip on style, with a stitched and covered seam moc-inspired square toe, quarter panel curved overlays and flared tongue'),(3654,10,495,2,101,'B000IKC6AY'),(3655,10,97,2,101,'High fashion and classic good looks converge in this suave slip on from Kenneth Cole. Smooth leather upper in a dress slip on style, with a stitched and covered seam moc-inspired square toe, quarter panel curved overlays and flared tongue with side elastic panels for a comfortable, secure fit. Smooth leather lining, cushioned leather topped insole. Dress midsole with a beveled edge, 1 inch capped dress heel. Flat traction outsole.'),(3656,10,492,2,101,'The handsome style of the Con-Verge slip-on from Kenneth Cole New York is larger than life. This sharp shoe has a semi-polished smooth leather upper, a squared off stitched apron toe, and dual-goring for easy on/off accessibility. It also features soft leather linings, a cushioned insole, and a paneled rubber outsole for a sturdy step. The Con-Verge is a perfect companion to your business and special occasion wardrobes.'),(3657,10,104,2,101,'Kenneth Cole New York Men\'s Con-verge Slip-on'),(3658,10,506,2,101,'High fashion and classic good looks converge in this suave slip on from Kenneth Cole. Smooth leather upper in a dress slip on style, with a stitched and covered seam moc-inspired square toe, quarter panel curved overlays and flared tongue'),(3659,10,495,2,102,'B000IKC6AY'),(3660,10,97,2,102,'High fashion and classic good looks converge in this suave slip on from Kenneth Cole. Smooth leather upper in a dress slip on style, with a stitched and covered seam moc-inspired square toe, quarter panel curved overlays and flared tongue with side elastic panels for a comfortable, secure fit. Smooth leather lining, cushioned leather topped insole. Dress midsole with a beveled edge, 1 inch capped dress heel. Flat traction outsole.'),(3661,10,492,2,102,'The handsome style of the Con-Verge slip-on from Kenneth Cole New York is larger than life. This sharp shoe has a semi-polished smooth leather upper, a squared off stitched apron toe, and dual-goring for easy on/off accessibility. It also features soft leather linings, a cushioned insole, and a paneled rubber outsole for a sturdy step. The Con-Verge is a perfect companion to your business and special occasion wardrobes.'),(3662,10,104,2,102,'Kenneth Cole New York Men\'s Con-verge Slip-on'),(3663,10,506,2,102,'High fashion and classic good looks converge in this suave slip on from Kenneth Cole. Smooth leather upper in a dress slip on style, with a stitched and covered seam moc-inspired square toe, quarter panel curved overlays and flared tongue'),(3664,10,495,2,103,'B000NOGIKY'),(3665,10,104,2,103,'Steven by Steve Madden Pryme Pump'),(3666,10,506,2,103,' This daring pump has a pretty patent leather upper with light shirring, a double stitch detail surrounding the collar, and a vampy almond shaped toe'),(3667,10,97,2,103,'Nothing will turn his head faster than you wearing the sexy Pryme pump from Steven by Steve Madden. This daring pump has a pretty patent leather upper with light shirring, a double stitch detail surrounding the collar, and a vampy almond shaped toe. It also features smooth linings, a fully cushioned insole, a sexy covered stiletto heel, and a lightly textured dress leather outsole. Any way you wear the Pryme, you\'re certain to catch a lot of attention.'),(3668,10,492,2,103,'A prime example of chic style. Patent leather upper. Round toe. 3-1/2 inch covered heel. Flex leather sole. Imported. '),(3669,10,495,2,104,'B000NOGIKY'),(3670,10,97,2,104,'Nothing will turn his head faster than you wearing the sexy Pryme pump from Steven by Steve Madden. This daring pump has a pretty patent leather upper with light shirring, a double stitch detail surrounding the collar, and a vampy almond shaped toe. It also features smooth linings, a fully cushioned insole, a sexy covered stiletto heel, and a lightly textured dress leather outsole. Any way you wear the Pryme, you\'re certain to catch a lot of attention.'),(3671,10,492,2,104,'A prime example of chic style. Patent leather upper. Round toe. 3-1/2 inch covered heel. Flex leather sole. Imported. '),(3672,10,104,2,104,'Steven by Steve Madden Pryme Pump'),(3673,10,506,2,104,'Nothing will turn his head faster than you wearing the sexy Pryme pump from Steven by Steve Madden. This daring pump has a pretty patent leather upper with light shirring, a double stitch detail surrounding the collar, and a vampy almond shaped toe'),(3674,10,495,2,105,'B000NOGIKY'),(3675,10,97,2,105,'Nothing will turn his head faster than you wearing the sexy Pryme pump from Steven by Steve Madden. This daring pump has a pretty patent leather upper with light shirring, a double stitch detail surrounding the collar, and a vampy almond shaped toe. It also features smooth linings, a fully cushioned insole, a sexy covered stiletto heel, and a lightly textured dress leather outsole. Any way you wear the Pryme, you\'re certain to catch a lot of attention.'),(3676,10,492,2,105,'A prime example of chic style. Patent leather upper. Round toe. 3-1/2 inch covered heel. Flex leather sole. Imported. '),(3677,10,104,2,105,'Steven by Steve Madden Pryme Pump'),(3678,10,506,2,105,'Nothing will turn his head faster than you wearing the sexy Pryme pump from Steven by Steve Madden. This daring pump has a pretty patent leather upper with light shirring, a double stitch detail surrounding the collar, and a vampy almond shaped toe'),(3679,10,495,2,106,'B000NOGIKY'),(3680,10,97,2,106,'Nothing will turn his head faster than you wearing the sexy Pryme pump from Steven by Steve Madden. This daring pump has a pretty patent leather upper with light shirring, a double stitch detail surrounding the collar, and a vampy almond shaped toe. It also features smooth linings, a fully cushioned insole, a sexy covered stiletto heel, and a lightly textured dress leather outsole. Any way you wear the Pryme, you\'re certain to catch a lot of attention.'),(3681,10,492,2,106,'A prime example of chic style. Patent leather upper. Round toe. 3-1/2 inch covered heel. Flex leather sole. Imported. '),(3682,10,104,2,106,'Steven by Steve Madden Pryme Pump'),(3683,10,506,2,106,'Nothing will turn his head faster than you wearing the sexy Pryme pump from Steven by Steve Madden. This daring pump has a pretty patent leather upper with light shirring, a double stitch detail surrounding the collar, and a vampy almond shaped toe'),(3684,10,495,2,107,'B000NOGIKY'),(3685,10,97,2,107,'Nothing will turn his head faster than you wearing the sexy Pryme pump from Steven by Steve Madden. This daring pump has a pretty patent leather upper with light shirring, a double stitch detail surrounding the collar, and a vampy almond shaped toe. It also features smooth linings, a fully cushioned insole, a sexy covered stiletto heel, and a lightly textured dress leather outsole. Any way you wear the Pryme, you\'re certain to catch a lot of attention.'),(3686,10,492,2,107,'A prime example of chic style. Patent leather upper. Round toe. 3-1/2 inch covered heel. Flex leather sole. Imported. '),(3687,10,104,2,107,'Steven by Steve Madden Pryme Pump'),(3688,10,506,2,107,'Nothing will turn his head faster than you wearing the sexy Pryme pump from Steven by Steve Madden. This daring pump has a pretty patent leather upper with light shirring, a double stitch detail surrounding the collar, and a vampy almond shaped toe'),(3689,10,495,2,108,'B000LJQVF8'),(3690,10,104,2,108,'Nine West, Women, Lucero, Pump'),(3691,10,506,2,108,'This flirty pump has a leather upper, a pretty almond-shaped toe with a slight V-cut vamp'),(3692,10,97,2,108,'The Lucero pump from Nine West may just leave him at a loss for words. This flirty pump has a leather upper, a pretty almond-shaped toe with a slight V-cut vamp, leather linings, and a cushioned insole for long-wearing comfort. The stiletto heel radiates a subtle hint of sensuality, so sass up your jean and t-shirt look or nighttime attire with this hot pump and you\'ll be absolutely unforgettable.'),(3693,10,492,2,108,'The perfect pump will suit any ensemble. Leather upper. 3-3/4 inch stacked heel. Man-made sole. Imported. '),(3694,10,495,2,109,'B000LJQVF8'),(3695,10,97,2,109,'The Lucero pump from Nine West may just leave him at a loss for words. This flirty pump has a leather upper, a pretty almond-shaped toe with a slight V-cut vamp, leather linings, and a cushioned insole for long-wearing comfort. The stiletto heel radiates a subtle hint of sensuality, so sass up your jean and t-shirt look or nighttime attire with this hot pump and you\'ll be absolutely unforgettable.'),(3696,10,492,2,109,'The perfect pump will suit any ensemble. Leather upper. 3-3/4 inch stacked heel. Man-made sole. Imported. '),(3697,10,104,2,109,'Nine West Women\'s Lucero Pump '),(3698,10,506,2,109,'The Lucero pump from Nine West may just leave him at a loss for words. This flirty pump has a leather upper, a pretty almond-shaped toe with a slight V-cut vamp'),(3699,10,495,2,110,'B000LJQVF8'),(3700,10,97,2,110,'The Lucero pump from Nine West may just leave him at a loss for words. This flirty pump has a leather upper, a pretty almond-shaped toe with a slight V-cut vamp, leather linings, and a cushioned insole for long-wearing comfort. The stiletto heel radiates a subtle hint of sensuality, so sass up your jean and t-shirt look or nighttime attire with this hot pump and you\'ll be absolutely unforgettable.'),(3701,10,492,2,110,'The perfect pump will suit any ensemble. Leather upper. 3-3/4 inch stacked heel. Man-made sole. Imported. '),(3702,10,104,2,110,'Nine West Women\'s Lucero Pump '),(3703,10,506,2,110,'The Lucero pump from Nine West may just leave him at a loss for words. This flirty pump has a leather upper, a pretty almond-shaped toe with a slight V-cut vamp'),(3704,10,495,2,111,'B000LJQVF8'),(3705,10,97,2,111,'The Lucero pump from Nine West may just leave him at a loss for words. This flirty pump has a leather upper, a pretty almond-shaped toe with a slight V-cut vamp, leather linings, and a cushioned insole for long-wearing comfort. The stiletto heel radiates a subtle hint of sensuality, so sass up your jean and t-shirt look or nighttime attire with this hot pump and you\'ll be absolutely unforgettable.'),(3706,10,492,2,111,'The perfect pump will suit any ensemble. Leather upper. 3-3/4 inch stacked heel. Man-made sole. Imported. '),(3707,10,104,2,111,'Nine West Women\'s Lucero Pump '),(3708,10,506,2,111,'The Lucero pump from Nine West may just leave him at a loss for words. This flirty pump has a leather upper, a pretty almond-shaped toe with a slight V-cut vamp'),(3709,10,495,2,112,'B000NPOA1M'),(3710,10,104,2,112,'ECCO, Womens, Golf, Flexor, Shoe'),(3711,10,506,2,112,'With a wide toe box and delivering optimum support, the sporty Golf Flexor golf shoe is a stylish cleat that you\'ll love wearing on and off the links.'),(3712,10,97,2,112,'Featuring a wide toe box and delivering optimum support, the sporty Golf Flexor golf shoe is a stylish cleat that you\'ll love wearing on and off the links. The contrasting embossed snakeskin panels attract interest, while the laid back lace-up style keeps things simple. And thanks to the one-year waterproof guarantee, you can trust these shoes to keep you in the game, even when conditions are less than perfect.'),(3713,10,492,2,112,'<ul>\r\n<ul class=\"disc\">\r\n<li>Breathable mesh fabric lining<br></li>\r\n<li>Cushioned Comfort Fibre System(R) <br></li>\r\n<li>Moisture absorbent<br></li>\r\n<li>Anti-bacterial insole<br></li>\r\n</ul>'),(3714,10,495,2,113,'B000NPOA1M'),(3715,10,97,2,113,'Featuring a wide toe box and delivering optimum support, the sporty Golf Flexor golf shoe is a stylish cleat that you\'ll love wearing on and off the links. The contrasting embossed snakeskin panels attract interest, while the laid back lace-up style keeps things simple. And thanks to the one-year waterproof guarantee, you can trust these shoes to keep you in the game, even when conditions are less than perfect.'),(3716,10,492,2,113,'Featuring a wide toe box and delivering optimum support, the sporty Golf Flexor golf shoe is a stylish cleat that you\'ll love wearing on and off the links. The contrasting embossed snakeskin panels attract interest, while the laid back lace-up style keeps things simple. And thanks to the one-year waterproof guarantee, you can trust these shoes to keep you in the game, even when conditions are less than perfect.'),(3717,10,104,2,113,'ECCO Womens Golf Flexor Golf Shoe'),(3718,10,506,2,113,'Featuring a wide toe box and delivering optimum support, the sporty Golf Flexor golf shoe is a stylish cleat that you\'ll love wearing on and off the links.'),(3719,10,495,2,114,'B000NPOA1M'),(3720,10,97,2,114,'Featuring a wide toe box and delivering optimum support, the sporty Golf Flexor golf shoe is a stylish cleat that you\'ll love wearing on and off the links. The contrasting embossed snakeskin panels attract interest, while the laid back lace-up style keeps things simple. And thanks to the one-year waterproof guarantee, you can trust these shoes to keep you in the game, even when conditions are less than perfect.'),(3721,10,492,2,114,'Featuring a wide toe box and delivering optimum support, the sporty Golf Flexor golf shoe is a stylish cleat that you\'ll love wearing on and off the links. The contrasting embossed snakeskin panels attract interest, while the laid back lace-up style keeps things simple. And thanks to the one-year waterproof guarantee, you can trust these shoes to keep you in the game, even when conditions are less than perfect.'),(3722,10,104,2,114,'ECCO Womens Golf Flexor Golf Shoe'),(3723,10,506,2,114,'Featuring a wide toe box and delivering optimum support, the sporty Golf Flexor golf shoe is a stylish cleat that you\'ll love wearing on and off the links.'),(3724,10,495,2,115,'B000NPOA1M'),(3725,10,97,2,115,'Featuring a wide toe box and delivering optimum support, the sporty Golf Flexor golf shoe is a stylish cleat that you\'ll love wearing on and off the links. The contrasting embossed snakeskin panels attract interest, while the laid back lace-up style keeps things simple. And thanks to the one-year waterproof guarantee, you can trust these shoes to keep you in the game, even when conditions are less than perfect.'),(3726,10,492,2,115,'Featuring a wide toe box and delivering optimum support, the sporty Golf Flexor golf shoe is a stylish cleat that you\'ll love wearing on and off the links. The contrasting embossed snakeskin panels attract interest, while the laid back lace-up style keeps things simple. And thanks to the one-year waterproof guarantee, you can trust these shoes to keep you in the game, even when conditions are less than perfect.'),(3727,10,104,2,115,'ECCO Womens Golf Flexor Golf Shoe'),(3728,10,506,2,115,'Featuring a wide toe box and delivering optimum support, the sporty Golf Flexor golf shoe is a stylish cleat that you\'ll love wearing on and off the links.'),(3729,10,495,2,117,'Impatience'),(3730,10,97,2,117,'# 6.1 oz. 100% preshrunk heavyweight cotton \r\n# Shoulder-to-shoulder taping\r\n# Double-needle sleeves and bottom hem'),(3731,10,104,2,117,'Coalesce: Functioning On Impatience T-Shirt'),(3732,10,506,2,117,'# 6.1 oz. 100% preshrunk heavyweight cotton \r\n# Shoulder-to-shoulder taping\r\n# Double-needle sleeves and bottom hem'),(3733,10,495,2,118,'Impatience'),(3734,10,97,2,118,'# 6.1 oz. 100% preshrunk heavyweight cotton \r\n# Shoulder-to-shoulder taping\r\n# Double-needle sleeves and bottom hem'),(3735,10,104,2,118,'Coalesce: Functioning On Impatience T-Shirt'),(3736,10,506,2,118,'# 6.1 oz. 100% preshrunk heavyweight cotton \r\n# Shoulder-to-shoulder taping\r\n# Double-needle sleeves and bottom hem'),(3737,10,495,2,119,'Impatience'),(3738,10,104,2,119,'Coalesce, T-Shirt'),(3739,10,506,2,119,'<ul>\r\n<ul class=\"disc\">\r\n\r\n<li>6.1 oz. 100% preshrunk heavyweight cotton<br></li>\r\n<li>Shoulder-to-shoulder taping<br></li>\r\n<li>Double-needle sleeves and bottom hem<br></li>\r\n</ul>'),(3740,10,97,2,119,'Comfortable preshrunk shirts.  Highest Quality Printing.<br><br>\r\n<ul>\r\n<ul class=\"disc\">\r\n<li>6.1 oz. 100% preshrunk heavyweight cotton<br></li>\r\n<li>Shoulder-to-shoulder taping<br></li>\r\n<li>Double-needle sleeves and bottom hem<br></li>'),(3741,10,495,2,120,'Ink Eater:'),(3742,10,104,2,120,'Ink Eater, Krylon, Bombear , Destroyed, Tee, t shirt'),(3743,10,506,2,120,'Now you can make your grandparents proud by wearing an original piece of graf work to YOUR family reunion!'),(3744,10,97,2,120,'We bought these with the intention of making shirts for our family reunion, only to come back the next day to find each and every one of them had been tagged by The Bear.  Oh well -- can\'t argue with art.  Now you can make your grandparents proud by wearing an original piece of graf work to YOUR family reunion!'),(3745,10,495,2,121,'Ink Eater:'),(3746,10,97,2,121,'We bought these with the intention of making shirts for our family reunion, only to come back the next day to find each and every one of them had been tagged by The Bear.  Oh well -- can\'t argue with art.  Now you can make your grandparents proud by wearing an original piece of graf work to YOUR family reunion!'),(3747,10,104,2,121,'Ink Eater: Krylon Bombear Destroyed Tee'),(3748,10,506,2,121,'We bought these with the intention of making shirts for our family reunion, only to come back the next day to find each and every one of them had been tagged by The Bear.  Oh well -- can\'t argue with art.  Now you can make your grandparents proud by wearing an original piece of graf work to YOUR family reunion!'),(3749,10,495,2,122,'Ink Eater:'),(3750,10,97,2,122,'We bought these with the intention of making shirts for our family reunion, only to come back the next day to find each and every one of them had been tagged by The Bear.  Oh well -- can\'t argue with art.  Now you can make your grandparents proud by wearing an original piece of graf work to YOUR family reunion!'),(3751,10,104,2,122,'Ink Eater: Krylon Bombear Destroyed Tee'),(3752,10,506,2,122,'We bought these with the intention of making shirts for our family reunion, only to come back the next day to find each and every one of them had been tagged by The Bear.  Oh well -- can\'t argue with art.  Now you can make your grandparents proud by wearing an original piece of graf work to YOUR family reunion!'),(3753,10,495,2,123,'paisley'),(3754,10,104,2,123,'The Only Children: Paisley T-Shirt'),(3755,10,506,2,123,'Printed on American Apparel Classic style 5495 California cotton T shirt.   '),(3756,10,97,2,123,'<ul>\r\n<ul class=\"disc\">\r\n<li>6.1 oz. 100% preshrunk heavyweight cotton <br></li>\r\n<li>Double-needle sleeves and bottom hem</li>\r\n</ul>'),(3757,10,495,2,124,'The Only Children: Paisley T-Shirt'),(3758,10,97,2,124,'# 6.1 oz. 100% preshrunk heavyweight cotton \r\n# Double-needle sleeves and bottom hem'),(3759,10,104,2,124,'The Only Children: Paisley T-Shirt'),(3760,10,506,2,124,'Printed on American Apparel Classic style 5495 California cotton T shirst.   '),(3761,10,495,2,125,'The Only Children: Paisley T-Shirt'),(3762,10,97,2,125,'# 6.1 oz. 100% preshrunk heavyweight cotton \r\n# Double-needle sleeves and bottom hem'),(3763,10,104,2,125,'The Only Children: Paisley T-Shirt'),(3764,10,506,2,125,'Printed on American Apparel Classic style 5495 California cotton T shirst.   '),(3765,10,495,2,126,'zolof'),(3766,10,104,2,126,'Zolof The Rock And Roll Destroyer: LOL Cat T-shirt'),(3767,10,506,2,126,'Printed on American Apparel Classic style 5495 California t-shirts.  '),(3768,10,97,2,126,'<ul>\r\n<ul class=\"disc\")\r\n<li> 6.1 oz. 100% preshrunk heavyweight cotton <br></li>\r\n<li> Shoulder-to-shoulder taping<br></li>\r\n<li>Double-needle sleeves and bottom hem<br></li>\r\n</ul>'),(3769,10,495,2,127,'Zolof The Rock And Roll Destroyer: LOL Cat T-shirt'),(3770,10,97,2,127,'# 6.1 oz. 100% preshrunk heavyweight cotton \r\n# Shoulder-to-shoulder taping\r\n# Double-needle sleeves and bottom hem'),(3771,10,104,2,127,'Zolof The Rock And Roll Destroyer: LOL Cat T-shirt'),(3772,10,506,2,127,'Printed on American Apparel Classic style 5495 California t-shirts.  '),(3773,10,495,2,128,'Zolof The Rock And Roll Destroyer: LOL Cat T-shirt'),(3774,10,97,2,128,'# 6.1 oz. 100% preshrunk heavyweight cotton \r\n# Shoulder-to-shoulder taping\r\n# Double-needle sleeves and bottom hem'),(3775,10,104,2,128,'Zolof The Rock And Roll Destroyer: LOL Cat T-shirt'),(3776,10,506,2,128,'Printed on American Apparel Classic style 5495 California t-shirts.  '),(3777,10,495,2,129,'Zolof The Rock And Roll Destroyer: LOL Cat T-shirt'),(3778,10,97,2,129,'# 6.1 oz. 100% preshrunk heavyweight cotton \r\n# Shoulder-to-shoulder taping\r\n# Double-needle sleeves and bottom hem'),(3779,10,104,2,129,'Zolof The Rock And Roll Destroyer: LOL Cat T-shirt'),(3780,10,506,2,129,'Printed on American Apparel Classic style 5495 California t-shirts.  '),(3781,10,495,2,130,'Zolof The Rock And Roll Destroyer: LOL Cat T-shirt'),(3782,10,97,2,130,'# 6.1 oz. 100% preshrunk heavyweight cotton \r\n# Shoulder-to-shoulder taping\r\n# Double-needle sleeves and bottom hem'),(3783,10,104,2,130,'Zolof The Rock And Roll Destroyer: LOL Cat T-shirt'),(3784,10,506,2,130,'Printed on American Apparel Classic style 5495 California t-shirts.  '),(3785,10,495,2,131,'Zolof The Rock And Roll Destroyer: LOL Cat T-shirt'),(3786,10,97,2,131,'# 6.1 oz. 100% preshrunk heavyweight cotton \r\n# Shoulder-to-shoulder taping\r\n# Double-needle sleeves and bottom hem'),(3787,10,104,2,131,'Zolof The Rock And Roll Destroyer: LOL Cat T-shirt'),(3788,10,506,2,131,'Printed on American Apparel Classic style 5495 California t-shirts.  '),(3789,10,97,2,133,'A stylish digital camera demands stylish protection. This leather carrying case will defend your camera from the dings and scratches of travel and everyday use while looking smart all the time.'),(3790,10,506,2,133,'A stylish digital camera demands stylish protection. This leather carrying case will defend your camera from the dings and scratches of travel and everyday use while looking smart all the time.'),(3791,10,97,2,132,'Sturdy, lightweight tripods are designed to meet the needs of amateur and professional photographers and videographers.'),(3792,10,506,2,132,'Sturdy, lightweight tripods are designed to meet the needs of amateur and professional photographers and videographers.'),(3793,10,97,2,134,'Features foldable Flat Pin for Easy Storage/ Slim/ Lightweight Design and Smart Charging LED Indicator.'),(3794,10,506,2,134,'Features foldable Flat Pin for Easy Storage/ Slim/ Lightweight Design and Smart Charging LED Indicator.'),(3795,10,495,2,135,'B000KJ43SG!'),(3796,10,104,2,135,'womens, sandal, leather, anashria, '),(3797,10,506,2,135,'Buckle embellished contrasting straps adorn both the heel and canvas covered wedge of this t-strap sandal to make it a truly unique addition to your wardrobe'),(3798,10,97,2,135,'Smooth kidskin upper in a dress platform wedge t-strap sandal style, with a round open toe, front and ankle adjustable buckles and tonal stitching accents. Ankle buckle features elastic panel. Smooth faux leather lining, cushioning faux leather and fabric topped insole. 1 inch matching leather and fabric wrapped midsole.'),(3799,10,492,2,135,'<ul>\r\n<ul class=\"disc\">\r\n<li>Womens Style <br></li>\r\n<li>Genuine Top Grain Premier Leather <br></li>\r\n<li>Rich Color Tones <br></li>\r\n<li>Straps lined with 2000 lb test nylon <br></li>\r\n<li>Guaranteed for the Life of the Sole - Non-slip sole<br></li>\r\n</ul>'),(3803,10,495,3,16,'2610'),(3804,10,494,3,16,'4.1 x 1.7 x 0.7 inches '),(3805,10,97,3,16,'The Nokia 2610 is an easy to use device that combines multiple messaging options including email, instant messaging, and more. You can even download MP3 ringtones, graphics, and games straight to the phone, or surf the Internet with Cingular\'s MEdia Net service. It\'s the perfect complement to Cingular service for those even remotely interested in mobile Web capabilities in an affordable handset.<br><br>\r\n\r\n<b>Design</b><br>\r\nCompact and stylish, the 2610 features a candybar design sporting a bright 128 x 128 pixel display capable of displaying over 65,000 colors. Most of the phone\'s features and on-screen menus are controlled by a center toggle on the control pad. A standard hands-free headphone jack is provided, as are volume control keys, and there\'s even a \"Go-To\" button that can be assigned by the user for quick access to favorite applications. Lastly, the included speakerphone allows you to talk handsfree, and because the phone sports an internal antenna, there\'s nothing to snag or break off.\r\n\r\n'),(3806,10,492,3,16,'<ul>\r\n<ul class\"disc\">\r\n<li>Integrated camera with video recorder to capture those special moments<br></li>\r\n<li>Enriched data connections for complete mobile access via Email, MMS, and MEdia Net<br></li>\r\n<li> Personalize with downloadable MP3 and polyphonic Ring tones, Games, and Graphics<br></li>\r\n<li>Use AIM, Yahoo! and MSN Messenger to stay in touch on the go<br></li>\r\n<li>Mobile Internet browser and email</li>\r\n</ul>'),(3807,10,496,3,16,'Conditional $250 Equipment Discount Included: Your price paid includes an equipment discount of $250 that has been provided to you in exchange for either activating a new, non-substitute line of service or renewing an existing line of service with AT&T and your agreement that for the 181-day period following such activation or renewal you will: (1) pay your balance due to AT&T each month and otherwise maintain your account in good standing; (2) not disconnect this AT&T line of service; (3) not transfer this equipment to another AT&T line of service; (4) not change your AT&T service rate plan to a lower monthly service rate--this includes canceling or removing required PDA, BlackBerry, or smartphone features after your product has shipped; (5) not use this line of service to replace an existing account with AT&T. If these conditions are not met, you hereby authorize Magento to charge your credit card $250 as reimbursement of this equipment discount without need for further approval.'),(3808,10,104,3,16,'Nokia 2610, cell, phone, '),(3809,10,495,3,17,'8100'),(3810,10,494,3,17,'4.2 x 2 x 0.6 inches '),(3811,10,97,3,17,' Like the BlackBerry 7105t, the BlackBerry 8100 Pearl is \r\nThe BlackBerry 8100 Pearl sports a large 240 x 260 screen that supports over 65,000 colors-- plenty of real estate to view your e-mails, Web browser content, messaging sessions, and attachments. The venerable BlackBerry trackwheel has been replaced on this model with an innovative four-way trackball placed below the screen. On the rear of the handheld, you\'ll find a 1.3-megapixel camera and a self portrait mirror. The handheld\'s microSD memory card slot is located inside the device, behind the battery. There\'s also a standard 2.5mm headset jack that can be used with the included headset, as well as a mini-USB port for data connectivity.'),(3812,10,492,3,17,'<ul>\r\n<ul class=\"disc\">\r\n<li> 1.3 mega pixel camera to capture those special moments<br></li>\r\n<li> MP3 player lets you listen to your favorite music on the go<br></li>\r\n<li>Menu and escape keys on the front of the device for easier access<br></li>\r\n<li> Bluetooth technology lets you experience hands free and wire free features<br></li>\r\n<li>Package Contents: phone,AC adapter,software CD,headset,USB cable,sim- card,get started poster,reference guide<br></li>\r\n</ul>'),(3813,10,496,3,17,'CONDITIONAL $250 Equipment Discount Included: Your price paid includes an Equipment Discount of $250 that has been provided to you in exchange for activating a new, non-substitute line of service with T-Mobile and your agreement that for the 181-day period following such activation you will (1) pay your balance due to T-Mobile each month and otherwise maintain your account in good standing, (2) not disconnect this T-Mobile line of service, (3) not transfer this equipment to another T-Mobile line of service, (4) not change your T-Mobile service rate plan to a lower monthly service rate--this includes canceling or removing required PDA, BlackBerry, or smartphone features after your product has shipped, (5) not use this line of service to replace an existing account with T-Mobile. If these conditions are not met, you hereby authorize Magento.com to charge your credit card $250 as reimbursement of this Equipment Discount without need for further approval.'),(3814,10,104,3,17,'Blackberry, 8100, pearl, cell, phone'),(3815,10,495,3,18,'W810i'),(3816,10,494,3,18,' 3.5 x 1.8 x 1 inches'),(3817,10,97,3,18,'The W810i\'s screen sports 176 x 220 pixel resolution with support for 262,000 colors. Quick access buttons below the screen make it easy to control the phone\'s Walkman music features, while a five-way center button controls most of the phone\'s menus and features.'),(3818,10,492,3,18,'<ul>\r\n<ul class=\"disc\">\r\n \r\n<li>Disc2Phone™ music copying software is supplied in the W810 kit and it’s easy to copy songs from your favorite CDs, and PC music folders<br></li>\r\n<li>The built-in W810 2 megapixel digital camera with autofus takes excellent photos and when you need to catch some action, W810 has video too<br></li>\r\n<li>Sharing images and other phone content is easy. Use Bluetooth™, or Multimedia messaging when you want to send images and video<br></li>\r\n<li> Wherever you are, you have high speed access to the internet with EDGE technology<br></li>\r\n<li> A full-function email client in your W810 gives you access to your inbox wherever you go</li>\r\n</ul>'),(3819,10,496,3,18,'Conditional $250 Equipment Discount Included: Your price paid includes an equipment discount of $250 that has been provided to you in exchange for either activating a new, non-substitute line of service or renewing an existing line of service with AT&T and your agreement that for the 181-day period following such activation or renewal you will: (1) pay your balance due to AT&T each month and otherwise maintain your account in good standing; (2) not disconnect this AT&T line of service; (3) not transfer this equipment to another AT&T line of service; (4) not change your AT&T service rate plan to a lower monthly service rate--this includes canceling or removing required PDA, BlackBerry, or smartphone features after your product has shipped; (5) not use this line of service to replace an existing account with AT&T. If these conditions are not met, you hereby authorize Magento.com to charge your credit card $250 as reimbursement of this equipment discount without need for further approval.'),(3820,10,104,3,18,'Sony, Ericsson ,W810i, cell, phone'),(3821,10,495,3,20,'MM-A900M'),(3822,10,494,3,20,'3.9 x 2 x 0.6 inches'),(3823,10,97,3,20,'New services supported by both the MM-A900m include the newly announced Sprint Music StoreSM, which allows users to immediately buy and download complete songs directly to their phone; 30 channels of live and on demand video and audio from Sprint TVSM and On Demand, a personalized resource guide to news, traffic, weather, sports and entertainment. The MM-A900m offers great-looking design with the ability to download a rich selection of content directly to the phone. Features like external music-navigation keys make these phones both functional and attractive. These handsets are sure to be at the top of many wish lists.'),(3824,10,492,3,20,'<ul>\r\n<ul class=\"disc\">\r\n<li>Bluetooth Wireless Technology: Built-in radio technology allows fast, secure transmission between your phone and accessories without cables or wires. Bluetooth wireless accessories are sold separately.<br></li>\r\n<li>Mass Storage Area: Store pictures, videos, voice memos and music within the internal memory of the phone.<br></li>\r\n<li>Streaming Music Enabled: Stream music to your phone with Music Choice®. Select from Pop, Rock, Hip Hop, and R&B plus exclusive video clips, performances, and artist interviews.<br></li>\r\n</ul>\r\n   '),(3825,10,496,3,20,'CONDITIONAL $250 Equipment Discount Included: Your price paid includes an equipment discount of $250 that has been provided to you in exchange for activating a new, non-substitute line of service with Sprint and your agreement that for the 181-day period following such activation you will (1) pay your balance due to Sprint each month and otherwise maintain your account in good standing, (2) not disconnect this Sprint line of service, (3) not transfer this equipment to another Sprint line of service, (4) not change your Sprint service rate plan to a lower monthly service rate--this includes canceling or removing required PDA, BlackBerry, or smartphone features after your product has shipped, and (5) not use this line of service to replace an existing account with Sprint. If these conditions are not met, you hereby authorize Magento.com to charge your credit card $250 as reimbursement of this equipment discount without need for further approval.'),(3826,10,104,3,20,'Samsung, MM-A900M, cell, phone'),(3829,10,495,3,25,'MA464LL/A'),(3830,10,494,3,25,'19.5 x 7.6 x 19.5 inches'),(3831,10,497,3,25,'2.0 GHz Intel Core Duo processor with 2 MB shared L2 Cache'),(3832,10,498,3,25,'1 GB (single SODIMM) 667 MHz DDR2 SDRAM (PC2-5300)'),(3833,10,499,3,25,'100 GB 5400 rpm Serial ATA hard drive'),(3834,10,500,3,25,'15.4-inch TFT widescreen display with 1440 x 900 resolution'),(3835,10,97,3,25,'This, combined with myriad other engineering leaps, boosts performance up to four times higher than the PowerBook G4. With this awesome power, it\'s a breeze to render complex 3D models, enjoy smooth playback of HD video, or host a four-way video conference.Intel Core Duo is the first chip built using Intel\'s groundbreaking 65-nanometer process - resulting in transistors so small, you could fit a hundred inside a single human cell. With smaller distances for electrons to travel, and two processors designed to share resources and conserve power, Intel Core Duo achieves higher levels of performance as it uses fewer watts. Which is what makes it possible to design a super-powerful MacBook Pro that\'s only one inch thin.When Mac technology makes something easy, it\'s hardly news. So here\'s more non-news for MacBook Pro owners: software just works. If you see the Universal logo on a new application, that means it will run on Intel- and PowerPC-based Mac computers. For most existing applications, you simply do what you\'ve always done: double-click them. Thanks to the Rosetta technology in Mac OS X, they look and feel just like they did before.'),(3836,10,492,3,25,' <ul>\r\n<ul class=\"disc\">\r\n<li>2.0 GHz Intel Core Duo processor with 2 MB shared L2 Cache<br></li>\r\n<li>1 GB (single SODIMM) 667 MHz DDR2 SDRAM (PC2-5300); 100 GB 5400 rpm Serial ATA hard drive; slot-load SuperDrive (DVD±RW/CD-RW)<br></li>\r\n<li>One FireWire 400, two USB 2.0 ports, and ExpressCard/34 slot; no FireWire 800 slots<br></li>\r\n<li>Built-in 10/100/1000BASE-T (Gigabit); built-in 54 Mbps AirPort Extreme (802.11g); built-in Bluetooth 2.0+EDR<br></li>\r\n<li>15.4-inch TFT widescreen display with 1440 x 900 resolution</li>'),(3837,10,104,3,25,'Apple MacBook Pro MA464LL/A 15.4\" Notebook PC (2.0 GHz Intel Core Duo, 1 GB RAM, 100 GB Hard Drive, SuperDrive) '),(3838,10,495,3,26,'LX.FR206.001'),(3839,10,497,3,26,'Mobile AMD Athlon 64 2800+'),(3840,10,498,3,26,'512MB of PC2700 DDR333 SDRAM'),(3841,10,499,3,26,'80 gig Western Digital'),(3842,10,500,3,26,'15-inch, 200-nit, high-brightness TFT LCD screen '),(3843,10,97,3,26,' Acer has flawlessly designed the Ferrari 3200, instilling it with exceptional performance, brilliant graphics, and lightning-fast connectivity. This exclusive edition is another striking symbol of cooperation between Acer and Ferrari -- two progressive companies with proud heritages built on passion, innovation, power and success.'),(3844,10,492,3,26,' <ul>\r\n<ul class=\"disc\">\r\n<li>Mobile AMD Athlon 64 2800+<br></li>\r\n<li>1MB L2 Cache<br></li>\r\n<li>512MB of PC2700 DDR333 SDRAM<br></li>\r\n<li>2 RAM Slots (0 open - upgrading requires chip removal)<br></li>\r\n<li>RAM is upgradeable to 2GB</li>\r\n</ul>'),(3845,10,104,3,26,'Acer Ferrari 3200 Notebook Computer PC '),(3846,10,495,3,27,'VGN-TXN27N/B'),(3847,10,494,3,27,'10.7 x 1.23 x 7.7 inches (WxHxD)'),(3848,10,497,3,27,'Intel Core Solo Processor U1500'),(3849,10,498,3,27,'2 GB RAM'),(3850,10,499,3,27,'100 GB Hard Drive'),(3851,10,500,3,27,'9 inches'),(3852,10,97,3,27,' Weighing in at just an amazing 2.84 pounds and offering a sleek, durable carbon-fiber case in charcoal black. And with 4 to 10 hours of standard battery life, it has the stamina to power you through your most demanding applications. With the integrated wireless WAN, you can access the national Sprint Mobile Broadband service to extend your wireless coverage beyond LAN access networks and hotspots, giving you the freedom to go farther, do more, and stay connected.\r\n\r\n'),(3853,10,492,3,27,' <ul>\r\n<ul class=\"disc\">\r\n<li>Processor: The Ultra Low Voltage Intel Core Solo U1500 processor offers a 1.33 GHz speed paired with a fast 533 MHz front-side bus and large 2 MB L2 cache. (An L2, or secondary, cache temporarily stores data; and a larger L2 cache can help speed up your system\'s performance. The FSB carries data between the CPU and RAM, and a faster front-side bus will deliver better overall performance.) The Core Solo processor delivers enhanced performance for today\'s demanding applications such as CAD tools, 3-D and 2-D modeling, video editing, digital music, digital photography and gaming. And Intel\'s Smart Cache technology enables smarter, more efficient cache and bus design for enhanced performance, responsiveness and power savings.</li>\r\n</ul>\r\n\r\n   '),(3854,10,104,3,27,'Sony, VAIO, VGN-TXN27N/B , Notebook, PC, Intel, 2 GB RAM, '),(3855,10,495,3,28,'M285-E'),(3856,10,494,3,28,'17 x 7 x 13 inches'),(3857,10,497,3,28,'1.66 GHz Intel Core Duo T2300E processor'),(3858,10,498,3,28,'1 GB RAM'),(3859,10,499,3,28,'60 GB hard drive'),(3860,10,500,3,28,'14-inch screen '),(3861,10,97,3,28,'Easily mobile at just 6 pounds, the Toshiba Satellite A135-S4527 makes it easy to get your work done with a large, bright 15.4-inch widescreen LCD. The XGA-resolution screen (1280 x 800) permits side-by-side viewing of documents for increased productivity. It\'s also great for using as a media center, with Toshiba\'s unique Express Media Player enabling you to bypass the system and access CDs and DVDs with a touch of button. This affordable notebook PC is powered by Intel\'s 1.73 GHz Core Duo T2080 processor, which provides an optimized, multithreaded architecture for improved gaming and multitasking performance and efficient power consumption. It also offers a 120 GB hard drive, 1 GB of installed RAM (2 GB maximum), dual-layer/multi-format DVD drive that also burns CDs, integrated 54g wireless connectivity, and Intel GMA 950 video card with up to 256 MB of shared video RAM.\r\n\r\n'),(3862,10,492,3,28,' <ul>\r\n<ul class=\"disc\">\r\n<li>Processor: The Intel Core Duo T2080 processor is built with the Mobile Intel 945PM Express chipset, and it has a 1.73 GHz processor speed, fast 533 MHz front-side bus (FSB), and 1 MB L2 cache. (An L2, or secondary, cache temporarily stores data; and a larger L2 cache can help speed up your system\'s performance. The FSB carries data between the CPU and RAM, and a faster front-side bus will deliver better overall performance.)</li>\r\n</ul>'),(3863,10,104,3,28,'Toshiba, notebook, laptop, intel, '),(3864,10,495,3,29,'B000JI2N0I'),(3865,10,97,3,29,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear. Wear them either at the beach, in your garden, at the mall or just about anywhere you would want to be comfortable.'),(3866,10,492,3,29,'    * Made of EVA foam\r\n    * Heel strap keeps shoe on foot\r\n    * Non-marking, slip-resistant outsole\r\n    * Weigh just 6-10 ounces\r\n\r\n'),(3867,10,104,3,29,'CN Clogs Beach/Garden Clog '),(3868,10,495,3,30,'B000CP1M00'),(3869,10,97,3,30,'The ASICS® GEL-Kayano® XII running shoe delivers the ultimate blend of cushioning and support. Biomorphic Fit™ upper offers enhanced upper fit and comfort while decreasing the potential for irritation. Solyte midsole material is lighter than standard EVA and SpEVA® combined with improved cushioning and durability. Impact Guidance System (I.G.S.®) uses linked componentry to encourage optimal gait while allowing for natural foot movement from heel strike to toe off. DuoMax® support system helps ensure that the shoe maintains proper support for the foot during the critical transition from heel strike to toe off. Space Trusstic® System creates a pocket between the Trusstic® System device and the midsole, allowing for greater midsole deformation and more efficient foot function. GEL® Cushioning System provides maximum rearfoot and forefoot shock attenuation. Wt. 12.6 oz.'),(3870,10,492,3,30,'# I.G.S.?: Allows for natural foot movement from heel strike to toe-off\r\n# DuoMax? Support System: Maintains proper support for the foot during the critical transition from heel strike to toe-off\r\n# Space Trusstic System?: Allows for greater midsole deformation and more efficient foot function\r\n# GEL? Cushioning System: Provides maximum rearfoot/forefoot shock attenuation\r\n# Biomorphic Fit Upper: Provides enhanced upper fit and comfort while limiting irritation'),(3871,10,104,3,30,'ASICS® Men\'s GEL-Kayano® XII '),(3872,10,495,3,31,'B000NOGIKY'),(3873,10,97,3,31,'Nothing will turn his head faster than you wearing the sexy Pryme pump from Steven by Steve Madden. This daring pump has a pretty patent leather upper with light shirring, a double stitch detail surrounding the collar, and a vampy almond shaped toe. It also features smooth linings, a fully cushioned insole, a sexy covered stiletto heel, and a lightly textured dress leather outsole. Any way you wear the Pryme, you\'re certain to catch a lot of attention.'),(3874,10,492,3,31,'A prime example of chic style. Patent leather upper. Round toe. 3-1/2 inch covered heel. Flex leather sole. Imported. '),(3875,10,104,3,31,'Steven by Steve Madden Pryme Pump'),(3876,10,495,3,32,'B000LJQVF8'),(3877,10,97,3,32,'The Lucero pump from Nine West may just leave him at a loss for words. This flirty pump has a leather upper, a pretty almond-shaped toe with a slight V-cut vamp, leather linings, and a cushioned insole for long-wearing comfort. The stiletto heel radiates a subtle hint of sensuality, so sass up your jean and t-shirt look or nighttime attire with this hot pump and you\'ll be absolutely unforgettable.'),(3878,10,492,3,32,'The perfect pump will suit any ensemble. Leather upper. 3-3/4 inch stacked heel. Man-made sole. Imported. '),(3879,10,104,3,32,'Nine West Women\'s Lucero Pump '),(3880,10,495,3,33,'B000NPOA1M'),(3881,10,97,3,33,'Featuring a wide toe box and delivering optimum support, the sporty Golf Flexor golf shoe is a stylish cleat that you\'ll love wearing on and off the links. The contrasting embossed snakeskin panels attract interest, while the laid back lace-up style keeps things simple. And thanks to the one-year waterproof guarantee, you can trust these shoes to keep you in the game, even when conditions are less than perfect.'),(3882,10,492,3,33,'Featuring a wide toe box and delivering optimum support, the sporty Golf Flexor golf shoe is a stylish cleat that you\'ll love wearing on and off the links. The contrasting embossed snakeskin panels attract interest, while the laid back lace-up style keeps things simple. And thanks to the one-year waterproof guarantee, you can trust these shoes to keep you in the game, even when conditions are less than perfect.'),(3883,10,104,3,33,'ECCO Womens Golf Flexor Golf Shoe'),(3884,10,495,3,34,'B000IKC6AY'),(3885,10,97,3,34,'High fashion and classic good looks converge in this suave slip on from Kenneth Cole. Smooth leather upper in a dress slip on style, with a stitched and covered seam moc-inspired square toe, quarter panel curved overlays and flared tongue with side elastic panels for a comfortable, secure fit. Smooth leather lining, cushioned leather topped insole. Dress midsole with a beveled edge, 1 inch capped dress heel. Flat traction outsole.'),(3886,10,492,3,34,'The handsome style of the Con-Verge slip-on from Kenneth Cole New York is larger than life. This sharp shoe has a semi-polished smooth leather upper, a squared off stitched apron toe, and dual-goring for easy on/off accessibility. It also features soft leather linings, a cushioned insole, and a paneled rubber outsole for a sturdy step. The Con-Verge is a perfect companion to your business and special occasion wardrobes.'),(3887,10,104,3,34,'Kenneth Cole New York Men\'s Con-verge Slip-on'),(3888,10,495,3,35,'Impatience'),(3889,10,97,3,35,'# 6.1 oz. 100% preshrunk heavyweight cotton \r\n# Shoulder-to-shoulder taping\r\n# Double-needle sleeves and bottom hem'),(3890,10,104,3,35,'Coalesce: Functioning On Impatience T-Shirt'),(3891,10,495,3,36,'Ink Eater:'),(3892,10,97,3,36,'We bought these with the intention of making shirts for our family reunion, only to come back the next day to find each and every one of them had been tagged by The Bear.  Oh well -- can\'t argue with art.  Now you can make your grandparents proud by wearing an original piece of graf work to YOUR family reunion!'),(3893,10,104,3,36,'Ink Eater: Krylon Bombear Destroyed Tee'),(3894,10,495,3,37,'The Only Children: Paisley T-Shirt'),(3895,10,97,3,37,'# 6.1 oz. 100% preshrunk heavyweight cotton \r\n# Double-needle sleeves and bottom hem'),(3896,10,104,3,37,'The Only Children: Paisley T-Shirt'),(3897,10,495,3,38,'Zolof The Rock And Roll Destroyer: LOL Cat T-shirt'),(3898,10,97,3,38,'# 6.1 oz. 100% preshrunk heavyweight cotton \r\n# Shoulder-to-shoulder taping\r\n# Double-needle sleeves and bottom hem'),(3899,10,104,3,38,'Zolof The Rock And Roll Destroyer: LOL Cat T-shirt'),(3900,10,495,3,19,'8525 PDA'),(3901,10,494,3,19,'4.4 x 2.4 x 0.9 inches'),(3902,10,97,3,19,' The design of the 8525 is clean and uncluttered, with just a few buttons for mail, Internet Explorer, and contextual menus. Meanwhile, call answer and end buttons surround a five-way toggle that allows you to navigate and control the Windows Mobile interface. As mentioned, a full QWERTY keyboard cleverly slides out from underneath the screen. This allows you to hold the device horizontally, and the screen is automatically placed in landscape mode when you\'re using the keyboard. A side scroll wheel is conveniently tucked away on the side, making navigation when accessing the music player and other various applications a cinch when needed. A mini-SD memory expansion card slot is provided, as is an infrared port and support for a stereo Bluetooth headset. A mini-USB port is also included for wired data transfers and charging.'),(3903,10,492,3,19,'<ul>\r\n<ul class=\"disc\">\r\n<li>tri-band UMTS/HSDPA; quad-band GSM/GPRS/EDGE for global use<br></li>\r\n<li>Windows Mobile 5.0 with Messaging & Security Feature Pack<br></li>\r\n<li>sliding QWERTY keyboard with improved keypad design and improved backlight for easier use in low light conditions<br></li>\r\n<li>128MB ROM / 64MB RAM; ~51MB user available memory<br></li>\r\n<li>2.0 mega-pixel camera with video capabilities</li>\r\n</ul>'),(3904,10,496,3,19,'Conditional $250 Equipment Discount Included: Your price paid includes an equipment discount of $250 that has been provided to you in exchange for either activating a new, non-substitute line of service or renewing an existing line of service with AT&T and your agreement that for the 181-day period following such activation or renewal you will: (1) pay your balance due to AT&T each month and otherwise maintain your account in good standing; (2) not disconnect this AT&T line of service; (3) not transfer this equipment to another AT&T line of service; (4) not change your AT&T service rate plan to a lower monthly service rate--this includes canceling or removing required PDA, BlackBerry, or smartphone features after your product has shipped; (5) not use this line of service to replace an existing account with AT&T. If these conditions are not met, you hereby authorize Magento.com to charge your credit card $250 as reimbursement of this equipment discount without need for further approval.'),(3905,10,104,3,19,'At&t, 8525, cell, phone'),(3906,10,495,3,39,'The Get Up Kids: Band Camp Pullover Hoodie'),(3907,10,97,3,39,'Printed on American Apparel Classic style 5495 California Fleece Pull-Over Hoodies.  Sizing info is available here. '),(3908,10,104,3,39,'The Get Up Kids: Band Camp Pullover Hoodie'),(3915,10,495,3,41,'384822'),(3916,10,494,3,41,'21\"W x 44\"L x 35.5\"H'),(3917,10,507,3,41,'Thailand'),(3918,10,509,3,41,'Asian Beechwood'),(3919,10,97,3,41,'Features include inset panel sides and for spacious drawers and two wicker baskets. 41\"Wx18\"Dx36\"H.'),(3920,10,104,3,41,'Hardwood, drawers, wicker, asian, beechwood'),(3921,10,495,3,42,'bar1234'),(3922,10,494,3,42,'62\"W x 84\"L x 8\"H'),(3923,10,507,3,42,'Thailand'),(3924,10,509,3,42,'Bamboo'),(3925,10,97,3,42,'Entirely handcrafted of solid Bamboo. Designed for use with a mattress alone, it includes a sturdy, padded wood platform for comfort and proper mattress support.'),(3926,10,104,3,42,'bamboo, barcelona, platform, bed'),(3927,10,495,3,44,'Rebel XT '),(3928,10,494,3,44,'5 x 3.7 x 2.5 inches'),(3929,10,97,3,44,'The Canon EOS Digital Rebel camera now has a new, faster, even smaller big brother. Sibling rivalries aside, the 8.0-megapixel Canon EOS Digital Rebel XT SLR adds resolution, speed, extra creative control, and enhanced comfort in the hand to one of the smallest and lightest digital cameras in its class. Even with its advancements in ergonomic design and technology, this easy-to-use EOS digital camera is compatible with all of Canon\'s EF lenses, including the EF-S lenses.'),(3930,10,492,3,44,'<ul>\r\n<ul class=\"disc\"> \r\n\r\n<li>8.0-megapixel CMOS sensor captures enough detail for photo-quality 16 x 22-inch prints<br></li>\r\n<li>Includes Canon\'s EF-S 18-55mm, f3.5-5.6 zoom lens<br></li>\r\n<li>DIGIC II Image Processor provides fast, accurate image processing; captures images at a rate of up to 3 frames per second<br></li>\r\n<li>Fast start-up time--.2 seconds<br></li>\r\n<li>Powered by rechargeable Lithium-ion battery (included, with charger)</li>\r\n</ul>\r\n'),(3931,10,104,3,44,'canon, slr, camera, 8, digital'),(3932,10,495,3,45,'QC-2185'),(3933,10,494,3,45,'2.75 inches x 1.5 inches'),(3934,10,97,3,45,'The Argus QC-2185 Quick Click 5MP digital camera offers all the basic features you need in a compact and stylish digital camera. This unit is easy to use, and is perfect for those who want a completely portable option for taking good pictures, without having to empty their wallet.\r\n\r\nThe Argus QC-2185 features a clear and bright 1.1-inch CSTN (color super-twist nematic) LCD display that makes it easy to frame the perfect picture. Thanks to its USB 1.1 connection compatibility, this digital camera lets you quickly download pictures to your Mac or PC, and can also function as a handy web camera. The QC-2185 includes eight megabytes of internal SDRAM memory, with the ability to expand camera memory via a built-in SD (secure digital) storage card slot for easy storage and transfer of your pictures. This unit also includes a built-in auto flash with a three to seven foot range, and comes with ArcSoft PhotoImpression\'s photo editing software which makes it easy for you to edit, crop, adjust and improve all your best pictures to make them even better.\r\n'),(3935,10,492,3,45,'<ul>\r\n<ul class=\"disc\".  \r\n<li>5 megapixel digital camera with a 1600 x 1200 resolution and an f2.8 aperture</li>\r\n<li> Clear and bright 1.1-inch CSTN LCD display makes it easy to frame the perfect picture</li>\r\n<li>USB 1.1 connection compatibility lets you quickly download pictures to your Mac or PC, and function as a web camera</li>\r\n<li>Runs on 3 AAA batteries, and requires; Windows OS 98 or higher, at least 32 MB of RAM and 125 MB of hard disk space, and an available USB port</li>\r\n<li>Weighs 3.4 ounces, measures 3.6 x 2.4 x 1.1 inches (W x H x D), and is backed by a 1-year manufacturer\'s warranty</li>\r\n</ul>\r\n'),(3936,10,104,3,45,'Argus, QC-2185, digital, camera, 2MP'),(3937,10,495,3,46,'750'),(3938,10,494,3,46,'3.8 x 2.1 x 1 inches'),(3939,10,97,3,46,'Olympus continues to innovate with the launch of the Stylus 750 digital camera, a technically sophisticated point-and-shoot camera offering a number of pioneering technologies such as Dual Image Stabilization, Bright Capture Technology, and TruePic Turbo, as well as a powerful 5x optical zoom that tucks away into a streamlined metal, all-weather body design. The camera is distinguished by a number of premium features, including:\r\n\r\n    * An advanced combination of the mechanical CCD-shift Image Stabilization and Digital Image Stabilization work together to ensure the clearest pictures possible in any situation;\r\n    * A 5x optical zoom lens with a newly developed lens element to maintain a small compact size;\r\n    * A 2.5-inch LCD and Bright Capture Technology dramatically improve composition, capture and review of images in low-light situations;\r\n    * Olympus\' exclusive TruePic Turbo Image Processing engine is coupled with a 7.1-megapixel image sensor to produce crisp, high-quality p'),(3940,10,492,3,46,'<ul>\r\n<ul class=\"disc\">\r\n\r\n<li>7.1-megapixel CCD captures enough detail for photo-quality 15 x 20-inch prints<br></li>\r\n<li>5x image-stabilized optical zoom; 2.5-inch LCD display<br></li>\r\n<li>Compact, all-weather body measures 3.8 x 2.1 x 0.96 inches<br></li>\r\n<li>Bright Capture technology; 27 selectable shooting modes; built-in Help guide<br></li>\r\n<li>Stores images on xD Picture Cards; powered by Li-Ion battery (battery and charger included)</li>\r\n</ul>'),(3941,10,104,3,46,'Olympus, stylus, 750, 7MP, digital, camera, zoom'),(3942,10,495,3,47,'A630 '),(3943,10,494,3,47,'4.3 x 2.6 x 1.9 inches '),(3944,10,97,3,47,'Replacing the highly popular PowerShot A620, the PowerShot A630 features a rotating 2.5-inch vari-angle LCD, 4x optical zoom lens, and a vast array of creative shooting modes.<br>\r\n\r\nThe PowerShot A630 packs a vast array of advanced features into a remarkably compact space<br><br>\r\n\r\n'),(3945,10,492,3,47,'<ul>\r\n<ul class=\"disc\">\r\n<li>8-megapixel CCD captures enough detail for photo-quality 16 x 22-inch prints<br></li>\r\n<li>4x optical zoom; 2.5-inch vari-angle LCD display<br></li>\r\n<li>ISO range up to ISO 800 for less blur in low light while hand-holding<br></li>\r\n<li>3:2 guide masks LCD to display 4 x 6-inch print size; 16:9 format option for still images<br></li>\r\n<li>Stores images on SD cards; powered by 4 AA-size batteries</li>\r\n</ul>'),(3946,10,104,3,47,'canon, powershot, A630, digital, camera, optical, zoom'),(3947,10,495,3,48,'C530 '),(3948,10,494,3,48,' 4 x 6 x 9 inches'),(3949,10,97,3,48,'Small on size. Big on value. Kodak\'s newest C-Series digital camera, the C530, sports awesome features--such as 5.0-megapixel CCD resolution, on-camera image cropping, and an on-camera Share button--at a very affordable price.'),(3950,10,492,3,48,'<ul>\r\n<ul class=\"disc\">   \r\n\r\n<li>5.0-megapixel CCD captures enough detail for photo-quality 13 x 17-inch prints<br></li>\r\n<li>1.5-inch LCD display<br></li>\r\n<li>Continuous QVGA video<br></li>\r\n<li>Auto scene mode and three color modes; in-camera cropping<br></li>\r\n<li>Powered by AA size batteries; stores images on SD memory cards (includes 16 MB internal memory)</li>\r\n</ul>'),(3951,10,104,3,48,'kodak, eayshare, c530, 5MP, digital, camera'),(3952,10,495,3,49,'B000KJ43SG'),(3953,10,97,3,49,'Womens Premier Leather Single Layer Narrow Strap - NEW Colors Available - Womens Style - Genuine Top Grain Premier Leather - Rich Color Tones - Straps lined with 2000 lb test nylon - Guaranteed for the Life of the Sole - Non-slip sole - Note: Rainbow is in the process of unveiling a new toe post tag that is much smaller than the original tag.'),(3954,10,492,3,49,'Womens Premier Leather Single Layer Narrow Strap - '),(3955,10,104,3,49,'womens, sandal, leather, anashria, '),(3956,10,495,3,51,'magotto'),(3957,10,507,3,51,'Italy'),(3958,10,509,3,51,'Microfiber'),(3959,10,97,3,51,'The Magento ottoman will impress with its style while it delivers on quality. This piece of living room furniture is built to last with durable solid wood framing, generous padding and plush stain-resistant microfiber upholstery.'),(3960,10,104,3,51,'Ottoman'),(3961,10,495,3,52,'1112'),(3962,10,507,3,52,'Italy'),(3963,10,509,3,52,'Microfiber'),(3964,10,97,3,52,'This Magento chair features a fun, futuristic design, with fluid curves and gentle angles that follow the shape of the body to enhance ultimate relaxation. It combines a hint of nostalgia with the up-to-date sensibility and function of modern chairs. It is in soft, velvety microfiber.'),(3965,10,104,3,52,'Chair'),(3966,10,495,3,53,'1113'),(3967,10,507,3,53,'Italy'),(3968,10,509,3,53,'Microfiber'),(3969,10,97,3,53,'Inspired by the classic camelback sofa, Magento offers comfort and style in a low maintenance package.  For a sleek, simple and stylish piece, look no further than the Magento sofa - or sofabed!'),(3970,10,104,3,53,'Couch'),(3971,10,495,3,54,'RFS'),(3972,10,507,3,54,'Italy'),(3973,10,509,3,54,'Microfiber'),(3974,10,97,3,54,'The perfect furniture set for the living room!  Love red?  You\'ll love these pieces of handmade modern furniture!'),(3975,10,104,3,54,'Magento, Red, Furniture, Set, ottoman, couch, chair'),(3989,10,506,3,39,'Printed on American Apparel Classic style 5495 California Fleece Pull-Over Hoodies.  '),(3990,10,506,3,38,'Printed on American Apparel Classic style 5495 California t-shirts.  '),(3991,10,506,3,37,'Printed on American Apparel Classic style 5495 California cotton T shirst.   '),(3992,10,506,3,36,'We bought these with the intention of making shirts for our family reunion, only to come back the next day to find each and every one of them had been tagged by The Bear.  Oh well -- can\'t argue with art.  Now you can make your grandparents proud by wearing an original piece of graf work to YOUR family reunion!'),(3993,10,506,3,35,'# 6.1 oz. 100% preshrunk heavyweight cotton \r\n# Shoulder-to-shoulder taping\r\n# Double-needle sleeves and bottom hem'),(3994,10,506,3,34,'High fashion and classic good looks converge in this suave slip on from Kenneth Cole. Smooth leather upper in a dress slip on style, with a stitched and covered seam moc-inspired square toe, quarter panel curved overlays and flared tongue'),(3995,10,506,3,33,'Featuring a wide toe box and delivering optimum support, the sporty Golf Flexor golf shoe is a stylish cleat that you\'ll love wearing on and off the links.'),(3996,10,506,3,32,'The Lucero pump from Nine West may just leave him at a loss for words. This flirty pump has a leather upper, a pretty almond-shaped toe with a slight V-cut vamp'),(3997,10,506,3,31,'Nothing will turn his head faster than you wearing the sexy Pryme pump from Steven by Steve Madden. This daring pump has a pretty patent leather upper with light shirring, a double stitch detail surrounding the collar, and a vampy almond shaped toe'),(3998,10,506,3,29,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear'),(3999,10,506,3,28,'Get the competitive edge with the Gateway M285-E. This widescreen Convertible Notebook functions as both a conventional notebook and a tablet.'),(4000,10,506,3,27,'Take a load off your shoulders when you\'re racing for your plane with the sleekly designed and ultra-portable Sony Vaio VGN-TXN27N/B notebook PC.'),(4001,10,506,3,26,'This exclusive edition is another striking symbol of cooperation between Acer and Ferrari -- two progressive companies with proud heritages built on passion, innovation, power and success'),(4002,10,506,3,25,'You\'ve seen improvements in notebook performance before - but never on this scale. The Intel Core Duo powering MacBook Pro is actually two processors built into a single chip.'),(4003,10,506,3,20,'The MM-A900m offers great-looking design with the ability to download a rich selection of content directly to the phone. '),(4004,10,506,3,19,'Under the hood, the 8525 features 128MB of embedded memory and 64MB RAM, running on a 400 MHz Samsung processor. Up front, the 240 x 320 LCD touch-screen supports over 65,000 colors, while the rear of the device houses a 2.0 megapixel camera.'),(4005,10,506,3,18,'The W810i follows a long tradition of beautifully designed and crafted phones from Sony Ericsson. The same candy-bar style that graced the W800 is here.'),(4006,10,506,3,17,'The BlackBerry 8100 Pearl is a departure from the form factor of previous BlackBerry devices. This BlackBerry handset is far more phone-like, and RIM\'s engineers have managed to fit a QWERTY keyboard onto the handset\'s slim frame.'),(4007,10,506,3,16,'The words \"entry level\" no longer mean \"low-end,\" especially when it comes to the Nokia 2610. Offering advanced media and calling features without breaking the bank'),(4008,10,506,3,30,'The ASICS® GEL-Kayano® XII running shoe delivers the ultimate blend of cushioning and support. Biomorphic Fit™ upper offers enhanced upper fit and comfort while decreasing the potential for irritation. '),(4010,10,506,3,41,'Our Akio dresser has a solid hardwood frame.  '),(4011,10,506,3,42,'Our Barcelona platform bed captures the spirit and drama of late 20th century design with a variety of subtle details.'),(4012,10,506,3,44,' Canon EOS Digital Rebel XT SLR adds resolution, speed, extra creative control, and enhanced comfort in the hand to one of the smallest and lightest digital cameras in its class. '),(4013,10,506,3,45,'The Argus QC-2185 Quick Click 5MP digital camera offers all the basic features you need in a compact and stylish digital camera. This unit is easy to use, and is perfect for those who want a completely portable option for taking good pictures, without having to empty their wallet.'),(4014,10,506,3,46,'A technically sophisticated point-and-shoot camera offering a number of pioneering technologies such as Dual Image Stabilization, Bright Capture Technology, and TruePic Turbo, as well as a powerful 5x optical zoom.'),(4015,10,506,3,47,'Replacing the highly popular PowerShot A620, the PowerShot A630 features a rotating 2.5-inch vari-angle LCD, 4x optical zoom lens, and a vast array of creative shooting modes.'),(4016,10,506,3,48,'Small on size. Big on value. Kodak\'s newest C-Series digital camera, the C530, sports awesome features'),(4017,10,506,3,49,'Womens Premier Leather Single Layer Narrow Strap - NEW Colors Available - Womens Style - Genuine Top Grain Premier Leather - Rich Color Tones - Straps lined with 2000 lb test nylon - Guaranteed for the Life of the Sole - Non-slip sole - Note: Rainbow is in the process of unveiling a new toe post tag that is much smaller than the original tag.'),(4018,10,506,3,51,'With durable solid wood framing, generous padding and plush stain-resistant microfiber upholstery.'),(4019,10,506,3,52,'Combining a hint of nostalgia with the up-to-date sensibility and function of modern chairs. It is in soft, velvety microfiber.'),(4020,10,506,3,53,'For a sleek, simple and stylish piece, look no further than the Magento sofa - or sofabed!'),(4021,10,506,3,54,'Love red?  You\'ll love these pieces of handmade modern furniture!'),(4034,10,495,3,74,'B000KJ43SG'),(4035,10,97,3,74,'Womens Premier Leather Single Layer Narrow Strap - NEW Colors Available - Womens Style - Genuine Top Grain Premier Leather - Rich Color Tones - Straps lined with 2000 lb test nylon - Guaranteed for the Life of the Sole - Non-slip sole - Note: Rainbow is in the process of unveiling a new toe post tag that is much smaller than the original tag.'),(4036,10,492,3,74,'Womens Premier Leather Single Layer Narrow Strap - '),(4037,10,104,3,74,'womens, sandal, leather, anashria, '),(4038,10,506,3,74,'Womens Premier Leather Single Layer Narrow Strap - NEW Colors Available - Womens Style - Genuine Top Grain Premier Leather - Rich Color Tones - Straps lined with 2000 lb test nylon - Guaranteed for the Life of the Sole - Non-slip sole - Note: Rainbow is in the process of unveiling a new toe post tag that is much smaller than the original tag.'),(4039,10,495,3,75,'B000KJ43SG'),(4040,10,97,3,75,'Womens Premier Leather Single Layer Narrow Strap - NEW Colors Available - Womens Style - Genuine Top Grain Premier Leather - Rich Color Tones - Straps lined with 2000 lb test nylon - Guaranteed for the Life of the Sole - Non-slip sole - Note: Rainbow is in the process of unveiling a new toe post tag that is much smaller than the original tag.'),(4041,10,492,3,75,'Womens Premier Leather Single Layer Narrow Strap - '),(4042,10,104,3,75,'womens, sandal, leather, anashria, '),(4043,10,506,3,75,'Womens Premier Leather Single Layer Narrow Strap - NEW Colors Available - Womens Style - Genuine Top Grain Premier Leather - Rich Color Tones - Straps lined with 2000 lb test nylon - Guaranteed for the Life of the Sole - Non-slip sole - Note: Rainbow is in the process of unveiling a new toe post tag that is much smaller than the original tag.'),(4044,10,495,3,79,'B000KJ43SG'),(4045,10,97,3,79,'Womens Premier Leather Single Layer Narrow Strap - NEW Colors Available - Womens Style - Genuine Top Grain Premier Leather - Rich Color Tones - Straps lined with 2000 lb test nylon - Guaranteed for the Life of the Sole - Non-slip sole - Note: Rainbow is in the process of unveiling a new toe post tag that is much smaller than the original tag.'),(4046,10,492,3,79,'Womens Premier Leather Single Layer Narrow Strap - '),(4047,10,104,3,79,'womens, sandal, leather, anashria, '),(4048,10,506,3,79,'Womens Premier Leather Single Layer Narrow Strap - NEW Colors Available - Womens Style - Genuine Top Grain Premier Leather - Rich Color Tones - Straps lined with 2000 lb test nylon - Guaranteed for the Life of the Sole - Non-slip sole - Note: Rainbow is in the process of unveiling a new toe post tag that is much smaller than the original tag.'),(4049,10,495,3,80,'B000KJ43SG'),(4050,10,97,3,80,'Womens Premier Leather Single Layer Narrow Strap - NEW Colors Available - Womens Style - Genuine Top Grain Premier Leather - Rich Color Tones - Straps lined with 2000 lb test nylon - Guaranteed for the Life of the Sole - Non-slip sole - Note: Rainbow is in the process of unveiling a new toe post tag that is much smaller than the original tag.'),(4051,10,492,3,80,'Womens Premier Leather Single Layer Narrow Strap - '),(4052,10,104,3,80,'womens, sandal, leather, anashria, '),(4053,10,506,3,80,'Womens Premier Leather Single Layer Narrow Strap - NEW Colors Available - Womens Style - Genuine Top Grain Premier Leather - Rich Color Tones - Straps lined with 2000 lb test nylon - Guaranteed for the Life of the Sole - Non-slip sole - Note: Rainbow is in the process of unveiling a new toe post tag that is much smaller than the original tag.'),(4054,10,495,3,81,'B000KJ43SG'),(4055,10,97,3,81,'Womens Premier Leather Single Layer Narrow Strap - NEW Colors Available - Womens Style - Genuine Top Grain Premier Leather - Rich Color Tones - Straps lined with 2000 lb test nylon - Guaranteed for the Life of the Sole - Non-slip sole - Note: Rainbow is in the process of unveiling a new toe post tag that is much smaller than the original tag.'),(4056,10,492,3,81,'Womens Premier Leather Single Layer Narrow Strap - '),(4057,10,104,3,81,'womens, sandal, leather, anashria, '),(4058,10,506,3,81,'Womens Premier Leather Single Layer Narrow Strap - NEW Colors Available - Womens Style - Genuine Top Grain Premier Leather - Rich Color Tones - Straps lined with 2000 lb test nylon - Guaranteed for the Life of the Sole - Non-slip sole - Note: Rainbow is in the process of unveiling a new toe post tag that is much smaller than the original tag.'),(4059,10,495,3,82,'B000KJ43SG'),(4060,10,97,3,82,'Womens Premier Leather Single Layer Narrow Strap - NEW Colors Available - Womens Style - Genuine Top Grain Premier Leather - Rich Color Tones - Straps lined with 2000 lb test nylon - Guaranteed for the Life of the Sole - Non-slip sole - Note: Rainbow is in the process of unveiling a new toe post tag that is much smaller than the original tag.'),(4061,10,492,3,82,'Womens Premier Leather Single Layer Narrow Strap - '),(4062,10,104,3,82,'womens, sandal, leather, anashria, '),(4063,10,506,3,82,'Womens Premier Leather Single Layer Narrow Strap - NEW Colors Available - Womens Style - Genuine Top Grain Premier Leather - Rich Color Tones - Straps lined with 2000 lb test nylon - Guaranteed for the Life of the Sole - Non-slip sole - Note: Rainbow is in the process of unveiling a new toe post tag that is much smaller than the original tag.'),(4064,10,495,3,83,'B000JI2N0I'),(4065,10,104,3,83,'cn, clogs, outdoor, shoes, sandals, comfortable'),(4066,10,506,3,83,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear'),(4067,10,97,3,83,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear. Wear them either at the beach, in your garden, at the mall or just about anywhere you would want to be comfortable.'),(4068,10,492,3,83,'<ul>\r\n<ul class=\"disc\">\r\n<li>Made of EVA foam<br></li>\r\n<li>Heel strap keeps shoe on foot<br></li>\r\n<li>Non-marking, slip-resistant outsole<br></li>\r\n<li> Weigh just 6-10 ounces<br></li>\r\n'),(4069,10,495,3,84,'B000JI2N0I'),(4070,10,97,3,84,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear. Wear them either at the beach, in your garden, at the mall or just about anywhere you would want to be comfortable.'),(4071,10,492,3,84,'    * Made of EVA foam\r\n    * Heel strap keeps shoe on foot\r\n    * Non-marking, slip-resistant outsole\r\n    * Weigh just 6-10 ounces\r\n\r\n'),(4072,10,104,3,84,'CN Clogs Beach/Garden Clog '),(4073,10,506,3,84,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear'),(4074,10,495,3,85,'B000JI2N0I'),(4075,10,97,3,85,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear. Wear them either at the beach, in your garden, at the mall or just about anywhere you would want to be comfortable.'),(4076,10,492,3,85,'    * Made of EVA foam\r\n    * Heel strap keeps shoe on foot\r\n    * Non-marking, slip-resistant outsole\r\n    * Weigh just 6-10 ounces\r\n\r\n'),(4077,10,104,3,85,'CN Clogs Beach/Garden Clog '),(4078,10,506,3,85,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear'),(4079,10,495,3,86,'B000JI2N0I'),(4080,10,97,3,86,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear. Wear them either at the beach, in your garden, at the mall or just about anywhere you would want to be comfortable.'),(4081,10,492,3,86,'    * Made of EVA foam\r\n    * Heel strap keeps shoe on foot\r\n    * Non-marking, slip-resistant outsole\r\n    * Weigh just 6-10 ounces\r\n\r\n'),(4082,10,104,3,86,'CN Clogs Beach/Garden Clog '),(4083,10,506,3,86,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear'),(4084,10,495,3,87,'B000JI2N0I'),(4085,10,97,3,87,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear. Wear them either at the beach, in your garden, at the mall or just about anywhere you would want to be comfortable.'),(4086,10,492,3,87,'    * Made of EVA foam\r\n    * Heel strap keeps shoe on foot\r\n    * Non-marking, slip-resistant outsole\r\n    * Weigh just 6-10 ounces\r\n\r\n'),(4087,10,104,3,87,'CN Clogs Beach/Garden Clog '),(4088,10,506,3,87,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear'),(4089,10,495,3,88,'B000JI2N0I'),(4090,10,97,3,88,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear. Wear them either at the beach, in your garden, at the mall or just about anywhere you would want to be comfortable.'),(4091,10,492,3,88,'    * Made of EVA foam\r\n    * Heel strap keeps shoe on foot\r\n    * Non-marking, slip-resistant outsole\r\n    * Weigh just 6-10 ounces\r\n\r\n'),(4092,10,104,3,88,'CN Clogs Beach/Garden Clog '),(4093,10,506,3,88,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear'),(4094,10,495,3,89,'B000JI2N0I'),(4095,10,97,3,89,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear. Wear them either at the beach, in your garden, at the mall or just about anywhere you would want to be comfortable.'),(4096,10,492,3,89,'    * Made of EVA foam\r\n    * Heel strap keeps shoe on foot\r\n    * Non-marking, slip-resistant outsole\r\n    * Weigh just 6-10 ounces\r\n\r\n'),(4097,10,104,3,89,'CN Clogs Beach/Garden Clog '),(4098,10,506,3,89,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear'),(4099,10,495,3,90,'B000JI2N0I'),(4100,10,97,3,90,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear. Wear them either at the beach, in your garden, at the mall or just about anywhere you would want to be comfortable.'),(4101,10,492,3,90,'    * Made of EVA foam\r\n    * Heel strap keeps shoe on foot\r\n    * Non-marking, slip-resistant outsole\r\n    * Weigh just 6-10 ounces\r\n\r\n'),(4102,10,104,3,90,'CN Clogs Beach/Garden Clog '),(4103,10,506,3,90,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear'),(4104,10,495,3,91,'B000JI2N0I'),(4105,10,97,3,91,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear. Wear them either at the beach, in your garden, at the mall or just about anywhere you would want to be comfortable.'),(4106,10,492,3,91,'    * Made of EVA foam\r\n    * Heel strap keeps shoe on foot\r\n    * Non-marking, slip-resistant outsole\r\n    * Weigh just 6-10 ounces\r\n\r\n'),(4107,10,104,3,91,'CN Clogs Beach/Garden Clog '),(4108,10,506,3,91,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear'),(4109,10,495,3,92,'B000JI2N0I'),(4110,10,97,3,92,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear. Wear them either at the beach, in your garden, at the mall or just about anywhere you would want to be comfortable.'),(4111,10,492,3,92,'    * Made of EVA foam\r\n    * Heel strap keeps shoe on foot\r\n    * Non-marking, slip-resistant outsole\r\n    * Weigh just 6-10 ounces\r\n\r\n'),(4112,10,104,3,92,'CN Clogs Beach/Garden Clog '),(4113,10,506,3,92,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear'),(4114,10,495,3,93,'B000CP1M00'),(4115,10,104,3,93,'asics, gel, kayano'),(4116,10,506,3,93,'The ASICS® GEL-Kayano® XII running shoe delivers the ultimate blend of cushioning and support. '),(4117,10,97,3,93,'Biomorphic Fit™ upper offers enhanced upper fit and comfort while decreasing the potential for irritation. Solyte midsole material is lighter than standard EVA and SpEVA® combined with improved cushioning and durability. Impact Guidance System (I.G.S.®) uses linked componentry to encourage optimal gait while allowing for natural foot movement from heel strike to toe off. DuoMax® support system helps ensure that the shoe maintains proper support for the foot during the critical transition from heel strike to toe off. Space Trusstic® System creates a pocket between the Trusstic® System device and the midsole, allowing for greater midsole deformation and more efficient foot function. GEL® Cushioning System provides maximum rearfoot and forefoot shock attenuation. Wt. 12.6 oz.'),(4118,10,492,3,93,'<ul>\r\n<ul class=\"disc\">\r\n<li> I.G.S.: Allows for natural foot movement from heel strike to toe-off<br></li>\r\n<li>DuoMax Support System: Maintains proper support for the foot during the critical transition from heel strike to toe-off<br></li>\r\n<li> Space Trusstic System: Allows for greater midsole deformation and more efficient foot function<br></li>\r\n<li>GEL Cushioning System: Provides maximum rearfoot/forefoot shock attenuation<br></li>\r\n<li>Biomorphic Fit Upper: Provides enhanced upper fit and comfort while limiting irritation</li>\r\n\r\n</ul>'),(4119,10,495,3,94,'B000CP1M00'),(4120,10,97,3,94,'The ASICS® GEL-Kayano® XII running shoe delivers the ultimate blend of cushioning and support. Biomorphic Fit™ upper offers enhanced upper fit and comfort while decreasing the potential for irritation. Solyte midsole material is lighter than standard EVA and SpEVA® combined with improved cushioning and durability. Impact Guidance System (I.G.S.®) uses linked componentry to encourage optimal gait while allowing for natural foot movement from heel strike to toe off. DuoMax® support system helps ensure that the shoe maintains proper support for the foot during the critical transition from heel strike to toe off. Space Trusstic® System creates a pocket between the Trusstic® System device and the midsole, allowing for greater midsole deformation and more efficient foot function. GEL® Cushioning System provides maximum rearfoot and forefoot shock attenuation. Wt. 12.6 oz.'),(4121,10,492,3,94,'# I.G.S.?: Allows for natural foot movement from heel strike to toe-off\r\n# DuoMax? Support System: Maintains proper support for the foot during the critical transition from heel strike to toe-off\r\n# Space Trusstic System?: Allows for greater midsole deformation and more efficient foot function\r\n# GEL? Cushioning System: Provides maximum rearfoot/forefoot shock attenuation\r\n# Biomorphic Fit Upper: Provides enhanced upper fit and comfort while limiting irritation'),(4122,10,104,3,94,'ASICS® Men\'s GEL-Kayano® XII '),(4123,10,506,3,94,'The ASICS® GEL-Kayano® XII running shoe delivers the ultimate blend of cushioning and support. Biomorphic Fit™ upper offers enhanced upper fit and comfort while decreasing the potential for irritation. '),(4124,10,495,3,95,'B000CP1M00'),(4125,10,97,3,95,'The ASICS® GEL-Kayano® XII running shoe delivers the ultimate blend of cushioning and support. Biomorphic Fit™ upper offers enhanced upper fit and comfort while decreasing the potential for irritation. Solyte midsole material is lighter than standard EVA and SpEVA® combined with improved cushioning and durability. Impact Guidance System (I.G.S.®) uses linked componentry to encourage optimal gait while allowing for natural foot movement from heel strike to toe off. DuoMax® support system helps ensure that the shoe maintains proper support for the foot during the critical transition from heel strike to toe off. Space Trusstic® System creates a pocket between the Trusstic® System device and the midsole, allowing for greater midsole deformation and more efficient foot function. GEL® Cushioning System provides maximum rearfoot and forefoot shock attenuation. Wt. 12.6 oz.'),(4126,10,492,3,95,'# I.G.S.?: Allows for natural foot movement from heel strike to toe-off\r\n# DuoMax? Support System: Maintains proper support for the foot during the critical transition from heel strike to toe-off\r\n# Space Trusstic System?: Allows for greater midsole deformation and more efficient foot function\r\n# GEL? Cushioning System: Provides maximum rearfoot/forefoot shock attenuation\r\n# Biomorphic Fit Upper: Provides enhanced upper fit and comfort while limiting irritation'),(4127,10,104,3,95,'ASICS® Men\'s GEL-Kayano® XII '),(4128,10,506,3,95,'The ASICS® GEL-Kayano® XII running shoe delivers the ultimate blend of cushioning and support. Biomorphic Fit™ upper offers enhanced upper fit and comfort while decreasing the potential for irritation. '),(4129,10,495,3,96,'B000CP1M00'),(4130,10,97,3,96,'The ASICS® GEL-Kayano® XII running shoe delivers the ultimate blend of cushioning and support. Biomorphic Fit™ upper offers enhanced upper fit and comfort while decreasing the potential for irritation. Solyte midsole material is lighter than standard EVA and SpEVA® combined with improved cushioning and durability. Impact Guidance System (I.G.S.®) uses linked componentry to encourage optimal gait while allowing for natural foot movement from heel strike to toe off. DuoMax® support system helps ensure that the shoe maintains proper support for the foot during the critical transition from heel strike to toe off. Space Trusstic® System creates a pocket between the Trusstic® System device and the midsole, allowing for greater midsole deformation and more efficient foot function. GEL® Cushioning System provides maximum rearfoot and forefoot shock attenuation. Wt. 12.6 oz.'),(4131,10,492,3,96,'# I.G.S.?: Allows for natural foot movement from heel strike to toe-off\r\n# DuoMax? Support System: Maintains proper support for the foot during the critical transition from heel strike to toe-off\r\n# Space Trusstic System?: Allows for greater midsole deformation and more efficient foot function\r\n# GEL? Cushioning System: Provides maximum rearfoot/forefoot shock attenuation\r\n# Biomorphic Fit Upper: Provides enhanced upper fit and comfort while limiting irritation'),(4132,10,104,3,96,'ASICS® Men\'s GEL-Kayano® XII '),(4133,10,506,3,96,'The ASICS® GEL-Kayano® XII running shoe delivers the ultimate blend of cushioning and support. Biomorphic Fit™ upper offers enhanced upper fit and comfort while decreasing the potential for irritation. '),(4134,10,495,3,97,'B000CP1M00'),(4135,10,97,3,97,'The ASICS® GEL-Kayano® XII running shoe delivers the ultimate blend of cushioning and support. Biomorphic Fit™ upper offers enhanced upper fit and comfort while decreasing the potential for irritation. Solyte midsole material is lighter than standard EVA and SpEVA® combined with improved cushioning and durability. Impact Guidance System (I.G.S.®) uses linked componentry to encourage optimal gait while allowing for natural foot movement from heel strike to toe off. DuoMax® support system helps ensure that the shoe maintains proper support for the foot during the critical transition from heel strike to toe off. Space Trusstic® System creates a pocket between the Trusstic® System device and the midsole, allowing for greater midsole deformation and more efficient foot function. GEL® Cushioning System provides maximum rearfoot and forefoot shock attenuation. Wt. 12.6 oz.'),(4136,10,492,3,97,'# I.G.S.?: Allows for natural foot movement from heel strike to toe-off\r\n# DuoMax? Support System: Maintains proper support for the foot during the critical transition from heel strike to toe-off\r\n# Space Trusstic System?: Allows for greater midsole deformation and more efficient foot function\r\n# GEL? Cushioning System: Provides maximum rearfoot/forefoot shock attenuation\r\n# Biomorphic Fit Upper: Provides enhanced upper fit and comfort while limiting irritation'),(4137,10,104,3,97,'ASICS® Men\'s GEL-Kayano® XII '),(4138,10,506,3,97,'The ASICS® GEL-Kayano® XII running shoe delivers the ultimate blend of cushioning and support. Biomorphic Fit™ upper offers enhanced upper fit and comfort while decreasing the potential for irritation. '),(4139,10,495,3,98,'B000IKC6AY'),(4140,10,104,3,98,'Kenneth Cole, New York, Men\'s, Con-verge, Slip-on'),(4141,10,506,3,98,'Smooth leather upper in a dress slip on style, with a stitched and covered seam moc-inspired square toe.'),(4142,10,97,3,98,'High fashion and classic good looks converge in this suave slip on from Kenneth Cole. Smooth leather upper in a dress slip on style, with a stitched and covered seam moc-inspired square toe, quarter panel curved overlays and flared tongue with side elastic panels for a comfortable, secure fit. Smooth leather lining, cushioned leather topped insole. Dress midsole with a beveled edge, 1 inch capped dress heel. Flat traction outsole.'),(4143,10,492,3,98,'The handsome style of the Con-Verge slip-on from Kenneth Cole New York is larger than life. This sharp shoe has a semi-polished smooth leather upper, a squared off stitched apron toe, and dual-goring for easy on/off accessibility. It also features soft leather linings, a cushioned insole, and a paneled rubber outsole for a sturdy step. The Con-Verge is a perfect companion to your business and special occasion wardrobes.'),(4144,10,495,3,99,'B000IKC6AY'),(4145,10,97,3,99,'High fashion and classic good looks converge in this suave slip on from Kenneth Cole. Smooth leather upper in a dress slip on style, with a stitched and covered seam moc-inspired square toe, quarter panel curved overlays and flared tongue with side elastic panels for a comfortable, secure fit. Smooth leather lining, cushioned leather topped insole. Dress midsole with a beveled edge, 1 inch capped dress heel. Flat traction outsole.'),(4146,10,492,3,99,'The handsome style of the Con-Verge slip-on from Kenneth Cole New York is larger than life. This sharp shoe has a semi-polished smooth leather upper, a squared off stitched apron toe, and dual-goring for easy on/off accessibility. It also features soft leather linings, a cushioned insole, and a paneled rubber outsole for a sturdy step. The Con-Verge is a perfect companion to your business and special occasion wardrobes.'),(4147,10,104,3,99,'Kenneth Cole New York Men\'s Con-verge Slip-on'),(4148,10,506,3,99,'High fashion and classic good looks converge in this suave slip on from Kenneth Cole. Smooth leather upper in a dress slip on style, with a stitched and covered seam moc-inspired square toe, quarter panel curved overlays and flared tongue'),(4149,10,495,3,100,'B000IKC6AY'),(4150,10,97,3,100,'High fashion and classic good looks converge in this suave slip on from Kenneth Cole. Smooth leather upper in a dress slip on style, with a stitched and covered seam moc-inspired square toe, quarter panel curved overlays and flared tongue with side elastic panels for a comfortable, secure fit. Smooth leather lining, cushioned leather topped insole. Dress midsole with a beveled edge, 1 inch capped dress heel. Flat traction outsole.'),(4151,10,492,3,100,'The handsome style of the Con-Verge slip-on from Kenneth Cole New York is larger than life. This sharp shoe has a semi-polished smooth leather upper, a squared off stitched apron toe, and dual-goring for easy on/off accessibility. It also features soft leather linings, a cushioned insole, and a paneled rubber outsole for a sturdy step. The Con-Verge is a perfect companion to your business and special occasion wardrobes.'),(4152,10,104,3,100,'Kenneth Cole New York Men\'s Con-verge Slip-on'),(4153,10,506,3,100,'High fashion and classic good looks converge in this suave slip on from Kenneth Cole. Smooth leather upper in a dress slip on style, with a stitched and covered seam moc-inspired square toe, quarter panel curved overlays and flared tongue'),(4154,10,495,3,101,'B000IKC6AY'),(4155,10,97,3,101,'High fashion and classic good looks converge in this suave slip on from Kenneth Cole. Smooth leather upper in a dress slip on style, with a stitched and covered seam moc-inspired square toe, quarter panel curved overlays and flared tongue with side elastic panels for a comfortable, secure fit. Smooth leather lining, cushioned leather topped insole. Dress midsole with a beveled edge, 1 inch capped dress heel. Flat traction outsole.'),(4156,10,492,3,101,'The handsome style of the Con-Verge slip-on from Kenneth Cole New York is larger than life. This sharp shoe has a semi-polished smooth leather upper, a squared off stitched apron toe, and dual-goring for easy on/off accessibility. It also features soft leather linings, a cushioned insole, and a paneled rubber outsole for a sturdy step. The Con-Verge is a perfect companion to your business and special occasion wardrobes.'),(4157,10,104,3,101,'Kenneth Cole New York Men\'s Con-verge Slip-on'),(4158,10,506,3,101,'High fashion and classic good looks converge in this suave slip on from Kenneth Cole. Smooth leather upper in a dress slip on style, with a stitched and covered seam moc-inspired square toe, quarter panel curved overlays and flared tongue'),(4159,10,495,3,102,'B000IKC6AY'),(4160,10,97,3,102,'High fashion and classic good looks converge in this suave slip on from Kenneth Cole. Smooth leather upper in a dress slip on style, with a stitched and covered seam moc-inspired square toe, quarter panel curved overlays and flared tongue with side elastic panels for a comfortable, secure fit. Smooth leather lining, cushioned leather topped insole. Dress midsole with a beveled edge, 1 inch capped dress heel. Flat traction outsole.'),(4161,10,492,3,102,'The handsome style of the Con-Verge slip-on from Kenneth Cole New York is larger than life. This sharp shoe has a semi-polished smooth leather upper, a squared off stitched apron toe, and dual-goring for easy on/off accessibility. It also features soft leather linings, a cushioned insole, and a paneled rubber outsole for a sturdy step. The Con-Verge is a perfect companion to your business and special occasion wardrobes.'),(4162,10,104,3,102,'Kenneth Cole New York Men\'s Con-verge Slip-on'),(4163,10,506,3,102,'High fashion and classic good looks converge in this suave slip on from Kenneth Cole. Smooth leather upper in a dress slip on style, with a stitched and covered seam moc-inspired square toe, quarter panel curved overlays and flared tongue'),(4164,10,495,3,103,'B000NOGIKY'),(4165,10,104,3,103,'Steven by Steve Madden Pryme Pump'),(4166,10,506,3,103,' This daring pump has a pretty patent leather upper with light shirring, a double stitch detail surrounding the collar, and a vampy almond shaped toe'),(4167,10,97,3,103,'Nothing will turn his head faster than you wearing the sexy Pryme pump from Steven by Steve Madden. This daring pump has a pretty patent leather upper with light shirring, a double stitch detail surrounding the collar, and a vampy almond shaped toe. It also features smooth linings, a fully cushioned insole, a sexy covered stiletto heel, and a lightly textured dress leather outsole. Any way you wear the Pryme, you\'re certain to catch a lot of attention.'),(4168,10,492,3,103,'A prime example of chic style. Patent leather upper. Round toe. 3-1/2 inch covered heel. Flex leather sole. Imported. '),(4169,10,495,3,104,'B000NOGIKY'),(4170,10,97,3,104,'Nothing will turn his head faster than you wearing the sexy Pryme pump from Steven by Steve Madden. This daring pump has a pretty patent leather upper with light shirring, a double stitch detail surrounding the collar, and a vampy almond shaped toe. It also features smooth linings, a fully cushioned insole, a sexy covered stiletto heel, and a lightly textured dress leather outsole. Any way you wear the Pryme, you\'re certain to catch a lot of attention.'),(4171,10,492,3,104,'A prime example of chic style. Patent leather upper. Round toe. 3-1/2 inch covered heel. Flex leather sole. Imported. '),(4172,10,104,3,104,'Steven by Steve Madden Pryme Pump'),(4173,10,506,3,104,'Nothing will turn his head faster than you wearing the sexy Pryme pump from Steven by Steve Madden. This daring pump has a pretty patent leather upper with light shirring, a double stitch detail surrounding the collar, and a vampy almond shaped toe'),(4174,10,495,3,105,'B000NOGIKY'),(4175,10,97,3,105,'Nothing will turn his head faster than you wearing the sexy Pryme pump from Steven by Steve Madden. This daring pump has a pretty patent leather upper with light shirring, a double stitch detail surrounding the collar, and a vampy almond shaped toe. It also features smooth linings, a fully cushioned insole, a sexy covered stiletto heel, and a lightly textured dress leather outsole. Any way you wear the Pryme, you\'re certain to catch a lot of attention.'),(4176,10,492,3,105,'A prime example of chic style. Patent leather upper. Round toe. 3-1/2 inch covered heel. Flex leather sole. Imported. '),(4177,10,104,3,105,'Steven by Steve Madden Pryme Pump'),(4178,10,506,3,105,'Nothing will turn his head faster than you wearing the sexy Pryme pump from Steven by Steve Madden. This daring pump has a pretty patent leather upper with light shirring, a double stitch detail surrounding the collar, and a vampy almond shaped toe'),(4179,10,495,3,106,'B000NOGIKY'),(4180,10,97,3,106,'Nothing will turn his head faster than you wearing the sexy Pryme pump from Steven by Steve Madden. This daring pump has a pretty patent leather upper with light shirring, a double stitch detail surrounding the collar, and a vampy almond shaped toe. It also features smooth linings, a fully cushione